From aaf6953fe03fc81226fec9d3fc90cf0af87155eb Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 31 Oct 2014 17:42:15 +1100 Subject: [PATCH] * Add count_tags functionto pos.pyx, which should probably live in another file. Feature set achieves 97.9 on wsj19-21, 95.85 on onto web. --- spacy/pos.pxd | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/spacy/pos.pxd b/spacy/pos.pxd index 4f5ad6b40..6f14b0b9d 100644 --- a/spacy/pos.pxd +++ b/spacy/pos.pxd @@ -7,23 +7,6 @@ from thinc.typedefs cimport atom_t, feat_t, weight_t, class_t from .tokens cimport Tokens -cpdef enum PosTag: - NONE - ADJ - ADP - ADV - CONJ - DET - NOUN - NUM - PDT - POS - PRON - PRT - PUNCT - VERB - - cdef class Tagger: cpdef readonly Extractor extractor cpdef readonly LinearModel model