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

【踩坑】RuntimeError: Input and parameter tensors are not the same dtype, found input tensor with Double

程序员文章站 2022-06-15 14:05:05
...

报错

RuntimeError: Input and parameter tensors are not the same dtype, found input tensor with Double and parameter tensor with Float

github issue

在GRU网络,需要传入Float的tensor,但是我传入的dtype是torch.float32
因此需要先转成float

output=output.float()
相关标签: 问题解决