我在我的C#代码列表中加载了Standford NER模块:
var classifier = CRFClassifier.getClassifierNoExceptions(@"..\..\NER\english.all.3class.distsim.crf.ser.gz");
我可以从文档(https://stanfordnlp.github.io/CoreNLP/memory-time.html)中看到,有许多参数可用于优化文本处理。
例如:
edu/stanford/nlp/models/ner/english.all.3class.distsim.crf.ser.gz -ner.useSUTime false -ner.applyNumericClassifiers false
有人可以建议我如何将这些参数传递给c#中的分类器吗?
由于 布伦丹