-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
When running yolov4.py I received an error:
File "mypath", line 31, in <module>
label = "%s : %f" % (class_name[classid[0]], score)
~~~~~~~^^^
IndexError: invalid index to scalar variable.
I believe it is related to line 31 in yolov4.py:
label = "%s : %f" % (class_name[classid[0]], score)
classid
is indexed to get a value to pass to the class_name
matrix, however classid
is a scalar. I believe I corrected this by changing line 31 to:
label = "%s : %f" % (class_name[classid], score)
Please let me know if this is correct from your understanding or if I set something up wrong for this error to occur.
Metadata
Metadata
Assignees
Labels
No labels