当前位置: 代码迷 >> 综合 >> Input type (torch.cuda.FloatTensor) and weight type (torch.FloatTensor) should be the same
  详细解决方案

Input type (torch.cuda.FloatTensor) and weight type (torch.FloatTensor) should be the same

热度:73   发布时间:2023-11-21 11:32:06.0

Input type (torch.cuda.FloatTensor) and weight type (torch.FloatTensor) should be the same

出错原因是:网络的权重数据类型没有加载成torch.cuda.FloatTensor,但是训练用的数据已经在训练文件中转成了torch.cuda.FloatTensor类型。
出错的原因是:自己编写的网络忘记nn.ModuleList

self.pppm = nn.ModuleList(PPPM_layers)
self.sppm = nn.ModuleList(SPPM_layers)

这种错误可能原因为网络权重初始化除了问题,大家可以参考此链接

  相关解决方案