我想解決使用斯坦福CoreNLP。我使用了Web上的一些代碼來了解coreference工具正在發生什麼。我嘗試在Eclipse中運行該項目,但仍遇到內存不足異常。我試圖增加堆大小,但沒有任何區別。任何想法爲什麼這種情況繼續發生?這是一個代碼特定的問題?任何使用CoreNLP的方向都很棒。使用斯坦福CoreNLP
編輯 - 添加代碼
import edu.stanford.nlp.dcoref.CorefChain;
import edu.stanford.nlp.dcoref.CorefCoreAnnotations;
import edu.stanford.nlp.pipeline.Annotation;
import edu.stanford.nlp.pipeline.StanfordCoreNLP;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
public class testmain {
public static void main(String[] args) {
String text = "Viki is a smart boy. He knows a lot of things.";
Annotation document = new Annotation(text);
Properties props = new Properties();
props.put("annotators", "tokenize, ssplit, pos, parse, dcoref");
StanfordCoreNLP pipeline = new StanfordCoreNLP(props);
pipeline.annotate(document);
Map<Integer, CorefChain> graph = document.get(CorefCoreAnnotations.CorefChainAnnotation.class);
Iterator<Integer> itr = graph.keySet().iterator();
while (itr.hasNext()) {
String key = itr.next().toString();
String value = graph.get(key).toString();
System.out.println(key + " " + value);
}
}
}
在這裏發佈代碼 –
@Pangea添加代碼。 –
我用-Xms4g在eclipse中使用corenlp,它工作正常。 – alienCoder