我在看这个在线演示:http://nlp.stanford.edu:8080/ner/process 尝试一个简单的测试用例,例如: John Chambers在伦敦(英国)和孟买(印度)学习。 3级分类器标识Person,7级分类器不标识Person。好像我需要在两个模型上运行解析器:一次识别Person,Location&组织。曾经只为货币?
答案 0 :(得分:0)
当我运行此命令时,它会在您的示例中找到所有相应的实体:
java -Xmx8g edu.stanford.nlp.pipeline.StanfordCoreNLP -annotators tokenize,ssplit,pos,lemma,ner -file sample-sentence.txt -outputFormat text
当您运行与注释器ner
对应的NERCombinerAnnotator时,它将自动为您运行多个模型的组合。