【发布时间】:2018-11-05 13:07:35
【问题描述】:
我正在解决以下问题:我想使用 Stanford CoreNLP 将句子分成子句。例句可能是:
"Richard is working with CoreNLP, but does not really understand what he is doing"
我现在希望将我的句子拆分为单个“S”,如下图所示:
我希望输出是一个带有单个“S”的列表,如下所示:
['Richard is working with CoreNLP', ', but', 'does not really understand what', 'he is doing']
我会非常感谢任何帮助:)
【问题讨论】:
标签: nlp stanford-nlp dependency-parsing natural-language-processing pycorenlp