-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
any support of k-fold cross validation? #65
Comments
yeah please. Or any suggestions on how to modify the code if I want to use k-fold cross validation please? |
Sorry for late response. K-fold CV can be done by modifying Current implementation of valid_idx = idx_full[len_valid*fold_idx, len_valid*(fold_idx+1)]
train_idx = np.delete(idx_full, np.arange(0, len_valid)) Then, add the |
@SunQpark I think you mean
|
I have implemented cross validation to my Pytorch-Template |
No description provided.
The text was updated successfully, but these errors were encountered: