Metadata-Version: 2.1
Name: neuralnet
Version: 0.0.3
Summary: A high-level library on top of Theano.
Home-page: https://github.com/justanhduc/neuralnet
Author: Duc Nguyen
Author-email: adnguyen@yonsei.ac.kr
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/justanhduc/neuralnet/issues
Project-URL: Source, https://github.com/justanhduc/neuralnet/
Platform: Windows
Platform: Linux
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
Requires-Dist: theano
Requires-Dist: matplotlib
Requires-Dist: scipy
Requires-Dist: numpy

# Neuralnet

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

## Requirements

[Theano](http://deeplearning.net/software/theano_versions/0.9.X/) 0.9.0

[Scipy](https://www.scipy.org/install.html), [Numpy+mkl](http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy), [Matplotlib](https://matplotlib.org/)


## Installation
```
pip install --upgrade neuralnet
```

## Usages
To create a new model, simply make a new model class and inherit from Model in model.py. Please check out my [DenseNet](https://github.com/justanhduc/densenet) implementation for more details.


