AttributeError: ‘float‘ object has no attribute ‘round‘

系统环境:Win10+Python3.6.5+YOLOV3

错误提示:AttributeError: ‘float’ object has no attribute ‘round’

该错误是由于numpy库版本较低导致的。

此处只需要更新numpy库至最新版本即可解决该问题。

pip install --upgrade numpy

更新时需要保证pip版本比较新,否则会提示pip版本更新较低更新失败

python3 -m pip install --upgrade pip

你可能感兴趣的:(#,YOLO,YOLOV3,YOLO,AttributeError,Error,python)