Python assignments for the machine learning class by andrew ng on coursera with complete submission for grading capability and re-written instructions.
5.45k
stars
2.16k
forks
source link
misunderstanding of How to multiply delta with activation in back propagation NN #120
د
I have a question in back propagation NN when compute for delta like
1 - 𝛿_3=(𝑎_3 - y)
2 - 𝛿_2=(Θ(2))𝑇𝛿_3∗𝑔′(𝑧(2))
3 - Δ(𝑙)=Δ(𝑙)+𝛿(𝑙+1)(𝑎(𝑙))(𝑇) my question is how to compute for delta triangle which delta_2 = 25 element and a_1 = 400 element
د I have a question in back propagation NN when compute for delta like 1 - 𝛿_3=(𝑎_3 - y) 2 - 𝛿_2=(Θ(2))𝑇𝛿_3∗𝑔′(𝑧(2)) 3 - Δ(𝑙)=Δ(𝑙)+𝛿(𝑙+1)(𝑎(𝑙))(𝑇) my question is how to compute for delta triangle which delta_2 = 25 element and a_1 = 400 element