case3/data/007Intro to Deep Learning.txt

17 lines
673 B
Plaintext
Raw Permalink Normal View History

2022-11-21 13:27:25 +01:00
<frame title="Intro to Deep Learning">
<list>
<e>The idea is always the same:</e>
<l2st>
<e>Define complicated model to learn (often millions of parameters)</e>
<e>Define loss function that this model should minimize (example: $\sum_i (y_i-f(x_i))^2$)</e>
<e>Find parameters that minimize the loss (->Backpropagation)</e>
</l2st>
<e>Usually Neural Networks:</e>
<l2st>
<e>$f(x)=f_n(x)=activation(A_n\cdot f_{n-1}(x)+b_n)$</e>
<e>$f_0(x)=x$</e>
</l2st>
<e>Powerful, as you can show that when there are 3 Layers+ (and infinitely sized matrices), you can approximate any function</e>
<e>->So a model becomes a loss function</e>
</list>
</frame>