* Add typedefs.pyx

This commit is contained in:
Matthew Honnibal 2015-01-06 04:51:40 +11:00
parent 351f2041ff
commit 6a3e39cdd1
1 changed files with 16 additions and 0 deletions

16
spacy/typedefs.pyx Normal file
View File

@ -0,0 +1,16 @@
UNIV_TAG_NAMES = {
"NO_TAG": NO_TAG,
"ADJ": ADJ,
"ADV": ADV,
"ADP": ADP,
"CONJ": CONJ,
"DET": DET,
"NOUN": NOUN,
"NUM": NUM,
"PRON": PRON,
"PRT": PRT,
"VERB": VERB,
"X": X,
"PUNCT": PUNCT,
"EOL": EOL
}