0
votes
2answers
87 views
+50
WordNetSimalarity in large dataset of synsets
I use wordnet similarity java api to measure similarity between two synsets as such:
public class WordNetSimalarity {
private static ILexicalDatabase db = new NictWordNet();
private static ...
0
votes
0answers
12 views
How can I obtain Wikipedia Category for a query using YAGO?
I need this solution in JAVA. The tool provided by YAGO team is called Javatools.
If I query "Iphone" in YAGO's online SVG Browser, I get the rdf:type "wordnet_personal_digital_assistant_103918737" ...
0
votes
0answers
30 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
50 views
How to get the semantic orientation of String or adjectives by using SentiWordNet
I am doing a project on sentiment analysis. I need the semantic orientation of String or adjectives so I recommended to use SentiWordNet_3.0.0 from the reference post of Stackoverflow ”How to use ...
0
votes
1answer
26 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 ...
-5
votes
0answers
51 views
trying to do some sentiment analysis using SentiWordNet [closed]
My final yr project is on sentiment analysis.In this purpose I want to use SentiWordNet_3.0.0.I had run the following code but every time I get the output
java.lang.ArrayIndexOutOfBoundsException: 2 ...
-2
votes
0answers
49 views
Computing Word similarity using wordnet in Eclipse or Matlab [closed]
I've been trying to run wordnet source code and classes from http://www.sussex.ac.uk/Users/drh21/ on Eclipse. Can anyone guide me on how to import the file and run them correctly.I'm still new with ...
0
votes
0answers
10 views
Is there a way to access the specific word given its ID in WordNet using edu.mit.jwi?
I am using edu.mit.jwi class to access the WordNet database. I have an ID for example=001222N.
I want to fetch the corresponding word lemma and gloss. is this possible?
I tried this:-
IWord ...
-4
votes
1answer
94 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
0answers
105 views
WordNet Java API
I'm having to use a Java API for WordNet, it will be for a big implementation. I'm searching but coming across many;
JWordNet(http://sourceforge.net/projects/jwordnet/)
MIT Java WordNet Interface ...
0
votes
0answers
70 views
wordnet for Arabic language using eclipse [closed]
my project is to built an application which analyse sentiments in Arabic language and classify them into positive and negative , I read a lot of documents and I knew that sentiment should be analysed ...
2
votes
4answers
176 views
Java based Word mapping (semantic) application
I want to develop an Java based application to map synonyms to a unique code or a word. For example in medical terms, the word heart attack or cardiac arrest etc. means the same thing. So I want to ...
0
votes
0answers
57 views
How to get text word from WordNet and JWI?
I am using JWI and WordNet, and trying to figure out how to get the text of word via JWI.
I have the following code, but don't know how to get the text of IWord. - seems no API can get the text ...
1
vote
1answer
229 views
How to find the root of an adjective using Wordnet or any other NLP tool?
I need to stem words to get the root words. I was able to get the stemmed words for nouns and verbs but unable to get the root words of adjectives.
WordnetStemmer stem = new ...
0
votes
0answers
143 views
Computing similarity measure
I'm using JWNL and to compute similarity measure between Strings according to wordnet, I run this code:
import java.io.FileInputStream;
import java.util.HashMap;
import java.util.Map;
import ...
0
votes
1answer
321 views
How can I find synonyms in estimated frequency order using JWNL(Wordnet Library)?
Does anyone know how I can take the synonyms of a word using JWNL (Java Wordnet Library) ordered by estimated frequency? I know this can be done somehow, because Wordnet's application can do it. (I ...
1
vote
1answer
948 views
Trying to find synonyms using wordnet java api
I am trying to find synonyms of some words(String type) in java using Wordnet java api. I have difficulties though in figuring out how it works.
I found this link ...
0
votes
1answer
226 views
MIT Java WordNet Interface: Getting WordNet lexicographer classes or super-senses
I have a project where I need to get the lexical meaning of a word. I am thinking of using WordNet because it has its own lexicographer classes also called super-senses. I just downloaded MIT JWI and ...
1
vote
1answer
139 views
WordNet getting depth of hypernymy
I'm quite new to WordNet. I need some help understanding the structure of WordNet. Currently, I used the MIT JWI WordNet package to implement my system.
So far, I am able to retrieve the synsets and ...
0
votes
1answer
69 views
I want to find some java APIs which can help me to generate words randomly
I'm doing some research in generating creative ideas and I need a java API that can randomly generate words. Do you have some recommendations? For example, I type color, the API will give me "red, ...
2
votes
1answer
172 views
wordnet word phrase in synset
How can we find the word phrases in a synset ? In particular, take this synset for the adj "booked":
booked, engaged, set-aside -- (reserved in advance)
I use the RitaWN Java package (WordNet ...
7
votes
0answers
275 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 ...
0
votes
1answer
363 views
Similarity measurement with wordnet?
I'm using wordnet to calculate similarity measurement between two words. I'm using edu.mit.jwi_2.1.4.jar and edu.sussex.nlp.jws.beta.11.jar but when I calculate the words "apple" and "banana" by ...
0
votes
0answers
166 views
wordNet - word sense
How can I get word sense for a word from a sentence using JWI, JWNL or JAWA any one of them and check if the word is Adjective satellite(s), I am using Stanford parser for part of speech tagging and ...
0
votes
0answers
100 views
i am working on my final year project which is: Getting better search engine results using NLP [closed]
Basically when user gives sentence as input, i want to find out the context of the sentence and use it to give better results.
I am in my initial phase of reading into the techniques available and I ...
0
votes
0answers
111 views
Using System.setProperty for files within project, no local file system (for android)
I am trying to integrate WordNet with my application in Android.
Before I can access the WordNet Database, I need to include a path to the original program.
I have it successfully working when it ...
1
vote
1answer
189 views
Editing Wordnet Dictionary using EXTJWNL
I wanted to add a new synset to Wordnet using the extjwnl library. In order to do this, I wrote the following sample code. After saving, I observe that the new synonym and word do get added, but the ...
0
votes
2answers
174 views
Getting word stems with JWI and Wordnet
How do I correctly use the stemmer method implemented in MIT's JWI (Java API for WordNet) in order to get the stem of a word? I'm not sure how to initialize a stemmer and use the findStems method.
1
vote
1answer
377 views
Java - Getting array of nouns with Wordnet and JWI
I have a pretty easy question regarding WordNet and MIT JWI (Java API for accessing WordNet): I read a file into an array of strings, which I've split into words. How can I get a separate array of ...
0
votes
0answers
55 views
JWI and Wordnet - how do I navigate through the nodes?
I am currently trying to use the MIT JWI Java API to access Wordnet for some fairly basic interrogations, however I can't find a way to navigate through the nodes.
After thoroughly searching the API ...
0
votes
0answers
211 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
224 views
WordNet - Which Java API to use for calculating distance metrics
As the title implies, I am looking for a WordNet Java API with which I can quickly test some distance metric algorithms (ex. Resnik, Leacock and Chodorow, etc). I've read the documentation of JWNL, ...
0
votes
0answers
37 views
wordnet with j2me
Is there a way of using wordnet with j2me for my mobile application ?
I have used it with java using JAWS package but not sure if it works with the mobile edition.
please help me out with this.
0
votes
2answers
622 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
1answer
496 views
Does any one know how to expand queries using Wordnet with Lucene 3.6?
I've found the class WordnetSynonymParser in org.apache.lucene.analysis.synonym but there aren't examples of its usage neither in the API nor in google. Does any one have experience with it?
Thank ...
0
votes
0answers
169 views
WordNet (JWNL) how to go about retrieving specific senses
I am trying to find the specific senses of words using JWNL. I found the senses that I am looking for, but how do I go about storing these senses for use later - I want to compare two texts for a ...
2
votes
0answers
281 views
ExceptionInInitializerError when using WordNet
I recently decided to download JWNL for a Java interface to WordNet. Following various tutorials (like http://jwordnet.sourceforge.net/handbook.html), I downloaded WordNet (2.1), and then JWNL, ...
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
837 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 ...
1
vote
1answer
289 views
WordNet similarities java
I have found a kool library in Perl http://www.d.umn.edu/~tpederse/similarity.html
which perform a lot of similarities between words, there is something like this in java ?
1
vote
1answer
183 views
Wordnet::Similarity server: how to talk to it from Java?
I installed the WordnetSimilarity server on my Ubuntu.
I launch it with the command:
$ similarity_server.pl --logfile server.log
Now I want to use it from my Java/Groovy app, and I wrote this code ...
1
vote
1answer
259 views
How to call WordNet from Android? [Wordnet api for Android]
I used rita framework in Java to use WordNet. It worked fine but how can I use it in android? Is there any framework/API to access WordNet from android?
JAWS requires WordNet to be installed (on say ...
1
vote
2answers
390 views
Searching with bfs
i have retrieve synsets from wordnet an return it as an array. This is part of my code
<pre>
RiWordnet wordnet = new RiWordnet();
String word = lineTF.getText();
// Get synsets
String[] synsets ...
4
votes
3answers
903 views
Word Net - Word Synonyms & related word constructs - Java or Python
I am looking to use WordNet to look for a collection of like terms from a base set of terms.
For example, the word 'discouraged' - potential synonyms could be: daunted, glum, deterred, pessimistic.
...
5
votes
2answers
326 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 ...
1
vote
3answers
270 views
WordNet in Portuguese [closed]
I'm doing a java project where I have to find synonyms of some words. I know WordNet is widely spread, however it is not available in 'portuguese' (the language I'm currently using). Is there ...
1
vote
0answers
58 views
ADJECTIVE_SATELLITE in JWI
Sorry not technical but related to java AI from wordnet.
I am looking at the wordnet,
In that we have ADJECTIVE_SATELLITE ?
what is ADJECTIVE_SATELLITE? how is it different from ADJECTIVE.-Adjective ...
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 ...
1
vote
2answers
728 views
Does OpenNLP use WordNet under the hood for the Named Entity Recognition
I have tried using OpenNLP Tools 1.5 from SourceForge for getting the Named Entites from a text. I did find a JWNL file in the OpenNLP download. Does that imply that OpenNLP in turn is using WordNet ...
8
votes
2answers
3k views
Python's NLTK vs. related Java Libraries?
I've used LingPipe, Stanford's NER, RiTa and various sentence similarity libraries for my previous Java projects that focused on text (pre)processing (indexing, xml tagging, topic detection, etc.) of ...
