AttributeError: 'Darknet' object has no attribute 'module'
时间: 2023-10-27 21:05:18 浏览: 55
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常出现在使用 PyTorch 的 Darknet 模型时,可能是因为你的代码中尝试访问了模型的 `module` 属性,但是该属性不存在。
解决方法可能是检查你的代码中与模型相关的代码,确保正确地定义和加载了模型,并且正确地使用了模型的属性和方法。如果仍然无法解决问题,可能需要查看 PyTorch 和 Darknet 相关的文档,或者考虑使用其他模型或框架。
阅读全文