Grokking-Deep-Learning icon indicating copy to clipboard operation
Grokking-Deep-Learning copied to clipboard

chapter 5-bugfix

Open rezabojnordi opened this issue 4 years ago • 0 comments

error in Gradient Descent Learning with Multiple Inputs

not using weight_deltas=ele_mul(delta,input)

using 
for i in range(len(weights)):
    weight_deltas=ele_mul(delta,input)
    weights[i] -= alpha * weight_deltas[i]```

rezabojnordi avatar Mar 10 '20 17:03 rezabojnordi