(self, lr=0.001, rho=0.9, epsilon=1e-6, *args, **kwargs)
| 118 | class RMSprop(Update): |
| 119 | |
| 120 | def __init__(self, lr=0.001, rho=0.9, epsilon=1e-6, *args, **kwargs): |
| 121 | Update.__init__(self, *args, **kwargs) |
| 122 | self.__dict__.update(locals()) |
| 123 | |
| 124 | def __call__(self, params, cost): |
| 125 | updates = [] |