소개
소개글이 비어있어요
게시글
질문&답변
2021.02.20
runtime error : Found dtype Long but expected Float
이미 많이 늦은 것 같지만...제가 올린 답글 참고해보시겠어요? https://www.inflearn.com/questions/87541
- 0
- 1
- 294
질문&답변
2021.02.19
runtime error : Found dtype Long but expected Float
output, label 둘 다 추가해주니 실행되네요. --------------------------------------------------------------------------- output = netD(real_cpu).view(-1) (추가) output = output.type(torch.FloatTensor).cuda() (추가) label = label.type(torch.FloatTensor).cuda() errD_real = criterion(output, label) --------------------------------------------------------------------------- cuda 안 쓰시면 뒤에 .cuda()는 빼셔야 하구요.
- 0
- 3
- 1.4K