Closed regstuff closed 10 months ago
Add this to solve the issue:
!ldconfig /usr/lib64-nvidia
This helps, ty! Should it be committed into the demo file?
Add this to solve the issue:
!ldconfig /usr/lib64-nvidia
Thanks for opening the issue, we will update the notebook.
Attempted this fix to solve my (duplicate) issue (https://github.com/collabora/WhisperSpeech/issues/46) and resulted in a separate error during the inference steps. I'll also share here.
RuntimeError Traceback (most recent call last)
[<ipython-input-8-33b66061c992>](https://localhost:8080/#) in <cell line: 3>()
1 # this is very slow right now since our inference code is not very optimized
2 # but even without this crucial optimization it is still better than real-time on an RTX 4090
----> 3 pipe.generate_to_notebook("""
4 This example uses the default model of Whisper Speech. More specifically S 2 A hyphen Q 4 hyphen tiny, english and polish model. This will then be passed into RVC to achieve a potentially cleaner result.
5 """)
9 frames
[/usr/local/lib/python3.10/dist-packages/whisperspeech/modules.py](https://localhost:8080/#) in unembed(self, embs)
317 def unembed(self, embs):
318 if not self.training and self.merged_out is not None:
--> 319 return F.linear(embs, self.merged_out, self.bias_out) # embs @ self.merged_out + self.bias_out
320
321 orig_embs = embs
RuntimeError: self and mat2 must have the same dtype, but got Float and Half
This also occurs during the voice cloning cells too.
Hey, thanks for noticing this and reaching out. I released an updated version without torch.compile
that should work in Colab.
It's working perfectly now, thanks.
Hello, I'm using the demo colab notebook (with T4 GPU) from the Main page and I get this error when running this cell:
The error I get: