我已经将PHP API安装到NLP Stanford工具(来自https://github.com/agentile/PHP-Stanford-NLP),我已经设法使用其中包含的代码示例获取POS标记:
$pos = new \StanfordNLP\POSTagger(
'/path/to/stanford-postagger-2014-08-27/models/english-left3words-distsim.tagger',
'/path/to/stanford-postagger-2014-08-27/stanford-postagger.jar'
);
$result = $pos->tag(explode(' ', "What does the fox say?"));
var_dump($result);
但是,我也需要lemmas。我的问题是:是否可以使用POS标记器获取它们?或者我应该使用CoreNLP吗?
如果是后者,我该如何在PHP中运行它?
非常感谢。
答案 0 :(得分:0)