CIFAR-10 썸네일형 리스트형 [Pytorch] VGG CIFAR-10에 적용 및 정리 VGG CIFAR-10에 적용 및 정리 모두의 딥러닝 시즌2 - Pytorch를 참고 했습니다. 모두의 딥러닝 시즌2 깃헙 import torch import torch.nn as nn import torch.optim as optim import torchvision import torchvision.transforms as transforms device = 'cuda' if torch.cuda.is_available() else 'cpu' torch.manual_seed(123) if device =='cuda': torch.cuda.manual_seed_all(123) transform = transforms.Compose( [transforms.ToTensor(), transforms.Norma.. 더보기 이전 1 다음