작업환경
Python : 3.6.5
CUDA : Cuda compilation tools, release 10.1, V10.1.243
Pythorch : 1.4.0
Torchvision : 0.5.0
OS : Window 10, 64bit
IDE : Pycharm Community
https://tutorials.pytorch.kr/beginner/data_loading_tutorial.html
진행 중 마지막 부분에서 오류 발생
문제
{AttributeError}'ModuleSpec' object has no attribute 'transform'
DataLoader 로 가져오는 부분에서 위와 같은 문제 발생
해결
dataloader = DataLoader(transformed_dataset, batch_size=4, shuffle=True, num_workers=0) # 4)
Window에서는 num_workers를 0 으로!
출처 : https://tutorials.pytorch.kr/beginner/blitz/cifar10_tutorial.html#cifar10
728x90
반응형
'개발' 카테고리의 다른 글
flutter dependency (0) | 2020.05.03 |
---|---|
[Pythorch] 참고사이트 (0) | 2020.03.20 |
git tutorial (0) | 2020.02.08 |
github page blog (0) | 2020.02.04 |
flutter vscode 로 build (0) | 2020.01.27 |