mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-13 18:56:36 +03:00
Update __all__ fields (#13063)
* update all for pipeline.init * add all in training.init * add all in kb.init * alphabetically
This commit is contained in:
parent
ea1befa8ff
commit
699dd8b3b7
|
@ -1,3 +1,11 @@
|
||||||
from .candidate import Candidate, get_candidates, get_candidates_batch
|
from .candidate import Candidate, get_candidates, get_candidates_batch
|
||||||
from .kb import KnowledgeBase
|
from .kb import KnowledgeBase
|
||||||
from .kb_in_memory import InMemoryLookupKB
|
from .kb_in_memory import InMemoryLookupKB
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"Candidate",
|
||||||
|
"KnowledgeBase",
|
||||||
|
"InMemoryLookupKB",
|
||||||
|
"get_candidates",
|
||||||
|
"get_candidates_batch",
|
||||||
|
]
|
||||||
|
|
|
@ -3,4 +3,4 @@ from .levenshtein import levenshtein
|
||||||
from .matcher import Matcher
|
from .matcher import Matcher
|
||||||
from .phrasematcher import PhraseMatcher
|
from .phrasematcher import PhraseMatcher
|
||||||
|
|
||||||
__all__ = ["Matcher", "PhraseMatcher", "DependencyMatcher", "levenshtein"]
|
__all__ = ["DependencyMatcher", "Matcher", "PhraseMatcher", "levenshtein"]
|
||||||
|
|
|
@ -22,6 +22,7 @@ from .trainable_pipe import TrainablePipe
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"AttributeRuler",
|
"AttributeRuler",
|
||||||
"DependencyParser",
|
"DependencyParser",
|
||||||
|
"EditTreeLemmatizer",
|
||||||
"EntityLinker",
|
"EntityLinker",
|
||||||
"EntityRecognizer",
|
"EntityRecognizer",
|
||||||
"EntityRuler",
|
"EntityRuler",
|
||||||
|
|
|
@ -5,4 +5,4 @@ from .span import Span
|
||||||
from .span_group import SpanGroup
|
from .span_group import SpanGroup
|
||||||
from .token import Token
|
from .token import Token
|
||||||
|
|
||||||
__all__ = ["Doc", "Token", "Span", "SpanGroup", "DocBin", "MorphAnalysis"]
|
__all__ = ["Doc", "DocBin", "MorphAnalysis", "Span", "SpanGroup", "Token"]
|
||||||
|
|
|
@ -16,3 +16,28 @@ from .iob_utils import ( # noqa: F401
|
||||||
tags_to_entities,
|
tags_to_entities,
|
||||||
)
|
)
|
||||||
from .loggers import console_logger # noqa: F401
|
from .loggers import console_logger # noqa: F401
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"Alignment",
|
||||||
|
"Corpus",
|
||||||
|
"Example",
|
||||||
|
"JsonlCorpus",
|
||||||
|
"PlainTextCorpus",
|
||||||
|
"biluo_tags_to_offsets",
|
||||||
|
"biluo_tags_to_spans",
|
||||||
|
"biluo_to_iob",
|
||||||
|
"create_copy_from_base_model",
|
||||||
|
"docs_to_json",
|
||||||
|
"dont_augment",
|
||||||
|
"iob_to_biluo",
|
||||||
|
"minibatch_by_padded_size",
|
||||||
|
"minibatch_by_words",
|
||||||
|
"offsets_to_biluo_tags",
|
||||||
|
"orth_variants_augmenter",
|
||||||
|
"read_json_file",
|
||||||
|
"remove_bilu_prefix",
|
||||||
|
"split_bilu_label",
|
||||||
|
"tags_to_entities",
|
||||||
|
"validate_get_examples",
|
||||||
|
"validate_examples",
|
||||||
|
]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user