WordNet is a lexical database for the English language. It groups English words into sets of synonyms called synsets, provides short, general definitions, and records the various semantic relations between these synonym sets.
20
votes
4answers
7k views
How to check if a word is an English word with Python?
I want to check in a Python program if a word is in the English dictionary.
I believe nltk wordnet interface might be the way to go but I have no clue how to use it for such a simple task.
def ...
8
votes
2answers
2k views
Finding related words (specifically physical objects) to a specific word
I am trying to find words (specifically physical objects) related to a single word. For example:
Tennis: tennis racket, tennis ball, tennis shoe
Snooker: snooker cue, snooker ball, chalk
Chess: ...
9
votes
2answers
2k views
Using Nltk and Wordnet how do i convert simple tense verb into its present, past or past participle form?
Using Nltk and Wordnet how do i convert simple tense verb into its present, past or past participle form?
For example:
I want to write a function which would give me verb in expected form as ...
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 ...
5
votes
1answer
127 views
Wordnet in Objective-C
I know the Wordnet webpage cites that it comes with a C interface included. However, I am having significant trouble adding it to my project. My question is two fold.
First: Does a machine need to ...
1
vote
4answers
1k views
How do i find the frequency count of a word in English using WordNet?
Is there a way to find the frequency of the usage of a word in English language using WordNet or NLTK using python?
NOTE: I do not want the frequency count of a word in a given input file. I want the ...
11
votes
3answers
7k views
English dictionary as txt or xml file with support of synonyms
Can someone point me to where I can download English dictionary as a txt or xml file. I am building a simple app for myself and looking for something what I could start using immediately without ...
3
votes
4answers
786 views
Does WordNet have “levels”? (NLP)
For example...
Chicken is an animal.
Burrito is a food.
WordNet allows you to do "is-a"...the hiearchy feature.
However, how do I know when to stop travelling up the tree? I want a LEVEL.
That is ...
2
votes
4answers
2k views
word disambiguation algorithm (Lesk algorithm)
Hii..
Can anybody help me to find an algorithm in Java code to find synonyms of a search word based on the context and I want to implement the algorithm with WordNet database.
For example, "I am ...
4
votes
3answers
2k views
How to use word Net with php
how to use word Net with php is there is any interface or any class for it.....
i need to use wordnet for my dictionary purpose....
3
votes
2answers
176 views
wordnet - synset offset
i want to get the synsets based on a specific synset offset, for example id="n#05576222".
Is there any command for doing this using python?
Thank you in advance.
3
votes
1answer
2k views
Calling wordnet from php (Wordnet class or API for PHP)
I am trying to write a program to find similarity between two documents, and since im using only english, I decided to use wordnet, but I cannot find a way to link the wordnet with php, I cannot find ...
1
vote
1answer
257 views
Get WordNet's domain name for the specified word
I know WordNet has Domains Hierarchy: e.g. sport->football.
1) Is it possible to list all words related, for example, to the 'sport->football' sub-domain?
Response: goalkeeper, forward, penalty, ...
8
votes
2answers
1k views
Convert words between verb/noun/adjective forms
i would like a python library function that translates/converts across different parts of speech. sometimes it should output multiple words (e.g. "coder" and "code" are both nouns from the verb "to ...
3
votes
1answer
686 views
Converting adjectives and adverbs to their noun forms
I am experimenting with word sense disambiguation using wordnet for my project. As a part of the project, I would like to convert a derived adjective or an adverb form to it's root noun form.
For ...
2
votes
2answers
658 views
getting base form of a word?
I'm using java wordnet library(jwnl)for my project.i need to find base form of a word before processing.For example,if i give "sent" the base form word should be "send".like wise for "dispatched"the ...
1
vote
1answer
104 views
How to get the wordnet sense frequency of a synset in NLTK?
According to the documentation i can load a sense tagged corpus in nltk as such:
>>> from nltk.corpus import wordnet_ic
>>> brown_ic = wordnet_ic.ic('ic-brown.dat')
>>> ...
1
vote
1answer
936 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 ...
1
vote
1answer
495 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 ...
1
vote
2answers
3k views
WordNet Java Interface [closed]
I need to use WordNet with Java. Can anyone point me to some useful resources?
Thanks in advance
0
votes
1answer
317 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 ...
-2
votes
1answer
111 views
How to separate an Engilsh language string without spaces to form some meaningful sentence [closed]
I am working with the hashtags in the tweets in Twitter. Now, hashtags are without spaces string ... for eg: #CantAffordForMore , #Imissyou etc. Now, is it possible using nltk , wordnet in python to ...
