[Model]PyTorch로 GoogLeNet 구현하기
GoogLeNet In [ ]: from google.colab import drive import sys import os from IPython import display drive . mount ( '/content/drive' ) FOLDERNAME = 'models_from_scratch' sys . path . append ( '/contente/drive/My Drive/ {} ' . format ( FOLDERNAME )) % cd /content/drive/My Drive/$FOLDERNAME Mounted at /content/drive /content/drive/My Drive/models_from_scratch GoogLeNet(InceptionNet) ¶ "We need to go deeper" (2010, inception) 의의: 효율적이면서 성능이 뛰어난 deep learning model 개발 시발점 paper: https://arxiv.org/abs/1409.4842 ref(how to make GoogLeNet with PyTorch, youtuber: Aladdin Persson): https://www.youtube.com/watch?v=uQc4Fs7yx5I&list=PLhhyoLH6IjfxeoooqP9rhU3HJIAVAJ3Vz&index=18 (GoogLeNet 설명(한글)) https://phil-baek.tistory.com/entry/3-GoogLeNet-Going-deeper-with-convolutions-%EB%85%BC%EB%AC%B8-%EB%A6%AC%EB%B7%B0 (Auxiliar...