Mercurial > pylearn
view algorithms/sgd.py @ 519:b267a8000f92
Added theano.Member to Member variables which were passed in during initialization.
author | Joseph Turian <turian@iro.umontreal.ca> |
---|---|
date | Fri, 14 Nov 2008 02:07:20 -0500 |
parents | fbfd3932fd00 |
children |
line wrap: on
line source
from theano.compile import module from theano import tensor as T class StochasticGradientDescent(module.FancyModule): def __init__(self, params, gparams, lr=None): super(StochasticGradientDescent, self).__init__() self.lr = lr if lr is not None else module.Member(T.dscalar()) self.params = params self.gparams = gparams self.updates = dict((p, p - self.lr * g) for p, g in zip(self.params, self.gparams))