4

I would like to add the jar files from Stanford's CoreNLP into my Scala project. The part I'm struggling with in doing this in the context of a Scala kernel for Jupyter notebooks.

I'm using the Apachee Toree distribution for the kernel. There may be a simple one line command within-cell, but I can't find it.

Any help would be appreciated!

Aus_10
  • 670
  • 7
  • 15

1 Answers1

1

Not sure this applies to Stanford CoreNLP, but in a past project that involves evaluation of using IBM DSX on Jupytor Notebook, I read this article by Dustin V which consists of steps for adding jars. My guess is that the within-cell command you're seeking might be something similar to the following:

%AddJar http://nlp.stanford.edu/software/stanford-corenlp-models-current.jar -f
Leo C
  • 22,006
  • 3
  • 26
  • 39