Activation function for output layer for regression models in Neural Networks

后端 未结 3 1248
离开以前
离开以前 2021-01-03 21:44

I have been experimenting with neural networks these days. I have come across a general question regarding the activation function to use. This might be a well known fact to

3条回答
  •  独厮守ぢ
    2021-01-03 22:18

    for linear regression type of problem, you can simply create the Output layer without any activation function as we are interested in numerical values without any transformation.

    more info :

    https://machinelearningmastery.com/regression-tutorial-keras-deep-learning-library-python/

    for classification : You can use sigmoid, tanh, Softmax etc.

提交回复
热议问题