Activation function

Which activation function should I use for regression problems?

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!