Tag for questions about Multi layer perceptrons (MLP). It is a class of feedforward artificial neural network. Multilayer perceptrons are sometimes colloquially referred to as "vanilla" neural networks, especially when they have a single hidden layer
Questions tagged [mlp]
275 questions
-2
votes
1 answer
How to add two new dimensions to the input feature before the last two layers in MLP
Initially we had an MLP of multiple layers. We had an input embedding of 200 dimension. We now want to add two more dimensions to the original embedding to encode two important features. But as the original dimension is high, we fear that MLP would…

Leonard
- 29
- 5
-2
votes
1 answer
How do I design a MLP neural network to predict a cost?
I am struggling to learn the basics of machine learning and I need to design a neural network using MLP (multi layer perceptron).
The network should predict the total cost of a car ride, based on 4 parameters:
- average fuel consumption per 100km…
-3
votes
1 answer
Is there a way to use MLP/any other Algorithms which take the objective and error functions as input and returns the optimum parameters?
I was thinking if there is a pre-built implementation of MLP in python that can take my objective function, loss function, and tolerance as input and return the optimum parameters for my function. I have gone through the MLPs in Tensorflow and…

Ryukendo Dey
- 217
- 2
- 8