I am following this link for making a CRF model. I am using following command for making model.
java -cp stanford-ner.jar edu.stanford.nlp.ie.crf.CRFClassifier -prop austen.prop
Model is made successfully but my training data is very much and it is taking too much time. When I closely observe what is happening in the system. It is just using only one Core of my computer.
Can I run this command in a way that it should use many cores of my computer? It look like that it is implemented as a single thread. Is there is a support of multi-threading? If yes kindly share.