Trouble running Java application implementing Stanford POS tagger as a .jar, runs fine in NetBeans IDE

838 Views Asked by At

I am trying to implement Stanford's POS tagger in a Java application using the following lines of code:

             MaxentTagger tagger = new MaxentTagger("taggers/english-left3words-distsim.tagger");
             String taggedString = tagger.tagString(string);

It works fine when running the project in NetBeans, but the executable .jar compiled in NetBeans will not run the tagger. I am fairly new to Java and to programming in general, and I haven't figured out how to log whatever error/exception is occurring in the GUI console of the application, and no error/exception occurs when running the project in NetBeans.

A couple things occurred to me that could be happening. The Stanford NLP group says:

"The system requires Java 1.8+ to be installed. Depending on whether you're running 32 or 64 bit Java and the complexity of the tagger model, you'll need somewhere between 60 and 200 MB of memory to run a trained tagger (i.e., you may need to give java an option like java -mx200m). Plenty of memory is needed to train a tagger. It again depends on the complexity of the model but at least 1GB is usually needed, often more." http://nlp.stanford.edu/software/tagger.shtml

In the shortcut that I use to run the application, I specified the path of a javaw.exe that is version 1.8+, and I also tried replacing the latest release of the tagger with the August 2014 release, pre-Java 8 upgrade, and neither solved the problem.

As for the memory issue, I went to my Java control panel and entered "-Xms1024m" as a runtime parameter for every javaw.exe on my machine, and that also did not solve the problem.

Can anybody suggest what might be making the .jar fail to run the tagger, when it works fine running the project from NetBeans?

Thanks!

1

There are 1 best solutions below

1
On BEST ANSWER

peeskillet that worked, thanks (great name by the way)! Specifically, in the projects tab I right-clicked "Source Packages" > "New" > "Java Package," called the new package "taggers," and moved the .tagger files into the "taggers" directory under the "src" directory under the project root directory.