mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-06 14:40:34 +03:00
14 lines
479 B
Python
14 lines
479 B
Python
|
from .corpus import GoldCorpus
|
||
|
from ..syntax.gold_parse import GoldParse
|
||
|
from .example import Example
|
||
|
from .annotation import TokenAnnotation, DocAnnotation
|
||
|
from .align import align
|
||
|
|
||
|
from .iob_utils import iob_to_biluo, biluo_to_iob
|
||
|
from .iob_utils import biluo_tags_from_offsets, offsets_from_biluo_tags
|
||
|
from .iob_utils import spans_from_biluo_tags
|
||
|
from .iob_utils import tags_to_entities
|
||
|
|
||
|
from .gold_io import docs_to_json
|
||
|
from .gold_io import read_json_file, read_json_object
|