Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,7 +9,7 @@ from transformers import SpeechT5ForTextToSpeech, SpeechT5HifiGan, SpeechT5Proce
|
|
| 9 |
device = "cuda:0" if torch.cuda.is_available() else "cpu"
|
| 10 |
|
| 11 |
# load speech translation checkpoint
|
| 12 |
-
asr_pipe = pipeline("automatic-speech-recognition", model="
|
| 13 |
|
| 14 |
# load text-to-speech checkpoint and speaker embeddings
|
| 15 |
processor = SpeechT5Processor.from_pretrained("microsoft/speecht5_tts")
|
|
|
|
| 9 |
device = "cuda:0" if torch.cuda.is_available() else "cpu"
|
| 10 |
|
| 11 |
# load speech translation checkpoint
|
| 12 |
+
asr_pipe = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-base-100h", device=device)
|
| 13 |
|
| 14 |
# load text-to-speech checkpoint and speaker embeddings
|
| 15 |
processor = SpeechT5Processor.from_pretrained("microsoft/speecht5_tts")
|