解决 AttributeError: module ‘numpy‘ has no attribute ‘int‘ 训练yolo时的问题
时间: 2023-11-13 12:27:35 浏览: 437
问题解决:AttributeError: module ‘paddle.fluid’ has no attribute ‘EndStepEvent’
5星 · 资源好评率100%
这个 AttributeError 错误通常是由于使用了不同版本的 numpy 库导致的。您可以尝试通过以下命令更新或重新安装 numpy 库:
pip install --upgrade numpy
或者
pip uninstall numpy
pip install numpy
如果这两个方法都无法解决问题,您可以尝试查看您的代码中是否存在将 numpy.int 作为属性使用的问题。修改代码中的问题则可以避免出现 AttributeError 错误。
阅读全文