Instructions to use microsoft/speecht5_vc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/speecht5_vc with Transformers:
# Load model directly from transformers import AutoProcessor, SpeechT5ForSpeechToSpeech processor = AutoProcessor.from_pretrained("microsoft/speecht5_vc") model = SpeechT5ForSpeechToSpeech.from_pretrained("microsoft/speecht5_vc") - Notebooks
- Google Colab
- Kaggle
Speech enhancement questions
#6
by digitalexander - opened
I'm new to HF and this model; so please forgive the noob questions.
- Do anyone have examples of how to run speech enhancement?
- Is there a way to do the opposite, basically remove speech? I can imagine running speech enhancement and then simply using phase cancellation to subtract it from the non-speech, but maybe there are better ways?