From 017bc2ef2f13822fdb364746bbfb3f65b514cf1f Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 18 Nov 2018 00:06:13 +0100 Subject: [PATCH] Expose TextCategorizer via __all__ --- spacy/pipeline.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/pipeline.pyx b/spacy/pipeline.pyx index 7e2bfb48d..bb4b96c02 100644 --- a/spacy/pipeline.pyx +++ b/spacy/pipeline.pyx @@ -1202,4 +1202,4 @@ cdef class EntityRecognizer(Parser): None, None) -__all__ = ['Tagger', 'DependencyParser', 'EntityRecognizer', 'Tensorizer'] +__all__ = ['Tagger', 'DependencyParser', 'EntityRecognizer', 'Tensorizer', 'TextCategorizer']