SlideShare une entreprise Scribd logo
1  sur  32
Télécharger pour lire hors ligne
Creating Knowledge out of Interlinked Data

LOD2 Webinar . 29.11.2011 . Page 1

http://lod2.eu
Creating Knowledge out of Interlinked Data

LOD2 is a large-scale integrating project co-funded by the European
Commission within the FP7 Information and Communication Technologies
Work Programme. This 4-year project comprises leading Linked Open
Data technology researchers, companies, and service providers. Coming
from across 12 countries the partners are coordinated by the Agile
Knowledge Engineering and Semantic Web Research Group at the
University of Leipzig, Germany.
LOD2 will integrate and syndicate Linked Data with existing large-scale
applications. The project shows the benefits in the scenarios of Media and
Publishing, Corporate Data intranets and eGovernment.

LOD2 Webinar . 29.11.2011 . Page 2

http://lod2.eu
http://lod2.eu
Creating Knowledge out of Interlinked Data

Once per month the LOD2 webinar series offer a free webinar about
tools and services along the Linked Open Data Life Cycle.
Stay with us and learn more about acquisition, editing, composing,
connected applications – and finally publishing Linked Open Data.

LOD2 Webinar . 29.11.2011 . Page 3

http://lod2.eu
http://lod2.eu
Creating Knowledge out of Interlinked Data

About me
Lorenz Bühmann
•
•
•

Member of Agile Knowledge Engineering and Semantic Web research group
(AKSW) since 2009
PhD Student at the University of Leipzig since 2011
Research Interests:
– Machine Learning in Semantic Web
– Ontology Debugging

LOD2 Webinar . 29.11.2011 . Page 4

http://lod2.eu
Creating Knowledge out of Interlinked Data

Agile Knowledge Engineering and Semantic Web Research Group
•
•
•

Founded in 2006
30+ Researchers
3 Sub groups

•

Goals
–
–
–

•

Contributing to the advancement of science in Semantic Web, Knowledge Engineering,
Software Engineering
Cost efficient, high-impact R&D, which proves usefulness at an early stage
Bridge the gap between research results and applications

Committed to Open Source, Open Access, and Open Knowledge movements

LOD2 Webinar . 29.11.2011 . Page 5

http://lod2.eu
Creating Knowledge out of Interlinked Data

Agile Knowledge Engineering and Semantic Web Research Group

EU Funded Projects:
– Linked Open Data 2 (LOD2)
– GeoKnow
– BIG
– BioASQ
– LinkingLOD
– Open Data Portal (ODP)

•

Further descriptions about
projects can be found here:
http://aksw.org/Projects

Past EU funded Projects
– LOD Around the Clock (LATC)
– Semantic Content Management Systems for Enterprise Knowledge
Management and News Mining (SCMS)
– OntoWiki - Semantic Collaboration for Knowledge Management, ELearning and E-Tourism
– ...

LOD2 Webinar . 29.11.2011 . Page 6

http://lod2.eu
Creating Knowledge out of Interlinked Data

Project Page: http://aksw.org/Projects/ORE
Source Code: https://github.com/AKSW/ORE
Demo Page: http://ore.aksw.org/
LOD2 Webinar . 29.11.2011 . Page 7

http://lod2.eu
Creating Knowledge out of Interlinked Data

Agenda
 Introduction and Motivation
 Linked Data life cycle and role of ORE within LOD2

 Knowledge Base Enrichment
 Knowledge Base Repair
 Demo
 Future Work

LOD2 Webinar . 28.11.2013 . Page 8

http://lod2.eu
Creating Knowledge out of Interlinked Data

Introduction

• the quantity and size of RDF knowledge bases has significantly
increased
• many of those knowledge bases lack sophisticated schemata and
instance data adhering to those schemata
• for content extracted from legacy sources, crowdsourced content, but
also manually curated content, it is challenging to ensure a coevolution of schemata and data, in particular for large knowledge
bases
• ontology modeling can be difficult and introduce unintended errors
LOD2 Webinar . 28.11.2013 . Page 9

http://lod2.eu
Creating Knowledge out of Interlinked Data

Linked Data Life Cycle

Manual
revision
authoring

Interlinking
Fusing

Quality
Analysis

Storage
Querying

Extraction

Search
Browsing
Exploration

LOD2 Webinar . 28.11.2013 . Page 10

Classification
Enrichment

Evolution
Repair

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Schema Enrichment

Goal:
Learn schema axioms in knowledge bases based on the instance data.
Apply methods of Inductive Logic Programming(ILP):
Positive examples + Negative examples + Background knowledge
 Hypothesis
ILP in Semantic Web:
 OWL Axiom

LOD2 Webinar . 28.11.2013 . Page 11

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Schema Enrichment
“How to describe a class MusicalArtist?”

Positive Examples:
Eric Clapton a Person; instrument Guitar; birthDate 1945-03-30.
Elton John a Person; instrument Piano; birthDate 1947-03-25.
Whitney Houston a Actor; instrument Vocals; birthDate 1963-08-09.

Background Knowledge:
Actor SubClassOf Person.

Learned Axiom:
MusicalArtist EquivalentTo Person and
birthDate some xsd:date and
instrument some Instrument

We can derive from
Tina Turner a Person; instrument Vocals; birthDate 1939-11-26.
Tina Turner a MusicalArtist.
LOD2 Webinar . 28.11.2013 . Page 12

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Schema Enrichment
“How to describe a property birthDate?”

Positive Examples:
Eric Clapton
birthDate 1945-03-30.
Elton John birthDate 1947-03-25.
Whitney Houston birthDate 1963-08-09.
Paracelsus birthDate 1493-11-11, 1493-12-17.

Learned Axiom:
Functional(birthDate) (3 out of 4 = 75%)

LOD2 Webinar . 28.11.2013 . Page 13

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Schema Enrichment

Why schema enrichment?
1. The axioms serve as documentation for the purpose and correct
usage of schema elements.

2. They improve the application debugging techniques.

3. Additional implicit information can be inferred.

LOD2 Webinar . 28.11.2013 . Page 14

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Schema Enrichment in ORE

LOD2 Webinar . 28.11.2013 . Page 17

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair

Goal:
Support in detection and repair of modelling errors and problems.

ORE in its current version supports the detection and repair of
• logical errors
• naming problems by integrating the PatOMat framework
• “missing data”

LOD2 Webinar . 28.11.2013 . Page 18

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair of Logical Errors
OWL based on Description Logics

Common errors:
• unsatisfiable classes
• inconsistent ontology

cannot have any individuals
everything can be derived

Both cases are quite easy for a reasoner to detect and for a tool to
display when working on OWL ontologies.
“Why is the class unsatisfiable?”
“Why is the knowledge base inconsistent?”

Explanations
LOD2 Webinar . 28.11.2013 . Page 19

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair of Logical Errors in ORE

LOD2 Webinar . 28.11.2013 . Page 20

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair of Naming Problems

• analysis of the naming of entities across ontological structures
can reveal
• naming issues
• underlying conceptualization issues
• natural language structure influences the structure of formal
knowledge bases and vice versa
• content expressed in formal representation languages, such as
the semantic web ones, should be accessible not only to logical
reasoning machines but also to humans and NLP procedures,
and thus resemble the natural language as much as possible

Naming in ontologies matters
LOD2 Webinar . 28.11.2013 . Page 21

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair of Naming Problems

LOD2 Webinar . 28.11.2013 . Page 22

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair of Naming Problems

Paper

Accepted

Rejected

Paper

AcceptedPaper
LOD2 Webinar . 28.11.2013 . Page 23

RejectedPaper
http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair of Naming Problems in ORE

LOD2 Webinar . 28.11.2013 . Page 24

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair by Validation of Constraints

Constraints = OWL Axioms
Example:
Person SubClassOf birthDate some xsd:date
“Every person has a birth date”

OWL comes with the Open World Assumption(OWA), thus missing
information is no error.
We assume a Closed World Assumption, such that we can reuse
OWL axioms as constraints.
Basic Idea: Rewrite OWL axiom into SPARQL query
LOD2 Webinar . 28.11.2013 . Page 25

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair by Validation of Constraints

Person SubClassOf birthDate some xsd:date

SELECT ?s WHERE {
?s a :Person.
FILTER NOT EXISTS { ?s :birthDate ?o.
FILTER(DATATYPE(?o)=xsd:date)
}
}

LOD2 Webinar . 28.11.2013 . Page 26

http://lod2.eu
Creating Knowledge out of Interlinked Data

Knowledge Base Repair by Validation of Constraints in ORE

LOD2 Webinar . 28.11.2013 . Page 27

http://lod2.eu
Creating Knowledge out of Interlinked Data

Demonstration
http://ore.aksw.org

LOD2 Webinar . 28.11.2013 . Page 28

http://lod2.eu
Creating Knowledge out of Interlinked Data

Future Work
 Enrichment
 batch mode
 Logical repair
 detection of unsatisfiable classes on SPARQL knowledge bases

 Constraint Validation
 add repair option
 SPIN support
 (better) explanation why resources violate a constraint + support
to add missing information

LOD2 Webinar . 28.11.2013 . Page 29

http://lod2.eu
Creating Knowledge out of Interlinked Data

Further Information
License: Apache License Version 2.0
Project page: http://aksw.org/Projects/ORE
Source code: https://github.com/AKSW/ORE
DL-Learner: http://dl-learner.org/
PatOMat: http://patomat.vse.cz/

LOD2 Webinar . 28.11.2013 . Page 30

http://lod2.eu
Creating Knowledge out of Interlinked Data

Contact Details

Lorenz Bühmann
Address Work: Augustusplatz 10, Room P618, 04109 Leipzig

Email: buehmann@informatik.uni-leipzig.de
Skype ID: lorenz.buehmann.uni

LOD2 Webinar . 28.11.2013 . Page 31

http://lod2.eu
Creating Knowledge out of Interlinked Data

Credits
Jingle
Coordination

R.E.M., Martin Kaltenböck, Florian Kondert
Thomas Thurner
Martin Kaltenböck
Moderation
Martin Kaltenböck
Presented by Lorenz Bühmann

LOD2 Webinar . 29.11.2011 . Page 32

http://lod2.eu
Creating Knowledge out of Interlinked Data

Hope you enjoyed staying with us – if you need more detailed
information, visit us at www.lod2.eu and let us know how we can
improve to meet your expectations!
Don’t forget to register for our next webinar

20.12. 2011 - Virtuoso (Open Link Software)
24.01. 2012 - OntoWiki (University of Leipzig, Germany)
Have a great day and don’t forget ...

LOD2 Webinar . 29.11.2011 . Page 33

http://lod2.eu
http://lod2.eu
Creating Knowledge out of Interlinked Data

LOD2 Webinar . 29.11.2011 . Page 34

http://lod2.eu
http://lod2.eu

Contenu connexe

Tendances

Soren Auer - LOD2 - creating knowledge out of Interlinked Data
Soren Auer - LOD2 - creating knowledge out of Interlinked DataSoren Auer - LOD2 - creating knowledge out of Interlinked Data
Soren Auer - LOD2 - creating knowledge out of Interlinked DataOpen City Foundation
 
Standardizing for Open Data
Standardizing for Open DataStandardizing for Open Data
Standardizing for Open DataIvan Herman
 
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked DataIntroduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked DataSören Auer
 
Industry Ontologies: Case Studies in Creating and Extending Schema.org
Industry Ontologies: Case Studies in Creating and Extending Schema.org Industry Ontologies: Case Studies in Creating and Extending Schema.org
Industry Ontologies: Case Studies in Creating and Extending Schema.org sopekmir
 
Setting up Dataverse repository for research data
Setting up Dataverse repository for research dataSetting up Dataverse repository for research data
Setting up Dataverse repository for research datavty
 
Semantic Web Landscape 2009
Semantic Web Landscape 2009Semantic Web Landscape 2009
Semantic Web Landscape 2009LeeFeigenbaum
 
GraphChain
GraphChainGraphChain
GraphChainsopekmir
 
Technical integration of data repositories status and challenges
Technical integration of data repositories status and challengesTechnical integration of data repositories status and challenges
Technical integration of data repositories status and challengesvty
 
External controlled vocabularies support in Dataverse
External controlled vocabularies support in DataverseExternal controlled vocabularies support in Dataverse
External controlled vocabularies support in Dataversevty
 
The world of Docker and Kubernetes
The world of Docker and Kubernetes The world of Docker and Kubernetes
The world of Docker and Kubernetes vty
 
Clariah Tech Day: Controlled Vocabularies and Ontologies in Dataverse
Clariah Tech Day: Controlled Vocabularies and Ontologies in DataverseClariah Tech Day: Controlled Vocabularies and Ontologies in Dataverse
Clariah Tech Day: Controlled Vocabularies and Ontologies in Dataversevty
 
Building COVID-19 Museum as Open Science Project
Building COVID-19 Museum as Open Science ProjectBuilding COVID-19 Museum as Open Science Project
Building COVID-19 Museum as Open Science Projectvty
 
Linguistic Linked Open Data, Challenges, Approaches, Future Work
Linguistic Linked Open Data, Challenges, Approaches, Future WorkLinguistic Linked Open Data, Challenges, Approaches, Future Work
Linguistic Linked Open Data, Challenges, Approaches, Future WorkSebastian Hellmann
 

Tendances (20)

Soren Auer - LOD2 - creating knowledge out of Interlinked Data
Soren Auer - LOD2 - creating knowledge out of Interlinked DataSoren Auer - LOD2 - creating knowledge out of Interlinked Data
Soren Auer - LOD2 - creating knowledge out of Interlinked Data
 
LOD2 Webinar Series: Zemanta / Open refine
LOD2 Webinar Series: Zemanta / Open refine LOD2 Webinar Series: Zemanta / Open refine
LOD2 Webinar Series: Zemanta / Open refine
 
Lod2
Lod2Lod2
Lod2
 
LOD2: State of Play WP5 - Linked Data Visualization, Browsing and Authoring
LOD2: State of Play WP5 - Linked Data Visualization, Browsing and AuthoringLOD2: State of Play WP5 - Linked Data Visualization, Browsing and Authoring
LOD2: State of Play WP5 - Linked Data Visualization, Browsing and Authoring
 
Standardizing for Open Data
Standardizing for Open DataStandardizing for Open Data
Standardizing for Open Data
 
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked DataIntroduction to the Data Web, DBpedia and the Life-cycle of Linked Data
Introduction to the Data Web, DBpedia and the Life-cycle of Linked Data
 
LOD2 webinar series: Virtuoso by OpenLink Software
LOD2 webinar series: Virtuoso by OpenLink SoftwareLOD2 webinar series: Virtuoso by OpenLink Software
LOD2 webinar series: Virtuoso by OpenLink Software
 
Free Webinar: LOD2 Stack - 1st release
Free Webinar: LOD2 Stack - 1st releaseFree Webinar: LOD2 Stack - 1st release
Free Webinar: LOD2 Stack - 1st release
 
Industry Ontologies: Case Studies in Creating and Extending Schema.org
Industry Ontologies: Case Studies in Creating and Extending Schema.org Industry Ontologies: Case Studies in Creating and Extending Schema.org
Industry Ontologies: Case Studies in Creating and Extending Schema.org
 
Setting up Dataverse repository for research data
Setting up Dataverse repository for research dataSetting up Dataverse repository for research data
Setting up Dataverse repository for research data
 
KEDL DBpedia 2019
KEDL DBpedia  2019KEDL DBpedia  2019
KEDL DBpedia 2019
 
Semantic Web Landscape 2009
Semantic Web Landscape 2009Semantic Web Landscape 2009
Semantic Web Landscape 2009
 
GraphChain
GraphChainGraphChain
GraphChain
 
LOD2: State of Play WP3A - Knowledge Base Creation, Enrichment and Repair
LOD2: State of Play WP3A - Knowledge Base Creation, Enrichment and RepairLOD2: State of Play WP3A - Knowledge Base Creation, Enrichment and Repair
LOD2: State of Play WP3A - Knowledge Base Creation, Enrichment and Repair
 
Technical integration of data repositories status and challenges
Technical integration of data repositories status and challengesTechnical integration of data repositories status and challenges
Technical integration of data repositories status and challenges
 
External controlled vocabularies support in Dataverse
External controlled vocabularies support in DataverseExternal controlled vocabularies support in Dataverse
External controlled vocabularies support in Dataverse
 
The world of Docker and Kubernetes
The world of Docker and Kubernetes The world of Docker and Kubernetes
The world of Docker and Kubernetes
 
Clariah Tech Day: Controlled Vocabularies and Ontologies in Dataverse
Clariah Tech Day: Controlled Vocabularies and Ontologies in DataverseClariah Tech Day: Controlled Vocabularies and Ontologies in Dataverse
Clariah Tech Day: Controlled Vocabularies and Ontologies in Dataverse
 
Building COVID-19 Museum as Open Science Project
Building COVID-19 Museum as Open Science ProjectBuilding COVID-19 Museum as Open Science Project
Building COVID-19 Museum as Open Science Project
 
Linguistic Linked Open Data, Challenges, Approaches, Future Work
Linguistic Linked Open Data, Challenges, Approaches, Future WorkLinguistic Linked Open Data, Challenges, Approaches, Future Work
Linguistic Linked Open Data, Challenges, Approaches, Future Work
 

Similaire à LOD2 Webinar Series Classification and Quality Analysis with DL Learner and ORE

Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data VisualizationLaura Po
 
Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021hala Skaf
 
Improving the Performance of the DL-Learner SPARQL Component for Semantic We...
Improving the Performance of the  DL-Learner SPARQL Component for Semantic We...Improving the Performance of the  DL-Learner SPARQL Component for Semantic We...
Improving the Performance of the DL-Learner SPARQL Component for Semantic We...Sebastian Hellmann
 
From Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked KnowledgeFrom Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked KnowledgeSören Auer
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikisSören Auer
 
2013 04-29 american art collaborative lod meeting - washington dc - web
2013 04-29 american art collaborative lod meeting - washington dc - web2013 04-29 american art collaborative lod meeting - washington dc - web
2013 04-29 american art collaborative lod meeting - washington dc - weblecmaj
 
Mon domingue key_introduction to semantic
Mon domingue key_introduction to semanticMon domingue key_introduction to semantic
Mon domingue key_introduction to semanticeswcsummerschool
 
I Linked Open Data nei Beni Culturali, alcuni progetti e casi di studio
I Linked Open Data nei Beni Culturali, alcuni progetti e casi di studioI Linked Open Data nei Beni Culturali, alcuni progetti e casi di studio
I Linked Open Data nei Beni Culturali, alcuni progetti e casi di studioCulturaItalia
 
Linked Data at the OU - the story so far
Linked Data at the OU - the story so farLinked Data at the OU - the story so far
Linked Data at the OU - the story so farEnrico Daga
 
20130805 Activating Linked Open Data in Libraries Archives and Museums
20130805 Activating Linked Open Data in Libraries Archives and Museums20130805 Activating Linked Open Data in Libraries Archives and Museums
20130805 Activating Linked Open Data in Libraries Archives and Museumsandrea huang
 

Similaire à LOD2 Webinar Series Classification and Quality Analysis with DL Learner and ORE (20)

Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data Visualization
 
LOD2 Webinar Series: LOD2 in information and publishing industry
LOD2 Webinar Series: LOD2 in information and publishing industryLOD2 Webinar Series: LOD2 in information and publishing industry
LOD2 Webinar Series: LOD2 in information and publishing industry
 
LOD2 Webinar Series: DBpedia Spotlight
LOD2 Webinar Series: DBpedia SpotlightLOD2 Webinar Series: DBpedia Spotlight
LOD2 Webinar Series: DBpedia Spotlight
 
Lod2
Lod2Lod2
Lod2
 
Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021Hala skafkeynote@conferencedata2021
Hala skafkeynote@conferencedata2021
 
Improving the Performance of the DL-Learner SPARQL Component for Semantic We...
Improving the Performance of the  DL-Learner SPARQL Component for Semantic We...Improving the Performance of the  DL-Learner SPARQL Component for Semantic We...
Improving the Performance of the DL-Learner SPARQL Component for Semantic We...
 
Cornell 2011 05-13
Cornell 2011 05-13Cornell 2011 05-13
Cornell 2011 05-13
 
Ciard Initiative and a Global Infrastructure for Linked Open Data
Ciard Initiative and a Global Infrastructure for Linked Open Data Ciard Initiative and a Global Infrastructure for Linked Open Data
Ciard Initiative and a Global Infrastructure for Linked Open Data
 
LOD2: State of Play WP1: Requirements, Design & LOD2 Stack Prototype
LOD2: State of Play WP1: Requirements, Design & LOD2 Stack PrototypeLOD2: State of Play WP1: Requirements, Design & LOD2 Stack Prototype
LOD2: State of Play WP1: Requirements, Design & LOD2 Stack Prototype
 
From Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked KnowledgeFrom Open Linked Data towards an Ecosystem of Interlinked Knowledge
From Open Linked Data towards an Ecosystem of Interlinked Knowledge
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
 
2013 04-29 american art collaborative lod meeting - washington dc - web
2013 04-29 american art collaborative lod meeting - washington dc - web2013 04-29 american art collaborative lod meeting - washington dc - web
2013 04-29 american art collaborative lod meeting - washington dc - web
 
Mon domingue key_introduction to semantic
Mon domingue key_introduction to semanticMon domingue key_introduction to semantic
Mon domingue key_introduction to semantic
 
The Future of LOD
The Future of LODThe Future of LOD
The Future of LOD
 
Linked Open Data stuff
Linked Open Data stuffLinked Open Data stuff
Linked Open Data stuff
 
I Linked Open Data nei Beni Culturali, alcuni progetti e casi di studio
I Linked Open Data nei Beni Culturali, alcuni progetti e casi di studioI Linked Open Data nei Beni Culturali, alcuni progetti e casi di studio
I Linked Open Data nei Beni Culturali, alcuni progetti e casi di studio
 
Linked Data at the OU - the story so far
Linked Data at the OU - the story so farLinked Data at the OU - the story so far
Linked Data at the OU - the story so far
 
LOD2: State of Play WP9: Use Case Open Government Data
LOD2: State of Play WP9: Use Case Open Government DataLOD2: State of Play WP9: Use Case Open Government Data
LOD2: State of Play WP9: Use Case Open Government Data
 
Linked Open Data and Ontotext Projects
Linked Open Data and Ontotext ProjectsLinked Open Data and Ontotext Projects
Linked Open Data and Ontotext Projects
 
20130805 Activating Linked Open Data in Libraries Archives and Museums
20130805 Activating Linked Open Data in Libraries Archives and Museums20130805 Activating Linked Open Data in Libraries Archives and Museums
20130805 Activating Linked Open Data in Libraries Archives and Museums
 

Plus de LOD2 Creating Knowledge out of Interlinked Data

Plus de LOD2 Creating Knowledge out of Interlinked Data (18)

LOD2 Webinar Series: Virtuoso 7
LOD2 Webinar Series: Virtuoso 7LOD2 Webinar Series: Virtuoso 7
LOD2 Webinar Series: Virtuoso 7
 
LOD2 Webinar Series: publicdata.eu and CKAN
LOD2 Webinar Series: publicdata.eu and CKANLOD2 Webinar Series: publicdata.eu and CKAN
LOD2 Webinar Series: publicdata.eu and CKAN
 
LOD2 General Presentation 2012
LOD2 General Presentation 2012LOD2 General Presentation 2012
LOD2 General Presentation 2012
 
LOD2 Webinar Series: PoolParty
LOD2 Webinar Series: PoolPartyLOD2 Webinar Series: PoolParty
LOD2 Webinar Series: PoolParty
 
LOD2 Webinar Series: LIMES
LOD2 Webinar Series: LIMESLOD2 Webinar Series: LIMES
LOD2 Webinar Series: LIMES
 
LOD2 Plenary Vienna 2012: WP12 - Project Management
LOD2 Plenary Vienna 2012: WP12 - Project ManagementLOD2 Plenary Vienna 2012: WP12 - Project Management
LOD2 Plenary Vienna 2012: WP12 - Project Management
 
LOD2 Plenary Vienna 2012: WP10 - Training, Dissemination, Community Building,...
LOD2 Plenary Vienna 2012: WP10 - Training, Dissemination, Community Building,...LOD2 Plenary Vienna 2012: WP10 - Training, Dissemination, Community Building,...
LOD2 Plenary Vienna 2012: WP10 - Training, Dissemination, Community Building,...
 
LOD2 Plenary Vienna 2012: WP9A - LOD for a Distributed Marketplace for Public...
LOD2 Plenary Vienna 2012: WP9A - LOD for a Distributed Marketplace for Public...LOD2 Plenary Vienna 2012: WP9A - LOD for a Distributed Marketplace for Public...
LOD2 Plenary Vienna 2012: WP9A - LOD for a Distributed Marketplace for Public...
 
LOD2 Plenary Vienna 2012: WP9 publicdata.eu – Publishing Governmental Informa...
LOD2 Plenary Vienna 2012: WP9 publicdata.eu – Publishing Governmental Informa...LOD2 Plenary Vienna 2012: WP9 publicdata.eu – Publishing Governmental Informa...
LOD2 Plenary Vienna 2012: WP9 publicdata.eu – Publishing Governmental Informa...
 
LOD2 Plenary Vienna 2012: WP8: Linked Open Data for Enterprise Data Web
LOD2 Plenary Vienna 2012: WP8: Linked Open Data for Enterprise Data WebLOD2 Plenary Vienna 2012: WP8: Linked Open Data for Enterprise Data Web
LOD2 Plenary Vienna 2012: WP8: Linked Open Data for Enterprise Data Web
 
LOD2 Plenary Vienna 2012: WP7 - Linked Open Data for Media and Publishing
LOD2 Plenary Vienna 2012: WP7 - Linked Open Data for Media and Publishing LOD2 Plenary Vienna 2012: WP7 - Linked Open Data for Media and Publishing
LOD2 Plenary Vienna 2012: WP7 - Linked Open Data for Media and Publishing
 
LOD2 Plenary Vienna 2012: WP6 - Interfaces, Integration & LOD2 Stack
LOD2 Plenary Vienna 2012: WP6 - Interfaces, Integration & LOD2 StackLOD2 Plenary Vienna 2012: WP6 - Interfaces, Integration & LOD2 Stack
LOD2 Plenary Vienna 2012: WP6 - Interfaces, Integration & LOD2 Stack
 
LOD2 Plenary Vienna 2012: WP5 - Linked Data Browsing, Visualization and Autho...
LOD2 Plenary Vienna 2012: WP5 - Linked Data Browsing, Visualization and Autho...LOD2 Plenary Vienna 2012: WP5 - Linked Data Browsing, Visualization and Autho...
LOD2 Plenary Vienna 2012: WP5 - Linked Data Browsing, Visualization and Autho...
 
LOD2 Plenary Vienna 2012: WP4 - Reuse, Interlinking and Knowledge Fusion
LOD2 Plenary Vienna 2012: WP4 - Reuse, Interlinking and Knowledge FusionLOD2 Plenary Vienna 2012: WP4 - Reuse, Interlinking and Knowledge Fusion
LOD2 Plenary Vienna 2012: WP4 - Reuse, Interlinking and Knowledge Fusion
 
LOD2 Plenary Vienna 2012: WP2 - Storing and Querying Very Large Knowledge Bases
LOD2 Plenary Vienna 2012: WP2 - Storing and Querying Very Large Knowledge BasesLOD2 Plenary Vienna 2012: WP2 - Storing and Querying Very Large Knowledge Bases
LOD2 Plenary Vienna 2012: WP2 - Storing and Querying Very Large Knowledge Bases
 
LOD2 Webinar Series: SILK
LOD2 Webinar Series: SILKLOD2 Webinar Series: SILK
LOD2 Webinar Series: SILK
 
LOD2 Webinar Series: OntoWiki
LOD2 Webinar Series: OntoWikiLOD2 Webinar Series: OntoWiki
LOD2 Webinar Series: OntoWiki
 
LOD2 Plenary Meeting 2011: Institute Mihajlo Pupin – Partner Introduction
LOD2 Plenary Meeting 2011: Institute Mihajlo Pupin – Partner IntroductionLOD2 Plenary Meeting 2011: Institute Mihajlo Pupin – Partner Introduction
LOD2 Plenary Meeting 2011: Institute Mihajlo Pupin – Partner Introduction
 

Dernier

How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 

Dernier (20)

How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 

LOD2 Webinar Series Classification and Quality Analysis with DL Learner and ORE

  • 1. Creating Knowledge out of Interlinked Data LOD2 Webinar . 29.11.2011 . Page 1 http://lod2.eu
  • 2. Creating Knowledge out of Interlinked Data LOD2 is a large-scale integrating project co-funded by the European Commission within the FP7 Information and Communication Technologies Work Programme. This 4-year project comprises leading Linked Open Data technology researchers, companies, and service providers. Coming from across 12 countries the partners are coordinated by the Agile Knowledge Engineering and Semantic Web Research Group at the University of Leipzig, Germany. LOD2 will integrate and syndicate Linked Data with existing large-scale applications. The project shows the benefits in the scenarios of Media and Publishing, Corporate Data intranets and eGovernment. LOD2 Webinar . 29.11.2011 . Page 2 http://lod2.eu http://lod2.eu
  • 3. Creating Knowledge out of Interlinked Data Once per month the LOD2 webinar series offer a free webinar about tools and services along the Linked Open Data Life Cycle. Stay with us and learn more about acquisition, editing, composing, connected applications – and finally publishing Linked Open Data. LOD2 Webinar . 29.11.2011 . Page 3 http://lod2.eu http://lod2.eu
  • 4. Creating Knowledge out of Interlinked Data About me Lorenz Bühmann • • • Member of Agile Knowledge Engineering and Semantic Web research group (AKSW) since 2009 PhD Student at the University of Leipzig since 2011 Research Interests: – Machine Learning in Semantic Web – Ontology Debugging LOD2 Webinar . 29.11.2011 . Page 4 http://lod2.eu
  • 5. Creating Knowledge out of Interlinked Data Agile Knowledge Engineering and Semantic Web Research Group • • • Founded in 2006 30+ Researchers 3 Sub groups • Goals – – – • Contributing to the advancement of science in Semantic Web, Knowledge Engineering, Software Engineering Cost efficient, high-impact R&D, which proves usefulness at an early stage Bridge the gap between research results and applications Committed to Open Source, Open Access, and Open Knowledge movements LOD2 Webinar . 29.11.2011 . Page 5 http://lod2.eu
  • 6. Creating Knowledge out of Interlinked Data Agile Knowledge Engineering and Semantic Web Research Group EU Funded Projects: – Linked Open Data 2 (LOD2) – GeoKnow – BIG – BioASQ – LinkingLOD – Open Data Portal (ODP) • Further descriptions about projects can be found here: http://aksw.org/Projects Past EU funded Projects – LOD Around the Clock (LATC) – Semantic Content Management Systems for Enterprise Knowledge Management and News Mining (SCMS) – OntoWiki - Semantic Collaboration for Knowledge Management, ELearning and E-Tourism – ... LOD2 Webinar . 29.11.2011 . Page 6 http://lod2.eu
  • 7. Creating Knowledge out of Interlinked Data Project Page: http://aksw.org/Projects/ORE Source Code: https://github.com/AKSW/ORE Demo Page: http://ore.aksw.org/ LOD2 Webinar . 29.11.2011 . Page 7 http://lod2.eu
  • 8. Creating Knowledge out of Interlinked Data Agenda  Introduction and Motivation  Linked Data life cycle and role of ORE within LOD2  Knowledge Base Enrichment  Knowledge Base Repair  Demo  Future Work LOD2 Webinar . 28.11.2013 . Page 8 http://lod2.eu
  • 9. Creating Knowledge out of Interlinked Data Introduction • the quantity and size of RDF knowledge bases has significantly increased • many of those knowledge bases lack sophisticated schemata and instance data adhering to those schemata • for content extracted from legacy sources, crowdsourced content, but also manually curated content, it is challenging to ensure a coevolution of schemata and data, in particular for large knowledge bases • ontology modeling can be difficult and introduce unintended errors LOD2 Webinar . 28.11.2013 . Page 9 http://lod2.eu
  • 10. Creating Knowledge out of Interlinked Data Linked Data Life Cycle Manual revision authoring Interlinking Fusing Quality Analysis Storage Querying Extraction Search Browsing Exploration LOD2 Webinar . 28.11.2013 . Page 10 Classification Enrichment Evolution Repair http://lod2.eu
  • 11. Creating Knowledge out of Interlinked Data Knowledge Base Schema Enrichment Goal: Learn schema axioms in knowledge bases based on the instance data. Apply methods of Inductive Logic Programming(ILP): Positive examples + Negative examples + Background knowledge  Hypothesis ILP in Semantic Web:  OWL Axiom LOD2 Webinar . 28.11.2013 . Page 11 http://lod2.eu
  • 12. Creating Knowledge out of Interlinked Data Knowledge Base Schema Enrichment “How to describe a class MusicalArtist?” Positive Examples: Eric Clapton a Person; instrument Guitar; birthDate 1945-03-30. Elton John a Person; instrument Piano; birthDate 1947-03-25. Whitney Houston a Actor; instrument Vocals; birthDate 1963-08-09. Background Knowledge: Actor SubClassOf Person. Learned Axiom: MusicalArtist EquivalentTo Person and birthDate some xsd:date and instrument some Instrument We can derive from Tina Turner a Person; instrument Vocals; birthDate 1939-11-26. Tina Turner a MusicalArtist. LOD2 Webinar . 28.11.2013 . Page 12 http://lod2.eu
  • 13. Creating Knowledge out of Interlinked Data Knowledge Base Schema Enrichment “How to describe a property birthDate?” Positive Examples: Eric Clapton birthDate 1945-03-30. Elton John birthDate 1947-03-25. Whitney Houston birthDate 1963-08-09. Paracelsus birthDate 1493-11-11, 1493-12-17. Learned Axiom: Functional(birthDate) (3 out of 4 = 75%) LOD2 Webinar . 28.11.2013 . Page 13 http://lod2.eu
  • 14. Creating Knowledge out of Interlinked Data Knowledge Base Schema Enrichment Why schema enrichment? 1. The axioms serve as documentation for the purpose and correct usage of schema elements. 2. They improve the application debugging techniques. 3. Additional implicit information can be inferred. LOD2 Webinar . 28.11.2013 . Page 14 http://lod2.eu
  • 15. Creating Knowledge out of Interlinked Data Knowledge Base Schema Enrichment in ORE LOD2 Webinar . 28.11.2013 . Page 17 http://lod2.eu
  • 16. Creating Knowledge out of Interlinked Data Knowledge Base Repair Goal: Support in detection and repair of modelling errors and problems. ORE in its current version supports the detection and repair of • logical errors • naming problems by integrating the PatOMat framework • “missing data” LOD2 Webinar . 28.11.2013 . Page 18 http://lod2.eu
  • 17. Creating Knowledge out of Interlinked Data Knowledge Base Repair of Logical Errors OWL based on Description Logics Common errors: • unsatisfiable classes • inconsistent ontology cannot have any individuals everything can be derived Both cases are quite easy for a reasoner to detect and for a tool to display when working on OWL ontologies. “Why is the class unsatisfiable?” “Why is the knowledge base inconsistent?” Explanations LOD2 Webinar . 28.11.2013 . Page 19 http://lod2.eu
  • 18. Creating Knowledge out of Interlinked Data Knowledge Base Repair of Logical Errors in ORE LOD2 Webinar . 28.11.2013 . Page 20 http://lod2.eu
  • 19. Creating Knowledge out of Interlinked Data Knowledge Base Repair of Naming Problems • analysis of the naming of entities across ontological structures can reveal • naming issues • underlying conceptualization issues • natural language structure influences the structure of formal knowledge bases and vice versa • content expressed in formal representation languages, such as the semantic web ones, should be accessible not only to logical reasoning machines but also to humans and NLP procedures, and thus resemble the natural language as much as possible Naming in ontologies matters LOD2 Webinar . 28.11.2013 . Page 21 http://lod2.eu
  • 20. Creating Knowledge out of Interlinked Data Knowledge Base Repair of Naming Problems LOD2 Webinar . 28.11.2013 . Page 22 http://lod2.eu
  • 21. Creating Knowledge out of Interlinked Data Knowledge Base Repair of Naming Problems Paper Accepted Rejected Paper AcceptedPaper LOD2 Webinar . 28.11.2013 . Page 23 RejectedPaper http://lod2.eu
  • 22. Creating Knowledge out of Interlinked Data Knowledge Base Repair of Naming Problems in ORE LOD2 Webinar . 28.11.2013 . Page 24 http://lod2.eu
  • 23. Creating Knowledge out of Interlinked Data Knowledge Base Repair by Validation of Constraints Constraints = OWL Axioms Example: Person SubClassOf birthDate some xsd:date “Every person has a birth date” OWL comes with the Open World Assumption(OWA), thus missing information is no error. We assume a Closed World Assumption, such that we can reuse OWL axioms as constraints. Basic Idea: Rewrite OWL axiom into SPARQL query LOD2 Webinar . 28.11.2013 . Page 25 http://lod2.eu
  • 24. Creating Knowledge out of Interlinked Data Knowledge Base Repair by Validation of Constraints Person SubClassOf birthDate some xsd:date SELECT ?s WHERE { ?s a :Person. FILTER NOT EXISTS { ?s :birthDate ?o. FILTER(DATATYPE(?o)=xsd:date) } } LOD2 Webinar . 28.11.2013 . Page 26 http://lod2.eu
  • 25. Creating Knowledge out of Interlinked Data Knowledge Base Repair by Validation of Constraints in ORE LOD2 Webinar . 28.11.2013 . Page 27 http://lod2.eu
  • 26. Creating Knowledge out of Interlinked Data Demonstration http://ore.aksw.org LOD2 Webinar . 28.11.2013 . Page 28 http://lod2.eu
  • 27. Creating Knowledge out of Interlinked Data Future Work  Enrichment  batch mode  Logical repair  detection of unsatisfiable classes on SPARQL knowledge bases  Constraint Validation  add repair option  SPIN support  (better) explanation why resources violate a constraint + support to add missing information LOD2 Webinar . 28.11.2013 . Page 29 http://lod2.eu
  • 28. Creating Knowledge out of Interlinked Data Further Information License: Apache License Version 2.0 Project page: http://aksw.org/Projects/ORE Source code: https://github.com/AKSW/ORE DL-Learner: http://dl-learner.org/ PatOMat: http://patomat.vse.cz/ LOD2 Webinar . 28.11.2013 . Page 30 http://lod2.eu
  • 29. Creating Knowledge out of Interlinked Data Contact Details Lorenz Bühmann Address Work: Augustusplatz 10, Room P618, 04109 Leipzig Email: buehmann@informatik.uni-leipzig.de Skype ID: lorenz.buehmann.uni LOD2 Webinar . 28.11.2013 . Page 31 http://lod2.eu
  • 30. Creating Knowledge out of Interlinked Data Credits Jingle Coordination R.E.M., Martin Kaltenböck, Florian Kondert Thomas Thurner Martin Kaltenböck Moderation Martin Kaltenböck Presented by Lorenz Bühmann LOD2 Webinar . 29.11.2011 . Page 32 http://lod2.eu
  • 31. Creating Knowledge out of Interlinked Data Hope you enjoyed staying with us – if you need more detailed information, visit us at www.lod2.eu and let us know how we can improve to meet your expectations! Don’t forget to register for our next webinar 20.12. 2011 - Virtuoso (Open Link Software) 24.01. 2012 - OntoWiki (University of Leipzig, Germany) Have a great day and don’t forget ... LOD2 Webinar . 29.11.2011 . Page 33 http://lod2.eu http://lod2.eu
  • 32. Creating Knowledge out of Interlinked Data LOD2 Webinar . 29.11.2011 . Page 34 http://lod2.eu http://lod2.eu