You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Nice work, very handy for those of use doing NLP in julia.
I though I could use the copy of Wordnet I already had from NLTK.
which depending on how NLTK is installed lived in <NLTKPATH>/nltk_data/corpora/wordnet
However within the corpus directory for NLTK's copy are the index files directly -- they are not inside a dict subdirectory.
Since everything in the wordnet folder is inside the dict folder it is i guess not required.
Easy work around, either with simlinks or just downloading another wordnet copy.
The text was updated successfully, but these errors were encountered:
It's been a while since I wrote this. And, I don't get to play with Julia that much these days.
Vaguely, I remember NLTK's wordnet not being version 3.0, ergo incompatible. But maybe not?
In any case, you're right, it' be more flexible with no hardcoded "dict" in the path. If you want to submit the patch / tests update, I'll pull it. Otherwise, I'll fix it later this week.
I am using this again. this week I need to deal with WordNet 2.1.
You package seems to work fine with 2.1. :-)
One arguement infavor of putting the dict folder in the path is that if you have a full WordNet install it has many folders, only one of which is the dict folder. The rest holding commandline utilities and other things. This is the case for 2.1, and 3.0, and most wordnet releases.
But wordnet 3.1 (the lastest release) is distributed only as the dict folder -- but with instructions that if you want the rest of the utilities, then you should download wordnet 3.0 and replace the dict folder.
Hi, Nice work, very handy for those of use doing NLP in julia.
I though I could use the copy of Wordnet I already had from NLTK.
which depending on how NLTK is installed lived in
<NLTKPATH>/nltk_data/corpora/wordnet
However within the corpus directory for NLTK's copy are the index files directly -- they are not inside a
dict
subdirectory.Since everything in the wordnet folder is inside the dict folder it is i guess not required.
Easy work around, either with simlinks or just downloading another wordnet copy.
The text was updated successfully, but these errors were encountered: