Using the Stanford postagger in java, getting java.lang.IncompatibleClassChangeError
I am trying to initialize the Stanford NLP Part of Speech tagger and I keep getting a java.lang.IncompatibleClassChangeError. When I print the cause of the error, I get null, when I print the message I get Implementing Class. This is my code: try { MaxentTagger tagger = new MaxentTagger(path+"left3words-wsj-0-18.tagger"); ...