0
votes
0answers
36 views

Using wordnet in java

I am new to wordnet API and I am struggling how I can get to th following issue; I would like that if I give for example "George Bush" I will arrive to the term person. The following diagram ...
0
votes
1answer
28 views

how to get wordNet lexical categories ( noun categories and verb categories ) using JAWS pacakage

If i have array List of words (String). I want to get lexical category of every word. Word Net has noun categories, verb categories and others. I want to get category of each word. How to get this in ...
0
votes
2answers
101 views

Wordnet Find Synonyms

I am searching for a way to find all the synonyms of a particular word using wordnet. I am using JAWS. For example: love(v): admire, adulate, be attached to, be captivated by, be crazy about, be ...
-4
votes
1answer
97 views

which java embedded database has the most documentation for beginners [closed]

I am new to this forum, I hope not to offend but I want to use a java embedded database for to hold a dictionary and a thesaurus (like wordnet) but I am new to using databases and java. Which java ...
0
votes
1answer
101 views

Require help on accessing WordNet hierarchy for implementing algorithm

I am trying to implement Resnik's similarity measure using WordNet hierarchy in java. Example:- deposit money in bank. In above example suppose I want to disambiguate DEPOSIT & BANK. So, I will ...
7
votes
0answers
279 views

how to integrate “WordNet Domains” into WordNet?

I am using WordNet 2.1 tool and accessing it pro-grammatically via JAWS(Java API for WordNet Searching). Today I came across this new thing called WordNet Domains which has assigned DOMAIN labels to ...
1
vote
1answer
160 views

How to programatically access wordnet hierarchy?

Suppose for any word I want to access its IS-A parent value and HAS-A value then is it possible using any api?
0
votes
1answer
107 views

In case of WordNet similarity measures like resnik, lin, leacock, etc what is meaning of path length?

what exactly is path length and how to compute the same. I am using jaws
1
vote
1answer
307 views

how to access WordNet hierarchy using JAWS api?

I am trying to access the top most object in the WordNet hierarchy. Example: "Tiger" must return "Animal", similarly for other things like "car" -> automobile I am using JAWS api for access to ...
0
votes
0answers
212 views

Google App Engine Wordnet access with JAWS

I have a program that I have written in Java which accesses the Wordnet database (stored locally) using the JAWS library ( http://lyle.smu.edu/~tspell/jaws/index.html ). I am looking to migrate this ...
0
votes
2answers
624 views

JAWS wordnet similarity

I use JAWS for normal wordnet to find similarity between words. I installed wordnet 2.1 and I added the jar file : edu.mit.jwi_2.1.4.jar and edu.sussex.nlp.jws.beta.11.jar and I copier the ...
1
vote
2answers
1k views

finding distance between synsets in wordnet

I use Java API for wordnet searching(JAWS) for accessing wordnet from java . When i got to read a few papers about semantic similarity with java , they expect me to find the distance between two ...
1
vote
1answer
846 views

Finding the roots of a word in java using wordnet

I am aware of the hypernym in wordnet , but since there are a number of meaning for every term i am forced to using Lesk algorithm to find the contextual meaning of a word . In the process , i got ...
5
votes
2answers
327 views

Using wordnet (or some simple dictionary) to check if a noun is countable or uncountable from Java program

I found 2 libraries in Java – JWNL and JAWS. So far, it seems to me that these APIs are good for finding synsets and hyponyms and similar things. Do you know if there is some tool to use wordnet to ...
3
votes
3answers
5k views

Wordnet Similarity in Java: JAWS, JWNL or Java WN::Similarity?

I need to use Wordnet in a java-based app. I want to: search synsets find similarity/relatedness between synsets My app uses RDF graphs and I know there are SPARQL endpoints with Wordnet, but I ...