mirror of
https://github.com/explosion/spaCy.git
synced 2025-10-21 19:24:39 +03:00
* initial coref_er pipe * matcher more flexible * base coref component without actual model * initial setup of coref_er.score * rename to include_label * preliminary score_clusters method * apply scoring in coref component * IO fix * return None loss for now * rename to CoreferenceResolver * some preliminary unit tests * use registry as callable
8 lines
214 B
Python
8 lines
214 B
Python
from .coref import *
|
|
from .entity_linker import * # noqa
|
|
from .multi_task import * # noqa
|
|
from .parser import * # noqa
|
|
from .tagger import * # noqa
|
|
from .textcat import * # noqa
|
|
from .tok2vec import * # noqa
|