PyTorch로 딥러닝 모델 구현하는 방법(LeNet)
In [2]: # 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¶ LeNet paper: http://vision.stanford.edu/cs598_spring07/papers/Lecun98.pdf Youtube(Aladdin Persson): https://www.youtube.com/watch?v=fcOW-Zyb5Bo&list=PLhhyoLH6I..
2022.12.07