Computation Graph - why forward pass and backward pass

We use computation graph to explain why we have forward pass (forward propagation) follow by a backward pass (back-propagation)

Example: J(a, b, c) = 3(a + bc) where a=5, b=3, and c=2

To calculate J, we actually have to do 3 steps:
Step 1: calculate u = bc = 3x2 = 6
Step 2: calculate v = a + u = 5 + 6 = 11
Step 3 calculate J = 3(a + bc) = 3(a+u) = 3v = 3 x 11 = 33
This left to right computation is the forward pass.


When computing derivative, we do backward pass from right to left

If v = 11.001, then J = 33.003, so Jv=33.0033311.00111=3

If a = 5.001, then v = 5.001 + 6 = 11.001, then J = 33.001,
so Ja=33.0033311.00111=3=31=Jvva . This is chain rule of calculus
Similarly, Ju=Jvvu=31=3

If b = 3.001, then u = 3.001 x 2 = 6.002, so ub=6.00263.0013=2. Therefore,
Jb=Juub=32=6=Jvvuub=312
Jc=Jvvuuc=313=9

Comments