HazyResearch / bazaar

14 stars 11 forks source link

Adds support for config.properties file to adjust settings for CoreNLP #16

Closed raphaelhoffmann closed 8 years ago

raphaelhoffmann commented 8 years ago

One can now add a config.properties file into the directory where one is calling Pipe. These settings are then passed through to the CoreNLP modules that are called. For example, if you want to parse pre-tokenized and pre-sentence-split content, you can add a config.properties file with the following entries:

tokenize.whitespace = true
ssplit.eolonly = true
netj commented 8 years ago

What about Parser? Does the config affect Pipe only?

raphaelhoffmann commented 8 years ago

Adds support for config.properties to Pipe. @netj Not sure if anyone is still using the old Parser code, maybe better to converge on one project to avoid duplicate effort.