back propagation微分問題
2019/07/12 08:45 下午
機器學習共學討論版
astronomer
觀看數:62
回答數:3
收藏數:0
ml100-2
ml100-2-d75
講義 "建立 Forward & Backward" 這一頁
dout/dx =y
dout/dy = x
為何程式會變成
dx = dout * self.y 而不是 dx = dout/self.y
dout/dx = y --> dout = dx * self.y --> dx = dout/self.y