SlideShare a Scribd company logo
1 of 15
Download to read offline
s




       NERD meets NIF:
Lifting NLP Extraction Results
   to the Linked Data Cloud
        Giuseppe Rizzo and Raphaël Troncy
                EURECOM, France
      Sebastian Hellmann and Martin Bruemmer
            Universität Leipzig, Germany
What is a Named Entity recognition task?
A task that aims to locate and classify the name of a person or an
organization, a location, a brand, a product, a numeric expression
including time, date, money and percent in a textual document




 16/04/2012        5th Workshop on Linked Data on the Web (LDOW2012)   2/15
NER tools

 Standalone software
 GATE
 Stanford CoreNLP
 Temis

 Web APIs




16/04/2012   5th Workshop on Linked Data on the Web (LDOW2012)   3/15
Factual comparison of 10 Web NER tools
                    Alchemy   DBpedia         Evri     Extractiv      Lupedia       Open      Saplo   Wikimeta    Yahoo!     Zemanta
                      API     Spotlight                                             Calais

Language            EN,FR,      EN            EN,          EN         EN,FR,        EN,FR     EN,      EN,FR            EN     EN
                    GR,IT,      GR*            IT                       IT           SP       SW        SP
                    PT,RU,      PT*
                    SP,SW       SP*

Granularity          OEN        OEN           OED        OEN            OEN          OEN      OED       OEN         OEN        OED
Entity               N/A       char           N/A        word         range of       char     N/A      POS         range       N/A
position                       offset                    offset        chars         offset            offset        of
                                                                                                                   chars

Classification      Alchemy   DBpedia         Evri     DBpedia        DBpedia       Open      N/A     ESTER        Yahoo     FreeBase
schema                        FreeBase                                LinkedM       Calais
                              Scema.or                                   DB
                                  g



Number of            324        320             5          34            319           95      5         7              13     81
classes
Response            JSON       HTML           HTM        HTML          HTML         JSON      JSON     JSON        JSON        XML
Format              MicroF     JSON            L         JSON          JSON         MicroF              XML         XML       JSON
                     XML        RDF           JSO         RDF          RDFa         ormat                                      RDF
                     RDF        XML            N          XML           XML
                                              RDF

Quota               30000       unl          3000        3000            unl        50000     1333      unl         5000      10000
(calls/day)
       16/04/2012                         5th Workshop on Linked Data on the Web (LDOW2012)                      4/15
What is NERD?
    ontology1                    REST API2
                         UI3
                                                                                         The NERD ontology has been
                                                                                         integrated in the NIF project,
                                                                                         a EU FP7 in the context of the
                                                                                         LOD2: Creating Knowledge
                                                                                         out of Interlinked Data


1
  http://nerd.eurecom.fr/ontology
2
  http://nerd.eurecom.fr/api/application.wadl
3
  http://nerd.eurecom.fr


    16/04/2012                       5th Workshop on Linked Data on the Web (LDOW2012)                  5/15
NERD Ontology




             Aligned the taxonomies used by
                      the extractors
16/04/2012        5th Workshop on Linked Data on the Web (LDOW2012)   6/15
NERD type          Occurrence
Building the NERD Ontology                                       Person                     10
                                                                 Organization               10
                                                                 Country                      6
                                                                 Company                      6
                                                                 Location                     6
                                                                 Continent                    5
                                                                 City                         5
                                                                 RadioStation                 5
                                                                 Album                        5
                                                                 Product                      5
                                                                 ...                         ...




16/04/2012   5th Workshop on Linked Data on the Web (LDOW2012)               7/15
Ontology alignment validation

  5 TED
   talks

  1000
   NYT
  news
 articles
   217
WWW2011
 abstracts

  16/04/2012   5th Workshop on Linked Data on the Web (LDOW2012)   8/15
Integration
  Different outputs for the NLP tools (Standalone
 and Web APIs)
  OpenCalais                                                       DBpedia Spotlight
  "_type": "Organization",                                         "@URI": "http://dbpedia.org/resource/DBpedia",
  “name": "North Atlantic Treaty Organization",                    "@types": "DBpedia:Software,DBpedia:Work”
  "organizationtype": "governmental civilian",                     "@surfaceForm": "dbpedia",
  "nationality": "N/A",                                            "@offset": "0",
  "_typeReference":                                                "@support": "11",
      http://s.opencalais.com/1/type/em/e/Organization",           "@similarityScore": "0.2387271374464035",
  ...                                                              …



  For integration or reuse manual effort is needed
         time consuming
         difficult to track definitions
  NERD creates a sharable JSON/RDF annotation
 output

16/04/2012                        5th Workshop on Linked Data on the Web (LDOW2012)                       9/15
NERD REST API

                                                                         “entities” : [{
                                                                                “entity”: “W3C” ,
                                                                                “type”: “Organization” ,
                                                                                “uri”: "http://dbpedia.org/page/W3C",
                                                      JSON                      “nerdType”:
                                                                         "http://nerd.eurecom.fr/ontology#Organization",
                                                                                “startChar”: 30,
                                                                                “endChar”: 32,
/document/{idDocument}                                                          “confidence”: 1,
/user/{idUser}                     GET,                                         “relevance”: 0.5
                                  POST,                                  }]
/annotation/{extractor}
/extraction/{idExtraction}         PUT,
/evaluation                      DELETE
...

                                                        RDF




   16/04/2012                5th Workshop on Linked Data on the Web (LDOW2012)                     10/15
Textual annotation

 Let's consider the URI:
 http://www.w3.org/DesignIssues/LinkedData.html
     The Semantic Web isn't just about putting data on the web. It is about
     making links, so that a person or machine can explore the web of data.
     With linked data, when you have some of it, you can find other, related,
     data.….
     All the above plus, Use open standards from W3C (RDF and SPARQL) to
     identify things, so that people can point at your stuff
     ...

   entities: {
       …
       [entity: W3C, startChar: 23107, endChar: 23110],
       …
   }
16/04/2012             5th Workshop on Linked Data on the Web (LDOW2012)   11/15
NERD meets NIF

                                      Model documents through a
                                      set of strings deferencable
                                      within the Web
                      : offset_23107_ 23110 a str:String ;
                               str:referenceContext :offset_0_26546 .

                                      Map string to entity
                      : offset_23107_ 23110 sso:oen dbpedia:W3C .


                                       Classification
                       dbpedia:W3C rdf:type nerd:Organization .



16/04/2012   5th Workshop on Linked Data on the Web (LDOW2012)   12/15
NERD User Interface




16/04/2012   5th Workshop on Linked Data on the Web (LDOW2012)   13/15
Conclusions and perspectives
NERD UI and REST API
   unified interface for extracting NEs from various type of texts
NERD ontology
    common schema for entity classification
NERD & NIF
    lift the extraction annotation results to the LOD cloud

Systematic comparison for the NE extraction and
classification tasks:
      ETAPE corpus
      CoNLL 2003 corpus

Combining several extractions to improve the strengths
of a single tool
16/04/2012          5th Workshop on Linked Data on the Web (LDOW2012)   14/15
Thanks for your time and your attention




             http://nerd.eurecom.fr

             @giusepperizzo @rtroncy #nerd



             http://www.slideshare.net/giusepperizzo




16/04/2012   5th Workshop on Linked Data on the Web (LDOW2012)   15/15

More Related Content

What's hot

A year on the Semantic Web @ W3C
A year on the Semantic Web @ W3CA year on the Semantic Web @ W3C
A year on the Semantic Web @ W3CIvan Herman
 
LDL 2012 - Linking to ISOcat Data Categories
LDL 2012 - Linking to ISOcat Data CategoriesLDL 2012 - Linking to ISOcat Data Categories
LDL 2012 - Linking to ISOcat Data CategoriesMenzo Windhouwer
 
Contexts and Importing in RDF
Contexts and Importing in RDFContexts and Importing in RDF
Contexts and Importing in RDFJie Bao
 
2010 10 provxg_datagovuk
2010 10 provxg_datagovuk2010 10 provxg_datagovuk
2010 10 provxg_datagovukJun Zhao
 
Exchange and Consumption of Huge RDF Data
Exchange and Consumption of Huge RDF DataExchange and Consumption of Huge RDF Data
Exchange and Consumption of Huge RDF DataMario Arias
 
Jarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsJarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsMustafa Jarrar
 
Pal gov.tutorial2.session10.sparql
Pal gov.tutorial2.session10.sparqlPal gov.tutorial2.session10.sparql
Pal gov.tutorial2.session10.sparqlMustafa Jarrar
 
Pal gov.tutorial2.session13 3.data integration and fusion using rdf
Pal gov.tutorial2.session13 3.data integration and fusion using rdfPal gov.tutorial2.session13 3.data integration and fusion using rdf
Pal gov.tutorial2.session13 3.data integration and fusion using rdfMustafa Jarrar
 
Calvin Hendryx Parker, Enabling the Semantic Web with RDF
Calvin Hendryx Parker, Enabling the Semantic Web with RDFCalvin Hendryx Parker, Enabling the Semantic Web with RDF
Calvin Hendryx Parker, Enabling the Semantic Web with RDFwebcontent2007
 
Pal gov.tutorial2.session5 2.rdfs_jarrar
Pal gov.tutorial2.session5 2.rdfs_jarrarPal gov.tutorial2.session5 2.rdfs_jarrar
Pal gov.tutorial2.session5 2.rdfs_jarrarMustafa Jarrar
 

What's hot (14)

Ontologies in RDF-S/OWL
Ontologies in RDF-S/OWLOntologies in RDF-S/OWL
Ontologies in RDF-S/OWL
 
A year on the Semantic Web @ W3C
A year on the Semantic Web @ W3CA year on the Semantic Web @ W3C
A year on the Semantic Web @ W3C
 
LDL 2012 - Linking to ISOcat Data Categories
LDL 2012 - Linking to ISOcat Data CategoriesLDL 2012 - Linking to ISOcat Data Categories
LDL 2012 - Linking to ISOcat Data Categories
 
Contexts and Importing in RDF
Contexts and Importing in RDFContexts and Importing in RDF
Contexts and Importing in RDF
 
Data in RDF
Data in RDFData in RDF
Data in RDF
 
2010 10 provxg_datagovuk
2010 10 provxg_datagovuk2010 10 provxg_datagovuk
2010 10 provxg_datagovuk
 
Exchange and Consumption of Huge RDF Data
Exchange and Consumption of Huge RDF DataExchange and Consumption of Huge RDF Data
Exchange and Consumption of Huge RDF Data
 
Jarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and SolutionsJarrar: RDF Stores -Challenges and Solutions
Jarrar: RDF Stores -Challenges and Solutions
 
Pal gov.tutorial2.session10.sparql
Pal gov.tutorial2.session10.sparqlPal gov.tutorial2.session10.sparql
Pal gov.tutorial2.session10.sparql
 
Pal gov.tutorial2.session13 3.data integration and fusion using rdf
Pal gov.tutorial2.session13 3.data integration and fusion using rdfPal gov.tutorial2.session13 3.data integration and fusion using rdf
Pal gov.tutorial2.session13 3.data integration and fusion using rdf
 
Compact Representation of Large RDF Data Sets for Publishing and Exchange
Compact Representation of Large RDF Data Sets for Publishing and ExchangeCompact Representation of Large RDF Data Sets for Publishing and Exchange
Compact Representation of Large RDF Data Sets for Publishing and Exchange
 
Binary RDF for Scalable Publishing, Exchanging and Consumption in the Web of ...
Binary RDF for Scalable Publishing, Exchanging and Consumption in the Web of ...Binary RDF for Scalable Publishing, Exchanging and Consumption in the Web of ...
Binary RDF for Scalable Publishing, Exchanging and Consumption in the Web of ...
 
Calvin Hendryx Parker, Enabling the Semantic Web with RDF
Calvin Hendryx Parker, Enabling the Semantic Web with RDFCalvin Hendryx Parker, Enabling the Semantic Web with RDF
Calvin Hendryx Parker, Enabling the Semantic Web with RDF
 
Pal gov.tutorial2.session5 2.rdfs_jarrar
Pal gov.tutorial2.session5 2.rdfs_jarrarPal gov.tutorial2.session5 2.rdfs_jarrar
Pal gov.tutorial2.session5 2.rdfs_jarrar
 

Viewers also liked

Habits of mind launch
Habits of mind launchHabits of mind launch
Habits of mind launchdouglasgreig
 
Edisi 12 Aceh Sep
Edisi 12 Aceh SepEdisi 12 Aceh Sep
Edisi 12 Aceh Sepepaper
 
10desnasyg Bner
10desnasyg Bner10desnasyg Bner
10desnasyg Bnerepaper
 
Edisi 31 Okt Nas
Edisi 31 Okt NasEdisi 31 Okt Nas
Edisi 31 Okt Nasepaper
 
28des N As
28des N As28des N As
28des N Asepaper
 
Edisi2novaceh
Edisi2novacehEdisi2novaceh
Edisi2novacehepaper
 
Edisi2novnas
Edisi2novnasEdisi2novnas
Edisi2novnasepaper
 
Lect 8 env sustainability in oe 2013
Lect 8 env sustainability in oe 2013Lect 8 env sustainability in oe 2013
Lect 8 env sustainability in oe 2013Geoff Adams
 
Edisi10okt
Edisi10oktEdisi10okt
Edisi10oktepaper
 
Edisi1nas
Edisi1nasEdisi1nas
Edisi1nasepaper
 
Edisi26sep
Edisi26sepEdisi26sep
Edisi26sepepaper
 
Vim Cards - Keynote Format
Vim Cards - Keynote FormatVim Cards - Keynote Format
Vim Cards - Keynote FormatAdam Lowe
 
102215 front porch think
102215 front porch think102215 front porch think
102215 front porch thinkTim Richardson
 
GXYSearch: job seeking advice
GXYSearch: job seeking adviceGXYSearch: job seeking advice
GXYSearch: job seeking adviceJoanne Spain
 
Edisi26aceh
Edisi26acehEdisi26aceh
Edisi26acehepaper
 
Edisi 6 Des Nas
Edisi 6 Des NasEdisi 6 Des Nas
Edisi 6 Des Nasepaper
 
15 sep 11 bt property 2011_ultra luxury apartments here to stay
15 sep 11 bt property 2011_ultra luxury apartments here to stay15 sep 11 bt property 2011_ultra luxury apartments here to stay
15 sep 11 bt property 2011_ultra luxury apartments here to stayJohn Tan Yi Shin
 
Analisis tendencias pedagogicas caso personal
Analisis tendencias pedagogicas caso personalAnalisis tendencias pedagogicas caso personal
Analisis tendencias pedagogicas caso personalastrux
 
Edisi 16 Nov Aceh
Edisi 16 Nov AcehEdisi 16 Nov Aceh
Edisi 16 Nov Acehepaper
 
great Frank lloyd wright
great Frank lloyd wright great Frank lloyd wright
great Frank lloyd wright Saroj Sahoo
 

Viewers also liked (20)

Habits of mind launch
Habits of mind launchHabits of mind launch
Habits of mind launch
 
Edisi 12 Aceh Sep
Edisi 12 Aceh SepEdisi 12 Aceh Sep
Edisi 12 Aceh Sep
 
10desnasyg Bner
10desnasyg Bner10desnasyg Bner
10desnasyg Bner
 
Edisi 31 Okt Nas
Edisi 31 Okt NasEdisi 31 Okt Nas
Edisi 31 Okt Nas
 
28des N As
28des N As28des N As
28des N As
 
Edisi2novaceh
Edisi2novacehEdisi2novaceh
Edisi2novaceh
 
Edisi2novnas
Edisi2novnasEdisi2novnas
Edisi2novnas
 
Lect 8 env sustainability in oe 2013
Lect 8 env sustainability in oe 2013Lect 8 env sustainability in oe 2013
Lect 8 env sustainability in oe 2013
 
Edisi10okt
Edisi10oktEdisi10okt
Edisi10okt
 
Edisi1nas
Edisi1nasEdisi1nas
Edisi1nas
 
Edisi26sep
Edisi26sepEdisi26sep
Edisi26sep
 
Vim Cards - Keynote Format
Vim Cards - Keynote FormatVim Cards - Keynote Format
Vim Cards - Keynote Format
 
102215 front porch think
102215 front porch think102215 front porch think
102215 front porch think
 
GXYSearch: job seeking advice
GXYSearch: job seeking adviceGXYSearch: job seeking advice
GXYSearch: job seeking advice
 
Edisi26aceh
Edisi26acehEdisi26aceh
Edisi26aceh
 
Edisi 6 Des Nas
Edisi 6 Des NasEdisi 6 Des Nas
Edisi 6 Des Nas
 
15 sep 11 bt property 2011_ultra luxury apartments here to stay
15 sep 11 bt property 2011_ultra luxury apartments here to stay15 sep 11 bt property 2011_ultra luxury apartments here to stay
15 sep 11 bt property 2011_ultra luxury apartments here to stay
 
Analisis tendencias pedagogicas caso personal
Analisis tendencias pedagogicas caso personalAnalisis tendencias pedagogicas caso personal
Analisis tendencias pedagogicas caso personal
 
Edisi 16 Nov Aceh
Edisi 16 Nov AcehEdisi 16 Nov Aceh
Edisi 16 Nov Aceh
 
great Frank lloyd wright
great Frank lloyd wright great Frank lloyd wright
great Frank lloyd wright
 

Similar to NERD meets NIF: Lifting NLP Extraction Results to the Linked Data Cloud

Accessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBCAccessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBCKingsley Uyi Idehen
 
Semantic Technologies and Triplestores for Business Intelligence
Semantic Technologies and Triplestores for Business IntelligenceSemantic Technologies and Triplestores for Business Intelligence
Semantic Technologies and Triplestores for Business IntelligenceMarin Dimitrov
 
What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?andimou
 
Applying Semantic Extensions And New Services To Drupal Sem Tech June 2010
Applying Semantic Extensions And New Services To Drupal   Sem Tech June 2010Applying Semantic Extensions And New Services To Drupal   Sem Tech June 2010
Applying Semantic Extensions And New Services To Drupal Sem Tech June 2010AI4BD GmbH
 
Make your data great again - Ver 2
Make your data great again - Ver 2Make your data great again - Ver 2
Make your data great again - Ver 2Daniel JACOB
 
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011François Scharffe
 
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011Datalift
 
Linking the world with Python and Semantics
Linking the world with Python and SemanticsLinking the world with Python and Semantics
Linking the world with Python and SemanticsTatiana Al-Chueyr
 
Comparing Vocabularies for Representing Geographical Features and Their Geometry
Comparing Vocabularies for Representing Geographical Features and Their GeometryComparing Vocabularies for Representing Geographical Features and Their Geometry
Comparing Vocabularies for Representing Geographical Features and Their GeometryGhislain Atemezing
 
Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013François Belleau
 
Reasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven Recipes
Reasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven RecipesReasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven Recipes
Reasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven RecipesOntotext
 
LiveLinkedData - TransWebData - Nantes 2013
LiveLinkedData - TransWebData - Nantes 2013LiveLinkedData - TransWebData - Nantes 2013
LiveLinkedData - TransWebData - Nantes 2013Luis Daniel Ibáñez
 
EDF2012 Mariana Damova - Factforge
EDF2012   Mariana Damova - FactforgeEDF2012   Mariana Damova - Factforge
EDF2012 Mariana Damova - FactforgeEuropean Data Forum
 
LOD2 Webinar: The 2nd release of the LOD2 stack
LOD2 Webinar: The 2nd release of the LOD2 stackLOD2 Webinar: The 2nd release of the LOD2 stack
LOD2 Webinar: The 2nd release of the LOD2 stackSemantic Web Company
 
Open Data & Linked Open Data
Open Data & Linked Open DataOpen Data & Linked Open Data
Open Data & Linked Open DataKouji Kozaki
 

Similar to NERD meets NIF: Lifting NLP Extraction Results to the Linked Data Cloud (20)

Accessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBCAccessing the Linked Open Data Cloud via ODBC
Accessing the Linked Open Data Cloud via ODBC
 
RJ Broker, ORI, & OpenDepot.org
RJ Broker, ORI, & OpenDepot.orgRJ Broker, ORI, & OpenDepot.org
RJ Broker, ORI, & OpenDepot.org
 
Semantic Technologies and Triplestores for Business Intelligence
Semantic Technologies and Triplestores for Business IntelligenceSemantic Technologies and Triplestores for Business Intelligence
Semantic Technologies and Triplestores for Business Intelligence
 
What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?What Factors Influence the Design of a Linked Data Generation Algorithm?
What Factors Influence the Design of a Linked Data Generation Algorithm?
 
Applying Semantic Extensions And New Services To Drupal Sem Tech June 2010
Applying Semantic Extensions And New Services To Drupal   Sem Tech June 2010Applying Semantic Extensions And New Services To Drupal   Sem Tech June 2010
Applying Semantic Extensions And New Services To Drupal Sem Tech June 2010
 
Make your data great again - Ver 2
Make your data great again - Ver 2Make your data great again - Ver 2
Make your data great again - Ver 2
 
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
 
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
Datalift a-catalyser-for-the-web-of-data-fosdem-05-02-2011
 
Websci17 final
Websci17 finalWebsci17 final
Websci17 final
 
Linking the world with Python and Semantics
Linking the world with Python and SemanticsLinking the world with Python and Semantics
Linking the world with Python and Semantics
 
.Net and Rdf APIs
.Net and Rdf APIs.Net and Rdf APIs
.Net and Rdf APIs
 
Comparing Vocabularies for Representing Geographical Features and Their Geometry
Comparing Vocabularies for Representing Geographical Features and Their GeometryComparing Vocabularies for Representing Geographical Features and Their Geometry
Comparing Vocabularies for Representing Geographical Features and Their Geometry
 
Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013Producing, publishing and consuming linked data - CSHALS 2013
Producing, publishing and consuming linked data - CSHALS 2013
 
Reasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven Recipes
Reasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven RecipesReasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven Recipes
Reasoning with Big Knowledge Graphs: Choices, Pitfalls and Proven Recipes
 
Fact forge20 edf
Fact forge20 edfFact forge20 edf
Fact forge20 edf
 
LiveLinkedData - TransWebData - Nantes 2013
LiveLinkedData - TransWebData - Nantes 2013LiveLinkedData - TransWebData - Nantes 2013
LiveLinkedData - TransWebData - Nantes 2013
 
Sheldon challenge
Sheldon challengeSheldon challenge
Sheldon challenge
 
EDF2012 Mariana Damova - Factforge
EDF2012   Mariana Damova - FactforgeEDF2012   Mariana Damova - Factforge
EDF2012 Mariana Damova - Factforge
 
LOD2 Webinar: The 2nd release of the LOD2 stack
LOD2 Webinar: The 2nd release of the LOD2 stackLOD2 Webinar: The 2nd release of the LOD2 stack
LOD2 Webinar: The 2nd release of the LOD2 stack
 
Open Data & Linked Open Data
Open Data & Linked Open DataOpen Data & Linked Open Data
Open Data & Linked Open Data
 

More from Giuseppe Rizzo

Artificial intelligence for social good
Artificial intelligence for social goodArtificial intelligence for social good
Artificial intelligence for social goodGiuseppe Rizzo
 
COMPRENDE, PERSONALIZZA, INTERAGISCE E IMPARA: L’AI COGNITIVA PER L’HR
COMPRENDE, PERSONALIZZA, INTERAGISCE E  IMPARA: L’AI COGNITIVA PER L’HRCOMPRENDE, PERSONALIZZA, INTERAGISCE E  IMPARA: L’AI COGNITIVA PER L’HR
COMPRENDE, PERSONALIZZA, INTERAGISCE E IMPARA: L’AI COGNITIVA PER L’HRGiuseppe Rizzo
 
Understand, Answer and Argument: Conversational Agents
Understand, Answer and Argument: Conversational AgentsUnderstand, Answer and Argument: Conversational Agents
Understand, Answer and Argument: Conversational AgentsGiuseppe Rizzo
 
AI For Profiling Your Customers
AI For Profiling Your CustomersAI For Profiling Your Customers
AI For Profiling Your CustomersGiuseppe Rizzo
 
AI for Personalized Chatbot
AI for Personalized ChatbotAI for Personalized Chatbot
AI for Personalized ChatbotGiuseppe Rizzo
 
Tourist Knowledge Graph Creation to Automating Travel Bookings
Tourist Knowledge Graph Creation to Automating Travel BookingsTourist Knowledge Graph Creation to Automating Travel Bookings
Tourist Knowledge Graph Creation to Automating Travel BookingsGiuseppe Rizzo
 
The SentiME System at the SSA Challenge Task 1
The SentiME System at the SSA Challenge Task 1The SentiME System at the SSA Challenge Task 1
The SentiME System at the SSA Challenge Task 1Giuseppe Rizzo
 
Context-Enhanced Adaptive Entity Linking
Context-Enhanced Adaptive Entity LinkingContext-Enhanced Adaptive Entity Linking
Context-Enhanced Adaptive Entity LinkingGiuseppe Rizzo
 
From Data to Knowledge for Tourists
From Data to Knowledge for TouristsFrom Data to Knowledge for Tourists
From Data to Knowledge for TouristsGiuseppe Rizzo
 
Enabling Visitors to Explore a Smart City
Enabling Visitors to Explore a Smart CityEnabling Visitors to Explore a Smart City
Enabling Visitors to Explore a Smart CityGiuseppe Rizzo
 
NEEL2015 challenge summary
NEEL2015 challenge summaryNEEL2015 challenge summary
NEEL2015 challenge summaryGiuseppe Rizzo
 
Inductive Entity Typing Alignment
Inductive Entity Typing AlignmentInductive Entity Typing Alignment
Inductive Entity Typing AlignmentGiuseppe Rizzo
 
Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...
Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...
Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...Giuseppe Rizzo
 
CrossLanguageSpotter: A Library for Detecting Relations in Polyglot Frameworks
CrossLanguageSpotter: A Library for Detecting Relations in Polyglot FrameworksCrossLanguageSpotter: A Library for Detecting Relations in Polyglot Frameworks
CrossLanguageSpotter: A Library for Detecting Relations in Polyglot FrameworksGiuseppe Rizzo
 
Learning with the Web. Structuring data to ease machine understanding
Learning with the Web. Structuring data to ease  machine understandingLearning with the Web. Structuring data to ease  machine understanding
Learning with the Web. Structuring data to ease machine understandingGiuseppe Rizzo
 
Learning with the Web: Spotting Named Entities on the intersection of NERD an...
Learning with the Web: Spotting Named Entities on the intersection of NERD an...Learning with the Web: Spotting Named Entities on the intersection of NERD an...
Learning with the Web: Spotting Named Entities on the intersection of NERD an...Giuseppe Rizzo
 
L'enorme archivio di dati: il Web
L'enorme archivio di dati: il WebL'enorme archivio di dati: il Web
L'enorme archivio di dati: il WebGiuseppe Rizzo
 
NERD: Evaluating Named Entity Recognition Tools in the Web of Data
NERD: Evaluating Named Entity Recognition Tools in the Web of DataNERD: Evaluating Named Entity Recognition Tools in the Web of Data
NERD: Evaluating Named Entity Recognition Tools in the Web of DataGiuseppe Rizzo
 
Zenaminer: driving the SCORM tandard towards the Web of Data
Zenaminer: driving the SCORM tandard towards the Web of DataZenaminer: driving the SCORM tandard towards the Web of Data
Zenaminer: driving the SCORM tandard towards the Web of DataGiuseppe Rizzo
 

More from Giuseppe Rizzo (20)

Artificial intelligence for social good
Artificial intelligence for social goodArtificial intelligence for social good
Artificial intelligence for social good
 
AI in 60 minutes
AI in 60 minutesAI in 60 minutes
AI in 60 minutes
 
COMPRENDE, PERSONALIZZA, INTERAGISCE E IMPARA: L’AI COGNITIVA PER L’HR
COMPRENDE, PERSONALIZZA, INTERAGISCE E  IMPARA: L’AI COGNITIVA PER L’HRCOMPRENDE, PERSONALIZZA, INTERAGISCE E  IMPARA: L’AI COGNITIVA PER L’HR
COMPRENDE, PERSONALIZZA, INTERAGISCE E IMPARA: L’AI COGNITIVA PER L’HR
 
Understand, Answer and Argument: Conversational Agents
Understand, Answer and Argument: Conversational AgentsUnderstand, Answer and Argument: Conversational Agents
Understand, Answer and Argument: Conversational Agents
 
AI For Profiling Your Customers
AI For Profiling Your CustomersAI For Profiling Your Customers
AI For Profiling Your Customers
 
AI for Personalized Chatbot
AI for Personalized ChatbotAI for Personalized Chatbot
AI for Personalized Chatbot
 
Tourist Knowledge Graph Creation to Automating Travel Bookings
Tourist Knowledge Graph Creation to Automating Travel BookingsTourist Knowledge Graph Creation to Automating Travel Bookings
Tourist Knowledge Graph Creation to Automating Travel Bookings
 
The SentiME System at the SSA Challenge Task 1
The SentiME System at the SSA Challenge Task 1The SentiME System at the SSA Challenge Task 1
The SentiME System at the SSA Challenge Task 1
 
Context-Enhanced Adaptive Entity Linking
Context-Enhanced Adaptive Entity LinkingContext-Enhanced Adaptive Entity Linking
Context-Enhanced Adaptive Entity Linking
 
From Data to Knowledge for Tourists
From Data to Knowledge for TouristsFrom Data to Knowledge for Tourists
From Data to Knowledge for Tourists
 
Enabling Visitors to Explore a Smart City
Enabling Visitors to Explore a Smart CityEnabling Visitors to Explore a Smart City
Enabling Visitors to Explore a Smart City
 
NEEL2015 challenge summary
NEEL2015 challenge summaryNEEL2015 challenge summary
NEEL2015 challenge summary
 
Inductive Entity Typing Alignment
Inductive Entity Typing AlignmentInductive Entity Typing Alignment
Inductive Entity Typing Alignment
 
Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...
Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...
Benchmarking the Extraction and Disambiguation of Named Entities on the Seman...
 
CrossLanguageSpotter: A Library for Detecting Relations in Polyglot Frameworks
CrossLanguageSpotter: A Library for Detecting Relations in Polyglot FrameworksCrossLanguageSpotter: A Library for Detecting Relations in Polyglot Frameworks
CrossLanguageSpotter: A Library for Detecting Relations in Polyglot Frameworks
 
Learning with the Web. Structuring data to ease machine understanding
Learning with the Web. Structuring data to ease  machine understandingLearning with the Web. Structuring data to ease  machine understanding
Learning with the Web. Structuring data to ease machine understanding
 
Learning with the Web: Spotting Named Entities on the intersection of NERD an...
Learning with the Web: Spotting Named Entities on the intersection of NERD an...Learning with the Web: Spotting Named Entities on the intersection of NERD an...
Learning with the Web: Spotting Named Entities on the intersection of NERD an...
 
L'enorme archivio di dati: il Web
L'enorme archivio di dati: il WebL'enorme archivio di dati: il Web
L'enorme archivio di dati: il Web
 
NERD: Evaluating Named Entity Recognition Tools in the Web of Data
NERD: Evaluating Named Entity Recognition Tools in the Web of DataNERD: Evaluating Named Entity Recognition Tools in the Web of Data
NERD: Evaluating Named Entity Recognition Tools in the Web of Data
 
Zenaminer: driving the SCORM tandard towards the Web of Data
Zenaminer: driving the SCORM tandard towards the Web of DataZenaminer: driving the SCORM tandard towards the Web of Data
Zenaminer: driving the SCORM tandard towards the Web of Data
 

Recently uploaded

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
"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
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
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
 
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
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 

Recently uploaded (20)

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
"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
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
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
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 

NERD meets NIF: Lifting NLP Extraction Results to the Linked Data Cloud

  • 1. s NERD meets NIF: Lifting NLP Extraction Results to the Linked Data Cloud Giuseppe Rizzo and Raphaël Troncy EURECOM, France Sebastian Hellmann and Martin Bruemmer Universität Leipzig, Germany
  • 2. What is a Named Entity recognition task? A task that aims to locate and classify the name of a person or an organization, a location, a brand, a product, a numeric expression including time, date, money and percent in a textual document 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 2/15
  • 3. NER tools  Standalone software GATE Stanford CoreNLP Temis  Web APIs 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 3/15
  • 4. Factual comparison of 10 Web NER tools Alchemy DBpedia Evri Extractiv Lupedia Open Saplo Wikimeta Yahoo! Zemanta API Spotlight Calais Language EN,FR, EN EN, EN EN,FR, EN,FR EN, EN,FR EN EN GR,IT, GR* IT IT SP SW SP PT,RU, PT* SP,SW SP* Granularity OEN OEN OED OEN OEN OEN OED OEN OEN OED Entity N/A char N/A word range of char N/A POS range N/A position offset offset chars offset offset of chars Classification Alchemy DBpedia Evri DBpedia DBpedia Open N/A ESTER Yahoo FreeBase schema FreeBase LinkedM Calais Scema.or DB g Number of 324 320 5 34 319 95 5 7 13 81 classes Response JSON HTML HTM HTML HTML JSON JSON JSON JSON XML Format MicroF JSON L JSON JSON MicroF XML XML JSON XML RDF JSO RDF RDFa ormat RDF RDF XML N XML XML RDF Quota 30000 unl 3000 3000 unl 50000 1333 unl 5000 10000 (calls/day) 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 4/15
  • 5. What is NERD? ontology1 REST API2 UI3 The NERD ontology has been integrated in the NIF project, a EU FP7 in the context of the LOD2: Creating Knowledge out of Interlinked Data 1 http://nerd.eurecom.fr/ontology 2 http://nerd.eurecom.fr/api/application.wadl 3 http://nerd.eurecom.fr 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 5/15
  • 6. NERD Ontology Aligned the taxonomies used by the extractors 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 6/15
  • 7. NERD type Occurrence Building the NERD Ontology Person 10 Organization 10 Country 6 Company 6 Location 6 Continent 5 City 5 RadioStation 5 Album 5 Product 5 ... ... 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 7/15
  • 8. Ontology alignment validation 5 TED talks 1000 NYT news articles 217 WWW2011 abstracts 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 8/15
  • 9. Integration  Different outputs for the NLP tools (Standalone and Web APIs) OpenCalais DBpedia Spotlight "_type": "Organization", "@URI": "http://dbpedia.org/resource/DBpedia", “name": "North Atlantic Treaty Organization", "@types": "DBpedia:Software,DBpedia:Work” "organizationtype": "governmental civilian", "@surfaceForm": "dbpedia", "nationality": "N/A", "@offset": "0", "_typeReference": "@support": "11", http://s.opencalais.com/1/type/em/e/Organization", "@similarityScore": "0.2387271374464035", ... …  For integration or reuse manual effort is needed  time consuming  difficult to track definitions  NERD creates a sharable JSON/RDF annotation output 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 9/15
  • 10. NERD REST API “entities” : [{ “entity”: “W3C” , “type”: “Organization” , “uri”: "http://dbpedia.org/page/W3C", JSON “nerdType”: "http://nerd.eurecom.fr/ontology#Organization", “startChar”: 30, “endChar”: 32, /document/{idDocument} “confidence”: 1, /user/{idUser} GET, “relevance”: 0.5 POST, }] /annotation/{extractor} /extraction/{idExtraction} PUT, /evaluation DELETE ... RDF 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 10/15
  • 11. Textual annotation Let's consider the URI: http://www.w3.org/DesignIssues/LinkedData.html The Semantic Web isn't just about putting data on the web. It is about making links, so that a person or machine can explore the web of data. With linked data, when you have some of it, you can find other, related, data.…. All the above plus, Use open standards from W3C (RDF and SPARQL) to identify things, so that people can point at your stuff ... entities: { … [entity: W3C, startChar: 23107, endChar: 23110], … } 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 11/15
  • 12. NERD meets NIF Model documents through a set of strings deferencable within the Web : offset_23107_ 23110 a str:String ; str:referenceContext :offset_0_26546 . Map string to entity : offset_23107_ 23110 sso:oen dbpedia:W3C . Classification dbpedia:W3C rdf:type nerd:Organization . 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 12/15
  • 13. NERD User Interface 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 13/15
  • 14. Conclusions and perspectives NERD UI and REST API unified interface for extracting NEs from various type of texts NERD ontology common schema for entity classification NERD & NIF lift the extraction annotation results to the LOD cloud Systematic comparison for the NE extraction and classification tasks: ETAPE corpus CoNLL 2003 corpus Combining several extractions to improve the strengths of a single tool 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 14/15
  • 15. Thanks for your time and your attention http://nerd.eurecom.fr @giusepperizzo @rtroncy #nerd http://www.slideshare.net/giusepperizzo 16/04/2012 5th Workshop on Linked Data on the Web (LDOW2012) 15/15