Tagged Questions
14
votes
2answers
232 views
Semantic Search in Python for hobbies + latest news
I want to implement a python based semantic search over a set of keywords (mainly hobbies, latest news, etc which people might be interested to talk about). I want to know if there exist an ontology ...
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 ...
4
votes
3answers
207 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
733 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 ...
4
votes
4answers
1k 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 ...
4
votes
2answers
874 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
200 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
162 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
592 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 ...
2
votes
1answer
1k 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 ...
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
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
3answers
189 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 ...
1
vote
2answers
263 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 ...
1
vote
2answers
222 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
2answers
288 views
how do i import and use WordNet 3.0 in python?
I have downloaded the latest version of WordNet 3.0. I am not able to find a proper documentation of how to use it in python.
Does NLTK have wordnet 3.0 ?
I have already used an older version of ...
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 ...
0
votes
1answer
274 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
72 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 ...
0
votes
2answers
172 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
3answers
324 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 ...
0
votes
0answers
168 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-
...
0
votes
1answer
466 views
question with wordnet lemmatizer
i;ve tried wordnet lemmatizer, but i found that some common words like 'studying' or 'waiting' are not processed appropriately.
Am i missing something?