TypeError: forward() missing 1 required positional argument: 'thw_shape'
时间: 2023-11-02 20:07:02 浏览: 129
TypeError: missing 1 required keyword-only argument-python中的报错问题
5星 · 资源好评率100%
这个错误通常表示在调用 `forward()` 方法时,缺少了一个名为 `thw_shape` 的参数。请检查你的代码,看看是否在调用 `forward()` 方法时,遗漏了 `thw_shape` 参数。如果确实是这个问题,你需要在调用 `forward()` 方法时传入 `thw_shape` 参数,或者检查你的代码是否正确地定义了 `thw_shape` 参数。
阅读全文