Skip to content

Instantly share code, notes, and snippets.

View masterchef8's full-sized avatar

Philippe Giraudeau masterchef8

View GitHub Profile
@masterchef8
masterchef8 / backpropMLP.py
Created January 9, 2018 11:26
Perceptron multi-couche avec algo de descente de gradient.
# Back-Propagation Neural Networks
#
# Written in Python. See http://www.python.org/
# Placed in the public domain.
# Neil Schemenauer <nas@arctrix.com>
# Adapted for instructional purposes by Bart Smeets <bartsmeets86@gmail.com>
import math
import random