AttributeError: 'Darknet' object has no attribute 'module'
时间: 2023-10-05 14:09:33 浏览: 57
This error occurs when you are trying to access an attribute or method that does not exist in the object you are working with.
In this case, it seems like you are trying to access the 'module' attribute of a 'Darknet' object, but this attribute does not exist.
To fix this error, you need to check the documentation of the 'Darknet' class or the code where you created the object to see what attributes and methods are available. You may need to use a different attribute or method that serves a similar purpose to what you were trying to do with 'module'.
阅读全文