Which activation function should I use for regression problems?
Activation function
Hey @Varunsh_20
If you are using Neural Networks for Regression problems, the general advice is to use tanh / relu function in the middle layers and the identity function (no activation) for the final layer.
Hope this helps!