We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0efd86e commit e24e281Copy full SHA for e24e281
pipeline/src/main/java/edu/illinois/cs/cogcomp/pipeline/main/PipelineFactory.java
@@ -95,6 +95,9 @@ public static BasicAnnotatorService buildPipeline(String... views) throws IOExce
95
case ViewNames.SRL_PREP:
96
nonDefaultValues.put(PipelineConfigurator.USE_SRL_PREP.key, Configurator.TRUE);
97
break;
98
+ case ViewNames.SRL_COMMA:
99
+ nonDefaultValues.put(PipelineConfigurator.USE_SRL_COMMA.key, Configurator.TRUE);
100
+ break;
101
default:
102
logger.warn("View name " + vu + " is not supported yet. Look into the readme of the pipeline to see the list of valid annotators. ");
103
}
0 commit comments