Skip to content

Commit 34f9ee9

Browse files
committed
Merge branch 'gsoc-stuart' of https://github.com/StuartCHAN/neural-qa into gsoc-stuart
2 parents 5c87159 + 5ad6ee1 commit 34f9ee9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

data/annotations_Person.csv

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
dbo:Person;;;what did <A> die from?;select distinct ?uri where { <A> dbo:deathCause ?uri . };select distinct ?a where { ?a dbo:deathCause ?uri . };
2+
dbo:Person;;;when did <A> die?;select distinct ?d where { <A> dbo:deathDate ?d . };select distinct ?a where { ?a dbo:deathDate ?d . };
3+
dbo:Person;;;where is <A> buried?;select distinct ?uri where { <A> dbo:restingPlace ?uri . };select distinct ?a where { ?a dbo:restingPlace ?uri . };
4+
dbo:Person;;;where was <A> born?;select distinct ?uri where { <A> dbo:birthPlace ?uri . };select distinct ?a where { ?a dbo:birthPlace ?uri . };
5+
dbo:Person;;;which country was <A> born in?;select distinct ?uri where { <A> dbo:birthPlace ?x . ?x dbo:country ?uri . };select distinct ?a where { ?a dbo:birthPlace ?x . ?x dbo:country ?uri . };
6+
dbo:Person;;;who are the parents of the wife of <A>?;select distinct ?uri where { <A> dbo:spouse ?x . ?x dbo:parent ?uri . };select distinct ?a where { ?a dbo:spouse ?x . ?x dbo:parent ?uri . };
7+
dbo:Person;;;who is the daughter of <A> married to?;select distinct ?uri where {<A> dbo:child ?child . ?child dbo:spouse ?uri . };select distinct ?a where { ?a dbo:child ?child . ?child dbo:spouse ?uri . };
8+
dbo:Person;;;who is the oldest child of <A>?;select distinct ?uri where { <A> dbo:child ?uri . ?uri dbo:birthDate ?d . } order by asc(?d) offset 0 limit 1;select distinct ?a where { ?a dbo:child ?uri . ?uri dbo:birthDate ?d . };
9+
dbo:Person;;;who was married to <A>?;select distinct ?uri where { <A> dbo:spouse ?uri . };select distinct ?a where { ?a dbo:spouse ?uri . };
10+
dbo:Person;;;who was the father of <A>?;select distinct ?uri where { <A> dbp:father ?uri . };select distinct ?a where { ?a dbp:father ?uri . };
11+
dbo:Person;;;who was the wife of <A>?;select distinct ?uri where { <A> dbo:spouse ?uri. };select distinct ?a where { ?a dbo:spouse ?uri. };
12+
dbo:Person;;;who were the parents of <A>?;select distinct ?uri where { <A> dbo:parent ?uri . };select distinct ?a where { ?a dbo:parent ?uri . };
13+
dbo:Person;;;whom did <A> marry?;select distinct ?uri where { ?uri dbo:spouse <A> . };select distinct ?a where { ?uri dbo:spouse ?a . };
14+
dbo:Person;;;who was the successor of <A>?;select distinct ?uri where { <A> dbo:successor ?uri . };select distinct ?a where { ?a dbo:successor ?uri . };

0 commit comments

Comments
 (0)