-
-
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
perf: move methods from dataloader to pre-hubert #218
Conversation
I haven't verified that the outputs match at all |
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## main #218 +/- ##
==========================================
+ Coverage 19.96% 20.06% +0.09%
==========================================
Files 38 38
Lines 3235 3210 -25
Branches 409 416 +7
==========================================
- Hits 646 644 -2
+ Misses 2573 2551 -22
+ Partials 16 15 -1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Comment out and roll back changes because of incompatibility... |
src/so_vits_svc_fork/data_utils.py
Outdated
self, batch: Sequence[dict[str, torch.Tensor]] | ||
) -> tuple[torch.Tensor, ...]: | ||
batch = [b for b in batch if b is not None] | ||
lengths = torch.tensor([b["mel_spec"].shape[1] for b in batch]).long() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bug
Closes #217, Closes #223