RuntimeError: expected scalar type Double but found Float原因: tensor的数据类型dtype不正确 解决: 将数据类型转为float32
tensor = tensor.to(torch.float32)
欢迎分享,转载请注明来源:内存溢出
RuntimeError: expected scalar type Double but found Float原因: tensor的数据类型dtype不正确 解决: 将数据类型转为float32
tensor = tensor.to(torch.float32)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)