Specify dependency with classifier in Zeppelin

Viewed 350

I am trying to play around with sentiment analysis on EMR with Zepplin and Stanford NLP.

I have added edu.stanford.nlp:stanford-corenlp:3.8.0, however, I cannot figure out how to add a dependency with a classifier.

I am getting this error edu.stanford.nlp.io.RuntimeIOException: java.io.IOException: Unable to open "edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz" as class path, filename or URL.

It shows up because I need this package (in sbt format) libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % "3.8.0"classifier "models"

How can I specify this dependency in Zeppelin?

1 Answers
Related