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