You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jena.apache.org by Kanchan Arora <ka...@iiitd.ac.in> on 2013/11/02 13:27:38 UTC

Jena

Presently I am working on a wikipedia category "English language poets from
India". There are 55 articles in this category.

I have collected facts for each poet from yagoFacts file(one of the yago
ontology file ) in a separate file .For example I have a file
Abhay_Kumar.ttl containing the folowing triples:
<Abhay_Kumar> <hasWebsite> <http://gov2.in/speakers/abhay-k> .
<Abhay_Kumar> <hasGender> <male> .
<Abhay_Kumar> <wasBornIn> <Nalanda> .
<Abhay_Kumar> <isCitizenOf> <India> .
<Abhay_Kumar> <livesIn> <New_Delhi> .
<Abhay_Kumar> <graduatedFrom> <Jawaharlal_Nehru_University> .
<Abhay_Kumar> <wasBornOnDate> "1980-##-##"^^xsd:date .

I have 55 such files. Now I want to add yagoTypes and yagoTaxonomy
knowledge in this files.

For eg:
<Abhay_Kumar> <type> <wikicategory_Indian_civil_servants>.

<Abhay_Kumar> <type> <wordnet_person_100007846>.

<Abhay_Kumar> <type> <wikicategory_English-language_writers_from_India>.
<Nalanda> <type>
<wikicategory_Cities_and_towns_in_Nalanda_district>.

<India> <type> <wordnet_economy_108366753>.
<wordnet_economy_108366753> <subClassOf> <wordnet_system_108435388>.
.
.
so that I can infer new interesting facts .
Can anyone tell me how I can do this using jena library.

Thanks,
Kanchan