mirror of https://github.com/explosion/spaCy.git
Add itn argument to tagger.update
This commit is contained in:
parent
931feb3360
commit
b438dfd3f3
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue