Keyword Search over RDF Graphs. Elisa Menendez

Size: px
Start display at page:

Download "Keyword Search over RDF Graphs. Elisa Menendez"

Transcription

1 Elisa Menendez

2 Summary Motivation Keyword Search over RDF Process Challenges Example QUIOW System Next Steps

3 Motivation

4 Motivation Keyword search is an easy way to retrieve information Whether in Web pages or in databases

5 Motivation Keyword search is useful for databases It eliminates the overhead of writing structured queries The user does not need to know the database schema SELECT movie.title FROM movie, director WHERE movie.director = director.id AND director.name = 'Tim Burton'

6 Motivation From the Semantic Web and Linked Data RDF graphs emerged as a new kind of databases That models data as triples nflx:beetlejuice mo:directedby nflx:tim_burton subject predicate object PREFIX mo: < PREFIX nflx: <

7 Motivation A collection of RDF triples forms an RDF graph Beetlejuice mo:title mo:releaseyear nflx:beetlejuice rdf mo:movie 1988 mo:synopsis mo:directedby A couple of ghosts contract nflx:tim_burton rdf mo:director

8 Motivation RDF graphs are a type of databases LOD Cloud datasets

9 Motivation RDF graphs are interesting sources of knowledge Give more flexibility to describe resources Use W3C standardized graph formats Use popular ontologies Keep increasing

10 Motivation RDF graphs are usually queried with SPARQL queries SELECT?title WHERE{?movie rdf :Movie.?movie mo:directedby?director.?director "Tim Burton".?movie mo:title?title } => Keyword search is also useful for RDF Graphs

11 Motivation Advantages of RDF Graphs for Keyword Search Well-known graph theories Data and metadata all together And easy to access with SPARQL Integration of multiple sources And easy to access with SPARQL

12

13 Keyword Search Process Keywords Documents query formulation indexing Query Indexed Documents feedback Matching + Ranking Retrieved Documents

14 Keyword Search over RDF Process Keywords Graph query formulation indexing Query Indexed Triples feedback Matching + Ranking + Connecting Retrieved Sub Graphs

15 Main Challenges Find pieces of information in the graph Indexing and Matching problems Connect the pieces of information NP-Complete problem Ranking sub graphs

16 Problem definition Given an RDF graph G and a set of keywords K An answer for K is A minimal sub graph of G that covers all keywords in K Goal: Find all possible answers for K Rank them by relevance

17 Example: Graph G "Denzel Washington" R 3 "South Dakota" R 1 :Actor R 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

18 Index literals values "Denzel Washington" R 3 "South Dakota" R 1 :Actor R 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

19 Associating with the corresponding resources "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

20 Simple indexing example Words Dakota Denzel Fanning South Washington Resource (Property) R 2 (name), R 3 (place) R 1 (name) R 2 (name) R 3 (place) R 1 (name), R 5 (place)

21 Example: K = { Dakota, Washington } "Denzel Washington" R 3 "South Dakota" R 1 :Actor R 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

22 Dakota matches with R 2 (name) and R 3 (place) "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

23 Washington matches with R 1 (name) and R 5 (place) "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

24 Combinations = { (R 2, R 5 ), (R 1, R 3 ), (R 3, R 5 ), (R 1, R 2 ) } "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

25 Combinations = { (R 2, R 5 ), (R 1, R 3 ), (R 3, R 5 ), (R 1, R 2 ) } "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

26 A movie in Washington with Dakota Fanning "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

27 Combinations = { (R 2, R 5 ), (R 1, R 3 ), (R 3, R 5 ), (R 1, R 2 ) } "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

28 A movie in South Dakota with Denzel Washington "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

29 Combinations = { (R 2, R 5 ), (R 1, R 3 ), (R 3, R 5 ), (R 1, R 2 ) } "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

30 A movie in South Dakota and a movie in Washington "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

31 Combinations = { (R 2, R 5 ), (R 1, R 3 ), (R 3, R 5 ), (R 1, R 2 ) } "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

32 Actor Denzel Washington and actress Dakota Fanning "Denzel Washington" R 3 "South Dakota" R 1 :Actor r 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

33 A movie with Denzel Washington and Dakota Fanning "Denzel Washington" R 3 "South Dakota" R 1 :Actor R 4 :Movie R 2 "Dakota Fanning" R 5 "Washington"

34 Problem definition Given an RDF graph G and a set of keywords K An answer for K is A minimal sub graph of G that covers all keywords in K Goal: Find all possible answers for K <= Not reasonable! Rank them by relevance

35 QUIOW A Keyword Search over RDF System

36 QUIOW

37 R2RML Oracle 12C Auxiliary tables RDB RDF Join Class Prop Value QUIOW SPARQL query cores graph Steiner Tree cores Matching Executor Greedy cores Parser Presentation results keywords

38 QUIOW QUIOW approaches Find pieces of information in the graph Auxiliary tables for data and metadata Indexing and Matching with Oracle Text Scoring cores based on The keywords they match The type of resource: Class > Property > Value Some basic statics

39 QUIOW QUIOW approaches Find pieces of information in the graph Greedy algorithm to select minimal cores Connect the pieces of information Steiner Tree approximation for the nucleuses Synthesize a SPARQL query to represent the Steiner Tree Rank the results based on the resources score

40 QUIOW García, G. M., Izquierdo, Y. T., Menendez, E. S., Dartayre, F., & Casanova, M. A. RDF Keyword-based Query Technology Meets a Real-World Dataset. In 20th International Conference on Extending Database Technology (EDBT), Evaluation Petrobras Petroleum Dataset Mondial - 64% of the 50 queries IMDb - 72% of the 50 queries

41 Next Steps

42 Next Steps QUIOW problems The score of cores are mostly based on keyword terms It is basically a Boolean Model Not suitable for ambiguous data as in IMDb and Mondial How can we improve the quality of QUIOW results? More sophisticated Information Retrieval models

43 Next Steps Which IR models we can adapt to RDF graphs? Vector Space Model? Language Model? Page Rank? User profiling? Which of them improves the quality of QUIOW results?

44 Next Steps Which of them improves the quality of QUIOW results? IMDb and Mondial Benchmarks DBpedia Adapt other benchmarks to RDF Social Book Search Last.fm

45 Thank you! Elisa Menendez

Comparing Keyword-based Query Processing over RDF Datasets and Relational Databases

Comparing Keyword-based Query Processing over RDF Datasets and Relational Databases Comparing Keyword-based Query Processing over RDF Datasets and Relational Databases Yenier T. Izquierdo 1,2, Grettel M. García 1,2, Elisa S. Menendez 1,2, Marco A. Casanova 1,2, Frederic Dartayre 2, Carlos

More information

Semantic Web Information Management

Semantic Web Information Management Semantic Web Information Management Norberto Fernández ndez Telematics Engineering Department berto@ it.uc3m.es.es 1 Motivation n Module 1: An ontology models a domain of knowledge n Module 2: using the

More information

Ranking RDF Instances in Degree-decoupled RDF Graphs

Ranking RDF Instances in Degree-decoupled RDF Graphs Ranking RDF Instances in Degree-decoupled RDF Graphs Elisa S. Menendez 1,2, Marco A. Casanova 1, Mohand Boughanem 2, Luiz André P. Paes Leme 3 1 Department of Informatics Pontifical Catholic University

More information

Proposal for Implementing Linked Open Data on Libraries Catalogue

Proposal for Implementing Linked Open Data on Libraries Catalogue Submitted on: 16.07.2018 Proposal for Implementing Linked Open Data on Libraries Catalogue Esraa Elsayed Abdelaziz Computer Science, Arab Academy for Science and Technology, Alexandria, Egypt. E-mail address:

More information

R2RML by Assertion: A Semi-Automatic Tool for Generating Customised R2RML Mappings

R2RML by Assertion: A Semi-Automatic Tool for Generating Customised R2RML Mappings R2RML by Assertion: A Semi-Automatic Tool for Generating Customised R2RML Mappings Luís Eufrasio T. Neto 1, Vânia Maria P. Vidal 1, Marco A. Casanova 2, José Maria Monteiro 1 1 Federal University of Ceará,

More information

SPARQL Protocol And RDF Query Language

SPARQL Protocol And RDF Query Language SPARQL Protocol And RDF Query Language WS 2011/12: XML Technologies John Julian Carstens Department of Computer Science Communication Systems Group Christian-Albrechts-Universität zu Kiel March 1, 2012

More information

Graph Databases. Guilherme Fetter Damasio. University of Ontario Institute of Technology and IBM Centre for Advanced Studies IBM Corporation

Graph Databases. Guilherme Fetter Damasio. University of Ontario Institute of Technology and IBM Centre for Advanced Studies IBM Corporation Graph Databases Guilherme Fetter Damasio University of Ontario Institute of Technology and IBM Centre for Advanced Studies Outline Introduction Relational Database Graph Database Our Research 2 Introduction

More information

Event Stores (I) [Source: DB-Engines.com, accessed on August 28, 2016]

Event Stores (I) [Source: DB-Engines.com, accessed on August 28, 2016] Event Stores (I) Event stores are database management systems implementing the concept of event sourcing. They keep all state changing events for an object together with a timestamp, thereby creating a

More information

infoh509 xml & web technologies lecture 9: sparql Stijn Vansummeren February 14, 2017

infoh509 xml & web technologies lecture 9: sparql Stijn Vansummeren February 14, 2017 infoh509 xml & web technologies lecture 9: sparql Stijn Vansummeren February 14, 2017 what have we gained? Current no structure Future structured by RDF (subject, predicate, object) b:genome b:field b:molecular-bio

More information

Linked Data. Department of Software Enginnering Faculty of Information Technology Czech Technical University in Prague Ivo Lašek, 2011

Linked Data. Department of Software Enginnering Faculty of Information Technology Czech Technical University in Prague Ivo Lašek, 2011 Linked Data Department of Software Enginnering Faculty of Information Technology Czech Technical University in Prague Ivo Lašek, 2011 Semantic Web, MI-SWE, 11/2011, Lecture 9 Evropský sociální fond Praha

More information

Semantic Cloud Generation based on Linked Data for Efficient Semantic Annotation

Semantic Cloud Generation based on Linked Data for Efficient Semantic Annotation Semantic Cloud Generation based on Linked Data for Efficient Semantic Annotation - Korea-Germany Joint Workshop for LOD2 2011 - Han-Gyu Ko Dept. of Computer Science, KAIST Korea Advanced Institute of Science

More information

A Semantic Framework for the Retrieval and Execution of Open Source Code

A Semantic Framework for the Retrieval and Execution of Open Source Code A Semantic Framework for the Retrieval and Execution of Open Source Code Mattia Atzeni and Maurizio Atzori Università degli Studi di Cagliari Problem Statement We introduce an unsupervised approach to

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2018/19 with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz January 7 th 2019 Overview What is Semantic Web? Technology

More information

Using Linked Data Concepts to Blend and Analyze Geospatial and Statistical Data Creating a Semantic Data Platform

Using Linked Data Concepts to Blend and Analyze Geospatial and Statistical Data Creating a Semantic Data Platform Using Linked Data Concepts to Blend and Analyze Geospatial and Statistical Data Creating a Semantic Data Platform Hans Viehmann Product Manager EMEA ORACLE Corporation October 17, 2018 @SpatialHannes Safe

More information

Interacting with Linked Data Part I: General Introduction

Interacting with Linked Data Part I: General Introduction Interacting with Linked Data Part I: General Introduction Agenda Part 0: Welcome Part I: General Introduction to Semantic Technologies Part II: Advanced Concepts Part III: OWLIM Part IV: Information Workbench-

More information

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS)

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 2 ITARC 2010 Stockholm 100420 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 3 Contents Trends in information / data Critical factors... growing importance Needs

More information

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS)

ITARC Stockholm Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 2 ITARC 2010 Stockholm 100420 Olle Olsson World Wide Web Consortium (W3C) Swedish Institute of Computer Science (SICS) 3 Contents Trends in information / data Critical factors... growing importance Needs

More information

a paradigm for the Introduction to Semantic Web Semantic Web Angelica Lo Duca IIT-CNR Linked Open Data:

a paradigm for the Introduction to Semantic Web Semantic Web Angelica Lo Duca IIT-CNR Linked Open Data: Introduction to Semantic Web Angelica Lo Duca IIT-CNR angelica.loduca@iit.cnr.it Linked Open Data: a paradigm for the Semantic Web Course Outline Introduction to SW Give a structure to data (RDF Data Model)

More information

THE GETTY VOCABULARIES TECHNICAL UPDATE

THE GETTY VOCABULARIES TECHNICAL UPDATE AAT TGN ULAN CONA THE GETTY VOCABULARIES TECHNICAL UPDATE International Working Group Meetings January 7-10, 2013 Joan Cobb Gregg Garcia Information Technology Services J. Paul Getty Trust International

More information

Semantic Web Fundamentals

Semantic Web Fundamentals Semantic Web Fundamentals Web Technologies (706.704) 3SSt VU WS 2017/18 Vedran Sabol with acknowledgements to P. Höfler, V. Pammer, W. Kienreich ISDS, TU Graz December 11 th 2017 Overview What is Semantic

More information

Efficient, Scalable, and Provenance-Aware Management of Linked Data

Efficient, Scalable, and Provenance-Aware Management of Linked Data Efficient, Scalable, and Provenance-Aware Management of Linked Data Marcin Wylot 1 Motivation and objectives of the research The proliferation of heterogeneous Linked Data on the Web requires data management

More information

RDF* and SPARQL* An Alternative Approach to Statement-Level Metadata in RDF

RDF* and SPARQL* An Alternative Approach to Statement-Level Metadata in RDF RDF* and SPARQL* An Alternative Approach to Statement-Level Metadata in RDF Olaf Hartig @olafhartig Picture source:htp://akae.blogspot.se/2008/08/dios-mo-doc-has-construido-una-mquina.html 2 4 htp://tinkerpop.apache.org/docs/current/reference/#intro

More information

An Entity Relatedness Test Dataset

An Entity Relatedness Test Dataset An Entity Relatedness Test Dataset José E. Talavera Herrera 1, Marco A. Casanova 1, Bernardo Pereira Nunes 1,2, Luiz André P. Paes Leme 3, Giseli Rabello Lopes 4 1 Department of Informatics Pontifical

More information

DBpedia-An Advancement Towards Content Extraction From Wikipedia

DBpedia-An Advancement Towards Content Extraction From Wikipedia DBpedia-An Advancement Towards Content Extraction From Wikipedia Neha Jain Government Degree College R.S Pura, Jammu, J&K Abstract: DBpedia is the research product of the efforts made towards extracting

More information

5/13/2009. Introduction. Introduction. Introduction. Introduction. Introduction

5/13/2009. Introduction. Introduction. Introduction. Introduction. Introduction Applying Collaborative Filtering Techniques to Movie Search for Better Ranking and Browsing Seung-Taek Park and David M. Pennock (ACM SIGKDD 2007) Two types of technologies are widely used to overcome

More information

Representing and Querying Linked Geospatial Data

Representing and Querying Linked Geospatial Data Representing and Querying Linked Geospatial Data Kostis Kyzirakos kostis@cwi.nl Centrum voor Wiskunde en Informatica Database Architectures group University of Athens School of Science Faculty of Informatics

More information

Diversification of Query Interpretations and Search Results

Diversification of Query Interpretations and Search Results Diversification of Query Interpretations and Search Results Advanced Methods of IR Elena Demidova Materials used in the slides: Charles L.A. Clarke, Maheedhar Kolla, Gordon V. Cormack, Olga Vechtomova,

More information

SPARK: Top-k Keyword Query in Relational Database

SPARK: Top-k Keyword Query in Relational Database SPARK: Top-k Keyword Query in Relational Database Wei Wang University of New South Wales Australia 20/03/2007 1 Outline Demo & Introduction Ranking Query Evaluation Conclusions 20/03/2007 2 Demo 20/03/2007

More information

Semantic Web. Tahani Aljehani

Semantic Web. Tahani Aljehani Semantic Web Tahani Aljehani Motivation: Example 1 You are interested in SOAP Web architecture Use your favorite search engine to find the articles about SOAP Keywords-based search You'll get lots of information,

More information

IJCSC Volume 5 Number 1 March-Sep 2014 pp ISSN

IJCSC Volume 5 Number 1 March-Sep 2014 pp ISSN Movie Related Information Retrieval Using Ontology Based Semantic Search Tarjni Vyas, Hetali Tank, Kinjal Shah Nirma University, Ahmedabad tarjni.vyas@nirmauni.ac.in, tank92@gmail.com, shahkinjal92@gmail.com

More information

Extending Keyword Search to Metadata in Relational Database

Extending Keyword Search to Metadata in Relational Database DEWS2008 C6-1 Extending Keyword Search to Metadata in Relational Database Jiajun GU Hiroyuki KITAGAWA Graduate School of Systems and Information Engineering Center for Computational Sciences University

More information

Publishing the Norwegian Petroleum Directorate s FactPages as Semantic Web Data

Publishing the Norwegian Petroleum Directorate s FactPages as Semantic Web Data Publishing the Norwegian Petroleum Directorate s FactPages as Semantic Web Data Martin G. Skjæveland, Espen H. Lian, Ian Horrocks Presented by Evgeny Kharlamov (Oxford University) ISWC, October 24, 2013

More information

Serving Ireland s Geospatial as Linked Data on the Web

Serving Ireland s Geospatial as Linked Data on the Web Serving Ireland s Geospatial as Linked Data on the Web Dr. Atul Nautiyal ADAPT @ Trinity College Dublin The ADAPT Centre is funded under the SFI Research Centres Programme (Grant 13/RC/2106) and is co-funded

More information

Web Ontology Editor: architecture and applications

Web Ontology Editor: architecture and applications Web Ontology Editor: architecture and applications Dmitry Shachnev Lomonosov Moscow State University, department of Mechanics and Mathematics +7-916-7053644, mitya57@mitya57.me Abstract. Тhe paper presents

More information

Semantic Web and Python Concepts to Application development

Semantic Web and Python Concepts to Application development PyCon 2009 IISc, Bangalore, India Semantic Web and Python Concepts to Application development Vinay Modi Voice Pitara Technologies Private Limited Outline Web Need better web for the future Knowledge Representation

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Integrating Complex Financial Workflows in Oracle Database Xavier Lopez Seamus Hayes Oracle PolarLake, LTD 2 Copyright 2011, Oracle

More information

Semantic Web and Linked Data

Semantic Web and Linked Data Semantic Web and Linked Data Petr Křemen December 2012 Contents Semantic Web Technologies Overview Linked Data Semantic Web Technologies Overview Semantic Web Technology Stack from Wikipedia. http://wikipedia.org/wiki/semantic_web,

More information

Vijetha Shivarudraiah Sai Phalgun Tatavarthy. CSc 8711 Georgia State University

Vijetha Shivarudraiah Sai Phalgun Tatavarthy. CSc 8711 Georgia State University Vijetha Shivarudraiah Sai Phalgun Tatavarthy CSc 8711 Georgia State University Seman&c Web Focused on machines a web talking to machines The Grid Super virtual computer Many networked loosely coupled computers

More information

BUILDING THE SEMANTIC WEB

BUILDING THE SEMANTIC WEB BUILDING THE SEMANTIC WEB You might have come across the term Semantic Web Applications often, during talks about the future of Web apps. Check out what this is all about There are two aspects to the possible

More information

SEMANTIC WEB DATA MANAGEMENT. from Web 1.0 to Web 3.0

SEMANTIC WEB DATA MANAGEMENT. from Web 1.0 to Web 3.0 SEMANTIC WEB DATA MANAGEMENT from Web 1.0 to Web 3.0 CBD - 21/05/2009 Roberto De Virgilio MOTIVATIONS Web evolution Self-describing Data XML, DTD, XSD RDF, RDFS, OWL WEB 1.0, WEB 2.0, WEB 3.0 Web 1.0 is

More information

KNOWLEDGE GRAPHS. Lecture 3: Modelling in RDF/Introduction to SPARQL. TU Dresden, 30th Oct Markus Krötzsch Knowledge-Based Systems

KNOWLEDGE GRAPHS. Lecture 3: Modelling in RDF/Introduction to SPARQL. TU Dresden, 30th Oct Markus Krötzsch Knowledge-Based Systems KNOWLEDGE GRAPHS Lecture 3: Modelling in RDF/Introduction to SPARQL Markus Krötzsch Knowledge-Based Systems TU Dresden, 30th Oct 2018 Review: RDF Graphs The W3C Resource Description Framework considers

More information

Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform

Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform Publishing Statistical Data and Geospatial Data as Linked Data Creating a Semantic Data Platform Hans Viehmann Product Manager EMEA ORACLE Corporation January 22, 2017 @SpatialHannes Safe Harbor Statement

More information

arxiv: v5 [cs.db] 29 Mar 2016

arxiv: v5 [cs.db] 29 Mar 2016 Effective Keyword Search in Graphs arxiv:52.6395v5 [cs.db] 29 Mar 26 n 5 n n 3 n 4 n 6 n 2 (a) n : n 2 : Laurence Fishburne n 3 : Birth Date (info_type) n 4 : The Matrix ABSTRACT n 7 n 8 Mehdi Kargar n,

More information

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper.

Semantic Web Company. PoolParty - Server. PoolParty - Technical White Paper. Semantic Web Company PoolParty - Server PoolParty - Technical White Paper http://www.poolparty.biz Table of Contents Introduction... 3 PoolParty Technical Overview... 3 PoolParty Components Overview...

More information

Representing Linked Data as Virtual File Systems

Representing Linked Data as Virtual File Systems Representing Linked Data as Virtual File Systems Bernhard Schandl University of Vienna Department of Distributed and Multimedia Systems http://events.linkeddata.org/ldow2009#ldow2009 Madrid, Spain, April

More information

The Semantic Web Revisited. Nigel Shadbolt Tim Berners-Lee Wendy Hall

The Semantic Web Revisited. Nigel Shadbolt Tim Berners-Lee Wendy Hall The Semantic Web Revisited Nigel Shadbolt Tim Berners-Lee Wendy Hall Today sweb It is designed for human consumption Information retrieval is mainly supported by keyword-based search engines Some problems

More information

Weaving the Pedantic Web - Information Quality on the Web of Data

Weaving the Pedantic Web - Information Quality on the Web of Data Weaving the Pedantic Web - Information Quality on the Web of Data Andreas Harth Semantic Days Stavanger KIT University of the State of Baden-Württemberg and National Large-scale Research Center of the

More information

SPARQL Extensions with Preferences: a Survey Olivier Pivert, Olfa Slama, Virginie Thion

SPARQL Extensions with Preferences: a Survey Olivier Pivert, Olfa Slama, Virginie Thion SPARQL Extensions with Preferences: a Survey Olivier Pivert, Olfa Slama, Virginie Thion 31 st ACM Symposium on Applied Computing Pisa, Italy April 4-8, 2016 Outline 1 Introduction 2 3 4 Outline Introduction

More information

Exploring and Using the Semantic Web

Exploring and Using the Semantic Web Exploring and Using the Semantic Web Mathieu d Aquin KMi, The Open University m.daquin@open.ac.uk What?? Exploring the Semantic Web Vocabularies Ontologies Linked Data RDF documents Example: Exploring

More information

Grid Resources Search Engine based on Ontology

Grid Resources Search Engine based on Ontology based on Ontology 12 E-mail: emiao_beyond@163.com Yang Li 3 E-mail: miipl606@163.com Weiguang Xu E-mail: miipl606@163.com Jiabao Wang E-mail: miipl606@163.com Lei Song E-mail: songlei@nudt.edu.cn Jiang

More information

On Measuring the Lattice of Commonalities Among Several Linked Datasets

On Measuring the Lattice of Commonalities Among Several Linked Datasets On Measuring the Lattice of Commonalities Among Several Linked Datasets Michalis Mountantonakis and Yannis Tzitzikas FORTH-ICS Information Systems Laboratory University of Crete Computer Science Department

More information

Semantic Technologies and CDISC Standards. Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent

Semantic Technologies and CDISC Standards. Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent Semantic Technologies and CDISC Standards Frederik Malfait, Information Architect, IMOS Consulting Scott Bahlavooni, Independent Part I Introduction to Semantic Technology Resource Description Framework

More information

DBpedia Extracting structured data from Wikipedia

DBpedia Extracting structured data from Wikipedia DBpedia Extracting structured data from Wikipedia Anja Jentzsch, Freie Universität Berlin Köln. 24. November 2009 DBpedia DBpedia is a community effort to extract structured information from Wikipedia

More information

CC LA WEB DE DATOS PRIMAVERA Lecture 10: RDB2RDF. Aidan Hogan

CC LA WEB DE DATOS PRIMAVERA Lecture 10: RDB2RDF. Aidan Hogan CC7220-1 LA WEB DE DATOS PRIMAVERA 2017 Lecture 10: RDB2RDF Aidan Hogan aidhog@gmail.com Previously RDF: Proposed model for a Web of Data RDF: Proposed model for a Web of Data But where should this RDF

More information

Chapter 27 Introduction to Information Retrieval and Web Search

Chapter 27 Introduction to Information Retrieval and Web Search Chapter 27 Introduction to Information Retrieval and Web Search Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 27 Outline Information Retrieval (IR) Concepts Retrieval

More information

Database of historical places, persons, and lemmas

Database of historical places, persons, and lemmas Database of historical places, persons, and lemmas Natalia Korchagina Outline 1. Introduction 1.1 Swiss Law Sources Foundation as a Digital Humanities project 1.2 Data to be stored 1.3 Final goal: how

More information

Digital Public Space: Publishing Datasets

Digital Public Space: Publishing Datasets Digital Public Space: Publishing Datasets Mo McRoberts, April 2012 I. Organise your data into sets. Implications Your data should ideally exist within a conceptual hierarchy (even if it's a singlelevel

More information

Oracle Spatial and Graph: Benchmarking a Trillion Edges RDF Graph ORACLE WHITE PAPER NOVEMBER 2016

Oracle Spatial and Graph: Benchmarking a Trillion Edges RDF Graph ORACLE WHITE PAPER NOVEMBER 2016 Oracle Spatial and Graph: Benchmarking a Trillion Edges RDF Graph ORACLE WHITE PAPER NOVEMBER 2016 Introduction One trillion is a really big number. What could you store with one trillion facts?» 1000

More information

Towards an Integrated Information Framework for Service Technicians

Towards an Integrated Information Framework for Service Technicians Towards an Integrated Information Framework for Service Technicians Sebastian Bader, Jan Oevermann KIT The Research University in the Helmholtz Association www.kit.edu How it should be: I need to do maintenance

More information

SPARQL Protocol And RDF Query Language

SPARQL Protocol And RDF Query Language SPARQL Protocol And RDF Query Language John Julian Carstens March 15, 2012 1 Introduction Beyond doubt, the world wide web has become central to the business reality of companies and to the personal reality

More information

A Formal Definition of RESTful Semantic Web Services. Antonio Garrote Hernández María N. Moreno García

A Formal Definition of RESTful Semantic Web Services. Antonio Garrote Hernández María N. Moreno García A Formal Definition of RESTful Semantic Web Services Antonio Garrote Hernández María N. Moreno García Outline Motivation Resources and Triple Spaces Resources and Processes RESTful Semantic Resources Example

More information

Keyword query interpretation over structured data

Keyword query interpretation over structured data Keyword query interpretation over structured data Advanced Methods of Information Retrieval Elena Demidova SS 2018 Elena Demidova: Advanced Methods of Information Retrieval SS 2018 1 Recap Elena Demidova:

More information

Orchestrating Music Queries via the Semantic Web

Orchestrating Music Queries via the Semantic Web Orchestrating Music Queries via the Semantic Web Milos Vukicevic, John Galletly American University in Bulgaria Blagoevgrad 2700 Bulgaria +359 73 888 466 milossmi@gmail.com, jgalletly@aubg.bg Abstract

More information

Comparative Study of RDB to RDF Mapping using D2RQ and R2RML Mapping Languages

Comparative Study of RDB to RDF Mapping using D2RQ and R2RML Mapping Languages International Journal of Information Sciences and Application. ISSN 0974-2255 Volume 10, Number 1 (2018), pp. 23-36 International Research Publication House http://www.irphouse.com Comparative Study of

More information

Learning Path Queries on Graph Databases

Learning Path Queries on Graph Databases Learning Path Queries on Graph Databases Radu Ciucanu joint work with Angela Bonifati and Aurélien Lemay University of Lille, France INRIA Lille Nord Europe Links Project EDBT 15 March 24, 2015 Radu Ciucanu

More information

Knowledge-Driven Video Information Retrieval with LOD

Knowledge-Driven Video Information Retrieval with LOD Knowledge-Driven Video Information Retrieval with LOD Leslie F. Sikos, Ph.D., Flinders University ESAIR 15, 23 October 2015 Melbourne, VIC, Australia Knowledge-Driven Video IR Outline Video Retrieval Challenges

More information

DBpedia Data Processing and Integration Tasks in UnifiedViews

DBpedia Data Processing and Integration Tasks in UnifiedViews 1 DBpedia Data Processing and Integration Tasks in Tomas Knap Semantic Web Company Markus Freudenberg Leipzig University Kay Müller Leipzig University 2 Introduction Agenda, Team 3 Agenda Team & Goal An

More information

Semantic Web and Natural Language Processing

Semantic Web and Natural Language Processing Semantic Web and Natural Language Processing Wiltrud Kessler Institut für Maschinelle Sprachverarbeitung Universität Stuttgart Semantic Web Winter 2014/2015 This work is licensed under a Creative Commons

More information

OWLIM Reasoning over FactForge

OWLIM Reasoning over FactForge OWLIM Reasoning over FactForge Barry Bishop, Atanas Kiryakov, Zdravko Tashev, Mariana Damova, Kiril Simov Ontotext AD, 135 Tsarigradsko Chaussee, Sofia 1784, Bulgaria Abstract. In this paper we present

More information

SERIMI Results for OAEI 2011

SERIMI Results for OAEI 2011 SERIMI Results for OAEI 2011 Samur Araujo 1, Arjen de Vries 1, and Daniel Schwabe 2 1 Delft University of Technology, PO Box 5031, 2600 GA Delft, the Netherlands {S.F.CardosodeAraujo, A.P.deVries}@tudelft.nl

More information

An overview of RDB2RDF techniques and tools

An overview of RDB2RDF techniques and tools An overview of RDB2RDF techniques and tools DERI Reading Group Presentation Nuno Lopes August 26, 2009 Main purpose of RDB2RDF WG... standardize a language for mapping Relational Database schemas into

More information

GeoSPARQL Support and Other Cool Features in Oracle 12c Spatial and Graph Linked Data Seminar Culture, Base Registries & Visualisations

GeoSPARQL Support and Other Cool Features in Oracle 12c Spatial and Graph Linked Data Seminar Culture, Base Registries & Visualisations GeoSPARQL Support and Other Cool Features in Oracle 12c Spatial and Graph Linked Data Seminar Culture, Base Registries & Visualisations Hans Viehmann Product Manager EMEA Oracle Corporation December 2,

More information

Semantic Integration with Apache Jena and Apache Stanbol

Semantic Integration with Apache Jena and Apache Stanbol Semantic Integration with Apache Jena and Apache Stanbol All Things Open Raleigh, NC Oct. 22, 2014 Overview Theory (~10 mins) Application Examples (~10 mins) Technical Details (~25 mins) What do we mean

More information

Flexible querying for SPARQL

Flexible querying for SPARQL Flexible querying for SPARQL A. Calì, R. Frosini, A. Poulovassilis, P. T. Wood Department of Computer Science and Information Systems, Birkbeck, University of London London Knowledge Lab Overview of the

More information

Introduction to Linked Data

Introduction to Linked Data Introduction to Linked Data Sandro Hawke, W3C sandro@hawke.org @sandhawke http://www.w3.org/2010/talks/0608-linked-data June 8 2010, Cambridge Semantic Web Gathering Outline Context Motivation Prerequisites

More information

Welcome to INFO216: Advanced Modelling

Welcome to INFO216: Advanced Modelling Welcome to INFO216: Advanced Modelling Theme, spring 2017: Modelling and Programming the Web of Data Andreas L. Opdahl About me Background: siv.ing (1988), dr.ing (1992) from NTH/NTNU

More information

Classical DB Questions on New Kinds of Data

Classical DB Questions on New Kinds of Data 1 Classical DB Questions on New Kinds of Data Marcelo Arenas & Pablo Barceló, Center for Semantic Web Research PUC Chile Universidad de Chile Evolution of data models 80s early 90s Overcome expressiveness

More information

LOD in Digital Libraries - Current Issues

LOD in Digital Libraries - Current Issues LOD in Digital Libraries - Current Issues Ansgar Scherp a.scherp@zbw.eu FG Datenbanken March 2014 Braunschweig Index Newly Acquired Media Ancient world: Library of Alexandria Today: database-oriented systems

More information

Querying the Semantic Web

Querying the Semantic Web Querying the Semantic Web CSE 595 Semantic Web Instructor: Dr. Paul Fodor Stony Brook University http://www3.cs.stonybrook.edu/~pfodor/courses/cse595.html Lecture Outline SPARQL Infrastructure Basics:

More information

A Relaxed Approach to RDF Querying

A Relaxed Approach to RDF Querying A Relaxed Approach to RDF Querying Carlos A. Hurtado churtado@dcc.uchile.cl Department of Computer Science Universidad de Chile Alexandra Poulovassilis, Peter T. Wood {ap,ptw}@dcs.bbk.ac.uk School of Computer

More information

The Web, Semantics and Data Mining

The Web, Semantics and Data Mining Future Research Challenges and Needed Resources for The Web, Semantics and Data Mining Tim Finin, Baltimore MD finin@umbc.edu http://ebiquity.umbc.edu/resource/html/id/243 10/10/07 Overview Motivation

More information

geospatial querying ApacheCon Big Data Europe 2015 Budapest, 28/9/2015

geospatial querying ApacheCon Big Data Europe 2015 Budapest, 28/9/2015 geospatial querying in ApacheCon Big Data Europe 2015 Budapest, 28/9/2015 Who am I? Sergio Fernández @wikier http://linkedin.com/in/sergiofernandez http://www.wikier.org Partner Technology Manager at Redlink

More information

Electronic Health Records with Cleveland Clinic and Oracle Semantic Technologies

Electronic Health Records with Cleveland Clinic and Oracle Semantic Technologies Electronic Health Records with Cleveland Clinic and Oracle Semantic Technologies David Booth, Ph.D., Cleveland Clinic (contractor) Oracle OpenWorld 20-Sep-2010 Latest version of these slides: http://dbooth.org/2010/oow/

More information

Analyses of RDF Triples in Sample Datasets

Analyses of RDF Triples in Sample Datasets Analyses of RDF Triples in Sample Datasets Jakub Stárka 1,2, Martin Svoboda 1,2, and Irena Mlýnková 1 1 XML and Web Engineering Research Group Faculty of Mathematics and Physics, Charles University in

More information

KNOWLEDGE GRAPHS. Lecture 4: Introduction to SPARQL. TU Dresden, 6th Nov Markus Krötzsch Knowledge-Based Systems

KNOWLEDGE GRAPHS. Lecture 4: Introduction to SPARQL. TU Dresden, 6th Nov Markus Krötzsch Knowledge-Based Systems KNOWLEDGE GRAPHS Lecture 4: Introduction to SPARQL Markus Krötzsch Knowledge-Based Systems TU Dresden, 6th Nov 2018 Review We can use reification to encode complex structures in RDF graphs: Film Actor

More information

Search Engine Architecture II

Search Engine Architecture II Search Engine Architecture II Primary Goals of Search Engines Effectiveness (quality): to retrieve the most relevant set of documents for a query Process text and store text statistics to improve relevance

More information

Re-using Cool URIs: Entity Reconciliation Against LOD Hubs

Re-using Cool URIs: Entity Reconciliation Against LOD Hubs Re-using Cool URIs: Entity Reconciliation Against LOD Hubs Fadi Maali, Richard Cyganiak, Vassilios Peristeras LDOW 2011 Copyright 2009. All rights reserved. The Web of Data The Web of Data The Web of Data

More information

E6885 Network Science Lecture 10: Graph Database (II)

E6885 Network Science Lecture 10: Graph Database (II) E 6885 Topics in Signal Processing -- Network Science E6885 Network Science Lecture 10: Graph Database (II) Ching-Yung Lin, Dept. of Electrical Engineering, Columbia University November 18th, 2013 Course

More information

SPARQL-Based Applications for RDF-Encoded Sensor Data

SPARQL-Based Applications for RDF-Encoded Sensor Data SPARQL-Based Applications for RDF-Encoded Sensor Data Mikko Rinne, Seppo Törmä, Esko Nuutila http://cse.aalto.fi/instans/ 5 th International Workshop on Semantic Sensor Networks 12.11.2012 Department of

More information

FedX: Optimization Techniques for Federated Query Processing on Linked Data. ISWC 2011 October 26 th. Presented by: Ziv Dayan

FedX: Optimization Techniques for Federated Query Processing on Linked Data. ISWC 2011 October 26 th. Presented by: Ziv Dayan FedX: Optimization Techniques for Federated Query Processing on Linked Data ISWC 2011 October 26 th Presented by: Ziv Dayan Andreas Schwarte 1, Peter Haase 1, Katja Hose 2, Ralf Schenkel 2, and Michael

More information

The role of vocabularies for estimating carbon footprint for food recipies using Linked Open Data

The role of vocabularies for estimating carbon footprint for food recipies using Linked Open Data The role of vocabularies for estimating carbon footprint for food recipies using Linked Open Data Ahsan Morshed Intelligent Sensing and Systems Laboratory, CSIRO, Hobart, Australia {ahsan.morshed, ritaban.dutta}@csiro.au

More information

Why You Should Care About Linked Data and Open Data Linked Open Data (LOD) in Libraries

Why You Should Care About Linked Data and Open Data Linked Open Data (LOD) in Libraries Why You Should Care About Linked Data and Open Data Linked Open Data (LOD) in Libraries Florida Library Webinars Novare Library Services May 30, 2014 Jason Clark Head of Library Informatics & Computing

More information

Semantic Annotation and Linking of Medical Educational Resources

Semantic Annotation and Linking of Medical Educational Resources 5 th European IFMBE MBEC, Budapest, September 14-18, 2011 Semantic Annotation and Linking of Medical Educational Resources N. Dovrolis 1, T. Stefanut 2, S. Dietze 3, H.Q. Yu 3, C. Valentine 3 & E. Kaldoudi

More information

OKKAM-based instance level integration

OKKAM-based instance level integration OKKAM-based instance level integration Paolo Bouquet W3C RDF2RDB This work is co-funded by the European Commission in the context of the Large-scale Integrated project OKKAM (GA 215032) RoadMap Using the

More information

Interleaving Clustering of Classes and Properties for Disambiguating Linked Data

Interleaving Clustering of Classes and Properties for Disambiguating Linked Data Interleaving Clustering of Classes and Properties for Disambiguating Linked Data Takahiro Komamizu, Toshiyuki Amagasa, Hiroyuki Kitagawa University of Tsukuba Background 2 Linked Data Linked Data (or LD,

More information

I'm going to introduce you to the basic concepts of linked data and provide some context on how linked data might be used to enhance access to

I'm going to introduce you to the basic concepts of linked data and provide some context on how linked data might be used to enhance access to I'm going to introduce you to the basic concepts of linked data and provide some context on how linked data might be used to enhance access to Canadian legal resources on the emerging semantic web. I'll

More information

SPARQL (RDF Query Language)

SPARQL (RDF Query Language) Mustafa Jarrar: Lecture Notes on SPARQL RDF Query Language. Birzeit University, 2019 Version 4 SPARQL (RDF Query Language) Mustafa Jarrar Birzeit University 1 Watch this lecture and download the slides

More information

Contribution of OCLC, LC and IFLA

Contribution of OCLC, LC and IFLA Contribution of OCLC, LC and IFLA in The Structuring of Bibliographic Data and Authorities : A path to Linked Data BY Basma Chebani Head of Cataloging and Metadata Services, AUB Libraries Presented to

More information

Graph Data Management & The Semantic Web

Graph Data Management & The Semantic Web Graph Data Management & The Semantic Web Prof. Dr. Philippe Cudré-Mauroux Director, exascale Infolab University of Fribourg, Switzerland GDM Workshop, Washington DC, April 5, 2012 The Semantic Web Vision

More information

Ranked Keyword Query on Semantic Web Data

Ranked Keyword Query on Semantic Web Data 2010 Seventh International Conference on Fuzzy Systems and Knowledge Discovery (FSKD 2010) Ranked Keyword Query on Semantic Web Data Huiying Li School of Computer Science and Engineering Southeast University

More information