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

https://github.com/sadatrafsanjani/neural-network

Neural network built from scratch
https://github.com/sadatrafsanjani/neural-network

backpropagation-learning-algorithm feedforward-neural-network gradient-descent-algorithm neural-network python-3

Last synced: about 1 month ago
JSON representation

Neural network built from scratch

Awesome Lists containing this project

README

        

# Neural-Network
Neural network built from scratch

# Implementation of forward propagation
A neural network with two inputs, one hidden layer with three sigmoid neuron and one output neuron

# Implementation of backward propagation
Partial derivation and numpy is used to calcualte error

# Implementation of Exclusive-OR (XOR)
A real life example to demonstrate the efficiency of three layer neural network.