Running the CoreNLP Tools as a Local Server

The StanfordCoreNLP Tools can also be run as a local server. Call the server by means of the following command or put this in a batch file and run it:

:: call this batch file from the Stanford CoreNLP Tools directory; 
:: note that the entire command needs to be on one single line 
:: without any line-breaks

java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer 
-preload tokenize,ssplit,pos,lemma,ner,parse,depparse 
-status_port 9000 -port 9000 -timeout 15000''