Skip to content

kdsull/deep

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deep

https://travis-ci.org/GabrielPereyra/deep.svg?branch=master:target:https://travis-ci.org/GabrielPereyra/deep

https://coveralls.io/repos/GabrielPereyra/deep/badge.png:target:https://coveralls.io/r/GabrielPereyra/deep

Deep provides a scikit-learn interface to deep learning algorithms.

Supported Architectures

Init and Fit

Here is a simple example of fitting an autoencoder on MNIST:

from deep.autoencoder import TiedAE
from deep.datasets import load_mnist

X = load_mnist()[0][0]
ae = TiedAE(100)
ae.fit(X)

This example initializes a tied weight autoencoder with 100 hidden sigmoid units.

Installation

Automatic installation:

pip install deep

Deep is listed in PyPI and can be installed with pip or easy_install.

About

sklearn-interface for theano deep learning

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published