SlideShare a Scribd company logo
Link Discovery Tutorial
Introduction
Axel-Cyrille Ngonga Ngomo(1)
, Irini Fundulaki(2)
, Mohamed Ahmed Sherif(1)
(1) Institute for Applied Informatics, Germany
(2) FORTH, Greece
October 18th, 2016
Kobe, Japan
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 1 / 24
Introduction
Disclaimer
No pursuit of completeness [Nen+15]
Focus on
Basic ideas and principles
Principles
Evaluation
Open questions and challenges
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 2 / 24
Introduction
Disclaimer
No pursuit of completeness [Nen+15]
Focus on
Basic ideas and principles
Principles
Evaluation
Open questions and challenges
Guidelines
http://iswc2016ldtutorial.aksw.org/
Question? Just ask!
Comment? Go for it!
Be kind :)
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 2 / 24
Let’s Go!
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 3 / 24
Linked Data Principles
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 4 / 24
Why Link Discovery?
1 Linked Open Data Cloud
130+ billion triples
≈ 0.5 billion links
Mostly owl:sameAs
2 Decentralized dataset
creation
3 Complex information needs
⇒ Need to consume data
across knowledge bases
4 Links are central for
Cross-ontology QA
Data Integration
Reasoning
Federated Queries
...
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 5 / 24
Cross-Ontology QA
Example
Give me the name and description of all drugs that cure their side-effect. [SNA13]
1 Need information from
Drugbank (Drug description)
Sider (Side-effects)
DBpedia (Description)
2 Gathering information via SPARQL query
using links
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 6 / 24
Cross-Ontology QA
Example
Give me the name and description of all drugs that cure their side-effect.
SELECT ?drug ?name ?desc WHERE
{
?drug a drugbank:Drug .
?drug rdfs:label ?name .
?drug drugbank:cures ?disease .
?drug owl:sameAs ?drug2 .
?drug owl:sameAs ?drug3 .
?drug2 sider:hasSideEffect ?effect .
?effect owl:sameAs ?disease .
?drug3 dbo:hasWikiPage ?desc .
}
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 7 / 24
Cross-Ontology QA
Example (DEQA)
Give me flats near kindergartens in Kobe. [Leh+12]
SELECT ?flat WHERE
{
?flat a deqa:Flat .
?flat deqa:near ?school .
?school a lgdo:School .
?school lgdo:city lgdo:Kobe .
}
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 8 / 24
Data Integration
Federated Queries on Patient Data [Kha+14]
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 9 / 24
Federated Queries
Example (FedBench CD2)
Return Barack Obama’s party membership and news pages. [Sal+15]
SELECT ?party ?page WHERE
{
dbr:Barack_Obama dbo:party ?party .
?x nytimes:topicPage ?page .
?x owl:sameAs dbr:Barack_Obama .
}
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 10 / 24
Definition
Definition (Link Discovery, informal)
Given two knowledge bases S and T, find links of type R between S and T
Here, declarative link discovery
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 11 / 24
Definition
Definition (Link Discovery, informal)
Given two knowledge bases S and T, find links of type R between S and T
Here, declarative link discovery
Definition (Declarative Link Discovery, formal, similarities)
Given sets S and T of resources and relation R
Find M = {(s, t) ∈ S × T : R(s, t)}
Common approach: Find M = {(s, t) ∈ S × T : σ(s, t) ≥ θ}
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 11 / 24
Definition
Definition (Link Discovery, informal)
Given two knowledge bases S and T, find links of type R between S and T
Here, declarative link discovery
Definition (Declarative Link Discovery, formal, similarities)
Given sets S and T of resources and relation R
Find M = {(s, t) ∈ S × T : R(s, t)}
Common approach: Find M = {(s, t) ∈ S × T : σ(s, t) ≥ θ}
Definition (Declarative Link Discovery, formal, distances)
Given sets S and T of resources and relation R
Find M = {(s, t) ∈ S × T : R(s, t)}
Common approach: Find M = {(s, t) ∈ S × T : δ(s, t) ≤ τ}
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 11 / 24
Definition
Most common: R = owl:sameAs
Also known as deduplication [Nen+15]
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 12 / 24
Definition
Goal: Address all possible relations R
Declarative Link Discovery: Similarity/distance defined using property values
(incl. property chains)
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 13 / 24
Definition
Goal: Address all possible relations R
Declarative Link Discovery: Similarity/distance defined using property values
(incl. property chains)
Example: R = :sameModel
:s770fm rdfs:label "S770FM"@en
:s770fm rdf:type :SABER
:s770fm :model :770
:s770fm :top :FlamedMaple
:s770fm :producer :Ibanez
:s770fm rdfs:label "S770BEM"@en
:s770fm rdf:type :SABER
:s770fm :model :770
:s770fm :top :BirdEyeMaple
:s770fm :producer :Ibanez
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 13 / 24
Why is it difficult?
1 Time complexity
Large number of triples (e.g.,
LinkedTCGA with 20.4 billion
triples [Sal+14])
Quadratic a-priori runtime
69 days for mapping cities from
DBpedia to Geonames
Solutions usually in-memory
(insufficient heap space)
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 14 / 24
Why is it difficult?
1 Time complexity
Large number of triples (e.g.,
LinkedTCGA with 20.4 billion
triples [Sal+14])
Quadratic a-priori runtime
69 days for mapping cities from
DBpedia to Geonames
Solutions usually in-memory
(insufficient heap space)
2 Accuracy
Combination of several attributes
required for high precision
Tedious discovery of most
adequate mapping
Dataset-dependent similarity
functions
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 14 / 24
Structure
1 Time complexity(≈ 60 min)
LIMES algorithm [NA11]
MultiBlock [IJB11]
HR3
[Ngo12]
AEGLE [GSN16]
Summary and Challenges
2 Accuracy(≈ 30 min)
RAVEN [Ngo+11]
EAGLE [NL12]
COALA [NLC13]
Summary and Challenges
3 Benchmarking (≈ 30 min)
Benchmarking [NGF16]
Synthetic Benchmarks [Sav+15]
Real Benchmarks [Mor+11]
Summary and Challenges
4 Hands-On Session (≈ 45 min)
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 15 / 24
That’s all Folks!
Axel Ngonga
AKSW Research Group
Institute for Applied Informatics
ngonga@informatik.uni-leipzig.de
Irini Fundulaki
ICS FORTH
fundul@ics.forth.gr
Mohamed Ahmed Sherif
AKSW Research Group
Institute for Applied Informatics
sherif@informatik.uni-leipzig.de
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 16 / 24
Acknowledgment
This work was supported by grants from the EU H2020 Framework Programme
provided for the project HOBBIT (GA no. 688227).
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 17 / 24
References I
Kleanthi Georgala, Mohamed Ahmed Sherif, and
Axel-Cyrille Ngonga Ngomo. “An Efficient Approach for the
Generation of Allen Relations”. In: ECAI 2016 - 22nd European
Conference on Artificial Intelligence, 29 August-2 September 2016,
The Hague, The Netherlands - Including Prestigious Applications of
Artificial Intelligence (PAIS 2016). Ed. by Gal A. Kaminka et al.
Vol. 285. Frontiers in Artificial Intelligence and Applications. IOS
Press, 2016, pp. 948–956. isbn: 978-1-61499-671-2. doi:
10.3233/978-1-61499-672-9-948. url:
http://dx.doi.org/10.3233/978-1-61499-672-9-948.
Robert Isele, Anja Jentzsch, and Christian Bizer. “Efficient
Multidimensional Blocking for Link Discovery without losing Recall”.
In: Proceedings of the 14th International Workshop on the Web and
Databases 2011, WebDB 2011, Athens, Greece, June 12, 2011. Ed. by
Amélie Marian and Vasilis Vassalos. 2011. url:
http://webdb2011.rutgers.edu/papers/Paper%2039/silk.pdf.
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 18 / 24
References II
Yasar Khan et al. “SAFE: Policy Aware SPARQL Query Federation
Over RDF Data Cubes”. In: Proceedings of the 7th International
Workshop on Semantic Web Applications and Tools for Life Sciences,
Berlin, Germany, December 9-11, 2014. Ed. by Adrian Paschke et al.
Vol. 1320. CEUR Workshop Proceedings. CEUR-WS.org, 2014. url:
http://ceur-ws.org/Vol-1320/Preface_SWAT4LS2014.pdf.
Jens Lehmann et al. “deqa: Deep Web Extraction for Question
Answering”. In: The Semantic Web - ISWC 2012 - 11th International
Semantic Web Conference, Boston, MA, USA, November 11-15, 2012,
Proceedings, Part II. Ed. by Philippe Cudré-Mauroux et al. Vol. 7650.
Lecture Notes in Computer Science. Springer, 2012, pp. 131–147.
isbn: 978-3-642-35172-3. doi: 10.1007/978-3-642-35173-0_9.
url: http://dx.doi.org/10.1007/978-3-642-35173-0_9.
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 19 / 24
References III
Mohamed Morsey et al. “DBpedia SPARQL Benchmark -
Performance Assessment with Real Queries on Real Data”. In: The
Semantic Web - ISWC 2011 - 10th International Semantic Web
Conference, Bonn, Germany, October 23-27, 2011, Proceedings, Part
I. Ed. by Lora Aroyo et al. Vol. 7031. Lecture Notes in Computer
Science. Springer, 2011, pp. 454–469. isbn: 978-3-642-25072-9. doi:
10.1007/978-3-642-25073-6_29. url:
http://dx.doi.org/10.1007/978-3-642-25073-6_29.
Axel-Cyrille Ngonga Ngomo and Sören Auer. “LIMES - A
Time-Efficient Approach for Large-Scale Link Discovery on the Web
of Data”. In: IJCAI 2011, Proceedings of the 22nd International Joint
Conference on Artificial Intelligence, Barcelona, Catalonia, Spain, July
16-22, 2011. Ed. by Toby Walsh. IJCAI/AAAI, 2011, pp. 2312–2317.
isbn: 978-1-57735-516-8. doi:
10.5591/978-1-57735-516-8/IJCAI11-385. url: http:
//dx.doi.org/10.5591/978-1-57735-516-8/IJCAI11-385.
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 20 / 24
References IV
Markus Nentwig et al. “A survey of current Link Discovery
frameworks”. In: Semantic Web Preprint (2015), pp. 1–18.
Axel-Cyrille Ngonga Ngomo, Alejandra Garcıa-Rojas, and
Irini Fundulaki. “HOBBIT: Holistic Benchmarking of Big Linked
Data”. In: ERCIM News 2016.105 (2016). url:
http://ercim-news.ercim.eu/en105/r-i/hobbit-holistic-
benchmarking-of-big-linked-data.
Axel-Cyrille Ngonga Ngomo et al. “RAVEN - active learning of link
specifications”. In: Proceedings of the 6th International Workshop on
Ontology Matching, Bonn, Germany, October 24, 2011. Ed. by
Pavel Shvaiko et al. Vol. 814. CEUR Workshop Proceedings.
CEUR-WS.org, 2011. url:
http://ceur-ws.org/Vol-814/om2011_Tpaper3.pdf.
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 21 / 24
References V
Axel-Cyrille Ngonga Ngomo. “Link Discovery with Guaranteed
Reduction Ratio in Affine Spaces with Minkowski Measures”. In: The
Semantic Web - ISWC 2012 - 11th International Semantic Web
Conference, Boston, MA, USA, November 11-15, 2012, Proceedings,
Part I. Ed. by Philippe Cudré-Mauroux et al. Vol. 7649. Lecture Notes
in Computer Science. Springer, 2012, pp. 378–393. isbn:
978-3-642-35175-4. doi: 10.1007/978-3-642-35176-1_24. url:
http://dx.doi.org/10.1007/978-3-642-35176-1_24.
Axel-Cyrille Ngonga Ngomo and Klaus Lyko. “EAGLE: Efficient Active
Learning of Link Specifications Using Genetic Programming”. In: The
Semantic Web: Research and Applications - 9th Extended Semantic
Web Conference, ESWC 2012, Heraklion, Crete, Greece, May 27-31,
2012. Proceedings. Ed. by Elena Simperl et al. Vol. 7295. Lecture
Notes in Computer Science. Springer, 2012, pp. 149–163. isbn:
978-3-642-30283-1. doi: 10.1007/978-3-642-30284-8_17. url:
http://dx.doi.org/10.1007/978-3-642-30284-8_17.
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 22 / 24
References VI
Axel-Cyrille Ngonga Ngomo, Klaus Lyko, and Victor Christen.
“COALA - Correlation-Aware Active Learning of Link Specifications”.
In: The Semantic Web: Semantics and Big Data, 10th International
Conference, ESWC 2013, Montpellier, France, May 26-30, 2013.
Proceedings. Ed. by Philipp Cimiano et al. Vol. 7882. Lecture Notes
in Computer Science. Springer, 2013, pp. 442–456. isbn:
978-3-642-38287-1. doi: 10.1007/978-3-642-38288-8_30. url:
http://dx.doi.org/10.1007/978-3-642-38288-8_30.
Muhammad Saleem et al. “TopFed: TCGA Tailored Federated Query
Processing and Linking to LOD”. In: J. Biomedical Semantics 5
(2014), p. 47. doi: 10.1186/2041-1480-5-47. url:
http://dx.doi.org/10.1186/2041-1480-5-47.
Muhammad Saleem et al. “A fine-grained evaluation of SPARQL
endpoint federation systems”. In: Semantic Web 7.5 (2015),
pp. 493–518. doi: 10.3233/SW-150186. url:
http://dx.doi.org/10.3233/SW-150186.
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 23 / 24
References VII
Tzanina Saveta et al. “LANCE: Piercing to the Heart of Instance
Matching Tools”. In: The Semantic Web - ISWC 2015 - 14th
International Semantic Web Conference, Bethlehem, PA, USA,
October 11-15, 2015, Proceedings, Part I. Ed. by Marcelo Arenas
et al. Vol. 9366. Lecture Notes in Computer Science. Springer, 2015,
pp. 375–391. isbn: 978-3-319-25006-9. doi:
10.1007/978-3-319-25007-6_22. url:
http://dx.doi.org/10.1007/978-3-319-25007-6_22.
Saeedeh Shekarpour, Axel-Cyrille Ngonga Ngomo, and Sören Auer.
“Question answering on interlinked data”. In: 22nd International
World Wide Web Conference, WWW ’13, Rio de Janeiro, Brazil, May
13-17, 2013. Ed. by Daniel Schwabe et al. International World Wide
Web Conferences Steering Committee / ACM, 2013, pp. 1145–1156.
isbn: 978-1-4503-2035-1. url:
http://dl.acm.org/citation.cfm?id=2488488.
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 24 / 24

More Related Content

What's hot

Framester: A Wide Coverage Linguistic Linked Data Hub
Framester: A Wide Coverage Linguistic Linked Data HubFramester: A Wide Coverage Linguistic Linked Data Hub
Framester: A Wide Coverage Linguistic Linked Data Hub
Mehwish Alam
 
Computing with Directed Labeled Graphs
Computing with Directed Labeled GraphsComputing with Directed Labeled Graphs
Computing with Directed Labeled Graphs
Marko Rodriguez
 
DS2014: Feature selection in hierarchical feature spaces
DS2014: Feature selection in hierarchical feature spacesDS2014: Feature selection in hierarchical feature spaces
DS2014: Feature selection in hierarchical feature spaces
Petar Ristoski
 
RDF2Vec: RDF Graph Embeddings for Data Mining
RDF2Vec: RDF Graph Embeddings for Data MiningRDF2Vec: RDF Graph Embeddings for Data Mining
RDF2Vec: RDF Graph Embeddings for Data Mining
Petar Ristoski
 
Applications of Word Vectors in Text Retrieval and Classification
Applications of Word Vectors in Text Retrieval and ClassificationApplications of Word Vectors in Text Retrieval and Classification
Applications of Word Vectors in Text Retrieval and Classification
shakimov
 
mchristy-Dh2014- emop-postOCR-triage
mchristy-Dh2014- emop-postOCR-triagemchristy-Dh2014- emop-postOCR-triage
mchristy-Dh2014- emop-postOCR-triage
Matt Christy
 
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
shakimov
 
Mchristy-eMOP-workflows2-24x7
Mchristy-eMOP-workflows2-24x7Mchristy-eMOP-workflows2-24x7
Mchristy-eMOP-workflows2-24x7
Matt Christy
 
mchristy-DH2014-emop-bookhistory-tools
mchristy-DH2014-emop-bookhistory-toolsmchristy-DH2014-emop-bookhistory-tools
mchristy-DH2014-emop-bookhistory-tools
Matt Christy
 
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDFESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
Fariz Darari
 
Entity Linking in Queries: Tasks and Evaluation
Entity Linking in Queries: Tasks and EvaluationEntity Linking in Queries: Tasks and Evaluation
Entity Linking in Queries: Tasks and Evaluation
Faegheh Hasibi
 
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
Jeff Z. Pan
 
Semantic Web questions we couldn't ask 10 years ago
Semantic Web questions we couldn't ask 10 years agoSemantic Web questions we couldn't ask 10 years ago
Semantic Web questions we couldn't ask 10 years ago
Frank van Harmelen
 
Entity Search: The Last Decade and the Next
Entity Search: The Last Decade and the NextEntity Search: The Last Decade and the Next
Entity Search: The Last Decade and the Next
krisztianbalog
 
Approximation and Self-Organisation on the Web of Data
Approximation and Self-Organisation on the Web of DataApproximation and Self-Organisation on the Web of Data
Approximation and Self-Organisation on the Web of Data
Kathrin Dentler
 
The Empirical Turn in Knowledge Representation
The Empirical Turn in Knowledge RepresentationThe Empirical Turn in Knowledge Representation
The Empirical Turn in Knowledge Representation
Frank van Harmelen
 
Table Retrieval and Generation
Table Retrieval and GenerationTable Retrieval and Generation
Table Retrieval and Generation
krisztianbalog
 
eMOP-PennSt-lunch
eMOP-PennSt-luncheMOP-PennSt-lunch
eMOP-PennSt-lunch
Matt Christy
 
Quick tour all handout
Quick tour all handoutQuick tour all handout
Quick tour all handout
Yi-Shin Chen
 
Unsupervised Learning of an Extensive and Usable Taxonomy for DBpedia
Unsupervised Learning of an Extensive and Usable Taxonomy for DBpediaUnsupervised Learning of an Extensive and Usable Taxonomy for DBpedia
Unsupervised Learning of an Extensive and Usable Taxonomy for DBpedia
Marco Fossati
 

What's hot (20)

Framester: A Wide Coverage Linguistic Linked Data Hub
Framester: A Wide Coverage Linguistic Linked Data HubFramester: A Wide Coverage Linguistic Linked Data Hub
Framester: A Wide Coverage Linguistic Linked Data Hub
 
Computing with Directed Labeled Graphs
Computing with Directed Labeled GraphsComputing with Directed Labeled Graphs
Computing with Directed Labeled Graphs
 
DS2014: Feature selection in hierarchical feature spaces
DS2014: Feature selection in hierarchical feature spacesDS2014: Feature selection in hierarchical feature spaces
DS2014: Feature selection in hierarchical feature spaces
 
RDF2Vec: RDF Graph Embeddings for Data Mining
RDF2Vec: RDF Graph Embeddings for Data MiningRDF2Vec: RDF Graph Embeddings for Data Mining
RDF2Vec: RDF Graph Embeddings for Data Mining
 
Applications of Word Vectors in Text Retrieval and Classification
Applications of Word Vectors in Text Retrieval and ClassificationApplications of Word Vectors in Text Retrieval and Classification
Applications of Word Vectors in Text Retrieval and Classification
 
mchristy-Dh2014- emop-postOCR-triage
mchristy-Dh2014- emop-postOCR-triagemchristy-Dh2014- emop-postOCR-triage
mchristy-Dh2014- emop-postOCR-triage
 
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
 
Mchristy-eMOP-workflows2-24x7
Mchristy-eMOP-workflows2-24x7Mchristy-eMOP-workflows2-24x7
Mchristy-eMOP-workflows2-24x7
 
mchristy-DH2014-emop-bookhistory-tools
mchristy-DH2014-emop-bookhistory-toolsmchristy-DH2014-emop-bookhistory-tools
mchristy-DH2014-emop-bookhistory-tools
 
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDFESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
 
Entity Linking in Queries: Tasks and Evaluation
Entity Linking in Queries: Tasks and EvaluationEntity Linking in Queries: Tasks and Evaluation
Entity Linking in Queries: Tasks and Evaluation
 
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
The Rise of Approximate Ontology Reasoning: Is It Mainstream Yet? --- Revisit...
 
Semantic Web questions we couldn't ask 10 years ago
Semantic Web questions we couldn't ask 10 years agoSemantic Web questions we couldn't ask 10 years ago
Semantic Web questions we couldn't ask 10 years ago
 
Entity Search: The Last Decade and the Next
Entity Search: The Last Decade and the NextEntity Search: The Last Decade and the Next
Entity Search: The Last Decade and the Next
 
Approximation and Self-Organisation on the Web of Data
Approximation and Self-Organisation on the Web of DataApproximation and Self-Organisation on the Web of Data
Approximation and Self-Organisation on the Web of Data
 
The Empirical Turn in Knowledge Representation
The Empirical Turn in Knowledge RepresentationThe Empirical Turn in Knowledge Representation
The Empirical Turn in Knowledge Representation
 
Table Retrieval and Generation
Table Retrieval and GenerationTable Retrieval and Generation
Table Retrieval and Generation
 
eMOP-PennSt-lunch
eMOP-PennSt-luncheMOP-PennSt-lunch
eMOP-PennSt-lunch
 
Quick tour all handout
Quick tour all handoutQuick tour all handout
Quick tour all handout
 
Unsupervised Learning of an Extensive and Usable Taxonomy for DBpedia
Unsupervised Learning of an Extensive and Usable Taxonomy for DBpediaUnsupervised Learning of an Extensive and Usable Taxonomy for DBpedia
Unsupervised Learning of an Extensive and Usable Taxonomy for DBpedia
 

Similar to Link Discovery Tutorial Introduction

QALD-7 Question Answering over Linked Data Challenge
QALD-7 Question Answering over Linked Data ChallengeQALD-7 Question Answering over Linked Data Challenge
QALD-7 Question Answering over Linked Data Challenge
Holistic Benchmarking of Big Linked Data
 
Qald 7 at ESWC2017
Qald 7 at ESWC2017Qald 7 at ESWC2017
Qald 7 at ESWC2017
Giulio Napolitano
 
ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...
ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...
ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...
Tao Xie
 
Exploiting Semantic Information for Graph-based Recommendations of Learning R...
Exploiting Semantic Information for Graph-based Recommendations of Learning R...Exploiting Semantic Information for Graph-based Recommendations of Learning R...
Exploiting Semantic Information for Graph-based Recommendations of Learning R...
Mojisola Erdt née Anjorin
 
Ectel sem_info_rec_learning_resources_v6.0_20120921_ma
Ectel  sem_info_rec_learning_resources_v6.0_20120921_maEctel  sem_info_rec_learning_resources_v6.0_20120921_ma
Ectel sem_info_rec_learning_resources_v6.0_20120921_ma
Mojisola Erdt née Anjorin
 
Articulating the connection between Learning Design and Learning Analytics
Articulating the connection between Learning Design and Learning AnalyticsArticulating the connection between Learning Design and Learning Analytics
Articulating the connection between Learning Design and Learning Analytics
Abelardo Pardo
 
NLP Data Cleansing Based on Linguistic Ontology Constraints
NLP Data Cleansing Based on Linguistic Ontology ConstraintsNLP Data Cleansing Based on Linguistic Ontology Constraints
NLP Data Cleansing Based on Linguistic Ontology Constraints
Dimitris Kontokostas
 
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
Julien PLU
 
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
Holistic Benchmarking of Big Linked Data
 
ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...
ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...
ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...
SMART Infrastructure Facility
 
Benchmarking Linked Data Introductory Remarks
Benchmarking Linked Data Introductory RemarksBenchmarking Linked Data Introductory Remarks
Benchmarking Linked Data Introductory Remarks
Holistic Benchmarking of Big Linked Data
 
An Evaluation of Models for Runtime Approximation in Link Discovery
An Evaluation of Models for Runtime Approximation in Link DiscoveryAn Evaluation of Models for Runtime Approximation in Link Discovery
An Evaluation of Models for Runtime Approximation in Link Discovery
Holistic Benchmarking of Big Linked Data
 
Machine Learning Methods for Analysing and Linking RDF Data
Machine Learning Methods for Analysing and Linking RDF DataMachine Learning Methods for Analysing and Linking RDF Data
Machine Learning Methods for Analysing and Linking RDF Data
Jens Lehmann
 
CNI fall 2009 enhanced publications john_doove-SURFfoundation
CNI fall 2009 enhanced publications john_doove-SURFfoundationCNI fall 2009 enhanced publications john_doove-SURFfoundation
CNI fall 2009 enhanced publications john_doove-SURFfoundation
John Doove
 
2016 Deep Learning with R and h2o
2016  Deep Learning with R and h2o2016  Deep Learning with R and h2o
2016 Deep Learning with R and h2o
Jan Eite Bullema
 
Data management for researchers
Data management for researchersData management for researchers
Data management for researchers
Dirk Roorda
 
Artificial intelligence for Social Good
Artificial intelligence for Social GoodArtificial intelligence for Social Good
Artificial intelligence for Social Good
Oana Tifrea-Marciuska
 
Statistical Analysis of Results in Music Information Retrieval: Why and How
Statistical Analysis of Results in Music Information Retrieval: Why and HowStatistical Analysis of Results in Music Information Retrieval: Why and How
Statistical Analysis of Results in Music Information Retrieval: Why and How
Julián Urbano
 
Analyzing OpenCourseWare usage by means of social tagging
Analyzing OpenCourseWare usage by means of social taggingAnalyzing OpenCourseWare usage by means of social tagging
Analyzing OpenCourseWare usage by means of social tagging
Julià Minguillón
 
C4DM Seminar 2016-07-12: Brecht De Man
C4DM Seminar 2016-07-12: Brecht De ManC4DM Seminar 2016-07-12: Brecht De Man
C4DM Seminar 2016-07-12: Brecht De Man
sebastianewert
 

Similar to Link Discovery Tutorial Introduction (20)

QALD-7 Question Answering over Linked Data Challenge
QALD-7 Question Answering over Linked Data ChallengeQALD-7 Question Answering over Linked Data Challenge
QALD-7 Question Answering over Linked Data Challenge
 
Qald 7 at ESWC2017
Qald 7 at ESWC2017Qald 7 at ESWC2017
Qald 7 at ESWC2017
 
ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...
ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...
ISEC'18 Keynote: Intelligent Software Engineering: Synergy between AI and Sof...
 
Exploiting Semantic Information for Graph-based Recommendations of Learning R...
Exploiting Semantic Information for Graph-based Recommendations of Learning R...Exploiting Semantic Information for Graph-based Recommendations of Learning R...
Exploiting Semantic Information for Graph-based Recommendations of Learning R...
 
Ectel sem_info_rec_learning_resources_v6.0_20120921_ma
Ectel  sem_info_rec_learning_resources_v6.0_20120921_maEctel  sem_info_rec_learning_resources_v6.0_20120921_ma
Ectel sem_info_rec_learning_resources_v6.0_20120921_ma
 
Articulating the connection between Learning Design and Learning Analytics
Articulating the connection between Learning Design and Learning AnalyticsArticulating the connection between Learning Design and Learning Analytics
Articulating the connection between Learning Design and Learning Analytics
 
NLP Data Cleansing Based on Linguistic Ontology Constraints
NLP Data Cleansing Based on Linguistic Ontology ConstraintsNLP Data Cleansing Based on Linguistic Ontology Constraints
NLP Data Cleansing Based on Linguistic Ontology Constraints
 
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
 
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
 
ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...
ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...
ISNGI 2016 - Keynote Speaker: A/Prof Rodney Clarke - "International industry ...
 
Benchmarking Linked Data Introductory Remarks
Benchmarking Linked Data Introductory RemarksBenchmarking Linked Data Introductory Remarks
Benchmarking Linked Data Introductory Remarks
 
An Evaluation of Models for Runtime Approximation in Link Discovery
An Evaluation of Models for Runtime Approximation in Link DiscoveryAn Evaluation of Models for Runtime Approximation in Link Discovery
An Evaluation of Models for Runtime Approximation in Link Discovery
 
Machine Learning Methods for Analysing and Linking RDF Data
Machine Learning Methods for Analysing and Linking RDF DataMachine Learning Methods for Analysing and Linking RDF Data
Machine Learning Methods for Analysing and Linking RDF Data
 
CNI fall 2009 enhanced publications john_doove-SURFfoundation
CNI fall 2009 enhanced publications john_doove-SURFfoundationCNI fall 2009 enhanced publications john_doove-SURFfoundation
CNI fall 2009 enhanced publications john_doove-SURFfoundation
 
2016 Deep Learning with R and h2o
2016  Deep Learning with R and h2o2016  Deep Learning with R and h2o
2016 Deep Learning with R and h2o
 
Data management for researchers
Data management for researchersData management for researchers
Data management for researchers
 
Artificial intelligence for Social Good
Artificial intelligence for Social GoodArtificial intelligence for Social Good
Artificial intelligence for Social Good
 
Statistical Analysis of Results in Music Information Retrieval: Why and How
Statistical Analysis of Results in Music Information Retrieval: Why and HowStatistical Analysis of Results in Music Information Retrieval: Why and How
Statistical Analysis of Results in Music Information Retrieval: Why and How
 
Analyzing OpenCourseWare usage by means of social tagging
Analyzing OpenCourseWare usage by means of social taggingAnalyzing OpenCourseWare usage by means of social tagging
Analyzing OpenCourseWare usage by means of social tagging
 
C4DM Seminar 2016-07-12: Brecht De Man
C4DM Seminar 2016-07-12: Brecht De ManC4DM Seminar 2016-07-12: Brecht De Man
C4DM Seminar 2016-07-12: Brecht De Man
 

More from Holistic Benchmarking of Big Linked Data

EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...
EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...
EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...
Holistic Benchmarking of Big Linked Data
 
Benchmarking Big Linked Data: The case of the HOBBIT Project
Benchmarking Big Linked Data: The case of the HOBBIT ProjectBenchmarking Big Linked Data: The case of the HOBBIT Project
Benchmarking Big Linked Data: The case of the HOBBIT Project
Holistic Benchmarking of Big Linked Data
 
Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...
Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...
Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...
Holistic Benchmarking of Big Linked Data
 
The DEBS Grand Challenge 2018
The DEBS Grand Challenge 2018The DEBS Grand Challenge 2018
The DEBS Grand Challenge 2018
Holistic Benchmarking of Big Linked Data
 
Benchmarking of distributed linked data streaming systems
Benchmarking of distributed linked data streaming systemsBenchmarking of distributed linked data streaming systems
Benchmarking of distributed linked data streaming systems
Holistic Benchmarking of Big Linked Data
 
SQCFramework: SPARQL Query Containment Benchmarks Generation Framework
SQCFramework: SPARQL Query Containment Benchmarks Generation FrameworkSQCFramework: SPARQL Query Containment Benchmarks Generation Framework
SQCFramework: SPARQL Query Containment Benchmarks Generation Framework
Holistic Benchmarking of Big Linked Data
 
LargeRDFBench: A billion triples benchmark for SPARQL endpoint federation
LargeRDFBench: A billion triples benchmark for SPARQL endpoint federationLargeRDFBench: A billion triples benchmark for SPARQL endpoint federation
LargeRDFBench: A billion triples benchmark for SPARQL endpoint federation
Holistic Benchmarking of Big Linked Data
 
The DEBS Grand Challenge 2017
The DEBS Grand Challenge 2017The DEBS Grand Challenge 2017
The DEBS Grand Challenge 2017
Holistic Benchmarking of Big Linked Data
 
Scalable Link Discovery for Modern Data-Driven Applications (poster)
Scalable Link Discovery for Modern Data-Driven Applications (poster)Scalable Link Discovery for Modern Data-Driven Applications (poster)
Scalable Link Discovery for Modern Data-Driven Applications (poster)
Holistic Benchmarking of Big Linked Data
 
Scalable Link Discovery for Modern Data-Driven Applications
Scalable Link Discovery for Modern Data-Driven ApplicationsScalable Link Discovery for Modern Data-Driven Applications
Scalable Link Discovery for Modern Data-Driven Applications
Holistic Benchmarking of Big Linked Data
 
Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F...
 Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F... Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F...
Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F...
Holistic Benchmarking of Big Linked Data
 
SPgen: A Benchmark Generator for Spatial Link Discovery Tools
SPgen: A Benchmark Generator for Spatial Link Discovery ToolsSPgen: A Benchmark Generator for Spatial Link Discovery Tools
SPgen: A Benchmark Generator for Spatial Link Discovery Tools
Holistic Benchmarking of Big Linked Data
 
Introducing the HOBBIT platform into the Ontology Alignment Evaluation Campaign
Introducing the HOBBIT platform into the Ontology Alignment Evaluation CampaignIntroducing the HOBBIT platform into the Ontology Alignment Evaluation Campaign
Introducing the HOBBIT platform into the Ontology Alignment Evaluation Campaign
Holistic Benchmarking of Big Linked Data
 
OKE2018 Challenge @ ESWC2018
OKE2018 Challenge @ ESWC2018OKE2018 Challenge @ ESWC2018
OKE2018 Challenge @ ESWC2018
Holistic Benchmarking of Big Linked Data
 
MOCHA 2018 Challenge @ ESWC2018
MOCHA 2018 Challenge @ ESWC2018MOCHA 2018 Challenge @ ESWC2018
MOCHA 2018 Challenge @ ESWC2018
Holistic Benchmarking of Big Linked Data
 
Dynamic planning for link discovery - ESWC 2018
Dynamic planning for link discovery - ESWC 2018Dynamic planning for link discovery - ESWC 2018
Dynamic planning for link discovery - ESWC 2018
Holistic Benchmarking of Big Linked Data
 
Hobbit project overview presented at EBDVF 2017
Hobbit project overview presented at EBDVF 2017Hobbit project overview presented at EBDVF 2017
Hobbit project overview presented at EBDVF 2017
Holistic Benchmarking of Big Linked Data
 
Leopard ISWC Semantic Web Challenge 2017 (poster)
Leopard ISWC Semantic Web Challenge 2017 (poster)Leopard ISWC Semantic Web Challenge 2017 (poster)
Leopard ISWC Semantic Web Challenge 2017 (poster)
Holistic Benchmarking of Big Linked Data
 
Leopard ISWC Semantic Web Challenge 2017
Leopard ISWC Semantic Web Challenge 2017Leopard ISWC Semantic Web Challenge 2017
Leopard ISWC Semantic Web Challenge 2017
Holistic Benchmarking of Big Linked Data
 
Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK ISWC2017.
Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK  ISWC2017. Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK  ISWC2017.
Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK ISWC2017.
Holistic Benchmarking of Big Linked Data
 

More from Holistic Benchmarking of Big Linked Data (20)

EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...
EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...
EARL: Joint Entity and Relation Linking for Question Answering over Knowledge...
 
Benchmarking Big Linked Data: The case of the HOBBIT Project
Benchmarking Big Linked Data: The case of the HOBBIT ProjectBenchmarking Big Linked Data: The case of the HOBBIT Project
Benchmarking Big Linked Data: The case of the HOBBIT Project
 
Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...
Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...
Assessing Linked Data Versioning Systems: The Semantic Publishing Versioning ...
 
The DEBS Grand Challenge 2018
The DEBS Grand Challenge 2018The DEBS Grand Challenge 2018
The DEBS Grand Challenge 2018
 
Benchmarking of distributed linked data streaming systems
Benchmarking of distributed linked data streaming systemsBenchmarking of distributed linked data streaming systems
Benchmarking of distributed linked data streaming systems
 
SQCFramework: SPARQL Query Containment Benchmarks Generation Framework
SQCFramework: SPARQL Query Containment Benchmarks Generation FrameworkSQCFramework: SPARQL Query Containment Benchmarks Generation Framework
SQCFramework: SPARQL Query Containment Benchmarks Generation Framework
 
LargeRDFBench: A billion triples benchmark for SPARQL endpoint federation
LargeRDFBench: A billion triples benchmark for SPARQL endpoint federationLargeRDFBench: A billion triples benchmark for SPARQL endpoint federation
LargeRDFBench: A billion triples benchmark for SPARQL endpoint federation
 
The DEBS Grand Challenge 2017
The DEBS Grand Challenge 2017The DEBS Grand Challenge 2017
The DEBS Grand Challenge 2017
 
Scalable Link Discovery for Modern Data-Driven Applications (poster)
Scalable Link Discovery for Modern Data-Driven Applications (poster)Scalable Link Discovery for Modern Data-Driven Applications (poster)
Scalable Link Discovery for Modern Data-Driven Applications (poster)
 
Scalable Link Discovery for Modern Data-Driven Applications
Scalable Link Discovery for Modern Data-Driven ApplicationsScalable Link Discovery for Modern Data-Driven Applications
Scalable Link Discovery for Modern Data-Driven Applications
 
Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F...
 Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F... Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F...
Extending LargeRDFBench for Multi-Source Data at Scale for SPARQL Endpoint F...
 
SPgen: A Benchmark Generator for Spatial Link Discovery Tools
SPgen: A Benchmark Generator for Spatial Link Discovery ToolsSPgen: A Benchmark Generator for Spatial Link Discovery Tools
SPgen: A Benchmark Generator for Spatial Link Discovery Tools
 
Introducing the HOBBIT platform into the Ontology Alignment Evaluation Campaign
Introducing the HOBBIT platform into the Ontology Alignment Evaluation CampaignIntroducing the HOBBIT platform into the Ontology Alignment Evaluation Campaign
Introducing the HOBBIT platform into the Ontology Alignment Evaluation Campaign
 
OKE2018 Challenge @ ESWC2018
OKE2018 Challenge @ ESWC2018OKE2018 Challenge @ ESWC2018
OKE2018 Challenge @ ESWC2018
 
MOCHA 2018 Challenge @ ESWC2018
MOCHA 2018 Challenge @ ESWC2018MOCHA 2018 Challenge @ ESWC2018
MOCHA 2018 Challenge @ ESWC2018
 
Dynamic planning for link discovery - ESWC 2018
Dynamic planning for link discovery - ESWC 2018Dynamic planning for link discovery - ESWC 2018
Dynamic planning for link discovery - ESWC 2018
 
Hobbit project overview presented at EBDVF 2017
Hobbit project overview presented at EBDVF 2017Hobbit project overview presented at EBDVF 2017
Hobbit project overview presented at EBDVF 2017
 
Leopard ISWC Semantic Web Challenge 2017 (poster)
Leopard ISWC Semantic Web Challenge 2017 (poster)Leopard ISWC Semantic Web Challenge 2017 (poster)
Leopard ISWC Semantic Web Challenge 2017 (poster)
 
Leopard ISWC Semantic Web Challenge 2017
Leopard ISWC Semantic Web Challenge 2017Leopard ISWC Semantic Web Challenge 2017
Leopard ISWC Semantic Web Challenge 2017
 
Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK ISWC2017.
Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK  ISWC2017. Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK  ISWC2017.
Benchmarking Link Discovery Systems for Geo-Spatial Data - BLINK ISWC2017.
 

Recently uploaded

ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...
ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...
ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...
Advanced-Concepts-Team
 
Farming systems analysis: what have we learnt?.pptx
Farming systems analysis: what have we learnt?.pptxFarming systems analysis: what have we learnt?.pptx
Farming systems analysis: what have we learnt?.pptx
Frédéric Baudron
 
GBSN - Biochemistry (Unit 6) Chemistry of Proteins
GBSN - Biochemistry (Unit 6) Chemistry of ProteinsGBSN - Biochemistry (Unit 6) Chemistry of Proteins
GBSN - Biochemistry (Unit 6) Chemistry of Proteins
Areesha Ahmad
 
Pests of Storage_Identification_Dr.UPR.pdf
Pests of Storage_Identification_Dr.UPR.pdfPests of Storage_Identification_Dr.UPR.pdf
Pests of Storage_Identification_Dr.UPR.pdf
PirithiRaju
 
Randomised Optimisation Algorithms in DAPHNE
Randomised Optimisation Algorithms in DAPHNERandomised Optimisation Algorithms in DAPHNE
Randomised Optimisation Algorithms in DAPHNE
University of Maribor
 
EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...
EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...
EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...
Sérgio Sacani
 
waterlessdyeingtechnolgyusing carbon dioxide chemicalspdf
waterlessdyeingtechnolgyusing carbon dioxide chemicalspdfwaterlessdyeingtechnolgyusing carbon dioxide chemicalspdf
waterlessdyeingtechnolgyusing carbon dioxide chemicalspdf
LengamoLAppostilic
 
Modelo de slide quimica para powerpoint
Modelo  de slide quimica para powerpointModelo  de slide quimica para powerpoint
Modelo de slide quimica para powerpoint
Karen593256
 
aziz sancar nobel prize winner: from mardin to nobel
aziz sancar nobel prize winner: from mardin to nobelaziz sancar nobel prize winner: from mardin to nobel
aziz sancar nobel prize winner: from mardin to nobel
İsa Badur
 
快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样
快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样
快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样
hozt8xgk
 
(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...
(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...
(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...
Scintica Instrumentation
 
8.Isolation of pure cultures and preservation of cultures.pdf
8.Isolation of pure cultures and preservation of cultures.pdf8.Isolation of pure cultures and preservation of cultures.pdf
8.Isolation of pure cultures and preservation of cultures.pdf
by6843629
 
Micronuclei test.M.sc.zoology.fisheries.
Micronuclei test.M.sc.zoology.fisheries.Micronuclei test.M.sc.zoology.fisheries.
Micronuclei test.M.sc.zoology.fisheries.
Aditi Bajpai
 
Describing and Interpreting an Immersive Learning Case with the Immersion Cub...
Describing and Interpreting an Immersive Learning Case with the Immersion Cub...Describing and Interpreting an Immersive Learning Case with the Immersion Cub...
Describing and Interpreting an Immersive Learning Case with the Immersion Cub...
Leonel Morgado
 
Authoring a personal GPT for your research and practice: How we created the Q...
Authoring a personal GPT for your research and practice: How we created the Q...Authoring a personal GPT for your research and practice: How we created the Q...
Authoring a personal GPT for your research and practice: How we created the Q...
Leonel Morgado
 
Gadgets for management of stored product pests_Dr.UPR.pdf
Gadgets for management of stored product pests_Dr.UPR.pdfGadgets for management of stored product pests_Dr.UPR.pdf
Gadgets for management of stored product pests_Dr.UPR.pdf
PirithiRaju
 
Direct Seeded Rice - Climate Smart Agriculture
Direct Seeded Rice - Climate Smart AgricultureDirect Seeded Rice - Climate Smart Agriculture
Direct Seeded Rice - Climate Smart Agriculture
International Food Policy Research Institute- South Asia Office
 
Mending Clothing to Support Sustainable Fashion_CIMaR 2024.pdf
Mending Clothing to Support Sustainable Fashion_CIMaR 2024.pdfMending Clothing to Support Sustainable Fashion_CIMaR 2024.pdf
Mending Clothing to Support Sustainable Fashion_CIMaR 2024.pdf
Selcen Ozturkcan
 
Compexometric titration/Chelatorphy titration/chelating titration
Compexometric titration/Chelatorphy titration/chelating titrationCompexometric titration/Chelatorphy titration/chelating titration
Compexometric titration/Chelatorphy titration/chelating titration
Vandana Devesh Sharma
 
The debris of the ‘last major merger’ is dynamically young
The debris of the ‘last major merger’ is dynamically youngThe debris of the ‘last major merger’ is dynamically young
The debris of the ‘last major merger’ is dynamically young
Sérgio Sacani
 

Recently uploaded (20)

ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...
ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...
ESA/ACT Science Coffee: Diego Blas - Gravitational wave detection with orbita...
 
Farming systems analysis: what have we learnt?.pptx
Farming systems analysis: what have we learnt?.pptxFarming systems analysis: what have we learnt?.pptx
Farming systems analysis: what have we learnt?.pptx
 
GBSN - Biochemistry (Unit 6) Chemistry of Proteins
GBSN - Biochemistry (Unit 6) Chemistry of ProteinsGBSN - Biochemistry (Unit 6) Chemistry of Proteins
GBSN - Biochemistry (Unit 6) Chemistry of Proteins
 
Pests of Storage_Identification_Dr.UPR.pdf
Pests of Storage_Identification_Dr.UPR.pdfPests of Storage_Identification_Dr.UPR.pdf
Pests of Storage_Identification_Dr.UPR.pdf
 
Randomised Optimisation Algorithms in DAPHNE
Randomised Optimisation Algorithms in DAPHNERandomised Optimisation Algorithms in DAPHNE
Randomised Optimisation Algorithms in DAPHNE
 
EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...
EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...
EWOCS-I: The catalog of X-ray sources in Westerlund 1 from the Extended Weste...
 
waterlessdyeingtechnolgyusing carbon dioxide chemicalspdf
waterlessdyeingtechnolgyusing carbon dioxide chemicalspdfwaterlessdyeingtechnolgyusing carbon dioxide chemicalspdf
waterlessdyeingtechnolgyusing carbon dioxide chemicalspdf
 
Modelo de slide quimica para powerpoint
Modelo  de slide quimica para powerpointModelo  de slide quimica para powerpoint
Modelo de slide quimica para powerpoint
 
aziz sancar nobel prize winner: from mardin to nobel
aziz sancar nobel prize winner: from mardin to nobelaziz sancar nobel prize winner: from mardin to nobel
aziz sancar nobel prize winner: from mardin to nobel
 
快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样
快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样
快速办理(UAM毕业证书)马德里自治大学毕业证学位证一模一样
 
(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...
(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...
(June 12, 2024) Webinar: Development of PET theranostics targeting the molecu...
 
8.Isolation of pure cultures and preservation of cultures.pdf
8.Isolation of pure cultures and preservation of cultures.pdf8.Isolation of pure cultures and preservation of cultures.pdf
8.Isolation of pure cultures and preservation of cultures.pdf
 
Micronuclei test.M.sc.zoology.fisheries.
Micronuclei test.M.sc.zoology.fisheries.Micronuclei test.M.sc.zoology.fisheries.
Micronuclei test.M.sc.zoology.fisheries.
 
Describing and Interpreting an Immersive Learning Case with the Immersion Cub...
Describing and Interpreting an Immersive Learning Case with the Immersion Cub...Describing and Interpreting an Immersive Learning Case with the Immersion Cub...
Describing and Interpreting an Immersive Learning Case with the Immersion Cub...
 
Authoring a personal GPT for your research and practice: How we created the Q...
Authoring a personal GPT for your research and practice: How we created the Q...Authoring a personal GPT for your research and practice: How we created the Q...
Authoring a personal GPT for your research and practice: How we created the Q...
 
Gadgets for management of stored product pests_Dr.UPR.pdf
Gadgets for management of stored product pests_Dr.UPR.pdfGadgets for management of stored product pests_Dr.UPR.pdf
Gadgets for management of stored product pests_Dr.UPR.pdf
 
Direct Seeded Rice - Climate Smart Agriculture
Direct Seeded Rice - Climate Smart AgricultureDirect Seeded Rice - Climate Smart Agriculture
Direct Seeded Rice - Climate Smart Agriculture
 
Mending Clothing to Support Sustainable Fashion_CIMaR 2024.pdf
Mending Clothing to Support Sustainable Fashion_CIMaR 2024.pdfMending Clothing to Support Sustainable Fashion_CIMaR 2024.pdf
Mending Clothing to Support Sustainable Fashion_CIMaR 2024.pdf
 
Compexometric titration/Chelatorphy titration/chelating titration
Compexometric titration/Chelatorphy titration/chelating titrationCompexometric titration/Chelatorphy titration/chelating titration
Compexometric titration/Chelatorphy titration/chelating titration
 
The debris of the ‘last major merger’ is dynamically young
The debris of the ‘last major merger’ is dynamically youngThe debris of the ‘last major merger’ is dynamically young
The debris of the ‘last major merger’ is dynamically young
 

Link Discovery Tutorial Introduction

  • 1. Link Discovery Tutorial Introduction Axel-Cyrille Ngonga Ngomo(1) , Irini Fundulaki(2) , Mohamed Ahmed Sherif(1) (1) Institute for Applied Informatics, Germany (2) FORTH, Greece October 18th, 2016 Kobe, Japan Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 1 / 24
  • 2. Introduction Disclaimer No pursuit of completeness [Nen+15] Focus on Basic ideas and principles Principles Evaluation Open questions and challenges Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 2 / 24
  • 3. Introduction Disclaimer No pursuit of completeness [Nen+15] Focus on Basic ideas and principles Principles Evaluation Open questions and challenges Guidelines http://iswc2016ldtutorial.aksw.org/ Question? Just ask! Comment? Go for it! Be kind :) Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 2 / 24
  • 4. Let’s Go! Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 3 / 24
  • 5. Linked Data Principles Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 4 / 24
  • 6. Why Link Discovery? 1 Linked Open Data Cloud 130+ billion triples ≈ 0.5 billion links Mostly owl:sameAs 2 Decentralized dataset creation 3 Complex information needs ⇒ Need to consume data across knowledge bases 4 Links are central for Cross-ontology QA Data Integration Reasoning Federated Queries ... Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 5 / 24
  • 7. Cross-Ontology QA Example Give me the name and description of all drugs that cure their side-effect. [SNA13] 1 Need information from Drugbank (Drug description) Sider (Side-effects) DBpedia (Description) 2 Gathering information via SPARQL query using links Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 6 / 24
  • 8. Cross-Ontology QA Example Give me the name and description of all drugs that cure their side-effect. SELECT ?drug ?name ?desc WHERE { ?drug a drugbank:Drug . ?drug rdfs:label ?name . ?drug drugbank:cures ?disease . ?drug owl:sameAs ?drug2 . ?drug owl:sameAs ?drug3 . ?drug2 sider:hasSideEffect ?effect . ?effect owl:sameAs ?disease . ?drug3 dbo:hasWikiPage ?desc . } Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 7 / 24
  • 9. Cross-Ontology QA Example (DEQA) Give me flats near kindergartens in Kobe. [Leh+12] SELECT ?flat WHERE { ?flat a deqa:Flat . ?flat deqa:near ?school . ?school a lgdo:School . ?school lgdo:city lgdo:Kobe . } Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 8 / 24
  • 10. Data Integration Federated Queries on Patient Data [Kha+14] Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 9 / 24
  • 11. Federated Queries Example (FedBench CD2) Return Barack Obama’s party membership and news pages. [Sal+15] SELECT ?party ?page WHERE { dbr:Barack_Obama dbo:party ?party . ?x nytimes:topicPage ?page . ?x owl:sameAs dbr:Barack_Obama . } Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 10 / 24
  • 12. Definition Definition (Link Discovery, informal) Given two knowledge bases S and T, find links of type R between S and T Here, declarative link discovery Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 11 / 24
  • 13. Definition Definition (Link Discovery, informal) Given two knowledge bases S and T, find links of type R between S and T Here, declarative link discovery Definition (Declarative Link Discovery, formal, similarities) Given sets S and T of resources and relation R Find M = {(s, t) ∈ S × T : R(s, t)} Common approach: Find M = {(s, t) ∈ S × T : σ(s, t) ≥ θ} Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 11 / 24
  • 14. Definition Definition (Link Discovery, informal) Given two knowledge bases S and T, find links of type R between S and T Here, declarative link discovery Definition (Declarative Link Discovery, formal, similarities) Given sets S and T of resources and relation R Find M = {(s, t) ∈ S × T : R(s, t)} Common approach: Find M = {(s, t) ∈ S × T : σ(s, t) ≥ θ} Definition (Declarative Link Discovery, formal, distances) Given sets S and T of resources and relation R Find M = {(s, t) ∈ S × T : R(s, t)} Common approach: Find M = {(s, t) ∈ S × T : δ(s, t) ≤ τ} Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 11 / 24
  • 15. Definition Most common: R = owl:sameAs Also known as deduplication [Nen+15] Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 12 / 24
  • 16. Definition Goal: Address all possible relations R Declarative Link Discovery: Similarity/distance defined using property values (incl. property chains) Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 13 / 24
  • 17. Definition Goal: Address all possible relations R Declarative Link Discovery: Similarity/distance defined using property values (incl. property chains) Example: R = :sameModel :s770fm rdfs:label "S770FM"@en :s770fm rdf:type :SABER :s770fm :model :770 :s770fm :top :FlamedMaple :s770fm :producer :Ibanez :s770fm rdfs:label "S770BEM"@en :s770fm rdf:type :SABER :s770fm :model :770 :s770fm :top :BirdEyeMaple :s770fm :producer :Ibanez Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 13 / 24
  • 18. Why is it difficult? 1 Time complexity Large number of triples (e.g., LinkedTCGA with 20.4 billion triples [Sal+14]) Quadratic a-priori runtime 69 days for mapping cities from DBpedia to Geonames Solutions usually in-memory (insufficient heap space) Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 14 / 24
  • 19. Why is it difficult? 1 Time complexity Large number of triples (e.g., LinkedTCGA with 20.4 billion triples [Sal+14]) Quadratic a-priori runtime 69 days for mapping cities from DBpedia to Geonames Solutions usually in-memory (insufficient heap space) 2 Accuracy Combination of several attributes required for high precision Tedious discovery of most adequate mapping Dataset-dependent similarity functions Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 14 / 24
  • 20. Structure 1 Time complexity(≈ 60 min) LIMES algorithm [NA11] MultiBlock [IJB11] HR3 [Ngo12] AEGLE [GSN16] Summary and Challenges 2 Accuracy(≈ 30 min) RAVEN [Ngo+11] EAGLE [NL12] COALA [NLC13] Summary and Challenges 3 Benchmarking (≈ 30 min) Benchmarking [NGF16] Synthetic Benchmarks [Sav+15] Real Benchmarks [Mor+11] Summary and Challenges 4 Hands-On Session (≈ 45 min) Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 15 / 24
  • 21. That’s all Folks! Axel Ngonga AKSW Research Group Institute for Applied Informatics ngonga@informatik.uni-leipzig.de Irini Fundulaki ICS FORTH fundul@ics.forth.gr Mohamed Ahmed Sherif AKSW Research Group Institute for Applied Informatics sherif@informatik.uni-leipzig.de Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 16 / 24
  • 22. Acknowledgment This work was supported by grants from the EU H2020 Framework Programme provided for the project HOBBIT (GA no. 688227). Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 17 / 24
  • 23. References I Kleanthi Georgala, Mohamed Ahmed Sherif, and Axel-Cyrille Ngonga Ngomo. “An Efficient Approach for the Generation of Allen Relations”. In: ECAI 2016 - 22nd European Conference on Artificial Intelligence, 29 August-2 September 2016, The Hague, The Netherlands - Including Prestigious Applications of Artificial Intelligence (PAIS 2016). Ed. by Gal A. Kaminka et al. Vol. 285. Frontiers in Artificial Intelligence and Applications. IOS Press, 2016, pp. 948–956. isbn: 978-1-61499-671-2. doi: 10.3233/978-1-61499-672-9-948. url: http://dx.doi.org/10.3233/978-1-61499-672-9-948. Robert Isele, Anja Jentzsch, and Christian Bizer. “Efficient Multidimensional Blocking for Link Discovery without losing Recall”. In: Proceedings of the 14th International Workshop on the Web and Databases 2011, WebDB 2011, Athens, Greece, June 12, 2011. Ed. by Amélie Marian and Vasilis Vassalos. 2011. url: http://webdb2011.rutgers.edu/papers/Paper%2039/silk.pdf. Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 18 / 24
  • 24. References II Yasar Khan et al. “SAFE: Policy Aware SPARQL Query Federation Over RDF Data Cubes”. In: Proceedings of the 7th International Workshop on Semantic Web Applications and Tools for Life Sciences, Berlin, Germany, December 9-11, 2014. Ed. by Adrian Paschke et al. Vol. 1320. CEUR Workshop Proceedings. CEUR-WS.org, 2014. url: http://ceur-ws.org/Vol-1320/Preface_SWAT4LS2014.pdf. Jens Lehmann et al. “deqa: Deep Web Extraction for Question Answering”. In: The Semantic Web - ISWC 2012 - 11th International Semantic Web Conference, Boston, MA, USA, November 11-15, 2012, Proceedings, Part II. Ed. by Philippe Cudré-Mauroux et al. Vol. 7650. Lecture Notes in Computer Science. Springer, 2012, pp. 131–147. isbn: 978-3-642-35172-3. doi: 10.1007/978-3-642-35173-0_9. url: http://dx.doi.org/10.1007/978-3-642-35173-0_9. Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 19 / 24
  • 25. References III Mohamed Morsey et al. “DBpedia SPARQL Benchmark - Performance Assessment with Real Queries on Real Data”. In: The Semantic Web - ISWC 2011 - 10th International Semantic Web Conference, Bonn, Germany, October 23-27, 2011, Proceedings, Part I. Ed. by Lora Aroyo et al. Vol. 7031. Lecture Notes in Computer Science. Springer, 2011, pp. 454–469. isbn: 978-3-642-25072-9. doi: 10.1007/978-3-642-25073-6_29. url: http://dx.doi.org/10.1007/978-3-642-25073-6_29. Axel-Cyrille Ngonga Ngomo and Sören Auer. “LIMES - A Time-Efficient Approach for Large-Scale Link Discovery on the Web of Data”. In: IJCAI 2011, Proceedings of the 22nd International Joint Conference on Artificial Intelligence, Barcelona, Catalonia, Spain, July 16-22, 2011. Ed. by Toby Walsh. IJCAI/AAAI, 2011, pp. 2312–2317. isbn: 978-1-57735-516-8. doi: 10.5591/978-1-57735-516-8/IJCAI11-385. url: http: //dx.doi.org/10.5591/978-1-57735-516-8/IJCAI11-385. Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 20 / 24
  • 26. References IV Markus Nentwig et al. “A survey of current Link Discovery frameworks”. In: Semantic Web Preprint (2015), pp. 1–18. Axel-Cyrille Ngonga Ngomo, Alejandra Garcıa-Rojas, and Irini Fundulaki. “HOBBIT: Holistic Benchmarking of Big Linked Data”. In: ERCIM News 2016.105 (2016). url: http://ercim-news.ercim.eu/en105/r-i/hobbit-holistic- benchmarking-of-big-linked-data. Axel-Cyrille Ngonga Ngomo et al. “RAVEN - active learning of link specifications”. In: Proceedings of the 6th International Workshop on Ontology Matching, Bonn, Germany, October 24, 2011. Ed. by Pavel Shvaiko et al. Vol. 814. CEUR Workshop Proceedings. CEUR-WS.org, 2011. url: http://ceur-ws.org/Vol-814/om2011_Tpaper3.pdf. Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 21 / 24
  • 27. References V Axel-Cyrille Ngonga Ngomo. “Link Discovery with Guaranteed Reduction Ratio in Affine Spaces with Minkowski Measures”. In: The Semantic Web - ISWC 2012 - 11th International Semantic Web Conference, Boston, MA, USA, November 11-15, 2012, Proceedings, Part I. Ed. by Philippe Cudré-Mauroux et al. Vol. 7649. Lecture Notes in Computer Science. Springer, 2012, pp. 378–393. isbn: 978-3-642-35175-4. doi: 10.1007/978-3-642-35176-1_24. url: http://dx.doi.org/10.1007/978-3-642-35176-1_24. Axel-Cyrille Ngonga Ngomo and Klaus Lyko. “EAGLE: Efficient Active Learning of Link Specifications Using Genetic Programming”. In: The Semantic Web: Research and Applications - 9th Extended Semantic Web Conference, ESWC 2012, Heraklion, Crete, Greece, May 27-31, 2012. Proceedings. Ed. by Elena Simperl et al. Vol. 7295. Lecture Notes in Computer Science. Springer, 2012, pp. 149–163. isbn: 978-3-642-30283-1. doi: 10.1007/978-3-642-30284-8_17. url: http://dx.doi.org/10.1007/978-3-642-30284-8_17. Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 22 / 24
  • 28. References VI Axel-Cyrille Ngonga Ngomo, Klaus Lyko, and Victor Christen. “COALA - Correlation-Aware Active Learning of Link Specifications”. In: The Semantic Web: Semantics and Big Data, 10th International Conference, ESWC 2013, Montpellier, France, May 26-30, 2013. Proceedings. Ed. by Philipp Cimiano et al. Vol. 7882. Lecture Notes in Computer Science. Springer, 2013, pp. 442–456. isbn: 978-3-642-38287-1. doi: 10.1007/978-3-642-38288-8_30. url: http://dx.doi.org/10.1007/978-3-642-38288-8_30. Muhammad Saleem et al. “TopFed: TCGA Tailored Federated Query Processing and Linking to LOD”. In: J. Biomedical Semantics 5 (2014), p. 47. doi: 10.1186/2041-1480-5-47. url: http://dx.doi.org/10.1186/2041-1480-5-47. Muhammad Saleem et al. “A fine-grained evaluation of SPARQL endpoint federation systems”. In: Semantic Web 7.5 (2015), pp. 493–518. doi: 10.3233/SW-150186. url: http://dx.doi.org/10.3233/SW-150186. Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 23 / 24
  • 29. References VII Tzanina Saveta et al. “LANCE: Piercing to the Heart of Instance Matching Tools”. In: The Semantic Web - ISWC 2015 - 14th International Semantic Web Conference, Bethlehem, PA, USA, October 11-15, 2015, Proceedings, Part I. Ed. by Marcelo Arenas et al. Vol. 9366. Lecture Notes in Computer Science. Springer, 2015, pp. 375–391. isbn: 978-3-319-25006-9. doi: 10.1007/978-3-319-25007-6_22. url: http://dx.doi.org/10.1007/978-3-319-25007-6_22. Saeedeh Shekarpour, Axel-Cyrille Ngonga Ngomo, and Sören Auer. “Question answering on interlinked data”. In: 22nd International World Wide Web Conference, WWW ’13, Rio de Janeiro, Brazil, May 13-17, 2013. Ed. by Daniel Schwabe et al. International World Wide Web Conferences Steering Committee / ACM, 2013, pp. 1145–1156. isbn: 978-1-4503-2035-1. url: http://dl.acm.org/citation.cfm?id=2488488. Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial:Intro October 17, 2016 24 / 24