ai-content-maker/.venv/Lib/site-packages/spacy/kb/candidate.pxd

16 lines
394 B
Cython
Raw Permalink Normal View History

2024-05-03 04:18:51 +03:00
from libcpp.vector cimport vector
from ..typedefs cimport hash_t
from .kb cimport KnowledgeBase
# Object used by the Entity Linker that summarizes one entity-alias candidate
# combination.
cdef class Candidate:
cdef readonly KnowledgeBase kb
cdef hash_t entity_hash
cdef float entity_freq
cdef vector[float] entity_vector
cdef hash_t alias_hash
cdef float prior_prob