Skip to content

Commit

Permalink
Fixed a bug found by @yorkerlin in #29.
Browse files Browse the repository at this point in the history
  • Loading branch information
bayerj committed Sep 21, 2015
1 parent 16bea41 commit 349f631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion climin/adadelta.py
Expand Up @@ -107,7 +107,7 @@ def _iterate(self):
d = self.decay
o = self.offset
m = self.momentum
step1 = step_m1 * m * self.step_rate
step1 = step_m1 * m
self.wrt -= step1

gradient = self.fprime(self.wrt, *args, **kwargs)
Expand Down

0 comments on commit 349f631

Please sign in to comment.