I need to find the relatedness or similarity between to adjectives I installed wordnet similarity module. However when I call the script below I get the error that it is only for nouns and versbs. What is the way to do that? please advise and help.

use WordNet::QueryData;

use WordNet::Similarity::path;

my $wn = WordNet::QueryData->new;

my $measure = WordNet::Similarity::path->new ($wn);

my $value = $measure->getRelatedness("gross#a#1", "fat#a#1");


my ($error, $errorString) = $measure->getError();

die $errorString if $error;

print "gross (sense 1) <-> fat (sense 2) = $value\n";

Warning (WordNet::Similarity::path::parseWps()) - Only verbs and nouns have hypernym trees (gross#a, fat#a). at similaritycheck.pl line 15, line 4.

link|improve this question
Wordnet::similarity doesn't support adjectives, because they're not organised in taxonomies in WN. – Mulone Oct 17 '11 at 12:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.