状況
PyTorch使用時に以下のようなエラーが出る。
Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu!
対処法
スクリプトに以下を追加。
import torch
torch.set_default_tensor_type('torch.cuda.FloatTensor')
PyTorch使用時に以下のようなエラーが出る。
Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu!
スクリプトに以下を追加。
import torch
torch.set_default_tensor_type('torch.cuda.FloatTensor')
コメント