wordnet-blast
wordnet-blast copied to clipboard
Fast access to the Wordnet lexical database.
### p.cpp #include "wnb/core/wordnet.hh" #include "wnb/nltk_similarity.hh" using namespace std; using namespace wnb; int main() { wordnet wn = wordnet("/usr/bin/", true); vector synsets1 = wn.get_synsets("cat", 1); vector synsets2 = wn.get_synsets("dog", 1);...
Hi, This is a really big (bad-practice) pull request with lots of changes addressing several issues: - The most important one is related to encapsulation. Now `wnb::wordnet` is presented as...
I really like boost and think that is a very good alternative to implement graphs, but forcing the user of `wnb` to include it is not needed and not desirable,...
Morphing still relies on the file-based API, which is a lot slower that it should be.