-
Notifications
You must be signed in to change notification settings - Fork 675
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
Bug in WeightedPersSampleLoss #203
Labels
bug
Something isn't working
Comments
Hi @vrodriguezf, I've checked this and there's indeed a bug.
Please, let me know if it works. |
It works like a charm :) thank you @oguiza !!! |
cc: @vrodriguezf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This code:
leaves this output:
The line of the callback that is failing is this one
I think it has to do with the fact that
learn.dls.train.idxs
is a list, butlearn.dls.valid.idxs
is a slice object, and the callback expects a list.Not sure how to fix it though :)
Thanks!!!
The text was updated successfully, but these errors were encountered: