PyTorch로 EfficientNet 구현하기
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¶ Efficient Net paper: https://arxiv.org/abs/1905.11946 how to make EfficientNet with PyTorch(Youtuber: Aladdin Persson): https://www.youtube.com/watch?v=fR_0o25..
2022.12.07