f877c37fc6
tests / Test (macos-latest, 3.14) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.10) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.13) (push) Has been cancelled
tests / Test (windows-latest, 3.14) (push) Has been cancelled
tests / Validate (push) Has been cancelled
tests / Test (macos-latest, 3.10) (push) Has been cancelled
tests / Test (macos-latest, 3.11) (push) Has been cancelled
tests / Test (macos-latest, 3.12) (push) Has been cancelled
tests / Test (macos-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.12) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.14) (push) Has been cancelled
tests / Test (windows-latest, 3.10) (push) Has been cancelled
tests / Test (windows-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.12) (push) Has been cancelled
universe validation / Validate (push) Has been cancelled
16 lines
394 B
Cython
16 lines
394 B
Cython
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
|