Skip to main content

Python implementation of multilayer perceptron neural network from scratch.

Project description

Build Status

Multilayer Perceptron in Python

Python implementation of multilayer perceptron neural network from scratch.

Minimal neural network class with regularization using scipy minimize. Contains clear pydoc for learners to better understand each stage in the neural network.

Requirements

  • Python 3.4 (tested)

Goal

To provide an example of a simple MLP for educational purpose.

Code sample

Predicting outcome of AND logic gate:
X = 000, 001, 010, 011, 100, 101, 110, 111

y = 0,0,0,0,0,0,1

Data we want to predict: p = 011, 111, 000, 010, 111 Expected results are: 0, 1, 0, 0, 1

import numpy as np
from mlperceptron.mlperceptron import NeuralNetwork

X = np.matrix(
    '0 0 0;0 0 1;0 1 0;0 1 1;1 0 0;1 0 1;1 1 0;1 1 1')
y = np.matrix('0;0;0;0;0;0;0;1')
n = NeuralNetwork((5,5,))

g = n.train(X, y, 0.01, show_cost=True)
y_pred = n.predict(np.matrix('0 1 1;1 1 1;0 0 0;0 1 0;1 1 1'), g)

print(y_pred)
print(n.accuracy(y_pred, np.matrix('0;1;0;0;1')))

Contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mlperceptron-0.3.tar.gz (5.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page