일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- IVI
- logistic regression
- 사회조사분석사2급
- cs231n
- 코크리
- CellPin
- docker exec
- Decision Boundary
- aiffel exploration
- 기초확률론
- docker
- numpy
- 티스토리챌린지
- docker attach
- cocre
- 도커
- HookNet
- WSSS
- ssh
- 오블완
- vscode
- GIT
- 백신후원
- airflow
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- AIFFEL
- Pull Request
- 프로그래머스
- 히비스서커스
- Jupyter notebook
Archives
- Today
- Total
히비스서커스의 블로그
[Pytorch] RuntimeError: Input type (torch.FloatTensor) and weight type (torch.cuda.FloatTensor) should be the same or input should be a MKLDNN tensor and weight is a dense tensor 본문
Programming/Python
[Pytorch] RuntimeError: Input type (torch.FloatTensor) and weight type (torch.cuda.FloatTensor) should be the same or input should be a MKLDNN tensor and weight is a dense tensor
HibisCircus 2021. 12. 15. 17:40728x90
pytorch tensorboard tutorial를 참조하며 코드를 작성한 후 모델을 돌려보던 중 다음과 같은 에러를 마주하였다.
pytorch tensorboard tutorial
https://tutorials.pytorch.kr/intermediate/tensorboard_tutorial.html
대략적인 코드
# 자세한 코드 내용은 생략
# net은 torch로 쌓은 neural network임
model = net().cuda()
# trainloader를 거쳐 데이터 하나를 뽑은 것이 images임
dataiter = iter(trainloader)
images, labels = dataiter.next()
from torch.utils.tensorboard import SummaryWriter
# tensorboard
writer = SummaryWriter('logs')
# 에러가 난 부분
writer.add_graph(model, images)
writer.close()
마주친 에러
RuntimeError: Input type (torch.FloatTensor) and weight type (torch.cuda.FloatTensor) should be the same or input should be a MKLDNN tensor and weight is a dense tensor
원인
이는 model은 cuda 처리를 해주었으나 image에는 cuda처리를 해주지 않아 발생한 에러이다.
해결방법
다음과 같이 바꿔주면
# 수정한 부분
writer.add_graph(model, images.cuda())
writer.close()
잘 돌아간다.
-히비스서커스-
728x90