Update week43.do.txt

This commit is contained in:
Morten Hjorth-Jensen
2022-10-25 15:30:35 +02:00
parent 063dd2dc17
commit 58da6c6ba7
+15
View File
@@ -30,6 +30,21 @@ DATE: today
neural nets will be very large: impractical to write down gradient formula
by hand for all parameters
● backpropagation = recursive application of the chain rule along a
computational graph to compute the gradients of all
inputs/parameters/intermediates
● implementations maintain a graph structure, where the nodes implement
the forward() / backward() API
● forward: compute result of an operation and save any intermediates
needed for gradient computation in memory
● backward: apply the chain rule to compute the gradient of the loss
function with respect to the inputs
!split
===== CNNs in brief =====