Backprop with Bias & MSE Bar Chart - Custom Layout

x1
x2
Bias(H)
(=1)
h1
h2
Bias(O)
(=1)
ŷ

Enter Inputs and Desired Output

x1: x2: Target (y):

Math Equations (Reference)

Forward Pass: z(1) = W(1)x + b(1) a(1) = sigmoid(z(1)) z(2) = W(2)a(1) + b(2) a(2) = sigmoid(z(2)) MSE = 1/2 (y - a(2)

Backward Pass: δ(2) = (a(2) - y) . sigmoid'(z(2)) δ(1) = (W(2))ᵀ δ(2) . sigmoid'(z(1)) W(l) ← W(l) - η δ(l) (a(l-1))ᵀ b(l) ← b(l) - η δ(l)