spaCy/spacy/pipeline/__init__.py

10 lines
416 B
Python
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
from .pipes import Tagger, DependencyParser, EntityRecognizer # noqa
from .pipes import TextCategorizer, Tensorizer, Pipe # noqa
2019-03-07 03:36:04 +03:00
from .morphologizer import Morphologizer
from .entityruler import EntityRuler # noqa
from .hooks import SentenceSegmenter, SimilarityHook # noqa
from .functions import merge_entities, merge_noun_chunks, merge_subtokens # noqa