-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
"keep_ckpts" not working #65
Labels
bug
Something isn't working
Comments
I noticed it earlier too. I am having difficulty correcting it. |
I just updated to 1.2.8 but the bug is still present. All the checkpoints are still saved. |
😭 |
Lordmau5
added a commit
to Lordmau5/so-vits-svc-fork
that referenced
this issue
Mar 23, 2023
Should fix voicepaw#65 this time around. The reason why this didn't work before is because it sorted them based on their name or time alone, but not also based on their prefix, so the resulting array looked like "G_", "D_", "G_", "D_", ... This addresses that by also sorting based on their prefix, resulting in a properly sorted array "G_", "G_", "G_", "D_", "D_", "D_" This has to be done this way due to how the itertools.groupby method works: https://note.nkmk.me/en/python-itertools-groupby/
Lordmau5
added a commit
to Lordmau5/so-vits-svc-fork
that referenced
this issue
Mar 24, 2023
34j
pushed a commit
that referenced
this issue
Mar 24, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the config file, the default
"keep_ckpts": 3
does not work. When training, all checkpoints will be saved. Changing the value to any other number will not work as well.The text was updated successfully, but these errors were encountered: