MLP Regressor
This module belongs to the " Machine learning algorithms" category .
Last updated
This module belongs to the " Machine learning algorithms" category .
Last updated
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:
adam : adam algorithm in sci-kit learn
To learn more about the MLP , visit its Sci-kit learn documentation and Wikipedia article.