SlideShare une entreprise Scribd logo
1  sur  20
Creating Knowledge out of Interlinked Data

LOD2 Webinar . 29.11.2011 . Page 1

http://lod2.eu
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.

http://lod2.eu
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.

http://lod2.eu
Federated Knowledge Extraction Framework
Axel Ngonga
Creating Know le dge
out of Interlinked Data

Motivation

• Steady growth but incomplete
• Structured data
•

Triplify, Sparqlify

• Semi-structured data
•

DBpedia

• Unstructured data
•
•

Make up 80% of the Web
Diverse solutions, yet low F-score even on non-noisy
data

• Solution: FOX
Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 5

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Insight

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 6

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Insight

• Diversity of solutions to one problem
•

NER, KE, RE

• Each solution has its strengths and weakness

• Apply ensemble learning to
•

Combine the tools at hand

•

Compute better results

•

In our case, decision trees (v2)

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 7

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Architecture

NER
Learning
KE
Orchestration
RE
Prediction
NED

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 8

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Named Entity Disambiguation

• Use AGDISTIS Framework
http://aksw.org/projects/AGDISTIS

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 9

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Implementation

• N3

• Input

• …

• Text
• HTML

• Execution

• URL

• Single tools (light)
• FOX Full

• Output
• JSON-LD

• Access

• RDF/XML

• REST

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 10

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Evaluation (FOX)

MUC-7 Corpus
• 6013 locations
• 11093 organizations
• 5882 persons

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 11

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Evaluation (AGDISTIS)

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 12

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Demo

http://fox.aksw.org
Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 13

http://lod2.eu
Creating Know le dge
out of Interlinked Data

FOX API Parameters

input : text or an url
type : { text | url }
task : { NER }

output : { JSONLD | N3 | N-TRIPLE | RDF/{ JSON |
XML | XML-ABBREV} | TURTLE }
returnHtml : { true | false }

foxlight : an implemented INER class name (e.g.
`org.aksw.fox.nertools.NEROpenNLP`) or `OFF`.
Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 14

http://lod2.eu
Creating Know le dge
out of Interlinked Data

FOX API Parameters

curl -d type=text -d task=NER -d output=JSONLD --dataurlencode "input=The foundation of the University of
Leipzig in 1409 initiated the city's development into a
centre of German law and the publishing industry, and
towards being a location of the Reichsgericht (High
Court), and the German National Library (founded in
1912). The philosopher and mathematician Gottfried
Leibniz was born in Leipzig in 1646, and attended the
university from 1661-1666." -H "Content-Type:
application/x-www-form-urlencoded" <SERVICE_URI>
Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 15

http://lod2.eu
Creating Know le dge
out of Interlinked Data

FOX Response

{ "@id" : "_:t1", "http://www.w3.org/2000/10/annotation-ns#body" : [ { "@value" :
"University of Leipzig" } ], "http://ns.aksw.org/scms/source" : [ { "@id" :
"http://ns.aksw.org/scms/tools/fox" } ], "http://ns.aksw.org/scms/means" : [ { "@id"
: "http://dbpedia.org/resource/Leipzig_University" }
], "http://ns.aksw.org/scms/endIndex" : [ { "@value" : "43", "@type" :
"http://www.w3.org/2001/XMLSchema#int" } ], "http://ns.aksw.org/scms/beginIndex"
: [ { "@value" : "22", "@type" : "http://www.w3.org/2001/XMLSchema#int" } ], "@type" :
[
"http://ns.aksw.org/scms/annotations/ORGANIZATION", "http://www.w3.org/2000/

10/annotation-ns#Annotation" ] }

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 16

http://lod2.eu
Creating Know le dge
out of Interlinked Data

FOX Response

[
a scmsann:ORGANIZATION , ann:Annotation ;
scms:beginIndex "22"^^xsd:int ;
scms:endIndex "43"^^xsd:int ;
scms:means <http://dbpedia.org/resource/Leipzig_University> ;
scms:source <http://ns.aksw.org/scms/tools/fox> ;
ann:body "University of Leipzig"^^xsd:string
].

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 17

http://lod2.eu
Creating Know le dge
out of Interlinked Data

AGDISTIS API

curl --data-urlencode "text='The <entity>University of
Leipzig</entity> was visited by <entity>Barack
Obama</entity>.'" -d type='agdistis' <SERVICEURL>
[{"namedEntity":"Barack
Obama","start":42, "disambiguatedURL":"http://dbpedia
.org/resource/Barack_Obama","offset":12},{"namedEnti
ty":"University of
Leipzig","start":5,"disambiguatedURL":"http://dbpedia.
org/resource/Leipzig_University","offset":21}]
Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 18

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Conclusion and Future Work

•

> 90% F-score

•

Can be extended to cover other KE tasks (RE, POS, …)

•

Easy integration into semantic applications

•

More info at http://fox.aksw.org and
http://aksw.org/projects/agdistis

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 19

http://lod2.eu
Creating Know le dge
out of Interlinked Data

Thank you for your attention!
Axel Ngonga
http://aksw.org/AxelNgonga | http://fox.aksw.org | http://lod2.org
ngonga@informatik.uni-leipzig.de

Axel Ngonga – Federated Knowledge Extraction

30.01.2014

Page 20

http://lod2.eu

Contenu connexe

Tendances

DBpedia Tutorial - Feb 2015, Dublin
DBpedia Tutorial - Feb 2015, DublinDBpedia Tutorial - Feb 2015, Dublin
DBpedia Tutorial - Feb 2015, Dublinm_ackermann
 
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
 
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
 
Linked Data for Abbreviations and Segmentation
Linked Data for Abbreviations and SegmentationLinked Data for Abbreviations and Segmentation
Linked Data for Abbreviations and SegmentationSebastian Hellmann
 
Standardizing for Open Data
Standardizing for Open DataStandardizing for Open Data
Standardizing for Open DataIvan Herman
 
Automated interpretability of linked data ontologies: an evaluation within th...
Automated interpretability of linked data ontologies: an evaluation within th...Automated interpretability of linked data ontologies: an evaluation within th...
Automated interpretability of linked data ontologies: an evaluation within th...Nuno Freire
 
An introduction to Linked (Open) Data
An introduction to Linked (Open) DataAn introduction to Linked (Open) Data
An introduction to Linked (Open) DataAli Khalili
 
Building Linked Data Applications
Building Linked Data ApplicationsBuilding Linked Data Applications
Building Linked Data ApplicationsEUCLID project
 
What can linked data do for digital libraries
What can linked data do for digital librariesWhat can linked data do for digital libraries
What can linked data do for digital librariesSören Auer
 
Big Linked Data - Creating Training Curricula
Big Linked Data - Creating Training CurriculaBig Linked Data - Creating Training Curricula
Big Linked Data - Creating Training CurriculaEUCLID project
 
Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)
Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)
Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)Sergio Fernández
 
Structured Data for the Financial Industry
Structured Data for the Financial Industry Structured Data for the Financial Industry
Structured Data for the Financial Industry sopekmir
 
Semantic Information Management using PoolParty 4
Semantic Information Management using PoolParty 4Semantic Information Management using PoolParty 4
Semantic Information Management using PoolParty 4Martin Kaltenböck
 
GraphChain
GraphChainGraphChain
GraphChainsopekmir
 
Interaction with Linked Data
Interaction with Linked DataInteraction with Linked Data
Interaction with Linked DataEUCLID project
 
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
 

Tendances (20)

DBpedia Tutorial - Feb 2015, Dublin
DBpedia Tutorial - Feb 2015, DublinDBpedia Tutorial - Feb 2015, Dublin
DBpedia Tutorial - Feb 2015, Dublin
 
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
 
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
 
Linked Data for Abbreviations and Segmentation
Linked Data for Abbreviations and SegmentationLinked Data for Abbreviations and Segmentation
Linked Data for Abbreviations and Segmentation
 
Standardizing for Open Data
Standardizing for Open DataStandardizing for Open Data
Standardizing for Open 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
 
Automated interpretability of linked data ontologies: an evaluation within th...
Automated interpretability of linked data ontologies: an evaluation within th...Automated interpretability of linked data ontologies: an evaluation within th...
Automated interpretability of linked data ontologies: an evaluation within th...
 
An introduction to Linked (Open) Data
An introduction to Linked (Open) DataAn introduction to Linked (Open) Data
An introduction to Linked (Open) Data
 
Lod2
Lod2Lod2
Lod2
 
KEDL DBpedia 2019
KEDL DBpedia  2019KEDL DBpedia  2019
KEDL DBpedia 2019
 
Building Linked Data Applications
Building Linked Data ApplicationsBuilding Linked Data Applications
Building Linked Data Applications
 
What can linked data do for digital libraries
What can linked data do for digital librariesWhat can linked data do for digital libraries
What can linked data do for digital libraries
 
Big Linked Data - Creating Training Curricula
Big Linked Data - Creating Training CurriculaBig Linked Data - Creating Training Curricula
Big Linked Data - Creating Training Curricula
 
Linking Open Data
Linking Open DataLinking Open Data
Linking Open Data
 
Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)
Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)
Semantics on services: the story so far (SALAD2015 keynote at ESWC2015)
 
Structured Data for the Financial Industry
Structured Data for the Financial Industry Structured Data for the Financial Industry
Structured Data for the Financial Industry
 
Semantic Information Management using PoolParty 4
Semantic Information Management using PoolParty 4Semantic Information Management using PoolParty 4
Semantic Information Management using PoolParty 4
 
GraphChain
GraphChainGraphChain
GraphChain
 
Interaction with Linked Data
Interaction with Linked DataInteraction with Linked Data
Interaction with Linked Data
 
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
 

Similaire à LOD2 Webinar Series FOX

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
 
Towards long-term preservation of linked data - the PRELIDA project
Towards long-term preservation of linked data - the PRELIDA projectTowards long-term preservation of linked data - the PRELIDA project
Towards long-term preservation of linked data - the PRELIDA projectPRELIDA Project
 
Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data VisualizationLaura Po
 
Methodological Guidelines for Publishing Linked Data
Methodological Guidelines for Publishing Linked DataMethodological Guidelines for Publishing Linked Data
Methodological Guidelines for Publishing Linked DataBoris Villazón-Terrazas
 
Sharing irish place names as linked open data - Rebecca Grant
Sharing irish place names as linked open data - Rebecca GrantSharing irish place names as linked open data - Rebecca Grant
Sharing irish place names as linked open data - Rebecca Grantdri_ireland
 
Linked data-tooling-xml
Linked data-tooling-xmlLinked data-tooling-xml
Linked data-tooling-xmlFelix Sasaki
 
What do we want computers to do for us?
What do we want computers to do for us? What do we want computers to do for us?
What do we want computers to do for us? Andrea Volpini
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikisSören Auer
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph IntroductionSören Auer
 
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
 
Local content in a Europeana cloud for small & medium content providers
Local content in a Europeana cloud for small & medium content providersLocal content in a Europeana cloud for small & medium content providers
Local content in a Europeana cloud for small & medium content providerslocloud
 
LOD2 Webinar Series - 7 - CloudView
LOD2 Webinar Series - 7 - CloudView LOD2 Webinar Series - 7 - CloudView
LOD2 Webinar Series - 7 - CloudView Semantic Web Company
 
Semantic Web / Linked Data Technologies
Semantic Web / Linked Data TechnologiesSemantic Web / Linked Data Technologies
Semantic Web / Linked Data TechnologiesMathieu d'Aquin
 
WEBINAR: "How to manage your data to make them open and fair"
WEBINAR:  "How to manage your data to make them open and fair"  WEBINAR:  "How to manage your data to make them open and fair"
WEBINAR: "How to manage your data to make them open and fair" OpenAIRE
 
European Open Science Cloud
European Open Science CloudEuropean Open Science Cloud
European Open Science CloudJisc RDM
 
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
 

Similaire à LOD2 Webinar Series FOX (20)

Lod2
Lod2Lod2
Lod2
 
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
 
Seminario Sobre Datasets Consorcio Madrono
Seminario Sobre Datasets Consorcio Madrono Seminario Sobre Datasets Consorcio Madrono
Seminario Sobre Datasets Consorcio Madrono
 
Towards long-term preservation of linked data - the PRELIDA project
Towards long-term preservation of linked data - the PRELIDA projectTowards long-term preservation of linked data - the PRELIDA project
Towards long-term preservation of linked data - the PRELIDA project
 
Linked Open Data Visualization
Linked Open Data VisualizationLinked Open Data Visualization
Linked Open Data Visualization
 
Methodological Guidelines for Publishing Linked Data
Methodological Guidelines for Publishing Linked DataMethodological Guidelines for Publishing Linked Data
Methodological Guidelines for Publishing Linked Data
 
Sharing irish place names as linked open data - Rebecca Grant
Sharing irish place names as linked open data - Rebecca GrantSharing irish place names as linked open data - Rebecca Grant
Sharing irish place names as linked open data - Rebecca Grant
 
Linked data tooling XML
Linked data tooling XMLLinked data tooling XML
Linked data tooling XML
 
Linked data-tooling-xml
Linked data-tooling-xmlLinked data-tooling-xml
Linked data-tooling-xml
 
What do we want computers to do for us?
What do we want computers to do for us? What do we want computers to do for us?
What do we want computers to do for us?
 
Linked data and semantic wikis
Linked data and semantic wikisLinked data and semantic wikis
Linked data and semantic wikis
 
Martin Kaltenböck - OGD Linked Open Government Data
Martin Kaltenböck - OGD Linked Open Government DataMartin Kaltenböck - OGD Linked Open Government Data
Martin Kaltenböck - OGD Linked Open Government Data
 
Knowledge Graph Introduction
Knowledge Graph IntroductionKnowledge Graph Introduction
Knowledge Graph Introduction
 
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
 
Local content in a Europeana cloud for small & medium content providers
Local content in a Europeana cloud for small & medium content providersLocal content in a Europeana cloud for small & medium content providers
Local content in a Europeana cloud for small & medium content providers
 
LOD2 Webinar Series - 7 - CloudView
LOD2 Webinar Series - 7 - CloudView LOD2 Webinar Series - 7 - CloudView
LOD2 Webinar Series - 7 - CloudView
 
Semantic Web / Linked Data Technologies
Semantic Web / Linked Data TechnologiesSemantic Web / Linked Data Technologies
Semantic Web / Linked Data Technologies
 
WEBINAR: "How to manage your data to make them open and fair"
WEBINAR:  "How to manage your data to make them open and fair"  WEBINAR:  "How to manage your data to make them open and fair"
WEBINAR: "How to manage your data to make them open and fair"
 
European Open Science Cloud
European Open Science CloudEuropean Open Science Cloud
European Open Science Cloud
 
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
 

Plus de LOD2 Creating Knowledge out of Interlinked Data

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

LOD2 Webinar Series: Virtuoso 7
LOD2 Webinar Series: Virtuoso 7LOD2 Webinar Series: Virtuoso 7
LOD2 Webinar Series: Virtuoso 7
 
LOD2 Webinar Series: DBpedia Spotlight
LOD2 Webinar Series: DBpedia SpotlightLOD2 Webinar Series: DBpedia Spotlight
LOD2 Webinar Series: DBpedia Spotlight
 
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 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 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 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
 

Dernier

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Dernier (20)

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 

LOD2 Webinar Series FOX

  • 1. Creating Knowledge out of Interlinked Data LOD2 Webinar . 29.11.2011 . Page 1 http://lod2.eu
  • 2. 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. http://lod2.eu
  • 3. 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. http://lod2.eu
  • 4. Federated Knowledge Extraction Framework Axel Ngonga
  • 5. Creating Know le dge out of Interlinked Data Motivation • Steady growth but incomplete • Structured data • Triplify, Sparqlify • Semi-structured data • DBpedia • Unstructured data • • Make up 80% of the Web Diverse solutions, yet low F-score even on non-noisy data • Solution: FOX Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 5 http://lod2.eu
  • 6. Creating Know le dge out of Interlinked Data Insight Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 6 http://lod2.eu
  • 7. Creating Know le dge out of Interlinked Data Insight • Diversity of solutions to one problem • NER, KE, RE • Each solution has its strengths and weakness • Apply ensemble learning to • Combine the tools at hand • Compute better results • In our case, decision trees (v2) Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 7 http://lod2.eu
  • 8. Creating Know le dge out of Interlinked Data Architecture NER Learning KE Orchestration RE Prediction NED Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 8 http://lod2.eu
  • 9. Creating Know le dge out of Interlinked Data Named Entity Disambiguation • Use AGDISTIS Framework http://aksw.org/projects/AGDISTIS Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 9 http://lod2.eu
  • 10. Creating Know le dge out of Interlinked Data Implementation • N3 • Input • … • Text • HTML • Execution • URL • Single tools (light) • FOX Full • Output • JSON-LD • Access • RDF/XML • REST Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 10 http://lod2.eu
  • 11. Creating Know le dge out of Interlinked Data Evaluation (FOX) MUC-7 Corpus • 6013 locations • 11093 organizations • 5882 persons Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 11 http://lod2.eu
  • 12. Creating Know le dge out of Interlinked Data Evaluation (AGDISTIS) Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 12 http://lod2.eu
  • 13. Creating Know le dge out of Interlinked Data Demo http://fox.aksw.org Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 13 http://lod2.eu
  • 14. Creating Know le dge out of Interlinked Data FOX API Parameters input : text or an url type : { text | url } task : { NER } output : { JSONLD | N3 | N-TRIPLE | RDF/{ JSON | XML | XML-ABBREV} | TURTLE } returnHtml : { true | false } foxlight : an implemented INER class name (e.g. `org.aksw.fox.nertools.NEROpenNLP`) or `OFF`. Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 14 http://lod2.eu
  • 15. Creating Know le dge out of Interlinked Data FOX API Parameters curl -d type=text -d task=NER -d output=JSONLD --dataurlencode "input=The foundation of the University of Leipzig in 1409 initiated the city's development into a centre of German law and the publishing industry, and towards being a location of the Reichsgericht (High Court), and the German National Library (founded in 1912). The philosopher and mathematician Gottfried Leibniz was born in Leipzig in 1646, and attended the university from 1661-1666." -H "Content-Type: application/x-www-form-urlencoded" <SERVICE_URI> Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 15 http://lod2.eu
  • 16. Creating Know le dge out of Interlinked Data FOX Response { "@id" : "_:t1", "http://www.w3.org/2000/10/annotation-ns#body" : [ { "@value" : "University of Leipzig" } ], "http://ns.aksw.org/scms/source" : [ { "@id" : "http://ns.aksw.org/scms/tools/fox" } ], "http://ns.aksw.org/scms/means" : [ { "@id" : "http://dbpedia.org/resource/Leipzig_University" } ], "http://ns.aksw.org/scms/endIndex" : [ { "@value" : "43", "@type" : "http://www.w3.org/2001/XMLSchema#int" } ], "http://ns.aksw.org/scms/beginIndex" : [ { "@value" : "22", "@type" : "http://www.w3.org/2001/XMLSchema#int" } ], "@type" : [ "http://ns.aksw.org/scms/annotations/ORGANIZATION", "http://www.w3.org/2000/ 10/annotation-ns#Annotation" ] } Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 16 http://lod2.eu
  • 17. Creating Know le dge out of Interlinked Data FOX Response [ a scmsann:ORGANIZATION , ann:Annotation ; scms:beginIndex "22"^^xsd:int ; scms:endIndex "43"^^xsd:int ; scms:means <http://dbpedia.org/resource/Leipzig_University> ; scms:source <http://ns.aksw.org/scms/tools/fox> ; ann:body "University of Leipzig"^^xsd:string ]. Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 17 http://lod2.eu
  • 18. Creating Know le dge out of Interlinked Data AGDISTIS API curl --data-urlencode "text='The <entity>University of Leipzig</entity> was visited by <entity>Barack Obama</entity>.'" -d type='agdistis' <SERVICEURL> [{"namedEntity":"Barack Obama","start":42, "disambiguatedURL":"http://dbpedia .org/resource/Barack_Obama","offset":12},{"namedEnti ty":"University of Leipzig","start":5,"disambiguatedURL":"http://dbpedia. org/resource/Leipzig_University","offset":21}] Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 18 http://lod2.eu
  • 19. Creating Know le dge out of Interlinked Data Conclusion and Future Work • > 90% F-score • Can be extended to cover other KE tasks (RE, POS, …) • Easy integration into semantic applications • More info at http://fox.aksw.org and http://aksw.org/projects/agdistis Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 19 http://lod2.eu
  • 20. Creating Know le dge out of Interlinked Data Thank you for your attention! Axel Ngonga http://aksw.org/AxelNgonga | http://fox.aksw.org | http://lod2.org ngonga@informatik.uni-leipzig.de Axel Ngonga – Federated Knowledge Extraction 30.01.2014 Page 20 http://lod2.eu