mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
* Fix parts_of_speech now that symbols list has been reformed
This commit is contained in:
parent
8f0f47b9a6
commit
4c16307b10
|
@ -1,24 +1,23 @@
|
|||
from .symbols cimport *
|
||||
|
||||
from . cimport symbols
|
||||
|
||||
cpdef enum univ_pos_t:
|
||||
NO_TAG = NIL
|
||||
ADJ = POS_adj
|
||||
ADP = POS_adp
|
||||
ADV = POS_adv
|
||||
AUX = POS_aux
|
||||
CONJ = POS_conj
|
||||
DET = POS_det
|
||||
INTJ = POS_intj
|
||||
NOUN = POS_noun
|
||||
NUM = POS_num
|
||||
PART = POS_part
|
||||
PRON = POS_pron
|
||||
PROPN = POS_propn
|
||||
PUNCT = POS_punct
|
||||
SCONJ = POS_sconj
|
||||
SYM = POS_sym
|
||||
VERB = POS_verb
|
||||
X = POS_x
|
||||
EOL = POS_eol
|
||||
SPACE = POS_space
|
||||
NO_TAG = 0
|
||||
ADJ = symbols.ADJ
|
||||
ADP
|
||||
ADV
|
||||
AUX
|
||||
CONJ
|
||||
DET
|
||||
INTJ
|
||||
NOUN
|
||||
NUM
|
||||
PART
|
||||
PRON
|
||||
PROPN
|
||||
PUNCT
|
||||
SCONJ
|
||||
SYM
|
||||
VERB
|
||||
X
|
||||
EOL
|
||||
SPACE
|
||||
|
|
Loading…
Reference in New Issue
Block a user