Video: https://youtube.com/live/Cd9BPbTwSvc?feature=share
Jamboard: https://jamboard.google.com/d/17WLYL80tRlIaUPfuKsXUSqXmpivaDaAxYH25nhgDRt4/edit?usp=sharing
Materiāli:
ResNet: https://arxiv.org/abs/1512.03385
DenseNet: https://arxiv.org/abs/1608.06993
GradCAM: https://arxiv.org/abs/1610.02391
RTMP key: ea11-mrgb-4jg2-4ajc-d4hr
Video: https://youtu.be/y9CcSpH1Db4
Jamboard: https://jamboard.google.com/d/1T0k_rnWjj5Flyd0BzJ3-At0QyOth78lfTSkKMdS1Zck/edit?usp=sharing
Wanishing gradient problem, training time
Jāizstāsta par ResNet jēgu
Kopīgi jāuzkodē
Jāpastāsta vairāk kā izmantot cuda un kā palaist uz GoogleCollab, jo o aizmirsam pagājušā reizē laikam
pastāstīt par print_model_size
Jāizstāsta par DenseNet jēgu
Kopīgi jāuzkodē
Parādīt kā pārveidot dataset un CCE loss, lai strādātu ar indexes bez One-hot-encoded
Mājās InceptionNet jāiedod - 1000 punkti
⚠️ Iesaku parādīt / pamainīt saturu, lai implementētuj HRNet, RegNet
https://paperswithcode.com/method/hrnet
⚠️ Lūdzu neizmantot __call__
operatoru
xxxxxxxxxx
11out = self.conv1(x)
Tā vietā izmantot
xxxxxxxxxx
11out = self.conv1.forward(x)
Citādi studenti nesaprot atsķirību starp member funkciju un member instances funkcijas izsaukumu
⚠️ Lūdzu neraksti objektus / funkcijas bez named params, ja ir hardcoded
xxxxxxxxxx
11self.linear = torch.nn.Linear(288, 10)
vietā
xxxxxxxxxx
11self.linear = torch.nn.Linear(in_features=288, out_features=10)
Jo, tad kods nav saprotams tiem, kas nepārvalda ļoti labi tās funkcijas
Template:
http://share.yellowrobot.xyz/quick/2023-3-5-746B40C5-AD38-4ABC-B0EB-88664531AC55.zip
Schema:
http://share.yellowrobot.xyz/upic/a65c781c39c912ce3f6eb0fa0d8683d2_1648487642.png
Implementēt DenseBlock pēc shēmas:
http://share.yellowrobot.xyz/upic/78a04509453a172cc8e9f4596e3f1bfb_1648487642.png Concat torch pa channel dimensiju: out = torch.cat([x, conv1, conv2], dim=1)
Implementēt Transition Layer pēc shēmas:
http://share.yellowrobot.xyz/upic/818ebd4aefaaac1b89a95a001b8c2f84_1648487642.png
🔴 BUG - shēmās output size ir 10! Fruits ir vairāk klases vajag salabot bildi
Uzdevumi
Implementēt InceptionBlockA pēc shēmas http://share.yellowrobot.xyz/upic/eb8efa9b91a1f830be24bfe759b4362e_1648487642.png
Implementēt InceptionNet pēc shēmas http://share.yellowrobot.xyz/upic/d01c9969864e93f075b353280969bc2e_1648487642.png
Gan InceptionBlockA, gan InceptionNet modeļu shēmas nav norādīts channel count katram slānim, to var brīvi izvēlēties. InceptionBlockA visiem zariem channel count nav jāsakrīt, var eksperimentēt katram liekot savu vērtību.
Papildus uzdevumi:
Izveidot InceptionBlock bottleneck versiju, lai var starp blokiem neizmantot maxpool layer.
Implementēt cita veida InceptionNet blokus: https://towardsdatascience.com/a-simple-guide-to-the-versions-of-the-inception-network-7fc52b863202 https://arxiv.org/pdf/1409.4842.pdf https://arxiv.org/pdf/1512.00567.pdf
Template:
http://share.yellowrobot.xyz/quick/2023-3-5-C77331DD-38FA-4D9D-B9DB-1677BDA1F351.zip
InceptionBlockA
InceptionNet