I am trying to get around using the Stanford CoreNLP. I used some code from the web to understand what is going on with the coreference tool. I tried running the project in Eclipse but keep encountering an out of memory exception. I tried increasing the heap size but there isnt any difference. Any ideas on why this keeps happening? Is this a code specific problem? Any directions of using CoreNLP would be awesome.

EDIT - Code Added

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);      
        }

   }
}
link|improve this question
post the code here – Pangea Jan 23 at 5:45
@Pangea Added code. – viki.omega9 Jan 23 at 6:08
feedback

1 Answer

up vote 1 down vote accepted

I found similar problem when building small application using Stanford CoreNLP in Eclipse.
Increasing Eclipse's heap size will not solve your problem.
After doing search, it is ant build tool heap size that should be increased, but I have no idea how to do that.
So I give up Eclipse and use Netbeans instead.

PS: You will eventually get out of memory exception with default setting in Netbeans. But it can easily solved by adjust setting -Xms per application basis.

link|improve this answer
Thank you! Thats a life saver! This memory issue was driving me nuts! How did you figure out that the problem was with ant? – viki.omega9 Jan 23 at 12:17
I did some googling. Let me know if you find way to set ant heap size. – Khairul Jan 23 at 12:24
[This] (soenkerohde.com/2008/06/…) website has an answer but I'm not sure why it still isn't working. Also, if you are online, I'd like to have a chat with you! – viki.omega9 Jan 23 at 12:25
I couldn't in this moment. I'm gonna out. You could send me an email me [kyu dot helf at gmail dot com] – Khairul Jan 23 at 12:42
Quite all right! Will do, thanks! – viki.omega9 Jan 23 at 12:46
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.