1

我正在编写一个必须处理一些 NLP 问题的 Web 应用程序。我以前用 Java 编写过 NLP 应用程序,我一直依赖 JWNL 库,这正是我所需要的。我想知道,根据您的经验,是否有从 web 应用程序查询 WordNet DB 的最佳方法,可能与 HTML+js 框架中的轻松集成。我需要检索有关单词的简单信息,例如同义词集、上位词和类似词。谢谢!

4

1 回答 1

1

The NodeJS/Javascript wordnet related projects for your reference:

  • Natural: General natural language (tokenizing, stemming (English, Russian, Spanish), classification, inflection, phonetics, tfidf, WordNet, jaro-winkler, Levenshtein distance, Dice's Coefficient) facilities for node.
    • WNdb: the wordnet database for NodeJS(required via natural).
  • node-wordnet-magic: The objective of this package is to make this richness available to the node eco-system. There are quite a few wordnet packages already, providing some nice features, but there is none that tries to reflect the complete WordNet architecture (centered around synsets). This is what the wordnet-magic module is aiming for.
于 2014-11-22T08:17:52.673 回答