mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-14 02:02:20 +03:00
7 lines
209 B
Python
7 lines
209 B
Python
from .kb import KnowledgeBase
|
|
from .kb_in_memory import InMemoryLookupKB
|
|
from .candidate import Candidate, InMemoryCandidate
|
|
|
|
|
|
__all__ = ["KnowledgeBase", "InMemoryLookupKB", "Candidate", "InMemoryCandidate"]
|