Update docs

This commit is contained in:
ines 2017-10-25 13:57:55 +02:00
parent 72497c8cb2
commit 0102561f34
2 changed files with 2 additions and 0 deletions

View File

@ -229,6 +229,7 @@ p
+cell Config parameters. +cell Config parameters.
+h(2, "preprocess_gold") Language.preprocess_gold +h(2, "preprocess_gold") Language.preprocess_gold
+tag method
p p
| Can be called before training to pre-process gold data. By default, it | Can be called before training to pre-process gold data. By default, it

View File

@ -497,6 +497,7 @@ p
+code-new. +code-new.
nlp = spacy.load('en', disable=['tagger', 'ner']) nlp = spacy.load('en', disable=['tagger', 'ner'])
doc = nlp(u"I don't want parsed", disable['parser'])
nlp.remove_pipe('parser') nlp.remove_pipe('parser')
+code-old. +code-old.
nlp = spacy.load('en', tagger=False, entity=False) nlp = spacy.load('en', tagger=False, entity=False)