view pylearn/gd/__init__.py @ 1524:9d21919e2332

autopep8
author Frederic Bastien <nouiz@nouiz.org>
date Fri, 02 Nov 2012 13:02:18 -0400
parents 86bf03990aad
children
line wrap: on
line source

"""Gradient Descent

This module should contain tools and algorithms related to [stochastic] gradient descent.  For
example:

 - SGD with/without momentum
 - Hessian Free GD
 - TONGA
 - Stopping criteria (incl. for use in theano functions)

"""

from sgd import sgd_updates, sgd_momentum_updates