This commit is contained in:
Raphael Mitsch 2024-02-01 12:38:37 +01:00
parent f169614c53
commit c174ebf880
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,6 @@ from .candidate import Candidate
from .typedefs import CandidatesForMention
cdef class KnowledgeBase:
"""A `KnowledgeBase` instance stores unique identifiers for entities and
their textual aliases, to support entity linking of named entities to

View File

@ -1,4 +1,5 @@
from .candidate import Candidate
from typing import Iterable
ctypedef Iterable[Candidate] CandidatesForMention
from .candidate import Candidate
ctypedef Iterable[Candidate] CandidatesForMention