view pylearn/gd/__init__.py @ 1498:0f326860210e

Merged
author Olivier Delalleau <delallea@iro>
date Thu, 01 Sep 2011 13:35:15 -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