Tagged Questions

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.

learn more… | top users | synonyms

14
votes
2answers
236 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 ...
7
votes
2answers
185 views

Wordnet synsets using perl

I installed Wordnet::Similarity and Wordnet::QueryData as an easy way to calculate information content score and probability that comes with these modules. But I'm stuck at this basic problem: given a ...
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
1answer
133 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 ...
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
734 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
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 ...
4
votes
3answers
956 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
1answer
102 views

problems with using wordnet in asp.net

i've been tryin to use wordnet to generate the synonyms of a word. i've found that to used wordnet function i have to Download the WordNet prolog database , gunzip, untar etc. Invoke Syn2Index 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
164 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
1answer
486 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 ...
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
2answers
236 views

find the root word of a word

I need to build a php dictionary, which will find the root word of a word. Ex. search "cars", it will tell "Cars is plural of car" Or "took", it's "the past tense of take" I am considering using ...
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
35 views

Limits to expressibility in Cyc, or similar knowledge-base projects?

What are the limits to expressibility, in Cyc or similar knowledge-base projects. Are there certain concepts that can't be expressed? Is there any project that can express any concept? I don't ...
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
0answers
75 views

How to find the “lexical file” in Wordnet?

If you look at the original Wordnet search and select "Display options: Show Lexical File Info", you'll see an extremely useful classification of words called lexical file. Eg for "filling" we have: ...
2
votes
1answer
277 views

Creating a simple dictionary using WordNet

I'm installing WordNet in MySQL from http://www.semantilog.org/wn2sql.html I'd like to display the data in the same way as Princeton's webpage: http://wordnetweb.princeton.edu/perl/webwn?s=car How ...
2
votes
2answers
819 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 ...
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
0answers
166 views

Help with WordNet data file-format

I have a question about the WordNet data file-format. The wndb(5) manual page says in part: The source/target field distinguishes lexical and semantic pointers. It is a four byte field, ...
2
votes
0answers
148 views

Extracting all the words starting with a particular letter from wordnet

how can extract all the words that start with a particular letter from wordnet. Example if i type A the wordnet should return all the words that start with letter A.
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
0answers
32 views

How I can start building wordnet for Turkish language to use in sentiment analysis

Although I hold EE background, I didn't get chance to attend Natural Language processing classes. I would like to build sentiment analysis tool for Turkish language. I think it is best to create a ...
1
vote
1answer
47 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
46 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
0answers
64 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? Thanks. ...
1
vote
3answers
192 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
155 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 ...
1
vote
2answers
266 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
1answer
298 views

WordNet access using php

I tried to access the wordnet dictionary as mentioned in: Calling wordnet from php (Wordnet class or API for PHP). It worked fine through command line. Then I tried to use the php function ...
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
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
0answers
24 views

How much infromation from ontology we need to export to our home made ontology?

I'm creating an ontology that is based on wordnet. I want to know what level of information I should add to my own ontology? Like, for example, if the lexica has a "instance of" and "hypernym" ...
1
vote
2answers
292 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
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
3answers
319 views

cannot require ruby wordnet gem

I installed ruby gem 'wordnet', a gem on English linguistic. After I installed it (wordnet 0.0.5), when I tried to require it using irb, I got the following errors: >> require 'wordnet' ...
1
vote
1answer
200 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
2answers
696 views

c# API to use wordnet-what is better?

I am doing a web based chattebot system and my problems are these. I need to get a particular user question and check for some specific keywords in it(for example take the nouns) and find for ...

1 2 3