From b438dfd3f30e2b0187b0ef013d6870be1dbb495e Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 11 Mar 2017 11:12:21 -0600 Subject: [PATCH] Add itn argument to tagger.update --- spacy/tagger.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tagger.pyx b/spacy/tagger.pyx index e6e60cd69..6f034f3de 100644 --- a/spacy/tagger.pyx +++ b/spacy/tagger.pyx @@ -228,7 +228,7 @@ cdef class Tagger: self(doc) yield doc - def update(self, Doc tokens, GoldParse gold): + def update(self, Doc tokens, GoldParse gold, itn=0): """Update the statistical model, with tags supplied for the given document. Arguments: