我正在使用Stanford Parser
. 我收到一个错误:
无法将字符串解析为 Corelabel
这是一些代码:
List<CoreMap> sentences = annotation.get(CoreAnnotations.SentencesAnnotation.class);
for(CoreMap sentence: sentences)
{
CoreLabel temp=sentence.toString().replace(clust2, clust);
sentences.set(m.sentNum-1,temp);
}