teratron / pynn

Neural Network Library for Python (under construction)

Home Page:https://teratron.github.io/pynn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyNN

Under construction

About

Neural network library for python.

Install

$ pip install pynn

Getting Started

from pynn import Pynn

if __name__ == '__main__':
    # Returns a new neural network
    # instance with the default parameters.
    pn = Pynn()

    # Dataset.
    data_input  = [0.27, 0.31]
    data_target = [0.7]

    # Training dataset.
    _, _ = pn.train(data_input, data_target)

Documentation

More documentation is available at the pynn website.

Examples

You can find examples of neural networks in the example's directory.

About

Neural Network Library for Python (under construction)

https://teratron.github.io/pynn

License:Apache License 2.0


Languages

Language:Python 96.5%Language:Makefile 3.5%