AttributeError: 'LSTM' object has no attribute 'weight_ih'
时间: 2023-11-08 12:05:20 浏览: 160
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常是因为调用了一个没有定义的属性。在你的代码中,你可能创建了一个 LSTM 对象,但是尝试访问其 weight_ih 属性时出错了。请确保你正确地初始化和配置了你的 LSTM 对象。例如,你可能需要使用 torch.nn.LSTM 类来创建 LSTM 对象,并在初始化时传递正确的参数。
另外,请注意检查你的代码是否有其他地方出现了类似的错误。
阅读全文