0 votes
in Deep Learning by
What Is a Multi-layer Perceptron(MLP)?

1 Answer

0 votes
by

As in Neural Networks, MLPs have an input layer, a hidden layer, and an output layer. It has the same structure as a single layer perceptron with one or more hidden layers. A single layer perceptron can classify only linear separable classes with binary output (0,1), but MLP can classify nonlinear classes.

Multi layer Perceptron (MLP) Models on Real World Banking Data | by Awhan  Mohanty | Becoming Human: Artificial Intelligence Magazine

Except for the input layer, each node in the other layers uses a nonlinear activation function. This means the input layers, the data coming in, and the activation function is based upon all nodes and weights being added together, producing the output. MLP uses a supervised learning method called “backpropagation.” In backpropagation, the neural network calculates the error with the help of cost function. It propagates this error backward from where it came (adjusts the weights to train the model more accurately).

Related questions

0 votes
asked Dec 12, 2022 in Deep Learning by Robin
0 votes
asked Jul 21, 2023 in Deep Learning by rahuljain1
...