A Simple Python package that helps anyone on building and running deep neural network in a second.
Project description
NeuralPuzzle
A simple Python package that helps anyone on building and running a deep neural network in second.
Free software: GNU General Public License v3
Documentation: https://neuralpuzzle.readthedocs.io.
Quickstart
To install NeuralPuzzle, run the following command in your terminal:
pip install neuralpuzzle
Quickly train a simple one hidden layer feed forward nueral network with ReLU activation fucntion, and initialize paramters (weights and bias) using Xavier method:
from neuralpuzzle import * train_network = NeuralPuzzle('mnist.pkl', [784, 50, 10], ['relu'], 'xavier')
Features
Easy install and use
One-line code to train
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2017-04-18)
First release on PyPI.