这个问题的主要原因是输入的数据类型与网络参数的类型不符。
Input type为torch.cuda.FloatTensor(GPU数据类型), weight type(即net.parameters)为torch.FloatTensor(CPU数据类型)
有以下两种方法
方法一
device = torch.device('cuda:0') net.to(device)
方法二:
net = net.cuda()
这个问题的主要原因是输入的数据类型与网络参数的类型不符。
Input type为torch.cuda.FloatTensor(GPU数据类型), weight type(即net.parameters)为torch.FloatTensor(CPU数据类型)
有以下两种方法
方法一
device = torch.device('cuda:0') net.to(device)
方法二:
net = net.cuda()