mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-15 06:09:01 +03:00
699dd8b3b7
* update all for pipeline.init * add all in training.init * add all in kb.init * alphabetically
7 lines
232 B
Python
7 lines
232 B
Python
from .dependencymatcher import DependencyMatcher
|
|
from .levenshtein import levenshtein
|
|
from .matcher import Matcher
|
|
from .phrasematcher import PhraseMatcher
|
|
|
|
__all__ = ["DependencyMatcher", "Matcher", "PhraseMatcher", "levenshtein"]
|