mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
a9f8d17632
* Break up large pipeline.pyx * Merge some components back together * Fix typo
9 lines
375 B
Python
9 lines
375 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from .pipes import Tagger, DependencyParser, EntityRecognizer # noqa
|
|
from .pipes import TextCategorizer, Tensorizer, Pipe # noqa
|
|
from .entityruler import EntityRuler # noqa
|
|
from .hooks import SentenceSegmenter, SimilarityHook # noqa
|
|
from .functions import merge_entities, merge_noun_chunks, merge_subtokens # noqa
|