๐จ(05๊ฐ) Modern CNN - 1x1 convolution์ ์ค์์ฑ
Network list
AlexNet
์ต์ด๋ก Deep Learning์ ์ด์ฉํ์ฌ ILSVRC์์ ์์.
VGGNet
3x3 Convolution์ ์ด์ฉํ์ฌ Receptive field๋ ์ ์งํ๋ฉด์ ๋ ๊น์ ๋คํธ์ํฌ๋ฅผ ๊ตฌ์ฑ.
GoogLeNet
Inception blocks ์ ์ ์.
ResNet
Residual connection(Skip connection)์ด๋ผ๋ ๊ตฌ์กฐ๋ฅผ ์ ์.
h(x) = f(x) + x ์ ๊ตฌ์กฐ
DenseNet
Resnet๊ณผ ๋น์ทํ ์์ด๋์ด์ง๋ง Addition์ด ์๋ Concatenation์ ์ ์ฉํ CNN.
Further Question
์์ ์์ ๋ค๋ฃฌ modern CNN network์ ์ผ๋ถ๋, Pytorch ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๋ด์์ pre-trained ๋ชจ๋ธ๋ก ์ง์ํฉ๋๋ค. pytorch๋ฅผ ํตํด ์ด๋ป๊ฒ ๋ถ๋ฌ์ฌ ์ ์์๊น์?
์ฐธ๊ณ : pytorch official docs
Last updated