我是NLP的新手。我需要基本的想法才能开始安装它。 我已经通过LingPipe并打开NLP安装部分,但我不明白为什么要安装maven和其他训练集,模型等。 任何简短的安装说明都有助于我开始编码。 平台 - Ubuntu
很抱歉,如果这个问题过于通用或简单
答案 0 :(得分:0)
我在我的项目中使用了OpenNLP。我认为这些说明将帮助您通过OpenNLP库。请遵循此document
InputStream modelIn = null;
try {
modelIn = new FileInputStream("en-pos-maxent.bin");
POSModel model = new POSModel(modelIn);
}
catch (IOException e) {
// Model loading failed, handle the error
e.printStackTrace();
}
finally {
if (modelIn != null) {
try {
modelIn.close();
}
catch (IOException e) {
}
}
}