We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c0b7d commit c3be0fdCopy full SHA for c3be0fd
itest/src/edu/stanford/nlp/time/SUTimeITest.java
@@ -23,7 +23,8 @@ public void setUp() throws Exception {
23
if (pipeline == null) {
24
pipeline = new AnnotationPipeline();
25
pipeline.addAnnotator(new TokenizerAnnotator(false, "en", "splitHyphenated=false"));
26
- pipeline.addAnnotator(new WordsToSentencesAnnotator(false));
+ // WTS not needed - is now built in to the tokenizer
27
+ //pipeline.addAnnotator(new WordsToSentencesAnnotator(false));
28
pipeline.addAnnotator(new POSTaggerAnnotator(DefaultPaths.DEFAULT_POS_MODEL, false));
29
//pipeline.addAnnotator(new NumberAnnotator(false));
30
//pipeline.addAnnotator(new QuantifiableEntityNormalizingAnnotator(false, false));
0 commit comments