Is my implementation of stochastic gradient descent correct?

前端 未结 3 1892
梦如初夏
梦如初夏 2020-12-28 22:20

I am trying to develop stochastic gradient descent, but I don\'t know if it is 100% correct.

  • The cost generated by my stochastic gradient descent algorithm is
3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-28 22:50

    The learning rate is always between 0 to 1. If you set the learning rate very high then it follows the desired to a lesser extent, because of skipping. So take a small learning rate even though it takes more time. The output result will be more convincing.

提交回复
热议问题