Skip to content

Commit

Permalink
Add multilayer perceptron.
Browse files Browse the repository at this point in the history
  • Loading branch information
trekhleb committed Dec 20, 2018
1 parent 97207cf commit 77753fe
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 8 deletions.
2 changes: 2 additions & 0 deletions homemade/neural_network/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ In common ANN implementations, the signal at a connection between artificial neu

![Neural Network](https://upload.wikimedia.org/wikipedia/commons/4/46/Colored_neural_network.svg)

A **multilayer perceptron (MLP)** is a class of feedforward artificial neural network. An MLP consists of, at least, three layers of nodes: an input layer, a hidden layer and an output layer. Except for the input nodes, each node is a neuron that uses a nonlinear activation function. MLP utilizes a supervised learning technique called backpropagation for training. Its multiple layers and non-linear activation distinguish MLP from a linear perceptron. It can distinguish data that is not linearly separable.

## Neuron Model (Logistic Unit)

Here is a model of one neuron unit.
Expand Down
Loading

0 comments on commit 77753fe

Please sign in to comment.