import gradio as gr import librosa import numpy as np import torch from transformers import SpeechT5Processor, SpeechT5ForTextToSpeech, SpeechT5HifiGan #. checkpoint = "microsoft/speecht5_tts" processor = SpeechT5Processor.from_pretrained(checkpoint) model = SpeechT5ForTextToSpeech.from_pretrained(checkpoint) vocoder = SpeechT5HifiGan.from_pretrained("microsoft/speecht5_hifigan") speaker_embeddings = { "BDL": "spkemb/cmu_us_bdl_arctic-wav-arctic_a0009.npy", "CLB": "spkemb/cmu_us_clb_arctic-wav-arctic_a0144.npy", "KSP": "spkemb/cmu_us_ksp_arctic-wav-arctic_b0087.npy", "RMS": "spkemb/cmu_us_rms_arctic-wav-arctic_b0353.npy", "SLT": "spkemb/cmu_us_slt_arctic-wav-arctic_a0508.npy", } from datasets import load_dataset, Audio dataset = load_dataset( "divakaivan/glaswegian_audio" ) dataset = dataset.cast_column("audio", Audio(sampling_rate=16000))['train'] from transformers import SpeechT5Processor, SpeechT5ForTextToSpeech processor = SpeechT5Processor.from_pretrained("microsoft/speecht5_tts") model = SpeechT5ForTextToSpeech.from_pretrained("microsoft/speecht5_tts") tokenizer = processor.tokenizer def extract_all_chars(batch): all_text = " ".join(batch["transcription"]) vocab = list(set(all_text)) return {"vocab": [vocab], "all_text": [all_text]} vocabs = dataset.map( extract_all_chars, batched=True, batch_size=-1, keep_in_memory=True, remove_columns=dataset.column_names, ) dataset_vocab = set(vocabs["vocab"][0]) tokenizer_vocab = {k for k,_ in tokenizer.get_vocab().items()} replacements = [ ('à', 'a'), ('ç', 'c'), ('è', 'e'), ('ë', 'e'), ('í', 'i'), ('ï', 'i'), ('ö', 'o'), ('ü', 'u'), ] def cleanup_text(inputs): for src, dst in replacements: inputs["transcription"] = inputs["transcription"].replace(src, dst) return inputs dataset = dataset.map(cleanup_text) import os import torch from speechbrain.inference.speaker import EncoderClassifier spk_model_name = "speechbrain/spkrec-xvect-voxceleb" device = "cuda" if torch.cuda.is_available() else "cpu" speaker_model = EncoderClassifier.from_hparams( source=spk_model_name, run_opts={"device": device}, savedir=os.path.join("/tmp", spk_model_name), ) def create_speaker_embedding(waveform): with torch.no_grad(): speaker_embeddings = speaker_model.encode_batch(torch.tensor(waveform)) speaker_embeddings = torch.nn.functional.normalize(speaker_embeddings, dim=2) speaker_embeddings = speaker_embeddings.squeeze().cpu().numpy() return speaker_embeddings def prepare_dataset(example): # load the audio data; if necessary, this resamples the audio to 16kHz audio = example["audio"] # feature extraction and tokenization example = processor( text=example["transcription"], audio_target=audio["array"], sampling_rate=audio["sampling_rate"], return_attention_mask=False, ) # strip off the batch dimension example["labels"] = example["labels"][0] # use SpeechBrain to obtain x-vector example["speaker_embeddings"] = create_speaker_embedding(audio["array"]) return example processed_example = prepare_dataset(dataset[0]) from transformers import SpeechT5HifiGan vocoder = SpeechT5HifiGan.from_pretrained("microsoft/speecht5_hifigan") spectrogram = torch.tensor(processed_example["labels"]) with torch.no_grad(): speech = vocoder(spectrogram) dataset = dataset.map( prepare_dataset, remove_columns=dataset.column_names, ) def predict(text, speaker): if len(text.strip()) == 0: return (16000, np.zeros(0).astype(np.int16)) inputs = processor(text=text, return_tensors="pt") # limit input length input_ids = inputs["input_ids"] input_ids = input_ids[..., :model.config.max_text_positions] ### ### ### example = dataset["test"][11] speaker_embeddings = torch.tensor(example["speaker_embeddings"]).unsqueeze(0) speaker_embedding = torch.tensor(speaker_embedding).unsqueeze(0) speech = model.generate_speech(input_ids, speaker_embedding, vocoder=vocoder) speech = (speech.numpy() * 32767).astype(np.int16) return (16000, speech) title = "SpeechT5: Speech Synthesis" description = """ The SpeechT5 model is pre-trained on text as well as speech inputs, with targets that are also a mix of text and speech. By pre-training on text and speech at the same time, it learns unified representations for both, resulting in improved modeling capabilities. SpeechT5 can be fine-tuned for different speech tasks. This space demonstrates the text-to-speech (TTS) checkpoint for the English language. See also the speech recognition (ASR) demo and the voice conversion demo. Refer to this Colab notebook to learn how to fine-tune the SpeechT5 TTS model on your own dataset or language. How to use: Enter some English text and choose a speaker. The output is a mel spectrogram, which is converted to a mono 16 kHz waveform by the HiFi-GAN vocoder. Because the model always applies random dropout, each attempt will give slightly different results. The Surprise Me! option creates a completely randomized speaker. """ article = """

References: SpeechT5 paper | original GitHub | original weights

@article{Ao2021SpeechT5,
  title   = {SpeechT5: Unified-Modal Encoder-Decoder Pre-training for Spoken Language Processing},
  author  = {Junyi Ao and Rui Wang and Long Zhou and Chengyi Wang and Shuo Ren and Yu Wu and Shujie Liu and Tom Ko and Qing Li and Yu Zhang and Zhihua Wei and Yao Qian and Jinyu Li and Furu Wei},
  eprint={2110.07205},
  archivePrefix={arXiv},
  primaryClass={eess.AS},
  year={2021}
}

Speaker embeddings were generated from CMU ARCTIC using this script.

""" examples = [ ["It is not in the stars to hold our destiny but in ourselves.", "BDL (male)"], ["The octopus and Oliver went to the opera in October.", "CLB (female)"], ["She sells seashells by the seashore. I saw a kitten eating chicken in the kitchen.", "RMS (male)"], ["Brisk brave brigadiers brandished broad bright blades, blunderbusses, and bludgeons—balancing them badly.", "SLT (female)"], ["A synonym for cinnamon is a cinnamon synonym.", "BDL (male)"], ["How much wood would a woodchuck chuck if a woodchuck could chuck wood? He would chuck, he would, as much as he could, and chuck as much wood as a woodchuck would if a woodchuck could chuck wood.", "CLB (female)"], ] gr.Interface( fn=predict, inputs=[ gr.Text(label="Input Text"), gr.Radio(label="Speaker", choices=[ "BDL (male)", "CLB (female)", "KSP (male)", "RMS (male)", "SLT (female)", "Surprise Me!" ], value="BDL (male)"), ], outputs=[ gr.Audio(label="Generated Speech", type="numpy"), ], title=title, description=description, article=article, examples=examples, ).launch()