From 92fb9257ddad132ca3eeb37ea09b14b0788d9127 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 25 Jan 2015 22:00:39 +1100 Subject: [PATCH] * Add parts-of-speech file --- spacy/parts_of_speech.pxd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 spacy/parts_of_speech.pxd diff --git a/spacy/parts_of_speech.pxd b/spacy/parts_of_speech.pxd new file mode 100644 index 000000000..4b9c343d1 --- /dev/null +++ b/spacy/parts_of_speech.pxd @@ -0,0 +1,17 @@ +# Google universal tag set +cpdef enum univ_pos_t: + NO_TAG + ADJ + ADV + ADP + CONJ + DET + NOUN + NUM + PRON + PRT + VERB + X + PUNCT + EOL + N_UNIV_TAGS