Skip to content

Commit fe4309d

Browse files
committed
Disable SUTime property in CoreNLP
1 parent 9ded72c commit fe4309d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

swan-pipeline/src/main/java/de/fraunhofer/iem/swan/features/doc/nlp/CoreNLPExecutor.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public CoreNLPExecutor() {
2727
logger.info("Initializing CoreNLP pipeline");
2828
properties = new Properties();
2929
properties.setProperty("annotators", "tokenize, ssplit, pos, lemma, parse");
30+
properties.setProperty("ser.useSUTime", "false");
3031
pipeline = new StanfordCoreNLP(properties);
3132
}
3233

0 commit comments

Comments
 (0)