Tagged Questions
0
votes
1answer
25 views
Polysemy count: return senses rather than # of senses. (Wordnet NLTK)
I know how to get the number of different senses a word has with polysemy count in Wordnet (via NLTK). But I was wondering if it is also possible to return these different senses, rather than just the ...
0
votes
0answers
23 views
How to compare and find relevance of data using python nltk ?
I want to find the relevance of tweets and rank them.
eg:
"iphone5 battery drains out fast!"
Now this tweet is relevant as battery -> drains.
One possible approach would be to use synset and use ...
2
votes
0answers
40 views
Is it possible to speed up Wordnet Lemmatizer?
I'm using the Wordnet Lemmatizer via NLTK on the Brown Corpus (to determine if the nouns in it are used more in their singular form or their plural form).
i.e. from nltk.stem.wordnet import ...
0
votes
0answers
31 views
How to compute word relations
Is there a library or package to get a measure of how related 2 words are? I know about wordnet word similarity but I don't think I can compare 2 words that are 1 noun and the other a verb such as ...
0
votes
2answers
40 views
why is the code returning IndexError error in python when the synsets of the word exists
I do not understand why I am getting this error. Please help
>>> mylist = []
>>> file1 = open("medDict.txt", "r")
>>> for line in file1:
from nltk.corpus import wordnet
...
0
votes
1answer
80 views
How to calculate maximum similarity between synsets in NLTK? -Python
I have to calculate the synset similarity between items of list1 and list2. I want to keep only the maximum synset similarity value for a word in list1. How do I do this? I want my output to be
...
0
votes
1answer
44 views
wordet synset in python
I am using wordnet.synset() funtion in my code
>>> cb = wordnet.synset('fever.n.01')
>>> cb
Synset('fever.n.01')
>>> cb = wordnet.synset('disbelieve.n.01')
Traceback ...
0
votes
1answer
96 views
How to determine semantic hierarchies / relations in using NLTK?
I want to use NLTK and wordnet to understand the semantic relation between two words. Like if I enter "employee" and "waiter", it returns something showing that employee is more general than waiter. ...
0
votes
1answer
21 views
Using NLTK in Xcode
I need to tokenize and find some synonyms of words in a sentence in xcode. I know NLTK have some packages to do that. but NLTK interface is in python. Anyone know how to use NLTK in xcode? or any ...
2
votes
1answer
252 views
wordnet lemmatization and pos tagging in python
I wanted to use wordnet lemmatizer in python and I have learnt that the default pos tag is NOUN and that it does not output the correct lemma for a verb, unless the pos tag is explicitly specified as ...
1
vote
1answer
105 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')
>>> ...
0
votes
1answer
71 views
NLTK only search noun synsets
Here is a function I'm writing to check for the existence of hyper and hyponyms from a list of nouns.
def check_hyper_hypo(wordlist):
returnlist=[]
for word in wordlist: #by definition a base ...
0
votes
1answer
99 views
How to get the princeton WN sense id given a sense offset? Python-NLTK
I can get the sense offset from a princeton WN sense as marked in the NTLK corpus library:
[in]:'dog.n.01'
>>> from nltk.corpus import wordnet as wn
>>> ss = wn.synset('dog.n.01')
...
1
vote
1answer
65 views
Python IF statement with nltk.wordnet.synsets
import nltk
from nltk import *
from nltk.corpus import wordnet as wn
output=[]
wordlist=[]
entries = nltk.corpus.cmudict.entries()
for entry in entries[:200]: #create a list of words, without the ...
0
votes
1answer
178 views
How to get all the hyponyms of a word/synset in python nltk and wordnet?
I have a list of all the nouns in wordnet now i want to leave only words which are vehicles and remove the rest. How do i do it? Below is the pseudo-code i want to make but i do not know how to make ...
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 ...
1
vote
1answer
163 views
Python: Passing variables into Wordnet Synsets methods in NLTK
I need to work on a project that require NLTK so I started learning Python two weeks ago but struggling to understand Python and NLTK.
From the NLTK documentation, I can understand the following ...
1
vote
1answer
188 views
Resource 'corpora/wordnet' not found on Heroku
I'm trying to get NLTK and wordnet working on Heroku. I've already done
heroku run python
nltk.download()
wordnet
pip install -r requirements.txt
But I get this error:
Resource 'corpora/wordnet' ...
2
votes
2answers
258 views
NLTK wordnet similarity returns “None” for adjectives
I have seen that for verbs, WordNet similarity measures in NLTK can return "None" at times, but I understood this should not happen for other parts of speech. Looking at the code it seems clear that ...
-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 ...
1
vote
1answer
306 views
Find Latin/Greek Word Roots NLTK
Is there a way I could find the Latin root/definition of said root in a word with NLTK (and possibly wordnet)?
Thanks so much!
2
votes
1answer
967 views
Using WordNet to determine semantic similarity between two texts?
How can you determine the semantic similarity between two texts in python using WordNet?
The obvious preproccessing would be removing stop words and stemming, but then what?
The only way I can ...
3
votes
2answers
637 views
General synonym and part of speech processing using nltk
I'm trying to create a general synonym identifier for the words in a sentence which are significant (i.e. not "a" or "the"), and I am using the natural language toolkit(nltk) in python for it. The ...
0
votes
1answer
300 views
Searching through an entire series of synsets (from NLTK) in Python NLP
Original question:
The polysemy of a word is the number of senses it has. Using WordNet, we can
determine that the noun dog has seven senses with len(wn.synsets('dog', 'n')).
Compute the average ...
0
votes
1answer
170 views
Why does the path based similarity or any similarity for that matter in wordnet give a nan for some senses?
For example take the two senses Synset('mile.n.03') and Synset('support.v.09) when i compute the path based similarity between these two senses as follows
from nltk.corpus import wordnet as wn
...
0
votes
1answer
226 views
How do I check hyponym relationship in WordNet using NLTK?
I'm looking for an efficient way to check if A is a hyponym of B in WordNet using NLTK.
I could use lowest_common_hypernyms to check if the lowest common hypernym of A and B is B, which means that A ...
5
votes
2answers
433 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
859 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()?
...
1
vote
3answers
820 views
How to find relatedness in Wordnet using Python
I would like to find the relatedness (not similarity) between two words using Python. The hso (Hirst and St-Onge,1998), lesk (Banerjee and Pedersen, 2003), and vector (Patwardhan, 2003) algorithms are ...
0
votes
1answer
2k views
Import WordNet In NLTK
I want to import wordnet dictionary but when i import Dictionary form wordnet i see this error :
for l in open(WNSEARCHDIR+'/lexnames').readlines():
IOError: [Errno 2] No such file or directory: ...
0
votes
1answer
193 views
How do I Get All Attributes Of Synsets?
Please Give Me am example That have all of attribute of synset of a word
i know only this attribute: name , lemma_names , definition
synsetsWord = ObjWn.synsets( 'Book' )
i = 0
for ...
1
vote
2answers
1k views
Can WordNetLemmatizer in Nltk stem words?
I want to find word stems with Wordnet. Does wordnet have a function for stemming?
I use this import for my stemming, but it doesn't work as expected.
from nltk.stem.wordnet import ...
4
votes
2answers
2k 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 ...
1
vote
2answers
649 views
Printing the part of speech along with the synonyms of the word
I have the following code for taking a word from the input text file and printing the synonyms, definitions and example sentences for the word using WordNet. It separates the synonyms from the synset ...
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 ...
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 ...
5
votes
1answer
5k views
To find synonyms, defintions and example sentences using WordNet
I need to take an input text file with a one word. I then need to find the lemma_names, definition and examples of the synset of the word using wordnet. I have gone through the book : "Python Text ...
3
votes
1answer
334 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 ...
0
votes
1answer
454 views
how to get the past tense of a word using nltk and wordnet in python?
Could anybody please tell me what are the packages required to run the below commands??
import nltk
from nltk.corpus import wordnet
v = 'go'
present = present_tense(v)
I got an error saying-
...
1
vote
1answer
427 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 ...
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 ...
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 ...
