What are alternatives of Gradient Descent?

前端 未结 5 1512
失恋的感觉
失恋的感觉 2021-01-31 22:19

Gradient Descent has a problem of Local Minima. We need run gradient descent exponential times for to find global minima.

Can anybody tell me about any alternatives of

5条回答
  •  故里飘歌
    2021-01-31 23:10

    Extreme Learning Machines Essentially they are a neural network where the weights connecting the inputs to the hidden nodes are assigned randomly and never updated. The weights between the hidden nodes and the outputs are learned in a single step by solving a linear equation using matrix inverse.

提交回复
热议问题