mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
13 lines
390 B
Cython
13 lines
390 B
Cython
|
from .kb cimport KnowledgeBase
|
||
|
from libcpp.vector cimport vector
|
||
|
from ..typedefs cimport hash_t
|
||
|
|
||
|
# 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
|