view pylearn/__init__.py @ 1531:88f361283a19 tip

Fix url/name to pylearn2.
author Frederic Bastien <nouiz@nouiz.org>
date Mon, 09 Sep 2013 10:08:05 -0400
parents 2668812a6c86
children
line wrap: on
line source

"""Pylearn - Theano-based machine learning library

Modules:

 - `io` - Python parsers/writers for various file formats

 - `datasets` - loading of various datasets (depends on `io`)

 - `preprocessing` - pre-processing and feature extraction for various modalities

 - `external` - code for interacting with other packages

 - `gd` - gradient-based optimization (for stochastic online learning)

 - `sampling` - theano expressions and tools for sampling from energy functions

 - `algorithms` - implementations of [published] models typically with a script that reproduces a published result.  (depends on all)

"""
#import exceptions


def __src_version__():
    #todo - this is vulnerable to the bug in theano ticket #160
    return version.src_version(__name__)