Skip to content

Instantly share code, notes, and snippets.

View chrispomeroyhale's full-sized avatar

Chris Hale chrispomeroyhale

View GitHub Profile
@Jesse-calkin
Jesse-calkin / BPNN.py
Created April 16, 2014 14:44
Example of back-propagating neural network in Python
# Back-Propagation Neural Networks
#
# Written in Python. See http://www.python.org/
# Placed in the public domain.
# Neil Schemenauer <[email protected]>
#
# Found here: http://stackoverflow.com/a/3143318
import math
import random