First of all, i'm not really good at math but i have a programmer background. (Also because of my ignorance i'm not sure if i put this in the right category)
I have an interest in neural networks and i'm trying to learn that, however that requires some math. I'm trying to learn but i'm a bit stuck at the guide i'm following about neural networks.
The guide in question :
https://stevenmiller888.github.io/mind-how-to-build-a-neural-network/
So i figured out how to calculate a sigmoid function.
1 / (1+e ^x)
1 / (1+2.718 ^x)
(I'm not sure if ^ is the right notation, srry)
For x=1.3 the answer would be 0.78583498304. So that's great... one step closer.
Where i'm stuck is at the Back Propagation section (Halfway down the page)
He gives this as the math :
Delta output sum = S'(sum) * (output sum margin of error)
Delta output sum = S'(1.235) * (-0.77)
Delta output sum = -0.13439890643886018
1.235 * -0.77 is not -0.13439890643886018 so clearly the S' has some kind of hidden meaning, but what?
Did he write an incomplete workout of the problem, or am i just stupid/missing something?
Searching on Google for Sigmoid Prime just overwhelms me with all kinds of maths.
Like i said, i'm really not good at maths but i want to learn more about it. So if anyone wants to help, use simple explanations please
Thanks in advance!
I have an interest in neural networks and i'm trying to learn that, however that requires some math. I'm trying to learn but i'm a bit stuck at the guide i'm following about neural networks.
The guide in question :
https://stevenmiller888.github.io/mind-how-to-build-a-neural-network/
So i figured out how to calculate a sigmoid function.
1 / (1+e ^x)
1 / (1+2.718 ^x)
(I'm not sure if ^ is the right notation, srry)
For x=1.3 the answer would be 0.78583498304. So that's great... one step closer.
Where i'm stuck is at the Back Propagation section (Halfway down the page)
He gives this as the math :
Delta output sum = S'(sum) * (output sum margin of error)
Delta output sum = S'(1.235) * (-0.77)
Delta output sum = -0.13439890643886018
1.235 * -0.77 is not -0.13439890643886018 so clearly the S' has some kind of hidden meaning, but what?
Did he write an incomplete workout of the problem, or am i just stupid/missing something?
Searching on Google for Sigmoid Prime just overwhelms me with all kinds of maths.
Like i said, i'm really not good at maths but i want to learn more about it. So if anyone wants to help, use simple explanations please