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.
1
vote
2answers
2k views
finding distance between synsets in wordnet
I use Java API for wordnet searching(JAWS) for accessing wordnet from java . When i got to read a few papers about semantic similarity with java , they expect me to find the distance between two ...
1
vote
1answer
876 views
Finding the roots of a word in java using wordnet
I am aware of the hypernym in wordnet , but since there are a number of meaning for every term i am forced to using Lesk algorithm to find the contextual meaning of a word .
In the process , i got ...
3
votes
2answers
115 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 ...
0
votes
2answers
364 views
Trouble loading wordnet package in R
I have trouble loading wordnet into R. I use R x64 2.14.1. I installed the package wordnet and then I tried to load the package.
> library(wordnet)
Warning message:
In initDict() :
cannot find ...
14
votes
2answers
410 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 ...
3
votes
2answers
408 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 ...
0
votes
2answers
144 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
...
3
votes
1answer
304 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
144 views
Tense of a verb
How do i find in wordnet
or with a tool the tense of a verb ?
for example given:
input: happened -> output : past
input: will happen -> output: future
1
vote
1answer
296 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 ?
0
votes
1answer
244 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 ...
3
votes
2answers
198 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.
0
votes
1answer
123 views
Wordnet returns nil
I'm using the words gem to search wordnet. Here is my code:
require 'words'
data = Words::Wordnet.new
word = "geese"
lemma = data.find(word)
puts lemma
lemma returns nil. It works for other words ...
1
vote
1answer
189 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 ...
3
votes
2answers
297 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 ...
2
votes
1answer
107 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?
3
votes
1answer
714 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 ...
5
votes
2answers
452 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 ...
1
vote
1answer
274 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?
JAWS requires WordNet to be installed (on say ...
5
votes
2answers
911 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
867 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
0answers
361 views
Full Dictionary Library for VB.NET 2010
I'm looking for a library that has English words which can be accessed either by searching directly (like dictionary look up) or by category (nouns, verb, adjective, etc.) but for category wise ...
7
votes
2answers
586 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 ...
1
vote
2answers
396 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 ...
0
votes
1answer
134 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 ...
4
votes
3answers
932 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.
...
0
votes
1answer
1k 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
3answers
836 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 ...
4
votes
2answers
252 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:
...
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
202 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 ...
5
votes
2answers
341 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 ...
4
votes
1answer
1k 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 ...
1
vote
1answer
205 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, ...
1
vote
1answer
746 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 ...
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 ...
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
1answer
765 views
integrate wordnet with solr
I am trying to integrate wordnet api in to Apache solr. But it is not seems to be working and there is no good documentation as well. Could you please post me the steps if any body has experience on ...
0
votes
2answers
944 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
460 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 ...
1
vote
3answers
284 views
WordNet in Portuguese [closed]
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 ...
0
votes
1answer
36 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 ...
1
vote
0answers
58 views
ADJECTIVE_SATELLITE in JWI
Sorry not technical but related to java AI from wordnet.
I am looking at the wordnet,
In that we have ADJECTIVE_SATELLITE ?
what is ADJECTIVE_SATELLITE? how is it different from ADJECTIVE.-Adjective ...
3
votes
3answers
6k 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 ...
1
vote
2answers
683 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
2k 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
2answers
506 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 ...
1
vote
0answers
77 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
1answer
151 views
What's the namespace used for wordnet in an ontology?
Like I've a word such as "India" and Wordnet has the information of type of entity that I've at hand, how can I refer to wordnet for this specific type of entity? Like, I extract the information that ...
