From 3bba8e9245bc89494e5d0bf460397844e000d424 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 24 Sep 2018 23:58:08 +0200 Subject: [PATCH] Update structs --- spacy/structs.pxd | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spacy/structs.pxd b/spacy/structs.pxd index cfcadc3d0..954ea19fe 100644 --- a/spacy/structs.pxd +++ b/spacy/structs.pxd @@ -2,6 +2,7 @@ from libc.stdint cimport uint8_t, uint32_t, int32_t, uint64_t from .typedefs cimport flags_t, attr_t, hash_t from .parts_of_speech cimport univ_pos_t +from .morphology cimport univ_morph_t cdef struct LexemeC: @@ -71,3 +72,6 @@ cdef struct TokenC: int ent_iob attr_t ent_type # TODO: Is there a better way to do this? Multiple sources of truth.. hash_t ent_id + + +