You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The labels on the bounding boxes of identified objects do not display the right label from the file coco.names. Only one letter is printed.
After reading the file coco.names (in file yolov8.ipynb), the array has to be split at newline characters in order to display correctly:
...
with open('coco.names', 'r') as f:
names = f.read()
names = names.splitlines()
...
Please correct this. thanks
The text was updated successfully, but these errors were encountered:
The labels on the bounding boxes of identified objects do not display the right label from the file coco.names. Only one letter is printed.
After reading the file coco.names (in file yolov8.ipynb), the array has to be split at newline characters in order to display correctly:
...
with open('coco.names', 'r') as f:
names = f.read()
names = names.splitlines()
...
Please correct this. thanks
The text was updated successfully, but these errors were encountered: