Yago 2 Demo 1 SPOTLX 2 Sparql SPOTL

  • Slides: 19
Download presentation
Yago 2 Demo

Yago 2 Demo

1. SPOTL(X) 2. Sparql

1. SPOTL(X) 2. Sparql

SPOTL • • • S: Subject P: Property O: Object T: Temporal L: Locate

SPOTL • • • S: Subject P: Property O: Object T: Temporal L: Locate

SPOTL(X) representation • RDF models were queried using SPARQL queries. • They had a

SPOTL(X) representation • RDF models were queried using SPARQL queries. • They had a drawback that even a small query on a particular object required convoluted joins. • In order to over come this, a new model is presented. SPOTL(X) View: • Instead of seeing only SPO triples, now the user sees extended 5 -tuples where each fact includes its associated temporal and spatial information. • This is SPOTL view: SPO triples augmented by Time and Location.

Politicians who are also scientists, born nearby Hamburg, after the year 1900

Politicians who are also scientists, born nearby Hamburg, after the year 1900

Politicians who are also scientists, born nearby Hamburg, after the year 1900 • 위의

Politicians who are also scientists, born nearby Hamburg, after the year 1900 • 위의 그림에서 표시해 둔 Hamburg를 쿼리상에 직접 near. By로 넣으면 결과는 아무것도 반환하지 않는다.

Companies founded in Silicon valley in the last 3 decades, together with their founders

Companies founded in Silicon valley in the last 3 decades, together with their founders 앞의 문제와 같이 location에 silicon valley를 사용하면 아무것도 반환 하지 않아, keywords에 사용하여 유사한 결과를 얻어내었다.

Sparql • Yago 2 endpoint – http: //lod 2. openlinksw. com/sparql

Sparql • Yago 2 endpoint – http: //lod 2. openlinksw. com/sparql

아인슈타인이 졸업한 취리히공과대학 • Query 1: SELECT ? u ? v ? w WHERE

아인슈타인이 졸업한 취리히공과대학 • Query 1: SELECT ? u ? v ? w WHERE { : Albert_Einstein ? u ? v ? w "Zurich Polytechnic" } • Answer: U V w graduated. From ETH_Zurich rdfschema#label

아인슈타인이 졸업한 학교의 레이 블을 확인하는 쿼리 • PREFIX resource: <http: //yago-knowledge. org/resource/> •

아인슈타인이 졸업한 학교의 레이 블을 확인하는 쿼리 • PREFIX resource: <http: //yago-knowledge. org/resource/> • SELECT ? gname WHERE { • resource: Albert_Einstein resource: graduated. From ? g. • ? g rdfs: label ? gname. • } • "Zurich Polytechnic“라고 정확하게 기재되어있지는 않다. – http: //lod. openlinksw. com/describe/? uri=http: //yagoknowledge. org/resource/ETH_Zurich

아인슈타인이 졸업한 취리히공과대학 PREFIX resource: <http: //yago-knowledge. org/resource/> SELECT ? u ? v ?

아인슈타인이 졸업한 취리히공과대학 PREFIX resource: <http: //yago-knowledge. org/resource/> SELECT ? u ? v ? w WHERE { resource: Albert_Einstein ? u ? g. ? v ? w "ETH Zurich"@en. }

Black_Sabbath • Query 2: SELECT ? u ? v ? w WHERE { :

Black_Sabbath • Query 2: SELECT ? u ? v ? w WHERE { : Black_Sabbath ? u ? v ? w "Grammy Showcase Award" } • Answer: U V w has. Won. Prize Grammy_Award rdf-schema#label

Michael_Jackson • Black_Sabbath를 Michael_Jackson으로 대체 • Query 2: PREFIX resource: <http: //yago-knowledge. org/resource/> SELECT

Michael_Jackson • Black_Sabbath를 Michael_Jackson으로 대체 • Query 2: PREFIX resource: <http: //yago-knowledge. org/resource/> SELECT ? u ? v ? w WHERE { resource: Michael_Jackson ? u ? v ? w resource: Grammy_Award }