Tagged Questions
7
votes
3answers
3k 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 ...
6
votes
3answers
1k views
Detect Proper Nouns with WordNet?
I'm using JAWS to access WordNet. Given a word, is there any way to detect if it is a proper noun? It looks like the synsets have pretty coarse lexical categories.
To clarify, there is no context for ...
5
votes
2answers
150 views
Finding words from Wordnet separated by a fixed Edit Distance from a given word
I am writing a spell checker using nltk and wordnet, I have a few wrongly spelt words say "belive". What I want to do is find all words from wordnet that are separated by a leveshtein's edit distance ...
5
votes
2answers
1k 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: ...
4
votes
3answers
208 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.
...
4
votes
2answers
876 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
1answer
201 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 ...
3
votes
2answers
165 views
which similarity function of nltk.corpus.wordnet is Appropriate for find similarity of two words?
which similarity function in nltk.corpus.wordnet is Appropriate for find similarity of two words?
path_similarity()?
lch_similarity()?
wup_similarity()?
res_similarity()?
...
3
votes
2answers
601 views
using python nltk to find similarity between two web pages?
I want to find whether two web pages are similar or not. Can someone suggest if python nltk with wordnet similarity functions helpful and how? What is the best similarity function to be used in this ...
3
votes
1answer
276 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 ...
3
votes
2answers
437 views
Hierarchy of meaning
I am looking for a method to build a hierarchy of words.
Background: I am a "amateur" natural language processing enthusiast and right now one of the problems that I am interested in is determining ...
2
votes
1answer
60 views
how did WordNet come in being
I wonder how the hierarchical relationship in WordNet between the words are retrieved.
Is that manually done or via computer techniques.
If based on computer techniques, what are they?
2
votes
1answer
219 views
Wordnet selectional restrictions in NLTK
Is there a way to capture WordNet selectional restrictions (such as +animate, +human, etc.) from synsets through NLTK?
Or is there any other way of providing semantic information about synset? The ...
2
votes
2answers
450 views
How to get synonyms ordered by their occurrence probability from Wordnet
I am searching in Wordnet for synonyms for a big list of words. The way I have it done it, when some word has more than one synonym, the results are returned in alphabetical order. What I need is to ...
2
votes
1answer
308 views
Wordnet in Spanish [closed]
Is there something similar to Princeton's WordNet in Spanish?
I need to find synonyms in Spanish.
2
votes
4answers
504 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 ...
1
vote
2answers
51 views
Wordnet (Word Sense Annotated) Corpus
I've been utilizing lots of different corpus' for natural language processing, and I've been looking for a corpus that has been annotated with Wordnet Word Senses.
I understand that there probably is ...
1
vote
2answers
88 views
WordNet in Portuguese
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
2answers
315 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 ...
1
vote
1answer
201 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
201 views
Nltk installation
In want to setup python's nltk library including wordnet in such a way that it can be easily copied from development system to production server, without having requirement for downloading wordnet ...
1
vote
1answer
402 views
Which is better? OpenCyc or ConceptNet?
I'm doing a NLP project where I need to recognise concepts in sentences to find other similar concepts. I do this to infer word valences from a list I already have. I started using WordNet, but it ...
1
vote
3answers
614 views
WordNet code for NLP
hi there
Is there any code available to demonstrate Natural language processing using Wordnet?
My problem statment is "Develop a Query answering system .
It takes query string as input.
Search for ...
0
votes
1answer
25 views
Ruby-wordnet - can not create lexicon
I am trying out Ruby-Wordnet. I can require it in console, but then when I try to create a lexicon, I get an error:
$ lex = WordNet::Lexicon.new
TypeError: can't convert Symbol into Integer
...
0
votes
0answers
50 views
WordNet Structure and Element Types
I am loading WordNet into a database -- do I have the labels/structure right?
For example:
eat (word)
eat.v (index word)
eat.v.01 (synset)
eat.v.01.eat (lemma)
Outside of WordNet, "eat" would ...
0
votes
1answer
49 views
wordnet database editor
I downloaded the latest Wordnet version for Windows (2.1) and I want to establish a link between two verb synsets. Is there a wordnet synset editor out there I can use for this? They published ...
0
votes
0answers
77 views
java wordnet spin sentences
I was testing out the Rita with WordNet database to spin/rewrite words in sentences but it's not giving me a sentence that makes sense, how can I make it output sentence that makes sense a simple ...
0
votes
1answer
159 views
Word Sense Disambiguation using WordNet.Net
I need to do some word sense disambiguation as part of a larger project and I came across WordNet.Net
I tried to use the wordsensedisambiguator class that came with the WordsMatching project in the ...
0
votes
1answer
66 views
Get POS probabilities from Wordnet command line tool
I'm writing some experiments with ruby accessing wordnet through the wn command line tool because I gave up on getting the wordnet gem to work.
I want to be able to lookup the frequencies of senses, ...
0
votes
2answers
173 views
How to use wordnet to find semantic relation between two web pages?
I want some way to determine whether two web pages are semantically related.I googled and found something called as the WordNet (a large lexical database). I want to know that how can I accomplish ...
0
votes
2answers
144 views
Looking up positivity or negativity in a sentence using WordNet
I have to ask some questions in an interactive system and user is free to type just anything as response. I have to conclude from response whether it is positive (yes) or negative (no). In some ...
0
votes
1answer
27 views
Wordnet database has letters in weird/invalid places
I was noticing that some lines in the database files (like data.verb) are not following the correct format. (The database format is outlined here).
02286687 40 v 0a fall_upon d strike 0 come_upon 9 ...
0
votes
2answers
124 views
Parse WordNet database into SQL?
I would like to have the WordNet database in SQL format so I'm thinking about trying to write a parser for the WordNet files. However, before I get started I was wondering if there are any existing ...
0
votes
2answers
329 views
Wordnet Synset Offset? How to compare words
I am using the Chinese Wordnet from Academic Sinica. It is a translation of Wordnet 1.6. Unfortunately it is not freely available, and has to be purchased, and the manual basically says refer to ...
0
votes
0answers
73 views
Accessing Hindi Wordnet through JHWNL
I am workin on a natural language translator application,(ENglish to hindi conversion) have been trying to access hindi Wordnet through JHWNL but it gives me "Error reading configuration file. Make ...
0
votes
0answers
206 views
Wordnet usage for synonyms and morphological changes
From 2 sentences,i need to compare all tokens and replace tokens with synonyms.For e.g:
Sentence 1:The empire won the opponent.
Sentence 2:The empire conquered the opponent.
here,the won and ...
0
votes
0answers
118 views
Ritawordnet - ignoring compound words
RiWordnet wordnet = new RiWordnet();
System.out.println(wordnet.isIgnoringCompoundWords());
gives me true as output, but i have to find the similarity between compound words too.. how ...
0
votes
2answers
595 views
wordnet relations
how to generate the more general, less general and equivalence relations from wordnet?
wordnet similarity in RitaWordnet gives a number like -1.0, 0.222 or 1.0 but how to arrive at the more general, ...
0
votes
2answers
548 views
getting nouns and verbs from wordnet
I'm struggling to find whether a word is noun or verb etc
I found the MIT Java Wordnet Interface
there was a sample code like this, but when i use this i get error that Dictionary is abstract class ...
0
votes
4answers
432 views
WORDNET database access
I have download wordnet(2.1) but i dont know how to access wordnet database?
-1
votes
1answer
169 views
getting the lemma of a word using wordnet
How can I get the lemma for a given word using Wordnet. I couldn't seem to find in the wordnet documentation what i want. http://wordnet.princeton.edu/wordnet/man/wn.1WN.html
For example for the ...