PyTorch로 GoogLeNet 구현하기
In [6]: # my github: https://github.com/withAnewWorld/models_from_scratch # my blog # https://self-deeplearning.blogspot.com/ # https://self-deeplearning.tistory.com/ import torch import torch.nn as nn import torch.nn.functional as F Ref¶ 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=PLh..
2022.12.07