-
Notifications
You must be signed in to change notification settings - Fork 29
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
Predict on CPU #15
Comments
Hi, Also, the audio file should not be too short. I think that at least 1 second long. Best, |
Yes, you are right, my input was stereo, thank you. Now it works, but output is much worse than original. |
Which ckpt were you using? what are the source and target sample rates? |
I use this checkpoint https://drive.google.com/drive/folders/1JK9VqgfQsWEPOFUkp9Y5OR62G9i3disf Source is 12kHz and output file generated in 16kHz. As I understand I run incorrect command:
but it should be
but in this repository is only 4-16experiments, and no any 12-48 experiment files. Did you forget to add it? Or I should create them manually? |
Yes, you are right - you need to modify the configuration file. If I recall correctly, the only thing you need to change are the sampling rates.
to:
|
As I understand form code there is hardcoded CUDA support. So I have changed device to
cpu
and replacedmodel.cuda()
withmodel.cpu()
But when I run predict I got strange error:I don't know is it problem with cpu or something else.
The text was updated successfully, but these errors were encountered: