From 1705eccbbea38eb5bd5869cc0dd31c1586106217 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 27 Mar 2015 15:22:39 +0100 Subject: [PATCH] * Remove whitespace --- spacy/syntax/parser.pyx | 2 -- 1 file changed, 2 deletions(-) diff --git a/spacy/syntax/parser.pyx b/spacy/syntax/parser.pyx index 9b71e78ed..02231e271 100644 --- a/spacy/syntax/parser.pyx +++ b/spacy/syntax/parser.pyx @@ -105,11 +105,9 @@ cdef class GreedyParser: cdef Transition guess cdef Transition best cdef atom_t[CONTEXT_SIZE] context - while not is_final(state): fill_context(context, state) scores = self.model.score(context) - guess = self.moves.best_valid(scores, state) best = self.moves.best_gold(scores, state, gold)