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 2b88469 commit 3f4a084Copy full SHA for 3f4a084
src/parserindexer/corenlpparser.py
@@ -21,6 +21,9 @@ def __init__(self, **kwargs):
21
'outputFormat': 'json',
22
'ner.useSUTime': False, # dont want SUTime model
23
'ner.applyNumericClassifiers': False, # Dont want numeric classifier
24
+ # Don't need fine grained recognition with corenlp built-in NER
25
+ # models
26
+ 'ner.applyFineGrained': False
27
}
28
if kwargs.get('ner_model'): # set NER model from CLI
29
if not os.path.exists(kwargs.get('ner_model')):
0 commit comments