Commit
·
1b31f3b
1
Parent(s):
973557d
Update app.py
Browse files
app.py
CHANGED
@@ -3,39 +3,35 @@ import numpy as np
|
|
3 |
import torch
|
4 |
from datasets import load_dataset
|
5 |
|
6 |
-
from transformers import SpeechT5ForTextToSpeech,
|
|
|
|
|
|
|
7 |
|
8 |
|
9 |
-
device = "
|
10 |
-
|
11 |
-
# load speech translation checkpoint
|
12 |
asr_pipe = pipeline("automatic-speech-recognition", model="openai/whisper-base", device=device)
|
13 |
-
|
14 |
-
|
15 |
-
processor = SpeechT5Processor.from_pretrained("imvladikon/speech_t5_voxpopuli_nl")
|
16 |
-
|
17 |
-
model = SpeechT5ForTextToSpeech.from_pretrained("imvladikon/speech_t5_voxpopuli_nl").to(device)
|
18 |
-
vocoder = SpeechT5HifiGan.from_pretrained("imvladikon/speech_t5_voxpopuli_nl").to(device)
|
19 |
-
|
20 |
-
embeddings_dataset = load_dataset("Matthijs/cmu-arctic-xvectors", split="validation")
|
21 |
-
speaker_embeddings = torch.tensor(embeddings_dataset[7306]["xvector"]).unsqueeze(0)
|
22 |
|
23 |
|
24 |
def translate(audio):
|
25 |
-
outputs = asr_pipe(audio, max_new_tokens=256, generate_kwargs={"task": "
|
26 |
return outputs["text"]
|
27 |
|
28 |
|
29 |
def synthesise(text):
|
30 |
-
inputs =
|
31 |
-
|
|
|
32 |
return speech.cpu()
|
33 |
|
34 |
|
35 |
def speech_to_speech_translation(audio):
|
36 |
translated_text = translate(audio)
|
37 |
synthesised_speech = synthesise(translated_text)
|
38 |
-
synthesised_speech = (synthesised_speech.numpy() * 32767).astype(np.int16)
|
39 |
return 16000, synthesised_speech
|
40 |
|
41 |
|
|
|
3 |
import torch
|
4 |
from datasets import load_dataset
|
5 |
|
6 |
+
from transformers import (SpeechT5ForTextToSpeech,
|
7 |
+
SpeechT5HifiGan, SpeechT5Processor,
|
8 |
+
VitsModel, VitsTokenizer
|
9 |
+
pipeline)
|
10 |
|
11 |
|
12 |
+
device = "cpu"
|
13 |
+
checkpoint = "Matthijs/mms-tts-fra"
|
|
|
14 |
asr_pipe = pipeline("automatic-speech-recognition", model="openai/whisper-base", device=device)
|
15 |
+
model = VitsModel.from_pretrained(checkpoint)
|
16 |
+
tokenizer = VitsTokenizer.from_pretrained(checkpoint)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
|
19 |
def translate(audio):
|
20 |
+
outputs = asr_pipe(audio, max_new_tokens=256, generate_kwargs={"task": "transcribe", "language": "french"})
|
21 |
return outputs["text"]
|
22 |
|
23 |
|
24 |
def synthesise(text):
|
25 |
+
inputs = tokenizer(text=text, return_tensors="pt")
|
26 |
+
speech_output = model(inputs["input_ids"].to(device))
|
27 |
+
speech = speech_output.audio[0]
|
28 |
return speech.cpu()
|
29 |
|
30 |
|
31 |
def speech_to_speech_translation(audio):
|
32 |
translated_text = translate(audio)
|
33 |
synthesised_speech = synthesise(translated_text)
|
34 |
+
synthesised_speech = (synthesised_speech.detach().numpy() * 32767).astype(np.int16)
|
35 |
return 16000, synthesised_speech
|
36 |
|
37 |
|