SlideShare a Scribd company logo
Link Discovery Tutorial
Part V: Hands-On
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: Hands-On October 17, 2016 1 / 19
Table of Contents
1 Test Dataset
2 Task I: Execute given Limes Configuration
3 Task II: Create your first Limes Configuration
4 Task III: Use Limes GUI
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 2 / 19
Table of Contents
1 Test Dataset
2 Task I: Execute given Limes Configuration
3 Task II: Create your first Limes Configuration
4 Task III: Use Limes GUI
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 3 / 19
Test Dataset
Semantic Web Dog Food Corpus
Data exposed: Metadata (papers, presentations, people) for several semantic web
related conferences and workshops, including the most recent ISWC, ESWC and
WWW events.
Dumps: http://data.semanticweb.org/dumps
Endpoint: http://data.semanticweb.org/sparql
DataHub: https://datahub.io/dataset/semantic-web-dog-food
Download:
http://iswc2016ldtutorial.aksw.org/tutorial-material/
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 4 / 19
Table of Contents
1 Test Dataset
2 Task I: Execute given Limes Configuration
3 Task II: Create your first Limes Configuration
4 Task III: Use Limes GUI
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 5 / 19
Task I: Deduplication
Execute the given Configuration File
Decentralized nature of LOD
Data contain duplicates
How to efficiently detect similar resources?
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 6 / 19
Task I: Deduplication
Execute the given Configuration File
Decentralized nature of LOD
Data contain duplicates
How to efficiently detect similar resources?
Task I
Find duplicate authors in Semantic Web Dog Food Dataset
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 6 / 19
Limes Configuration File
PREFIXes
<PREFIX >
<NAMESPACE >http :// www.w3.org /2000/01/ rdf -schema#</NAMESPACE >
<LABEL >rdfs </LABEL >
</PREFIX >
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 7 / 19
Limes Configuration File
SOURCE and TARGET datasets
<SOURCE >
<ID>SDF1 </ID>
<ENDPOINT >semanticDogFood .nt</ENDPOINT >
<VAR >?x</VAR>
<PAGESIZE >-1</PAGESIZE >
<RESTRICTION >?x a foaf:Person </ RESTRICTION >
<PROPERTY >rdfs:label </PROPERTY >
<TYPE >NT</TYPE >
</SOURCE >
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 8 / 19
Limes Configuration File
METRIC
<METRIC >Levenshtein(x.rdfs:label , y.rdfs:label)</METRIC >
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 9 / 19
Limes Configuration File
ACCEPTANCE and REVIEW
<ACCEPTANCE >
<THRESHOLD >0.9</THRESHOLD >
<FILE >similarAuthor .nt</FILE >
<RELATION >ov:similarTo </RELATION >
</ACCEPTANCE >
<REVIEW >
<THRESHOLD >0.5 </THRESHOLD >
<FILE >similarAuthor_review .nt</FILE >
<RELATION >owl:sameAs </RELATION >
</REVIEW >
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 10 / 19
Limes Configuration File
OUTPUT format
<OUTPUT >TTL</OUTPUT >
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 11 / 19
Task I
Run Limes
Run Limes
java -jar limes-core-1.0.0.jar task1.xml
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 12 / 19
Task I
Using Machine Learning
<MLALGORITHM >
<NAME >wombat simple </NAME >
<TYPE >unsupervised </TYPE >
</ MLALGORITHM >
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 13 / 19
Table of Contents
1 Test Dataset
2 Task I: Execute given Limes Configuration
3 Task II: Create your first Limes Configuration
4 Task III: Use Limes GUI
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 14 / 19
Task II
Find similar publications
1 Find publications
2 with similar keyword, but do not link any publication to itself
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 15 / 19
Task II
Find similar publications
1 Find publications
2 with similar keyword, but do not link any publication to itself
1. Find publications
?x a swrc:InProceedings
?y a swrc:InProceedings
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 15 / 19
Task II
Find similar publications
1 Find publications
2 with similar keyword, but do not link any publication to itself
1. Find publications
?x a swrc:InProceedings
?y a swrc:InProceedings
2. with similar keyword, but do not link any publication to itself
MINUS(jaccard(x.swrc:listKeyword , y.swrc:listKeyword)|0.3,
ExactMatch(x.swrc:listKeyword , y.swrc:listKeyword)|1.0)
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 15 / 19
Table of Contents
1 Test Dataset
2 Task I: Execute given Limes Configuration
3 Task II: Create your first Limes Configuration
4 Task III: Use Limes GUI
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 16 / 19
Task III
Use Limes GUI
Run Limes GUI
java -jar limes-core-1.0.0.jar -g
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 17 / 19
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: Hands-On October 17, 2016 18 / 19
References I
Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 19 / 19

More Related Content

PDF
Link Discovery Tutorial Part III: Benchmarking for Instance Matching Systems
PDF
Link Discovery Tutorial Part I: Efficiency
PDF
Link Discovery Tutorial Part II: Accuracy
PDF
Link Discovery Tutorial Introduction
PDF
How well does your Instance Matching system perform? Experimental evaluation ...
PDF
Framester: A Wide Coverage Linguistic Linked Data Hub
PDF
Can Deep Learning Techniques Improve Entity Linking?
PDF
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
Link Discovery Tutorial Part III: Benchmarking for Instance Matching Systems
Link Discovery Tutorial Part I: Efficiency
Link Discovery Tutorial Part II: Accuracy
Link Discovery Tutorial Introduction
How well does your Instance Matching system perform? Experimental evaluation ...
Framester: A Wide Coverage Linguistic Linked Data Hub
Can Deep Learning Techniques Improve Entity Linking?
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...

What's hot (20)

PDF
Enhancing Entity Linking by Combining NER Models
PDF
Can functional programming be liberated from static typing?
PDF
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
PDF
Applications of Word Vectors in Text Retrieval and Classification
PPTX
DS2014: Feature selection in hierarchical feature spaces
PPTX
Entity Linking in Queries: Tasks and Evaluation
PPTX
RDF2Vec: RDF Graph Embeddings for Data Mining
PDF
Entity Search: The Last Decade and the Next
PDF
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
PDF
Two graph data models : RDF and Property Graphs
PDF
Federation and Navigation in SPARQL 1.1
PPT
F# and the DLR
PDF
Data translation with SPARQL 1.1
PPTX
SPARQL Cheat Sheet
ODP
Graph Data -- RDF and Property Graphs
PPTX
Democratizing Big Semantic Data management
PDF
Personalised Search for the Social Semantic Web
PDF
Introduction to R for Data Science :: Session 1
PPTX
mchristy-Dh2014- emop-postOCR-triage
PDF
Introduction to R for Data Science :: Session 2
Enhancing Entity Linking by Combining NER Models
Can functional programming be liberated from static typing?
Learning Multilingual Semantic Parsers for Question Answering over Linked Dat...
Applications of Word Vectors in Text Retrieval and Classification
DS2014: Feature selection in hierarchical feature spaces
Entity Linking in Queries: Tasks and Evaluation
RDF2Vec: RDF Graph Embeddings for Data Mining
Entity Search: The Last Decade and the Next
ESWC 2013 Poster: Representing and Querying Negative Knowledge in RDF
Two graph data models : RDF and Property Graphs
Federation and Navigation in SPARQL 1.1
F# and the DLR
Data translation with SPARQL 1.1
SPARQL Cheat Sheet
Graph Data -- RDF and Property Graphs
Democratizing Big Semantic Data management
Personalised Search for the Social Semantic Web
Introduction to R for Data Science :: Session 1
mchristy-Dh2014- emop-postOCR-triage
Introduction to R for Data Science :: Session 2
Ad

Viewers also liked (7)

PDF
The Lazy Traveling Salesman Memory Management for Large-Scale Link Discovery
PDF
An RDF Dataset Generator for the Social Network Benchmark with Real-World Coh...
PDF
Versioning for Linked Data: Archiving Systems and Benchmarks
PPTX
SPARQL Querying Benchmarks ISWC2016
PPT
Open Gdansk - Analitics Conf - Gdansk
PDF
Hobbit presentation at Apache Big Data Europe 2016
The Lazy Traveling Salesman Memory Management for Large-Scale Link Discovery
An RDF Dataset Generator for the Social Network Benchmark with Real-World Coh...
Versioning for Linked Data: Archiving Systems and Benchmarks
SPARQL Querying Benchmarks ISWC2016
Open Gdansk - Analitics Conf - Gdansk
Hobbit presentation at Apache Big Data Europe 2016
Ad

Similar to Link Discovery Tutorial Part V: Hands-On (20)

PDF
II-SDV 2017: Custom Open Source Search Engine with Drupal 8 and Solr at Frenc...
PDF
Benchmarking Linked Data Introductory Remarks
PDF
Don't panic! - Postgres introduction
PDF
Semantics-aware Graph-based Recommender Systems exploiting Linked Open Data
PDF
QALD-7 Question Answering over Linked Data Challenge
PDF
Qald 7 at ESWC2017
PDF
Building a Web-Scale Dependency-Parsed Corpus from Common Crawl
PPTX
Corpora, tracked changes, and PDFs: some useful tips, at no cost!
PDF
Use of Open Data in Hong Kong
PDF
Apache Solr, il motore di ricerca enterprise open source
PDF
Use of Open Data in Hong Kong (LegCo 2014)
PDF
Filling the knowledge gap: New metrics for GLAMs and GLAM-Wiki cooperation
PPTX
Event-based MultiMedia Search and Retrieval for Question Answering
PPTX
Software Citation and a Proposal (NSF workshop at Havard Medical School)
PDF
Linked data based semantic annotation using Drupal and Apache Stanbol
PDF
Humans & Machines Together
PDF
Presentation 17 may keynote lara aroyo
PDF
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
PDF
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
PDF
Los Angeles R users group - Nov 17 2010 - Part 2
II-SDV 2017: Custom Open Source Search Engine with Drupal 8 and Solr at Frenc...
Benchmarking Linked Data Introductory Remarks
Don't panic! - Postgres introduction
Semantics-aware Graph-based Recommender Systems exploiting Linked Open Data
QALD-7 Question Answering over Linked Data Challenge
Qald 7 at ESWC2017
Building a Web-Scale Dependency-Parsed Corpus from Common Crawl
Corpora, tracked changes, and PDFs: some useful tips, at no cost!
Use of Open Data in Hong Kong
Apache Solr, il motore di ricerca enterprise open source
Use of Open Data in Hong Kong (LegCo 2014)
Filling the knowledge gap: New metrics for GLAMs and GLAM-Wiki cooperation
Event-based MultiMedia Search and Retrieval for Question Answering
Software Citation and a Proposal (NSF workshop at Havard Medical School)
Linked data based semantic annotation using Drupal and Apache Stanbol
Humans & Machines Together
Presentation 17 may keynote lara aroyo
4th Natural Language Interface over the Web of Data (NLIWoD) workshop and QAL...
Knowledge extraction in Web media: at the frontier of NLP, Machine Learning a...
Los Angeles R users group - Nov 17 2010 - Part 2

More from Holistic Benchmarking of Big Linked Data (20)

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

Recently uploaded (20)

PDF
Formation of Supersonic Turbulence in the Primordial Star-forming Cloud
DOCX
Q1_LE_Mathematics 8_Lesson 5_Week 5.docx
PPTX
Classification Systems_TAXONOMY_SCIENCE8.pptx
PPTX
famous lake in india and its disturibution and importance
PPTX
Protein & Amino Acid Structures Levels of protein structure (primary, seconda...
PPTX
Microbiology with diagram medical studies .pptx
PPTX
cpcsea ppt.pptxssssssssssssssjjdjdndndddd
PDF
Cosmic Outliers: Low-spin Halos Explain the Abundance, Compactness, and Redsh...
PDF
Placing the Near-Earth Object Impact Probability in Context
PPT
protein biochemistry.ppt for university classes
PPTX
Derivatives of integument scales, beaks, horns,.pptx
PPTX
2. Earth - The Living Planet Module 2ELS
PPTX
ANEMIA WITH LEUKOPENIA MDS 07_25.pptx htggtftgt fredrctvg
PPTX
Introduction to Cardiovascular system_structure and functions-1
PPTX
TOTAL hIP ARTHROPLASTY Presentation.pptx
PPTX
DRUG THERAPY FOR SHOCK gjjjgfhhhhh.pptx.
PPTX
Cell Membrane: Structure, Composition & Functions
PPTX
Vitamins & Minerals: Complete Guide to Functions, Food Sources, Deficiency Si...
PPT
The World of Physical Science, • Labs: Safety Simulation, Measurement Practice
PDF
ELS_Q1_Module-11_Formation-of-Rock-Layers_v2.pdf
Formation of Supersonic Turbulence in the Primordial Star-forming Cloud
Q1_LE_Mathematics 8_Lesson 5_Week 5.docx
Classification Systems_TAXONOMY_SCIENCE8.pptx
famous lake in india and its disturibution and importance
Protein & Amino Acid Structures Levels of protein structure (primary, seconda...
Microbiology with diagram medical studies .pptx
cpcsea ppt.pptxssssssssssssssjjdjdndndddd
Cosmic Outliers: Low-spin Halos Explain the Abundance, Compactness, and Redsh...
Placing the Near-Earth Object Impact Probability in Context
protein biochemistry.ppt for university classes
Derivatives of integument scales, beaks, horns,.pptx
2. Earth - The Living Planet Module 2ELS
ANEMIA WITH LEUKOPENIA MDS 07_25.pptx htggtftgt fredrctvg
Introduction to Cardiovascular system_structure and functions-1
TOTAL hIP ARTHROPLASTY Presentation.pptx
DRUG THERAPY FOR SHOCK gjjjgfhhhhh.pptx.
Cell Membrane: Structure, Composition & Functions
Vitamins & Minerals: Complete Guide to Functions, Food Sources, Deficiency Si...
The World of Physical Science, • Labs: Safety Simulation, Measurement Practice
ELS_Q1_Module-11_Formation-of-Rock-Layers_v2.pdf

Link Discovery Tutorial Part V: Hands-On

  • 1. Link Discovery Tutorial Part V: Hands-On 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: Hands-On October 17, 2016 1 / 19
  • 2. Table of Contents 1 Test Dataset 2 Task I: Execute given Limes Configuration 3 Task II: Create your first Limes Configuration 4 Task III: Use Limes GUI Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 2 / 19
  • 3. Table of Contents 1 Test Dataset 2 Task I: Execute given Limes Configuration 3 Task II: Create your first Limes Configuration 4 Task III: Use Limes GUI Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 3 / 19
  • 4. Test Dataset Semantic Web Dog Food Corpus Data exposed: Metadata (papers, presentations, people) for several semantic web related conferences and workshops, including the most recent ISWC, ESWC and WWW events. Dumps: http://data.semanticweb.org/dumps Endpoint: http://data.semanticweb.org/sparql DataHub: https://datahub.io/dataset/semantic-web-dog-food Download: http://iswc2016ldtutorial.aksw.org/tutorial-material/ Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 4 / 19
  • 5. Table of Contents 1 Test Dataset 2 Task I: Execute given Limes Configuration 3 Task II: Create your first Limes Configuration 4 Task III: Use Limes GUI Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 5 / 19
  • 6. Task I: Deduplication Execute the given Configuration File Decentralized nature of LOD Data contain duplicates How to efficiently detect similar resources? Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 6 / 19
  • 7. Task I: Deduplication Execute the given Configuration File Decentralized nature of LOD Data contain duplicates How to efficiently detect similar resources? Task I Find duplicate authors in Semantic Web Dog Food Dataset Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 6 / 19
  • 8. Limes Configuration File PREFIXes <PREFIX > <NAMESPACE >http :// www.w3.org /2000/01/ rdf -schema#</NAMESPACE > <LABEL >rdfs </LABEL > </PREFIX > Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 7 / 19
  • 9. Limes Configuration File SOURCE and TARGET datasets <SOURCE > <ID>SDF1 </ID> <ENDPOINT >semanticDogFood .nt</ENDPOINT > <VAR >?x</VAR> <PAGESIZE >-1</PAGESIZE > <RESTRICTION >?x a foaf:Person </ RESTRICTION > <PROPERTY >rdfs:label </PROPERTY > <TYPE >NT</TYPE > </SOURCE > Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 8 / 19
  • 10. Limes Configuration File METRIC <METRIC >Levenshtein(x.rdfs:label , y.rdfs:label)</METRIC > Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 9 / 19
  • 11. Limes Configuration File ACCEPTANCE and REVIEW <ACCEPTANCE > <THRESHOLD >0.9</THRESHOLD > <FILE >similarAuthor .nt</FILE > <RELATION >ov:similarTo </RELATION > </ACCEPTANCE > <REVIEW > <THRESHOLD >0.5 </THRESHOLD > <FILE >similarAuthor_review .nt</FILE > <RELATION >owl:sameAs </RELATION > </REVIEW > Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 10 / 19
  • 12. Limes Configuration File OUTPUT format <OUTPUT >TTL</OUTPUT > Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 11 / 19
  • 13. Task I Run Limes Run Limes java -jar limes-core-1.0.0.jar task1.xml Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 12 / 19
  • 14. Task I Using Machine Learning <MLALGORITHM > <NAME >wombat simple </NAME > <TYPE >unsupervised </TYPE > </ MLALGORITHM > Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 13 / 19
  • 15. Table of Contents 1 Test Dataset 2 Task I: Execute given Limes Configuration 3 Task II: Create your first Limes Configuration 4 Task III: Use Limes GUI Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 14 / 19
  • 16. Task II Find similar publications 1 Find publications 2 with similar keyword, but do not link any publication to itself Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 15 / 19
  • 17. Task II Find similar publications 1 Find publications 2 with similar keyword, but do not link any publication to itself 1. Find publications ?x a swrc:InProceedings ?y a swrc:InProceedings Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 15 / 19
  • 18. Task II Find similar publications 1 Find publications 2 with similar keyword, but do not link any publication to itself 1. Find publications ?x a swrc:InProceedings ?y a swrc:InProceedings 2. with similar keyword, but do not link any publication to itself MINUS(jaccard(x.swrc:listKeyword , y.swrc:listKeyword)|0.3, ExactMatch(x.swrc:listKeyword , y.swrc:listKeyword)|1.0) Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 15 / 19
  • 19. Table of Contents 1 Test Dataset 2 Task I: Execute given Limes Configuration 3 Task II: Create your first Limes Configuration 4 Task III: Use Limes GUI Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 16 / 19
  • 20. Task III Use Limes GUI Run Limes GUI java -jar limes-core-1.0.0.jar -g Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 17 / 19
  • 21. 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: Hands-On October 17, 2016 18 / 19
  • 22. References I Ngonga Ngomo et al. (InfAI & FORTH) LD Tutorial: Hands-On October 17, 2016 19 / 19