-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list index out of range for a costume trained yolo7 weight #22
Comments
Have you changed anything in the default given files? If you have a custom trained model, you can run the original code repo as it is for just once and then just replace the weights of your model later as shown in the Notebook demo. |
@deshwalmaheshobject detection its working fine, but for tracking its not working, yolov7-deepsort-tracking/tracking_helpers.py Line 243 in e82d256
|
Same issue for me |
@akashAD98 @AdrienKinart It's getting the names from a different file. Might be the indexing issue. Need to check with coco names file |
/content/yolov7-deepsort-tracking/utils/google_utils.py in attempt_download(file, repo)
28 except: # fallback plan
29 assets = ['yolov7.pt']
---> 30 tag = subprocess.check_output('git tag', shell=True).decode().split()[-1]
31
32 name = file.name
IndexError: list index out of range
I am having an issue finding where the error comes from! I thought this issue was because of the YAML file and the classes that are different but I changed coco's YAML and nothing changed please help
The text was updated successfully, but these errors were encountered: