neuralnet

A high-level library on top of Theano.


Keywords
convolutional-neural-networks, deep-learning, deep-neural-networks, neural-network, python2, theano
License
MPL-2.0
Install
pip install neuralnet==0.2.0

Documentation

Neuralnet

A high level framework for general purpose neural networks written in Theano.

Requirements

Theano

Scipy

Numpy+mkl

Matplotlib

tqdm

visdom

Installation

To install a stable version, use the following command

pip install neuralnet==0.1.0

The version in this repo tends to be newer since I am lazy to make a new version available on Pypi when the change is tiny. To install the version in this repo execute

pip install git+git://github.com/justanhduc/neuralnet.git@master (--ignore-installed) (--no-deps)

Usages

To create a new model, simply make a new model class and inherit from Model in model.py. Please check out my DenseNet implementation for more details.