view pylearn/__init__.py @ 1515:1de26774035f

Use theano-nose instead of nosetests, and disable warning.
author Pascal Lamblin <lamblinp@iro.umontreal.ca>
date Wed, 29 Feb 2012 12:43:07 -0500
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__)