graph based rdf
play

Graph-Based RDF Knowledge Graph Research Lei Zou Peking - PowerPoint PPT Presentation

Graph-Based RDF Knowledge Graph Research Lei Zou Peking University, China 1 Collaborators Prof. Tamer Ozsu, University of Waterloo Prof. Jeffrey Xu Yu, The Chinese University of Hong Kong Prof. Lei Chen, Hong Kong University of Science and


  1. Graph-Based RDF Knowledge Graph Research Lei Zou Peking University, China 1

  2. Collaborators Prof. Tamer Ozsu, University of Waterloo Prof. Jeffrey Xu Yu, The Chinese University of Hong Kong Prof. Lei Chen, Hong Kong University of Science and Technology Dr. Haixun Wang, Facebook 2

  3. Collaborators PhD students (including alumni): Weiguo Zheng, graduated at 2015, post-doc in The Chinese University of Hong Kong; Peng Peng, graduated at 2016, assistant professor in Hunan University. Shuo Han Seng Hu Master Students (including alumni): Shuo Yang Xinbo Zhang 3

  4. Knowledge Graph Google launches Knowledge Graph project at 2012. 4

  5. Knowledge Graph Essentially, KG is a sematic network, which models the entities (including properties) and the relation between each other. 5

  6. RDF Data Model xmlns:y=http://en.wikipedia.org/wiki y:Abraham Lincoln • RDF is the de-facto standard data format for Knowledge Graph. • Simple triple format <subject, predicate, object> Abraham Lincoln:hasName "Abraham Lincoln" Abraham Lincoln:BornOnDate: "1809-02-12" • Represent both the properties of Abraham Lincoln:DiedOnDate: "1865-04-15" entities and relations between DiedIn entities. y:Washington_DC 7

  7. RDF & SPARQL RDF Datasets “ Finding people who was Subject Predicate Object born in 1976 and his birth place is a city built on 1718. ” Abraham_Lincoln hasName “Abraham Lincoln" Abraham_Lincoln BornOnDate “1809 -02-12" Abraham_Lincoln DiedOnDate “ 1865-04-15" ” SPARQL SELECT ?name Abraham_Lincoln DiedIn Washington_DC WHERE { Abraham_Lincoln bornIn Hodgenville KY ?m <bornIn> ? c i t y . Reese_Witherspoon bornOnDate "1976-03-22" ?m <hasName> ?name . Reese_Witherspoon bornIn New_Orleans_LA ?m <bornOnDate> ?bd . ? c i t y <foundingYear> ` `1718 ' ' . New_Orleans_LA foundingYear “1718” FILTER( regex (str (?bd ), “ 1 9 7 6 ' ' ) ) New Orleans LA locatedIn United_States } United_States hasName “ United States ” United_States hasCapital Washington_DC United_States foundingYear “1776” 8

  8. Interdisciplinary Research Database RDF Database Data Integration 、 Knowledge Fusion Machine Natural Language Learning Processing Knowledge KG Information Extraction Representation Semantic Parsing (Graph Embedding) Knowledge Engineering KB construction Rule-based Reasoning 9

  9. Knowledge Engineering KB construction [ Mendes et al. 12; Suchanek et al. 07; Bollacker ] Leipzig University Max-Planck-Institute Metaweb Company, University of Mannheim acquired by Google in 2010 OpenLink Software 1.1 Billion 180 Million 2.5 Billion Triples Triples Triples 10

  10. Natural Language Processing Semantic Parsing [Zettlemoyer et al., UAI 05] Transforming natural language (NL) sentences into computer executable complete meaning representations (MRs) for domain-specic applications. E.g., “ Which states borders New Mexico ? ” Lambda- calculus [Alonzo Church, 1940 ] “ Simply typed Lambda-calculus can express varies database query languages such as relational algebra , fixpoint logic and the complex object algebra." [Hillebrand et al., 1996] 11

  11. Machine Learning Knowledge Representation: TransE [Bordes et al., NIPS 13] • For each triple (Subject,Predicate,Object), “Predicate” as a translation from Subject to Object • Each Subject/Predicate/Object in KG maps to a multidimension vectors S P O • Objective: S+P=O China Capital Beijing Canada Capital Ottawa …… …… …… Beijing − China ≈ =Capital Ottawa − Canada 12

  12. Database A Fundamental Problem : How to store RDF data and answer SPARQL queries Subject Predicate Object SPARQL Abraham_Lincoln hasName “Abraham Lincoln" SELECT ?name Abraham_Lincoln BornOnDate “1809 -02-12" WHERE { Abraham_Lincoln DiedOnDate “ 1865-04-15" ” ?m <bornIn> ? c i t y . Abraham_Lincoln DiedIn Washington_DC ?m <hasName> ?name . Abraham_Lincoln bornIn Hodgenville KY ?m <bornOnDate> ?bd . Reese_Witherspoon bornOnDate "1976-03-22" ? c i t y <foundingYear> ` `1718 ' ' . Reese_Witherspoon bornIn New_Orleans_LA FILTER( regex (str (?bd ), “ 1 9 7 6 ' ' ) ) New_Orleans_LA foundingYear “1718” } New Orleans LA locatedIn United_States United_States hasName “ United States ” United_States hasCapital Washington_DC How to answer United_States foundingYear “1776” SPARQL efficiently. DBpeida and Freebase have more than billions of triples 13

  13. Graph 14

  14. Graph Graph is everywhere: Citation Network Social Network Road Network Knowledge Graph Internet Protein Network 15

  15. Graph computing is different from traditional computing task. Benchmark Solving a dense n by n BFS search over a system of linear equations large graph Ax = b Measure floating point computing GTEPS (giga- power (TFlops/s). traversed edges per second). Applications Engineering computing data-intensive workloads 16

  16. Graph computing is different from traditional computing task. 17

  17. Knowledge “GRAPH” Subject Predicate Object Abraham_Lincoln hasName “Abraham Lincoln" Abraham_Lincoln BornOnDate “1809 -02-12" Abraham_Lincoln DiedOnDate “ 1865-04-15" ” Abraham_Lincoln DiedIn Washington_DC Abraham_Lincoln bornIn Hodgenville KY Reese_Witherspoon bornOnDate "1976-03-22" Reese_Witherspoon bornIn New_Orleans_LA New_Orleans_LA foundingYear “1718” New Orleans LA locatedIn United_States United_States hasName “ United States ” United_States hasCapital Washington_DC United_States foundingYear “1776” 18

  18. Graph-based RDF Data management KG problems Graph Techniques SPARQL Query Evaluation Subgraph Matching Natural Language Question Answering over Bipartite graph matching KG Keyword Search over Similarity Subgraph KG Search Semantic Search Random walk-based Similarity Computing Ontology-based Document Retrieval 19

  19. Graph-based RDF Data management KG problems Graph Techniques Our Solution SPARQL Query Evaluation Subgraph Matching Natural Language Question Answering over Bipartite graph matching KG Keyword Search over Similarity Subgraph KG Search Semantic Search Random walk-based Similarity Computing Ontology-based Document Retrieval 20

  20. Subgraph Matching-based SPARQL Query Evaluation 21

  21. A Fundamental Problem : How to store RDF data and answer SPARQL queries Subject Predicate Object SPARQL Abraham_Lincoln hasName “Abraham Lincoln" SELECT ?name Abraham_Lincoln BornOnDate “1809 -02-12" WHERE { Abraham_Lincoln DiedOnDate “ 1865-04-15" ” ?m <bornIn> ? c i t y . Abraham_Lincoln DiedIn Washington_DC ?m <hasName> ?name . Abraham_Lincoln bornIn Hodgenville KY ?m <bornOnDate> ?bd . Reese_Witherspoon bornOnDate "1976-03-22" ? c i t y <foundingYear> ` `1718 ' ' . Reese_Witherspoon bornIn New_Orleans_LA FILTER( regex (str (?bd ), “ 1 9 7 6 ' ' ) ) New_Orleans_LA foundingYear “1718” } New Orleans LA locatedIn United_States United_States hasName “ United States ” United_States hasCapital Washington_DC How to answer United_States foundingYear “1776” SPARQL efficiently. DBpeida and Freebase have more than billions of triples 22

  22. Existing Solutions: Resorting to SELECT ?name RDBMS techniques SPARQL WHERE { ?m <bornIn> ? c i t y . Subject Predicate Objects ?m <hasName> ?name . ?m <bornOnDate> ?bd . Abraham_Lincoln hasName “Abraham Lincoln" ? c i t y <foundingYear> ` `1718 ' ' . Abraham_Lincoln BornOnDate “1809 -02-12" FILTER( regex (str (?bd ), “ 1 9 7 6 ' ' ) ) Abraham_Lincoln DiedOnDate “ 1865-04-15" ” } Abraham_Lincoln DiedIn Washington_DC SQL Abraham_Lincoln bornIn Hodgenville KY SELECT T2 . o b j e c t Reese_Witherspoon bornOnDate "1976-03-22" FROM T as T1 , T as T2 , T as T3 , Too many self- Reese_Witherspoon bornIn New_Orleans_LA T as T4 joins New_Orleans_LA foundingYear “1718” WHERE T1.property=" bornIn " AND T2.property= "hasName" New Orleans LA locatedIn United_States AND T3.property= "bornOnDate " United_States hasName “ United States ” AND T1.subject=T2.subject United_States hasCapital Washington_DC AND T2.subject=T3.subject United_States foundingYear “1776” AND T1.object=T4.subject AND T4.propety=“ foundingYear “ AND T4.object=" 1718 " 23 AND T3.object LIKE '%1976%'

  23. Existing Solutions (based on RDBMS techniques) • Property Table Jena [Wilkinson et al., 2003] ,FlexTable [Wang et al., 2010] , DB2-RDF [Bornea et al., 2013] • Vertically partitioned tables SW-store [Abadi et al., 2009] • Exhaustive indexing RDF-3X [Neumann and Weikum, 2008], Hexastore [Weiss et al., 2008] Basic Ideas: dividing the large single triple-table into several carefully-designed tables. • M. T. Özsu. "A Survey of RDF Data Management Systems", Front. Comp. Sci., 2016. • Lei Zou, M. T. Özsu. “ Graph-based RDF Data Management ”, Data Science and Engineering, 2(1): 56-70 (2017) 24

  24. Our Solution---gStore [Zou et al., VLDB 11; VLDB J 14 ] Answering SPARQL == subgraph matching 25

  25. Our Solution---gStore [Zou et al., VLDB 11; VLDB J 14 ] Main Techniques: • Store RDF graph G as adjacency lists; • Neighborhood Structure Summarization — Encoding • Structure-aware Index – VS*-tree. 26

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend