Skip to content

Commit eb79050

Browse files
YoannDupontGuillaume Lample
authored and
Guillaume Lample
committed
Bug fix: cannot train with RMSprop (#19)
Issue --- When trying to train with RMSprop learning method, Theano raised a TypeError. Fix --- Changed optimization.py line 157 : ``` accumulators = [theano.shared(np.zeros_like(p.get_value()).astype(np.float32)) for p in params] ``` To: ``` accumulators = [theano.shared(np.zeros_like(p.get_value()).astype(floatX)) for p in params] ```
1 parent c735605 commit eb79050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

optimization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def rmsprop(self, cost, params, lr=0.001, rho=0.9, eps=1e-6):
154154
lr = theano.shared(np.float32(lr).astype(floatX))
155155

156156
gradients = self.get_gradients(cost, params)
157-
accumulators = [theano.shared(np.zeros_like(p.get_value()).astype(np.float32)) for p in params]
157+
accumulators = [theano.shared(np.zeros_like(p.get_value()).astype(floatX)) for p in params]
158158

159159
updates = []
160160

0 commit comments

Comments
 (0)