PyTorch로 ResNet 구현하기
In [1]: # 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/1512.03385?context=cs ref(how to make ResNet with PyTorch, youtuber: Aladdin Persson): https://www.youtube.com/watch?v=DkNIBBBvcPs..
2022.12.07