mirror of https://github.com/explosion/spaCy.git
29 lines
509 B
Python
29 lines
509 B
Python
|
from .lexeme import lex_of
|
||
|
from .lexeme import sic_of
|
||
|
|
||
|
|
||
|
__all__ = [lex_of, sic_of]
|
||
|
|
||
|
|
||
|
"""
|
||
|
from .tokens import ids_from_string
|
||
|
from .tokens import group_by
|
||
|
|
||
|
from .lex import sic_of
|
||
|
from .lex import lex_of
|
||
|
from .lex import normed_of
|
||
|
from .lex import first_of
|
||
|
from .lex import last_three_of
|
||
|
|
||
|
from .lex import cluster_of
|
||
|
from .lex import prob_of
|
||
|
|
||
|
from .lex import is_oft_upper
|
||
|
from .lex import is_oft_title
|
||
|
|
||
|
from .lex import can_noun
|
||
|
from .lex import can_verb
|
||
|
from .lex import can_adj
|
||
|
from .lex import can_adv
|
||
|
"""
|