mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
36 lines
674 B
Cython
36 lines
674 B
Cython
from cymem.cymem cimport Pool
|
|
|
|
from .structs cimport TokenC
|
|
from .syntax.transition_system cimport Transition
|
|
|
|
|
|
cdef struct GoldParseC:
|
|
int* tags
|
|
int* heads
|
|
int* labels
|
|
int** brackets
|
|
Transition* ner
|
|
|
|
|
|
cdef class GoldParse:
|
|
cdef Pool mem
|
|
|
|
cdef GoldParseC c
|
|
|
|
cdef int length
|
|
cdef readonly int loss
|
|
cdef readonly list words
|
|
cdef readonly list tags
|
|
cdef readonly list heads
|
|
cdef readonly list labels
|
|
cdef readonly dict orths
|
|
cdef readonly list ner
|
|
cdef readonly list ents
|
|
cdef readonly dict brackets
|
|
|
|
cdef readonly list cand_to_gold
|
|
cdef readonly list gold_to_cand
|
|
cdef readonly list orig_annot
|
|
|
|
|