Small hack in Language.update to make torch work

This commit is contained in:
Matthew Honnibal 2018-09-13 22:51:52 +00:00
parent 445b81ce3f
commit a26fe8e7bb
1 changed files with 4 additions and 0 deletions

View File

@ -426,6 +426,10 @@ class Language(object):
def get_grads(W, dW, key=None):
grads[key] = (W, dW)
get_grads.alpha = sgd.alpha
get_grads.b1 = sgd.b1
get_grads.b2 = sgd.b2
pipes = list(self.pipeline)
random.shuffle(pipes)
for name, proc in pipes: