mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
8 lines
174 B
Cython
8 lines
174 B
Cython
from ..structs cimport TokenC
|
|
|
|
|
|
cdef class GoldParse:
|
|
cdef int* heads
|
|
cdef int* labels
|
|
cdef int heads_correct(self, TokenC* tokens, bint score_punct=?) except -1
|