MLP Regressor

This module belongs to the " Machine learning algorithms" category .

The MultiLayer Perceptron Regressor is a class of feed-forward artificial neural network.

There are 4 sorts of activation function to choose from the dropdown list:

  • identity

  • logistic

  • tanh

  • relu : Rectified Linear Unit (ReLU)

As a solver, we can implement one of these:

To learn more about the MLP , visit its Sci-kit learn documentation and Wikipedia article.

Last updated