We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d62d7e commit 2c41e75Copy full SHA for 2c41e75
corenlp.py
@@ -132,16 +132,16 @@ def __init__(self, corenlp_path=None):
132
Checks the location of the jar files.
133
Spawns the server as a process.
134
"""
135
- jars = ["stanford-corenlp-3.4.1.jar",
136
- "stanford-corenlp-3.4.1-models.jar",
+ jars = ["stanford-corenlp-3.5.1.jar",
+ "stanford-corenlp-3.5.1-models.jar",
137
"joda-time.jar",
138
"xom.jar",
139
"jollyday.jar"]
140
141
# if CoreNLP libraries are in a different directory,
142
# change the corenlp_path variable to point to them
143
if not corenlp_path:
144
- corenlp_path = "./stanford-corenlp-full-2014-08-27/"
+ corenlp_path = "./stanford-corenlp-full-2015-01-30/"
145
146
java_path = "java"
147
classname = "edu.stanford.nlp.pipeline.StanfordCoreNLP"
0 commit comments