美文网首页
pytorch_LSTM报错RuntimeError: expe

pytorch_LSTM报错RuntimeError: expe

作者: 飞速遗忘 | 来源:发表于2022-05-23 00:05 被阅读0次

    用pytorch编写LSTM类,构建神经网络用于案例训练。输入数据报错。

    ## 解决方法如下:

    ```RuntimeError: expected scalar type XXX but found Float```

    这个报错信息是错位的。其真实含义是“想要一个float,但是现在类型是XXX,所以出错”,将输入改为float类型即可。例如```model(XXX.float())```

    相关文章

      网友评论

          本文标题:pytorch_LSTM报错RuntimeError: expe

          本文链接:https://www.haomeiwen.com/subject/uendprtx.html