Don't raise NotImplemented in Pipe.update

This commit is contained in:
Matthew Honnibal 2019-07-28 17:54:11 +02:00
parent fc69da0acb
commit 16b5144095

View File

@ -104,8 +104,7 @@ class Pipe(object):
Delegates to predict() and get_loss().
"""
self.require_model()
raise NotImplementedError
pass
def rehearse(self, docs, sgd=None, losses=None, **config):
pass