-
Notifications
You must be signed in to change notification settings - Fork 51
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
Pre-trained models on ESC-50 #40
Comments
Hi yes they are trained exactly ImageNet -> Audioset -> ESC-50. |
Thank you for getting back to me Khaled! I was trying to do a parallel with sklearn's GridSearchCV which implements cross-validation and has a Now the thing is that ESC-50 is a challenge with pre-made folds and no held-out test set. So you wouldn't be able to test your model trained on all folds. Anyway that's not really related to your framework, I was just curious to know. |
Hi! thanks for the explanation. I don't know if there a best way to do it since training on all the folds for all hyper-paramters can be slow for large models, but off-course the results will be less noisy. |
Hi Khaled,
I want to use the following checkpoints.
Just to make sure, when you say pre-trained models on ESC-50 in this case, you mean (in chronological order):
If so, how can I know which config of
default_cfgs
inmodel.py
was used for these checkpoints above?Also, have you pre-trained on all ESC-50 folds at once? During a cross-validation in machine learning with sklearn's GridSearch, the model is ultimately refit on all folds with the best hyperparams config found. Shouldn't we do the same in Deep Learning?
Cheers
Antoine
The text was updated successfully, but these errors were encountered: