-
-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
TTS is stuck with PyTorch 1.12 #183
Comments
Hi, Does this happen with PyTorch 1.12? |
torch 1.12.1+cu116 |
A quick fix is to use PyTorch 1.11. We checked extensively why this happens, this boils down to one particular (mostly stadard!) layer in our model. Also doing this may help with 1.11:
|
Thanks, that worked |
Had the same problem, adding torch._C._jit_set_profiling_mode(False) to my code fixed the issue for me as well. |
Then it's official, JIT compiler is 100% to blame here. |
Hi, after i send the tts model some text to convert it gets stuck for a while then prints this
C:\**\PycharmProjects\voice\venv\lib\site-packages\torch\nn\modules\module.py:1130: UserWarning: operator () profile_node %433 : int[] = prim::profile_ivalue(%431) does not have profile information (Triggered internally at ..\torch\csrc\jit\codegen\cuda\graph_fuser.cpp:108.) return forward_call(*input, **kwargs) C:\**\PycharmProjects\voice\venv\lib\site-packages\torch\nn\modules\module.py:1130: UserWarning: concrete shape for linear input & weight are required to decompose into matmul + bias (Triggered internally at ..\torch\csrc\jit\codegen\cuda\graph_fuser.cpp:2077.) return forward_call(*input, **kwargs)
The model is https://models.silero.ai/models/tts/en/v3_en.pt at 48000 using en_10
The text was updated successfully, but these errors were encountered: