From 711ed0f6366b1af24dfd4ff7bb777d199b594322 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 2 Nov 2014 14:22:32 +1100 Subject: [PATCH] * Whitespace --- spacy/pos.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/pos.pyx b/spacy/pos.pyx index 071e93b26..af2ebead2 100644 --- a/spacy/pos.pyx +++ b/spacy/pos.pyx @@ -39,7 +39,7 @@ cdef class Tagger: self._values = self.mem.alloc(self.extractor.n+1, sizeof(weight_t)) self._scores = self.mem.alloc(len(self.tags), sizeof(weight_t)) self._guess = NULL_TAG - + cpdef class_t predict(self, int i, Tokens tokens, class_t prev, class_t prev_prev) except 0: get_atoms(self._atoms, tokens.lex[i-2], tokens.lex[i-1], tokens.lex[i], tokens.lex[i+1], tokens.lex[i+2], prev, prev_prev)