Remove unused argument in Language

This commit is contained in:
Matthew Honnibal 2017-09-26 05:41:35 -05:00
parent 8716ffe57d
commit 4ae9ea7684

View File

@ -279,8 +279,7 @@ class Language(object):
def make_doc(self, text): def make_doc(self, text):
return self.tokenizer(text) return self.tokenizer(text)
def update(self, docs, golds, drop=0., sgd=None, losses=None, def update(self, docs, golds, drop=0., sgd=None, losses=None):
update_shared=False):
"""Update the models in the pipeline. """Update the models in the pipeline.
docs (iterable): A batch of `Doc` objects. docs (iterable): A batch of `Doc` objects.