-
Notifications
You must be signed in to change notification settings - Fork 194
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
Error at Training the re-identification model. AssertionError: [!] Dataset not found: None #146
Comments
Hello, I have the same problem as you. |
The MOT17 dataset has no validation set. So when training on the entire training set you can not validate. For the code to work just set:
Edit: I just pushed the newest version which works with a new reid module based on |
Thank you so much for your reply! So basically, put the val set name as |
I should run the validation. But you are validating the same thing as you are training on. |
Hi,
At the step Training the re-identification model we ran:
After finish load the
Train
set, when it start to load theVal
, the error came out as bellow:After check the config file provided at
experiments/cfgs/reid.yaml
I found out the thesplit
ofdb_val
is set asNone
. But I suppose it should be some valid name here.After read through the code of
factor.py
, the reid set are defined from line 37-39, and only defined fortrain
set, which not include theNone
:tracking_wo_bnw/src/tracktor/datasets/factory.py
Lines 37 to 39 in cb5aaeb
Please help us check what happened!
Thank you very much!
The text was updated successfully, but these errors were encountered: