Search the web
Sign In
New User? Sign Up
wn-perl · Perl WordNet Module
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 28 - 57 of 309   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
28
I need to look at the Query ( Not QueryDef) module that uses Wordnet WN to grab the output . The Link On "http://www.ai.mit.edu/~jrennie/WordNet/" fails ! Is...
shripad_karambelkar@...
Send Email
Aug 8, 2001
1:03 pm
29
... My lab's web server was down for the last two days because of an electricity outage. It's up again. You should be able to download the module now. Jason...
Jason Rennie
jrennie@...
Send Email
Aug 9, 2001
1:06 pm
30
Wordnet 1.7 has recently been released. Has anyone used QueryData with 1.7 - any problems? I am not entirely clear on the nature of the changes in 1.7 so I'm...
tpederse@...
Send Email
Sep 7, 2001
1:20 pm
31
... Thanks for the fix. Sorry for taking a while to reply---I just turned in my master's thesis two days ago... Jason...
Jason Rennie
jrennie@...
Send Email
Sep 12, 2001
10:03 pm
32
I am quite new with perl programming.. I was testing a perl program thru the web browser.I am using apache webserver on linux OS.When i run it thru command...
quest4k@...
Send Email
Sep 28, 2001
5:41 am
33
Try putting inserting the code below after the perl header The Carp function will return the errors and the print will put a html header on your document ...
ROGERWHIPP
ROGERWHIPP@...
Send Email
Sep 28, 2001
8:04 am
34
Hello Against WordNet1.7 WordNet:QueryData "make test" fails on tests 12,13, 18, 19 and 20. This would mean that interaction results might not be reliable. Is...
Michael Preminger
michael.preminger@...
Send Email
Oct 26, 2001
11:11 am
35
Here's a detailed test transcript against Wn-1.7, done on PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/usr/lib/perl5/5.00503/i386-linux...
Michael Preminger
michael.preminger@...
Send Email
Oct 26, 2001
11:35 am
36
... I wrote the test specifically for WordNet 1.6. WN 1.7 has different information in it. The transcript you sent me indicates that the perl module is...
Jason Rennie
jasonrennie
Offline Send Email
Oct 26, 2001
12:04 pm
37
Hi Jason, A minor addition to the previous note (sent to you alone and not wn-perl I think) regarding the behaviour of the attribute relation (attr) with...
Ted Pedersen
ted_pedersen
Offline Send Email
Nov 25, 2001
5:12 am
38
Hi again. I realized it might have been easier to forward the original note to wn-perl than to have me repeat the info as I just did. Here's the original note...
Ted Pedersen
ted_pedersen
Offline Send Email
Nov 25, 2001
5:23 am
39
... Thank you for noticing this! You discovered a bug relating to handling of syntactic markers. I've fixed the problem and released a new version. The new...
Jason Rennie
jasonrennie
Offline Send Email
Nov 25, 2001
8:41 am
40
Does anyone know whether it is possible to reliably determine the version of the WordNet database? All of the data files have the version number in a comment...
Jason Rennie
jasonrennie
Offline Send Email
Nov 25, 2001
9:28 pm
41
Hi, I was wondering if there was any way to go from a word#pos#sense string to its corresponding mnemonic? My understanding is that every such string has a...
satanjeev
Offline Send Email
Mar 20, 2002
4:44 pm
42
... What's a mnemonic? QueryData knows about these relations: syns - synset words ants - antonyms hype - hypernyms hypo - hyponyms mmem - member meronyms msub...
Jason Rennie
jasonrennie
Offline Send Email
Mar 20, 2002
4:51 pm
43
... My understanding of a mnemonic is this: every sense inside a given synset has a unique string called the mnemonic. An offset number is a unique identifier...
satanjeev
Offline Send Email
Mar 20, 2002
5:07 pm
44
... What are these strings used for? The word#pos#sense string serves as a mnemonic (according to your definition). Jason...
Jason Rennie
jasonrennie
Offline Send Email
Mar 20, 2002
5:19 pm
45
... as a ... Yes you are right, the word#pos#sense string does indeed serve as a mnemonic. However, let me explain why I need the actual WN mnemonics. My work...
satanjeev
Offline Send Email
Mar 20, 2002
5:41 pm
46
... I can't see this as being particularly useful, but I'd be happy to add code to QueryData if you'd be willing to write it. Also, if many others want to see...
Jason Rennie
jasonrennie
Offline Send Email
Mar 20, 2002
6:39 pm
47
... simple and intuitive. The entries of index.sense look much less clear. I couldnt agree with you more! man senseidx gives some information on how the...
satanjeev
Offline Send Email
Mar 20, 2002
7:33 pm
48
Hi, Two points: 1> I am getting surprising results when I try to do wn->offset("0#n#1") and wn->offset("0#a#1"). I get the following error: "Bad query string:...
satanjeev
Offline Send Email
Mar 21, 2002
3:34 am
49
... You found a bug. Thanks for pointing this out. I've released a new version (1.14) that fixes this. ... If you write it, I'll add to QueryData a function...
Jason Rennie
jasonrennie
Offline Send Email
Mar 21, 2002
12:07 pm
50
... Thanks for the bug fix! ... In my understanding, index.sense maps sensekeys to byte offset numbers and is a many-to-one mapping (the sensekeys of all the ...
satanjeev
Offline Send Email
Mar 21, 2002
3:54 pm
51
... Would this work? my $offset = $wn->offset("word#pos#sense"); grep index.sense for $offset return sensekey with "word" as a substring ... I'm happy to hear...
Jason Rennie
jasonrennie
Offline Send Email
Mar 21, 2002
4:27 pm
52
... Yes you are right - this would work indeed! We'd have to look for "^word%" as a substring, and we're done! However my concern with this method (and I might...
satanjeev
Offline Send Email
Mar 21, 2002
5:34 pm
53
Hi Jason, There is a rather useful relation that is not directly defined in WordNet (i think) but can be sort of infered. It is the "coordinate terms"...
satanjeev
Offline Send Email
Mar 23, 2002
8:18 pm
54
... Why would it be significantly faster? Jason...
Jason Rennie
jasonrennie
Offline Send Email
Mar 24, 2002
3:10 pm
55
... Loading everything into a hash is probably the right way to go. That should be fastest if you want to do lots of lookups. FYI, I don't think it would be...
Jason Rennie
jasonrennie
Offline Send Email
Mar 24, 2002
3:19 pm
56
... I am not exactly sure of how QueryData works, but my guess is that somewhere you must have a data structure that says word1#pos1#sense1 is related to...
satanjeev
Offline Send Email
Mar 24, 2002
3:59 pm
57
... Actually I was thinking of adding code that will "create" the mnemonics and not use a look-up. 'man senseidx' shows how the mnemonics are created, and its...
satanjeev
Offline Send Email
Mar 24, 2002
4:08 pm
Messages 28 - 57 of 309   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help