欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pytorch RuntimeError: expected scalar type Double but found Float

程序员文章站 2022-07-12 13:51:08
...
RuntimeError: expected scalar type Double but found Float

原因: tensor的数据类型dtype不正确

解决: 将数据类型转为float32

tensor.to(torch.float32)

 

相关标签: 实验室