【踩坑】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
在GRU网络,需要传入Float的tensor,但是我传入的dtype是torch.float32
因此需要先转成float
output=output.float()
上一篇: L1-006 连续因子 (20分)
下一篇: python初学者-商品折扣问题