mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-28 19:06:33 +03:00
11 lines
227 B
Python
11 lines
227 B
Python
from .candidate import Candidate, InMemoryCandidate
|
|
from .kb import KnowledgeBase
|
|
from .kb_in_memory import InMemoryLookupKB
|
|
|
|
__all__ = [
|
|
"Candidate",
|
|
"KnowledgeBase",
|
|
"InMemoryCandidate",
|
|
"InMemoryLookupKB",
|
|
]
|