0
votes
0answers
95 views

Find all the senses from wordnet(hypernym relation) using sparql query?

I have following sparql SELECT " + "WHERE {" + " wn20instances:synset-tank-noun-1 ^wn20schema:hyponymOf ?hypo . " + " }"; By using ...
1
vote
1answer
148 views

how to find Hypernym relation from wordnet using Sparql query?

How to find Hypernym relation from wordnet using Sparql query? I can find easily hyponym relation but i can't able to find hypernym relation. Following example for hyponym relation. "SELECT ?hypo " ...
4
votes
2answers
237 views

How to find the “lexical file” in Wordnet?

If you look at the original Wordnet search and select "Display options: Show Lexical File Info", you'll see an extremely useful classification of words called lexical file. Eg for "filling" we have: ...
3
votes
1answer
677 views

Wordnet access using queries

Has anyone seen a library to access wordnet using some sort of query language? My idea is that there should be a way to write something like> SELECT hyperonyms(word, level) WHERE word = 'art' I've ...