导入斯坦福 nlp Intellij

Import Stanford nlp Intellij

我在使用 Stanford Lemmatizer 时遇到问题。 当我使用 Intellij IDE 时,我尝试通过依赖项 Windows 导入它,但我无法通过这种方式访问​​所有 class。

有没有办法在 Intellij 上正确导入 stanford-english-corenlp-models-current.jar & stanford-corenlp-models-current.jar?

正如上面提到的,你只是导入了错误的文件

首先,下载CoreNLP 3.7.0(测试版)

在上面的屏幕截图中,单击红色按钮下载文件,其中涵盖了 运行 CoreNLP 的所有内容。

其次,右键单击要导入jar的模块,打开"open module settings"面板,然后你可能会得到这样的图片

单击绿色加号按钮导入所有内容

注意:是我给你的目录

然后点击"Apply"和"OK"

这是done.Enjoy啦!

参考:

http://stanfordnlp.github.io/CoreNLP/ (CoreNLP官网)

http://jingyan.baidu.com/article/fec7a1e5f79e2b1191b4e74f.html (如何在Intellij中导入jar中文)