yolov9
yolov9 copied to clipboard
AttributeError: 'list' object has no attribute 'device'
https://blog.csdn.net/weixin_41717861/article/details/136261437
https://github.com/WongKinYiu/yolov9/issues/11#issuecomment-1960627261
The first prediction is from aux branch, so choose second prediction.
For list device not found ,under utils->general.py change line 903 as prediction = prediction[0][1] for yolov9-c.pt or yolov9-e.pt. However for yolov9-c-converted you can run repo without any change
For list device not found ,under utils->general.py change line 903 as prediction = prediction[0][1] for yolov9-c.pt or yolov9-e.pt. However for yolov9-c-converted you can run repo without any change
It is very effective, thanks!
For list device not found ,under utils->general.py change line 903 as prediction = prediction[0][1] for yolov9-c.pt or yolov9-e.pt. However for yolov9-c-converted you can run repo without any change
After I changed it like this, why is it still the same error?