Try executing the following line in your shell (from the directory where you extracted the QueryData module): WNHOME="/home/xyz/WordNet-2.0" perl Makefile.PL ...
Instead of the command Jason offered, try the following two commands: setenv WNHOME /home/xyz/WordNet-2.0 perl Makefile.PL (You are likely using a shell that...
hi Ben I am using bash shell. I used WNHOME=/home/xyz/WordNet-2.0 . now if I type "set" in the command prompt,it is showing (that is WNHOME). But the perl ...
Hi Debanjan, If you are using the bash shell open up the .bash_profile file in your home directory (/home/xys/.bash_profile) and then inlcude the following: ...
Thanks guys for all the info..The module is running fine. Thanks once again. Debanjan ... From: Maheedhar Kolla To: wn-perl@yahoogroups.com Sent: Saturday,...
Thanks guys for all the info..The module is running fine. Thanks once again. Debanjan ... From: Maheedhar Kolla To: wn-perl@yahoogroups.com Sent: Saturday,...
Hi, I installed QueryData - thank you for sharing! I am checking WordNet coverage of free text - how much of the words are in WN. A problem I came across is...
I just found out that there is no entry for "kart" in Wordnet, so splitting on hyphen won't help. This is indeed a strange case where a word is used in a...
... Yup. You've certainly found a bug and from what I can tell, the fix you're suggesting is the correct one. Seems that we need to replace every instance of...
is out! http://people.csail.mit.edu/jrennie/WordNet/ It simply fixes the bug that Beata noticed. The change worked as expected and didn't break any tests, so...
Hi, I have downloaded the QueryData package and I think I have followed the installation steps appropriately. When I run test.pl I see it prints out: "Found...
Hi, could someone tell me why when I run perl test.pl I get: Use of uninitialized value in hex at mypath/WordNet/QueryData.pm line 547, <GEN9> line 2 Grazia...
... use ... 1.38/QueryData.pm ... This is the error message I get, even after having passed the correct path to WN2.0: perl test.pl I get: Use of uninitialized...
... line ... Here it is v1.6: 1..36 v1.7: 1..38 v1.7.1: 1..37 v2.0: 1..54 ok 1 Loading index files. This may take a while... Found WordNet database version...
Welp, the fact that it dies before running all the tests and that test 2 fails tells me that something is definitely wrong. :) However, I'm not sure what the...
Hi, Jason and everybody, I wonder if the following is the intended behaviour: query with validForms(hating#v) returns hate#v hat#v Now, there happens to be a...
So, as far as I understand the morphy man page: http://wordnet.princeton.edu/man/morphy.7WN QueryData is doing the "right" thing. There are no entries in ...
Yes, the "rules of detachment" are prioritized. First match with a corresponding word in WordNet gets returned. (Array definitions below are from morph.c in...
So, the fix will require a non-trivial amount of restructuring of the QueryData. It might be a few days or weeks before I find the time to work on this. It...
... HI, Jason, Is there any reason for validForms to return the original, pluralized form of a noun? I.e. years#n -> years#n year#n ? I am currently taking...