일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- WSSS
- cocre
- vscode
- docker attach
- HookNet
- ssh
- Pull Request
- airflow
- CellPin
- docker
- 백신후원
- Decision Boundary
- docker exec
- 코크리
- 기초확률론
- Jupyter notebook
- 도커
- 히비스서커스
- 오블완
- IVI
- 프로그래머스
- aiffel exploration
- logistic regression
- numpy
- AIFFEL
- cs231n
- GIT
- 사회조사분석사2급
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- 티스토리챌린지
Archives
- Today
- Total
히비스서커스의 블로그
[Pytorch] RuntimeError: Input type (torch.cuda.ByteTensor) and weight type (torch.cuda.FloatTensor) should be the same 본문
Programming/Python
[Pytorch] RuntimeError: Input type (torch.cuda.ByteTensor) and weight type (torch.cuda.FloatTensor) should be the same
HibisCircus 2021. 10. 7. 19:12728x90
파이썬에서 딥러닝 프레임워크를 pytorch로 쓰다가 다음과 같은 에러 메시지를 나왔다.
RuntimeError: Input type (torch.cuda.ByteTensor) and weight type (torch.cuda.FloatTensor) should be the same
상황은 다음과 같다.
import torch
import cv2
image = cv2.imread(./sample_image.jpg)
tensor = torch.from_numpy(image).to(device).unsqueeze(0).permute(0,3,1,2)
이를 해결하기 위해 to(device) 앞에 .float()처리를 해주었다.
import torch
import cv2
image = cv2.imread(./sample_image.jpg)
tensor = torch.from_numpy(image).float().to(device).unsqueeze(0).permute(0,3,1,2)
매우 잘 처리되었다.
-히비스서커스-
728x90
'Programming > Python' 카테고리의 다른 글
[Python] from test import function 시 ImportError: cannot import name 'function' 에러 (0) | 2021.10.13 |
---|---|
[Pytorch] AttributeError: 'DataParallel' object has no attribute 'predict' (0) | 2021.10.08 |
[Python] python으로 xml파일 parsing 및 저장 (feat. findall) (0) | 2021.10.05 |
[Numpy] numpy로 이미지 처리하기 3 (2) | 2021.09.09 |
[Numpy] numpy로 이미지 처리하기 2 (0) | 2021.09.09 |