I have downloaded the latest version of WordNet 3.0. I am not able to find a proper documentation of how to use it in python.

Does NLTK have wordnet 3.0 ?

I have already used an older version of wordnet in nltk.

Please help me.

link|improve this question

11% accept rate
feedback

2 Answers

No, it seems that NLTK only supports 3.0.

If I were doing this, I'd choose between using the 3.0 Java API through Jython or spawn the wn executable using the subprocess.

I'd lean towards the latter method in case I needed to integrate with an extensive existing codebase. Unfortunately this means doing work that a future 3.0 implementation in NLTK will make obsolete, but well - that's life.

link|improve this answer
feedback

Did you check out this useful site- http://nltk.googlecode.com/svn/trunk/doc/howto/wordnet.html ?

From experience, you do get WordNet-3.0 when you download wordnet via nltk in the middle of June.

On my Mac, nltk stores the data files in a folder ~/nltk_data/corpora/wordnet. I diff-ed them against the data files that came with the WordNet-3.0 I installed independently. They're identical.

I bet you could use any version of WordNet by copying/ sym-linking the data files (in WordNetxx/dict) to nltk's folder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.