训练pytorch的时候碰到一个问题,程序总是报这个错:
Input type (torch.cuda.FloatTensor) and weight type (torch.FloatTensor) should be the same
查了好久,才找到根本原因。
输入的图像已经在GPU了,而模型还在CPU。
增加以下代码即可:
model = model.cuda( )
训练pytorch的时候碰到一个问题,程序总是报这个错:
Input type (torch.cuda.FloatTensor) and weight type (torch.FloatTensor) should be the same
查了好久,才找到根本原因。
输入的图像已经在GPU了,而模型还在CPU。
增加以下代码即可:
model = model.cuda( )