SlideShare a Scribd company logo
1 of 31
Download to read offline
Leveraging Linked Data to Infer
Semantic Relations within
Structured Sources
Mohsen Taheriyan
Craig A. Knoblock
Pedro Szekely
Jose Luis Ambite
Yinyi Chen
Problem:
How to map structured data to
a domain ontology?
Semantic Model
Map the source to the classes & properties in an ontology
3
title date name
1 The Island 2009 Walton Ford
2 Excavation at Night 1908 George Wesley Bellows
3 Rose Garden 1901 Maria Oakey Dewing
SourceDomainOntology
CIDOC-CRM
85 classes
297 properties
Semantic Types
E35_Title E82_Actor_Appellation
rdfs:label rdfs:label
4
E52_Time-Span
title date name
1 The Island 2009 Walton Ford
2 Excavation at Night 1908 George Wesley Bellows
3 Rose Garden 1901 Maria Oakey Dewing
P82_at_some_time_within
Relationships
E35_Title E82_Actor_Appellation
rdfs:label rdfs:label
5
E52_Time-Span
title date name
1 The Island 2009 Walton Ford
2 Excavation at Night 1908 George Wesley Bellows
3 Rose Garden 1901 Maria Oakey Dewing
P82_at_some_time_within
E22_Man-Made_Object
E12_Production E21_Person
P102_has_title
P108_was_produced_by
P4_has_time-span
P14_carried_out_by
P131_is_identified_by
Idea
• There is a huge amount of linked data
available in many domains (RDF format)
6
• Use LOD as the
background
knowledge
• Exploit the
relationships
between instances
Approach
7
Extract graph patterns from the linked data
• Target source (S)
• Domain Ontologies (O)
• Semantic labels of S
• Linked Data (in the same domain)
Construct a graph from LOD patterns and the ontology
Generate and rank semantic models
1
2
3
Input
A ranked set of semantic
models for S
Output
Approach
8
Extract graph patterns from the linked data
• Target source (S)
• Domain Ontologies (O)
• Semantic labels of S
• Linked Data (in the same domain)
Construct a graph from LOD patterns and the ontology
Generate and rank semantic models
1
2
3
Input
A ranked set of semantic
models for S
Output
LOD Patterns
9
../person-
institution/57551
E21_Person
rdf:type
Thomas Burgon
skos:prefLabel
../person-
institution/57551/birthP98i_was_born
../person-
institution/57551/birth/
date
P4_has_time-span
E67_Birth
rdf:type
1787
rdfs:label
E52_Time-Span
rdf:type
LOD fragment from the
British Museum
LOD Patterns
10
E67_BirthE21_Person
P98i_was_born
../person-
institution/57551
E21_Person
rdf:type
Thomas Burgon
skos:prefLabel
../person-
institution/57551/birthP98i_was_born
../person-
institution/57551/birth/
date
P4_has_time-span
E67_Birth
rdf:type
1787
rdfs:label
E52_Time-Span
P4_has_time-span
E52_Time-Span
rdf:type
LOD fragment from the
British Museum
Pattern
Pattern Templates
• Many possible templates for patterns
– Example: patterns for classes C1, C2, C3
• Consider only tree patterns
• Limit the length of the patterns
11
Extracting Patterns
• Use SPARQL to query RDF data
• Example: patterns with length 1
12
SELECT DISTINCT ?c1 ?p ?c2 (COUNT(*) as ?count)
WHERE {
?x ?p ?y.
?x rdf:type ?c1.
?y rdf:type ?c2.
FILTER (?x != ?y).}
GROUP BY ?c1 ?p ?c2
ORDER BY DESC(?count);
Approach
13
Extract graph patterns from the linked data
• Target source (S)
• Domain Ontologies (O)
• Semantic labels of S
• Linked Data (in the same domain)
Construct a graph from LOD patterns and the ontology
Generate and rank semantic models
1
2
3
Input
A ranked set of semantic
models for S
Output
Merge the Patterns into a Graph
14
E12_ProductionE53_Title
P108i_was_produced_by
E52_Time-Span
E82_Actor_Appellation
E22_Man-Made_Object
E21_Person
P102_has_title
P14_carried_out_by
P131_is_identified_by
E67_Birth
P98i_was_born
P4_has_time-span
P4_has_time-span
Links are weighted: less weight for more frequent links
Links have tags: the identifier of the patterns containing the link
15
E12_ProductionE53_Title
P108i_was_produced_by
E52_Time-Span
E82_Actor_Appellation
E22_Man-Made_Object
E21_Person
P102_has_title
P14_carried_out_by
P131_is_identified_by
E67_Birth
P98i_was_born
P4_has_time-span
E39_Actor
P1_is_identified_by
P1_is_identified_by
P98i_was_born
P14_carried_out_by
P4_has_time-span
Add the paths from the Ontology
The links added from the patterns have much less weight
compared to the links added from the ontology
Approach
16
Extract graph patterns from the linked data
• Target source (S)
• Domain Ontologies (O)
• Semantic labels of S
• Linked Data (in the same domain)
Construct a graph from LOD patterns and the ontology
Generate and rank semantic models
1
2
3
Input
A ranked set of semantic
models for S
Output
Map Semantic Labels to the Graph
17
E12_ProductionE53_Title
P108i_was_produced_by
E52_Time-Span
E82_Actor_Appellation
E22_Man-Made_Object
E21_Person
P102_has_title
P14_carried_out_by
P131_is_identified_by
E67_Birth
P98i_was_born
P4_has_time-span
E39_Actor
P1_is_identified_by
P1_is_identified_by
P98i_was_born
P14_carried_out_by
P4_has_time-span
Map Semantic Labels to the Graph
18
E12_ProductionE53_Title
P108i_was_produced_by
E52_Time-Span
E82_Actor_Appellation
E22_Man-Made_Object
E21_Person
P102_has_title
P14_carried_out_by
P131_is_identified_by
E67_Birth
P98i_was_born
P4_has_time-span
E39_Actor
P1_is_identified_by
P1_is_identified_by
P98i_was_born
P14_carried_out_by
P4_has_time-span
Generate and Rank Semantic Models
• Compute Steiner tree for the mapping
– A minimal tree connecting nodes of mapping
– A customization of BANKS algorithm [Bhalotia
et al., 2002]
• Our algorithm considers both coherence
and popularity
• Each tree is a candidate model
• Rank the models based on coherence and
cost
19
What Is Coherence?
20
PlacePerson
organizer
Event
location
p1 p2 p3
PlacePerson
bornIn
Place
isPartOf
PlacePlace
bornIn
Person
diedIn
Patterns
What Is Coherence?
21
PlacePerson
organizer
Event
location
p1 p2 p3
PlacePerson
bornIn
Place
isPartOf
PlacePlace
bornIn
Person
diedIn
PlacePerson
organizer
Event
location
1 1
bornIn
0.
5
p2, p3
p1p1
Place
isPartOf
p2
1
1
diedIn
p3
PatternsGraph
What Is Coherence?
22
PlacePerson
organizer
Event
location
p1 p2 p3
PlacePerson
bornIn
Place
isPartOf
PlacePlace
bornIn
Person
diedIn
PatternsGraph
Labels
Person
Place
Event
PlacePerson
organizer
Event
location
1 1
bornIn
0.
5
p2, p3
p1p1
Place
isPartOf
p2
1
1
diedIn
p3
What Is Coherence?
23
PlacePerson
organizer
Event
location
p1 p2 p3
PlacePerson
bornIn
Place
isPartOf
PlacePlace
bornIn
Person
diedIn
PatternsGraph
Labels
Person
Place
Event
PlacePerson
organizer
Event
location
1 1
bornIn
0.
5
p2, p3
p1p1
Place
isPartOf
p2
1
1
diedIn
p3
SteinerTrees
PlacePerson
organizer
Event
bornIn
p1
p2, p3
PlacePerson
location
Event
bornIn
p1
p2, p3
PlacePerson
organizer
Event
p1
location
p1
Not minimal model
but more coherent
Steiner Tree
24
E12_ProductionE53_Title
P108i_was_produced_by
E52_Time-Span
E82_Actor_Appellation
E22_Man-Made_Object
E21_Person
P102_has_title
P14_carried_out_by
P131_is_identified_by
P4_has_time-span
Evaluation
• Correct semantic types given
• Linked data: 3,398,350 triples published by Smithsonian
American Art Museum
• Extracted patterns of length 1 and 2
• Compute precision and recall between learned links and correct
links
25
Evaluation Dataset
# sources 29
# classes in the ontologies 147
# properties in the ontologies 409
# nodes in the gold standard models 812
# links in the gold standard models 785
Example
26
Person
Artwork
location
Museum
creator
correct model
Person
Museum
location
Artwork
founder
learned model
<Artwork,location,Museum>
<Artwork,creator,Person>
<Museum,founder,Person>
<Artwork,location,Museum>
Precision: 0.5
Recall: 0.5
Gold Standard Models - Example 1
27
Gold Standard Models - Example 2
28
Results
29
background knowledge precision recall time (s)
domain ontology 0.07 0.05 0.17
domain ontology + patterns of length 1 0.65 0.55 0.75
domain ontology + patterns of length 1 and 2 0.78 0.70 0.46
Related Work
• Mapping databases and spreadsheets to ontologies
– Mapping languages and tools (D2R, R2RML)
– String similarity between column names and ontology terms
• Understand semantics of Web tables
– Use column headers and cell values to find the labels and
relations from a database of labels and relations populated
from the Web
• Exploit Linked Open Data (LOD)
– Link the values to the entities in LOD to find the types of the
values and their relationships
• Learn semantic models of structured data sources from
previously modeled sources
– Learn from the popular and coherent patterns in known
semantic models
30
Discussion & Future Work
• Automatically Infer semantic relations
from LOD
• Help to publish consistent RDF data
• Extract longer patterns from LOD
31

More Related Content

Similar to Leveraging Linked Data to Infer Semantic Relations within Structured Sources

Detection of Contextual Identity Links in a Knowledge Base
Detection of Contextual Identity Links in a Knowledge BaseDetection of Contextual Identity Links in a Knowledge Base
Detection of Contextual Identity Links in a Knowledge BaseJoe Raad
 
Don’t like RDF Reification? Making Statements about Statements Using Singleto...
Don’t like RDF Reification? Making Statements about Statements Using Singleto...Don’t like RDF Reification? Making Statements about Statements Using Singleto...
Don’t like RDF Reification? Making Statements about Statements Using Singleto...Vinh Nguyen
 
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...Artificial Intelligence Institute at UofSC
 
SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"
SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"
SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"Boris Glavic
 
Perplexity of Index Models over Evolving Linked Data
Perplexity of Index Models over Evolving Linked Data Perplexity of Index Models over Evolving Linked Data
Perplexity of Index Models over Evolving Linked Data Thomas Gottron
 
Talk odysseyiswc2017
Talk odysseyiswc2017Talk odysseyiswc2017
Talk odysseyiswc2017hala Skaf
 
Transformer vos solutions Telco avec Neo4j
Transformer vos solutions Telco avec Neo4jTransformer vos solutions Telco avec Neo4j
Transformer vos solutions Telco avec Neo4jNeo4j
 
Linked data experiments at the National Library of Scotland / Alexandra De Pr...
Linked data experiments at the National Library of Scotland / Alexandra De Pr...Linked data experiments at the National Library of Scotland / Alexandra De Pr...
Linked data experiments at the National Library of Scotland / Alexandra De Pr...CIGScotland
 
EKAW - Triple Pattern Fragments
EKAW - Triple Pattern FragmentsEKAW - Triple Pattern Fragments
EKAW - Triple Pattern FragmentsRuben Taelman
 
Text Mining Applied to SQL Queries: a Case Study for SDSS SkyServer
Text Mining Applied to SQL Queries: a Case Study for SDSS SkyServerText Mining Applied to SQL Queries: a Case Study for SDSS SkyServer
Text Mining Applied to SQL Queries: a Case Study for SDSS SkyServerVitor Hirota Makiyama
 
MULDER: Querying the Linked Data Web by Bridging RDF Molecule Templates
MULDER: Querying the Linked Data Web by Bridging RDF Molecule TemplatesMULDER: Querying the Linked Data Web by Bridging RDF Molecule Templates
MULDER: Querying the Linked Data Web by Bridging RDF Molecule TemplatesKemele M. Endris
 
Dedalo, looking for Cluster Explanations in a labyrinth of Linked Data
Dedalo, looking for Cluster Explanations in a labyrinth of Linked DataDedalo, looking for Cluster Explanations in a labyrinth of Linked Data
Dedalo, looking for Cluster Explanations in a labyrinth of Linked DataVrije Universiteit Amsterdam
 
R getting spatial
R getting spatialR getting spatial
R getting spatialFAO
 
Focused Exploration of Geospatial Context on Linked Open Data
Focused Exploration of Geospatial Context on Linked Open DataFocused Exploration of Geospatial Context on Linked Open Data
Focused Exploration of Geospatial Context on Linked Open DataThomas Gottron
 
Integration of collection data - A case study from the Oxford Museums and Lib...
Integration of collection data - A case study from the Oxford Museums and Lib...Integration of collection data - A case study from the Oxford Museums and Lib...
Integration of collection data - A case study from the Oxford Museums and Lib...Athanasios Velios
 
Contextualized Knowledge Graph from two perspectives: Semantic Web and Graph...
Contextualized Knowledge Graphfrom two perspectives: Semantic Web and Graph...Contextualized Knowledge Graphfrom two perspectives: Semantic Web and Graph...
Contextualized Knowledge Graph from two perspectives: Semantic Web and Graph...Vinh Nguyen
 

Similar to Leveraging Linked Data to Infer Semantic Relations within Structured Sources (18)

Detection of Contextual Identity Links in a Knowledge Base
Detection of Contextual Identity Links in a Knowledge BaseDetection of Contextual Identity Links in a Knowledge Base
Detection of Contextual Identity Links in a Knowledge Base
 
Don’t like RDF Reification? Making Statements about Statements Using Singleto...
Don’t like RDF Reification? Making Statements about Statements Using Singleto...Don’t like RDF Reification? Making Statements about Statements Using Singleto...
Don’t like RDF Reification? Making Statements about Statements Using Singleto...
 
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
Semantic Web Foundations for Representing, Reasoning, and Traversing Contextu...
 
SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"
SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"
SIGMOD 2013 - Patricia's talk on "Value invention for Data Exchange"
 
Perplexity of Index Models over Evolving Linked Data
Perplexity of Index Models over Evolving Linked Data Perplexity of Index Models over Evolving Linked Data
Perplexity of Index Models over Evolving Linked Data
 
Talk odysseyiswc2017
Talk odysseyiswc2017Talk odysseyiswc2017
Talk odysseyiswc2017
 
Transformer vos solutions Telco avec Neo4j
Transformer vos solutions Telco avec Neo4jTransformer vos solutions Telco avec Neo4j
Transformer vos solutions Telco avec Neo4j
 
Linked data experiments at the National Library of Scotland / Alexandra De Pr...
Linked data experiments at the National Library of Scotland / Alexandra De Pr...Linked data experiments at the National Library of Scotland / Alexandra De Pr...
Linked data experiments at the National Library of Scotland / Alexandra De Pr...
 
EKAW - Triple Pattern Fragments
EKAW - Triple Pattern FragmentsEKAW - Triple Pattern Fragments
EKAW - Triple Pattern Fragments
 
Text Mining Applied to SQL Queries: a Case Study for SDSS SkyServer
Text Mining Applied to SQL Queries: a Case Study for SDSS SkyServerText Mining Applied to SQL Queries: a Case Study for SDSS SkyServer
Text Mining Applied to SQL Queries: a Case Study for SDSS SkyServer
 
MULDER: Querying the Linked Data Web by Bridging RDF Molecule Templates
MULDER: Querying the Linked Data Web by Bridging RDF Molecule TemplatesMULDER: Querying the Linked Data Web by Bridging RDF Molecule Templates
MULDER: Querying the Linked Data Web by Bridging RDF Molecule Templates
 
Dedalo, looking for Cluster Explanations in a labyrinth of Linked Data
Dedalo, looking for Cluster Explanations in a labyrinth of Linked DataDedalo, looking for Cluster Explanations in a labyrinth of Linked Data
Dedalo, looking for Cluster Explanations in a labyrinth of Linked Data
 
R getting spatial
R getting spatialR getting spatial
R getting spatial
 
Focused Exploration of Geospatial Context on Linked Open Data
Focused Exploration of Geospatial Context on Linked Open DataFocused Exploration of Geospatial Context on Linked Open Data
Focused Exploration of Geospatial Context on Linked Open Data
 
Focused Exploration of Geospatial Context on Linked Open Data
Focused Exploration of Geospatial Context on Linked Open DataFocused Exploration of Geospatial Context on Linked Open Data
Focused Exploration of Geospatial Context on Linked Open Data
 
Integration of collection data - A case study from the Oxford Museums and Lib...
Integration of collection data - A case study from the Oxford Museums and Lib...Integration of collection data - A case study from the Oxford Museums and Lib...
Integration of collection data - A case study from the Oxford Museums and Lib...
 
10. R getting spatial
10.  R getting spatial10.  R getting spatial
10. R getting spatial
 
Contextualized Knowledge Graph from two perspectives: Semantic Web and Graph...
Contextualized Knowledge Graphfrom two perspectives: Semantic Web and Graph...Contextualized Knowledge Graphfrom two perspectives: Semantic Web and Graph...
Contextualized Knowledge Graph from two perspectives: Semantic Web and Graph...
 

Recently uploaded

Decoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectDecoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectBoston Institute of Analytics
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxaleedritatuxx
 
Digital Indonesia Report 2024 by We Are Social .pdf
Digital Indonesia Report 2024 by We Are Social .pdfDigital Indonesia Report 2024 by We Are Social .pdf
Digital Indonesia Report 2024 by We Are Social .pdfNicoChristianSunaryo
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Cathrine Wilhelmsen
 
Digital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksDigital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksdeepakthakur548787
 
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Boston Institute of Analytics
 
What To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxWhat To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxSimranPal17
 
Non Text Magic Studio Magic Design for Presentations L&P.pdf
Non Text Magic Studio Magic Design for Presentations L&P.pdfNon Text Magic Studio Magic Design for Presentations L&P.pdf
Non Text Magic Studio Magic Design for Presentations L&P.pdfPratikPatil591646
 
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdfEnglish-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdfblazblazml
 
IBEF report on the Insurance market in India
IBEF report on the Insurance market in IndiaIBEF report on the Insurance market in India
IBEF report on the Insurance market in IndiaManalVerma4
 
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...Dr Arash Najmaei ( Phd., MBA, BSc)
 
Statistics For Management by Richard I. Levin 8ed.pdf
Statistics For Management by Richard I. Levin 8ed.pdfStatistics For Management by Richard I. Levin 8ed.pdf
Statistics For Management by Richard I. Levin 8ed.pdfnikeshsingh56
 
Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBoston Institute of Analytics
 
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...Jack Cole
 
DATA ANALYSIS using various data sets like shoping data set etc
DATA ANALYSIS using various data sets like shoping data set etcDATA ANALYSIS using various data sets like shoping data set etc
DATA ANALYSIS using various data sets like shoping data set etclalithasri22
 
Rithik Kumar Singh codealpha pythohn.pdf
Rithik Kumar Singh codealpha pythohn.pdfRithik Kumar Singh codealpha pythohn.pdf
Rithik Kumar Singh codealpha pythohn.pdfrahulyadav957181
 
knowledge representation in artificial intelligence
knowledge representation in artificial intelligenceknowledge representation in artificial intelligence
knowledge representation in artificial intelligencePriyadharshiniG41
 
Role of Consumer Insights in business transformation
Role of Consumer Insights in business transformationRole of Consumer Insights in business transformation
Role of Consumer Insights in business transformationAnnie Melnic
 
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Boston Institute of Analytics
 

Recently uploaded (20)

Decoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectDecoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis Project
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
 
Digital Indonesia Report 2024 by We Are Social .pdf
Digital Indonesia Report 2024 by We Are Social .pdfDigital Indonesia Report 2024 by We Are Social .pdf
Digital Indonesia Report 2024 by We Are Social .pdf
 
Insurance Churn Prediction Data Analysis Project
Insurance Churn Prediction Data Analysis ProjectInsurance Churn Prediction Data Analysis Project
Insurance Churn Prediction Data Analysis Project
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)
 
Digital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksDigital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing works
 
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
 
What To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxWhat To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptx
 
Non Text Magic Studio Magic Design for Presentations L&P.pdf
Non Text Magic Studio Magic Design for Presentations L&P.pdfNon Text Magic Studio Magic Design for Presentations L&P.pdf
Non Text Magic Studio Magic Design for Presentations L&P.pdf
 
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdfEnglish-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
English-8-Q4-W3-Synthesizing-Essential-Information-From-Various-Sources-1.pdf
 
IBEF report on the Insurance market in India
IBEF report on the Insurance market in IndiaIBEF report on the Insurance market in India
IBEF report on the Insurance market in India
 
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
6 Tips for Interpretable Topic Models _ by Nicha Ruchirawat _ Towards Data Sc...
 
Statistics For Management by Richard I. Levin 8ed.pdf
Statistics For Management by Richard I. Levin 8ed.pdfStatistics For Management by Richard I. Levin 8ed.pdf
Statistics For Management by Richard I. Levin 8ed.pdf
 
Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
 
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
why-transparency-and-traceability-are-essential-for-sustainable-supply-chains...
 
DATA ANALYSIS using various data sets like shoping data set etc
DATA ANALYSIS using various data sets like shoping data set etcDATA ANALYSIS using various data sets like shoping data set etc
DATA ANALYSIS using various data sets like shoping data set etc
 
Rithik Kumar Singh codealpha pythohn.pdf
Rithik Kumar Singh codealpha pythohn.pdfRithik Kumar Singh codealpha pythohn.pdf
Rithik Kumar Singh codealpha pythohn.pdf
 
knowledge representation in artificial intelligence
knowledge representation in artificial intelligenceknowledge representation in artificial intelligence
knowledge representation in artificial intelligence
 
Role of Consumer Insights in business transformation
Role of Consumer Insights in business transformationRole of Consumer Insights in business transformation
Role of Consumer Insights in business transformation
 
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
 

Leveraging Linked Data to Infer Semantic Relations within Structured Sources

Editor's Notes

  1. Key ingredient to automate: Source discovery, Data integration, Publish knowledge graphs
  2. P131 is identified by is more popular than P1 is identified by to connect instances of E82 Actor Appellation and instances of E21 Person: The property P1 is identified by describes the naming or identification of any real world item by a name or any other identifier, and P131 is identified by is a specialization of P1 is identified by that identifies a name used specifically to identify an instance of E39 Actor (superclass of E21 Person).
  3. Keyword Searching and Browsing in Databases using BANKS
  4. #data source 29 #classes in the domain ontologies 147 #properties in the domain ontologies 409 #nodes in the gold-standard models 812 #data nodes in the gold-standard models 418 #class nodes in the gold-standard models 394 #links in the gold-standard models 785 #internal links in the gold-standard models 367 68 distinct patterns with length one (two nodes and one link) 634 distinct patterns with length two (three nodes and two links)
  5. precision: How many of the learned relationships are correct? recall: How many of the correct relationships are learned?
  6. Indiana Museum of Art
  7. Dallas Museum of Art
  8. Mapping databases and spreadsheets to ontologies Mapping languages: D2R [Bizer, 2003], D2RQ [Bizer and Seaborne, 2004], R2RML [Das et al., 2012] Tools: RDOTE [Vavliakis et al., 2010], RDF123 [Han et al., 2008], XLWrap [Langegger and Woß, 2009] String similarity between column names and ontology terms [Polfliet and Ichise, 2010] Understand semantics of Web tables Use column headers and cell values to find the labels and relations from a database of labels and relations populated from the Web [Wang et al., 2012] [Limaye et al., 2010] [Venetis et al., 2011] Exploit Linked Open Data (LOD) Link the values to the entities in LOD to find the types of the values and their relationships [Muoz et al., 2013] [Mulwad et al., 2013] Semantic annotation of Web services Languages: SAWSDL [Farrell and Lausen, 2007] Tools: SWEET [Maleshkova et al., 2009] Annotate input and output parameters [Heß et al., 2003] [Lerman et al., 2006] [Saquicela e al., 2011] Learn semantic definitions of online information sources [Carman, Knoblock, 2007] Learns LAV rules from known sources Only learns descriptions that are conjunctive combinations of known descriptions Learn semantic models of structured data sources [Taheriyan et al, 2013, 2014, 2015] Learns complete semantic models from previously modeled sources
  9. Publish linked data Transform the data to a common vocabulary Linking entities across different datasets