Linear vs nonlinear neural network?

前端 未结 7 1199
余生分开走
余生分开走 2021-01-31 17:26

I\'m new to machine learning and neural networks. I know how to build a nonlinear classification model, but my current problem has a continuous output. I\'ve been searching for

7条回答
  •  醉梦人生
    2021-01-31 17:38

    For starters, a neural network can model any function (not just linear functions) Have a look at this - http://neuralnetworksanddeeplearning.com/chap4.html.

    A Neural Network has got non linear activation layers which is what gives the Neural Network a non linear element.

    The function for relating the input and the output is decided by the neural network and the amount of training it gets. If you supply two variables having a linear relationship, then your network will learn this as long as you don't overfit. Similarly, a complex enough neural network can learn any function.

提交回复
热议问题