Metadata-Version: 2.1
Name: neuralnet
Version: 0.1.0
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/
Description: # Neuralnet
        
        A high level framework for general purpose neural networks written in Theano.
        
        ## Requirements
        
        [Theano](http://deeplearning.net/software/theano/)
        
        [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
        ```
        
        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
        ```
        
        ## 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.
        
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
