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
Recently i have been trying to work with this network but when i want to prepare the data using helper.py i encounter some errors. I have not done any modifications on this file except the images and label paths, and that's all. Here is the error i get after running the script. I would appreciate if anyone could help me with this:
Traceback (most recent call last):
File "helper.py", line 116, in
image_path_list = load_img_path(images_path)
File "helper.py", line 68, in load_img_path
tmp.sort(key=lambda x: int(x.split('.')[0]))
File "helper.py", line 68, in
tmp.sort(key=lambda x: int(x.split('.')[0]))
ValueError: invalid literal for int() with base 10: 'labels'
The text was updated successfully, but these errors were encountered:
I had the same error. It's because you have labels.txt in the same folder as the images. so it is splitting the filename 'labels.txt' with a '.' and trying to evaluate int('label'). Keep labels.txt in a different folder and change label_path in helper.py accordingly.
Hey guys
Recently i have been trying to work with this network but when i want to prepare the data using helper.py i encounter some errors. I have not done any modifications on this file except the images and label paths, and that's all. Here is the error i get after running the script. I would appreciate if anyone could help me with this:
Traceback (most recent call last):
File "helper.py", line 116, in
image_path_list = load_img_path(images_path)
File "helper.py", line 68, in load_img_path
tmp.sort(key=lambda x: int(x.split('.')[0]))
File "helper.py", line 68, in
tmp.sort(key=lambda x: int(x.split('.')[0]))
ValueError: invalid literal for int() with base 10: 'labels'
The text was updated successfully, but these errors were encountered: