仅标记句子开头和结尾的词性标注器
POS tagger to tag only the start and end of a sentence
是否可以修改 stanford 词性标注器,使其只标注句子的开头和结尾,而不标注其他内容?
以前有人尝试过或完成过吗?该代码可用吗?
需要破解什么文件才能做到这一点?
是否有另一种工具可以可靠、相对快速地提供此功能且格式良好?
不确定这是否仍然相关,但我确实使用了当前句子第一部分的 beginPosition() 和最后一部分的 endPosition() 来准确地获取开始和结束输入文本中的句子。
Just cast the part of speech to a TaggedWord. You can then easily
access these properties from the getters , tag() and value().
查看此问题了解更多信息:
List of part of speech tags per sentence with POS Tagger Standford NPL in C#
最好的,
安德鲁
是否可以修改 stanford 词性标注器,使其只标注句子的开头和结尾,而不标注其他内容?
以前有人尝试过或完成过吗?该代码可用吗?
需要破解什么文件才能做到这一点?
是否有另一种工具可以可靠、相对快速地提供此功能且格式良好?
不确定这是否仍然相关,但我确实使用了当前句子第一部分的 beginPosition() 和最后一部分的 endPosition() 来准确地获取开始和结束输入文本中的句子。
Just cast the part of speech to a TaggedWord. You can then easily access these properties from the getters , tag() and value().
查看此问题了解更多信息:
List of part of speech tags per sentence with POS Tagger Standford NPL in C#
最好的, 安德鲁