diff --git a/spacy/language.py b/spacy/language.py index 425b3c4a3..758b3ef5f 100644 --- a/spacy/language.py +++ b/spacy/language.py @@ -119,12 +119,6 @@ class Language(object): `Language.Defaults.create_vocab`. make_doc (callable): A function that takes text and returns a `Doc` object. Usually a `Tokenizer`. - pipeline (list): A list of annotation processes or IDs of annotation, - processes, e.g. a `Tagger` object, or `'tagger'`. IDs are looked - up in `Language.Defaults.factories`. - disable (list): A list of component names to exclude from the pipeline. - The disable list has priority over the pipeline list -- if the same - string occurs in both, the component is not loaded. meta (dict): Custom meta data for the Language class. Is written to by models to add model meta data. max_length (int) :