Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rishisankineni/neural-networks-example

A Neural Network in 11 lines of Python code.
https://github.com/rishisankineni/neural-networks-example

Last synced: about 1 month ago
JSON representation

A Neural Network in 11 lines of Python code.

Awesome Lists containing this project

README

        

# 2 & 3 Layer-Neural-Network
A Neural Network in 11 lines of Python.

This tutorial teaches backpropagation via a very simple toy example, a short python implementation.

Reference- http://iamtrask.github.io/2015/07/12/basic-python-network/

Python 3.5 compatible. You only have to modify xrange() to range() in the code, because Py3 doesn't support xrange().