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.