AttributeError: 'AvgPool2d' object has no attribute 'divisor_override'
时间: 2023-11-13 17:05:47 浏览: 196
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是由于PyTorch版本更新导致的,旧版本中的AvgPool2d层有一个divisor_override参数,但是在新版本中已经被移除了。如果你的代码中使用了这个参数,需要将其替换为count_include_pad参数。如果你使用的是旧版本的PyTorch,可以尝试升级到新版本来解决这个问题。如果你已经使用了新版本的PyTorch,那么你需要修改代码以适应新版本的API。
阅读全文