-
Notifications
You must be signed in to change notification settings - Fork 417
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
High-pitched noise in the background when using old GPUs #13
Comments
I'm gonna pin this in case someone else has similar problems. I don't know how to deal with this because I can't reproduce this problem with the oldest GPU I have access now (GTX 1080 Ti). |
The same problem happens to me, my GPU is A100. And using the CPU to infer cannot help for me, the noise is still there by using the CPU. |
@ruby11dog could you please share the details to reproduce this problem? It seems it’s not related to the version of GPUs then? |
The noise will appear when inferencing with your pretrained model "epoch_2nd_00100.pth". But the noise seems to fade away with model i trained myself along with epoch increase in second stage. |
So weird, I tried in Colab (T4, V100 and A100) without specifying any version of the libraries it works perfectly fine: https://colab.research.google.com/drive/1k5OqSp8a-x-27xlaWr2kZh_9F9aBh39K |
feat: drop cython monotonic_align
dataset.sliceの引数指定を制御してリポジトリルートからの再帰取得を防ぐ
I have just ran into the same problem after training the model on the cloud using 4xA40 GPU's. I did inference both locally (RTX 3060 + CPU) and via the cloud computer (4xA40 + CPU). Doing inference on the cloud works fine without any background pitches. However, running it locally produces the background pitches (also when running the models on CPU, both on the cloud and locally). After doing some investigation, it seems that the sampler is the culprit. Since it produces random output and my test is running either on the cloud or locally, it's not possible to set a seed producing similar outputs within the sampler. A quick solution for testing the bug was to obtain the output of the sampler in the cloud and copy this output to my local pc. This output is then used at the local pc for further inference. Hereafter, the background pitch was gone and the sound was exactly produced as it should.
At the moment, I don't have time to look into the sampler, but I think closer inspection of the sampler could lead to fixing this bug. |
After more investigation, I have solved the problem for myself. The problem for me was the Btw, @yl4579 Thanks you for your great work, it's really awesome that you produced this and made your code open source! |
As per my investigation the Problem is not with GPUs , its because of Diffusion Steps used in inferencing, reducing the diffusion steps removed the screeching noises completely. Enjoy Folks |
Previously discussed here: #1 (comment)
The model produces some high-pitched noise in the background when I use my old GPU for inference (NVIDIA Quadro P5000, Driver Version: 515.105.01, CUDA Version: 11.7)
Audio examples:
I solved this problem by switching to CPU device, so this issue is just for reference, as asked by the author.
Thank you for your work!
The text was updated successfully, but these errors were encountered: