AttributeError: module 'torch.nn' has no attribute 'ACConv2d'
时间: 2023-10-03 17:04:58 浏览: 89
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是由于在torch.nn模块中找不到ACConv2d属性引起的。ACConv2d可能是你自定义的类或者是来自其他库的类。请确保你正确导入了相关的库,并且确保该类存在于它所属的模块中。如果是自定义类,请检查你的代码是否有拼写错误或者确保你正确定义了这个类。如果是来自其他库的类,请确保你已经正确安装了该库。
阅读全文