[Pytorch Error] RuntimeError: Given input size: (256x1x1). Calculated output size: (256x0x0). Output size is too small
2020. 1. 21. 16:58ㆍDevelop
Issue
RuntimeError: Given input size: (256x1x1). Calculated output size: (256x0x0). Output size is too small
input tensor의 크기가 작아서 생기는 문제이다. input tensor의 shape을 조정해주면 해결 가능하다.
Solution
transform = transforms.Compose([
transforms.Resize(256),
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
transforms.Normalize(
mean=model.original_model_info.mean,
std=model.original_model_info.std
),
])
Reference
'Develop' 카테고리의 다른 글
Root 권한 없이 local에 CUDA 설치하기 (1) | 2020.04.06 |
---|---|
ctypes를 통해 c++ array를 python list로 변환하기 (4) | 2020.03.01 |
PyTorch를 ONNX로 export하기 (2) | 2020.02.08 |
[Linux/Mac] vim을 IDE처럼! zsh 설정부터 vim 플러그인 설정까지 총 정리 (2) | 2020.02.07 |
PyTorch Autograd Profiler (0) | 2020.02.02 |