1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-01-19 05:54:11 +03:00
spaCy/spacy/kb/__init__.py

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",
]