view pylearn/shared/layers/README.txt @ 1501:55534951dd91

Clean up import and remove deprecation warning.
author Frederic Bastien <nouiz@nouiz.org>
date Fri, 09 Sep 2011 10:53:46 -0400
parents 580087712f69
children
line wrap: on
line source


Layers are the building blocks of neural networks.
Often they are parametric, but not necessarily.

This directory is meant to be a library of layers and, where applicable, the
algorithms meant to fit them to data.


.. code-block:: python

    class Layer(object):

        """ Base class for Layer, documenting interface conventions

        WRITEME
        """

        input = None

        output = None

        l1 = 0

        l2_sqr = 0

        params = []

        updates = []