bumping diffusers, changing depandabot to open PR to dev branch, adding url for multispeaker matcha checkpoint

This commit is contained in:
Shivam Mehta
2023-09-21 12:32:27 +00:00
parent 281a098337
commit d098f32730
4 changed files with 5 additions and 4 deletions

View File

@@ -7,6 +7,7 @@ version: 2
updates: updates:
- package-ecosystem: "pip" # See documentation for possible values - package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests directory: "/" # Location of package manifests
target-branch: "dev"
schedule: schedule:
interval: "daily" interval: "daily"
ignore: ignore:

View File

@@ -177,7 +177,7 @@ def main():
with gr.Row(): with gr.Row():
text = gr.Textbox(value="", lines=2, label="Text to synthesise", scale=3) text = gr.Textbox(value="", lines=2, label="Text to synthesise", scale=3)
spk_slider = gr.Slider( spk_slider = gr.Slider(
minimum=0, maximum=108, step=1, value=args.spk, label="Speaker ID", interactive=True, scale=1 minimum=0, maximum=107, step=1, value=args.spk, label="Speaker ID", interactive=True, scale=1
) )
with gr.Row(): with gr.Row():

View File

@@ -19,7 +19,7 @@ from matcha.utils.utils import assert_model_downloaded, get_user_data_dir, inter
MATCHA_URLS = { MATCHA_URLS = {
"matcha_ljspeech": "https://drive.google.com/file/d/1BBzmMU7k3a_WetDfaFblMoN18GqQeHCg/view?usp=drive_link", "matcha_ljspeech": "https://drive.google.com/file/d/1BBzmMU7k3a_WetDfaFblMoN18GqQeHCg/view?usp=drive_link",
"matcha_vctk": "", # Coming soon "matcha_vctk": "https://drive.google.com/file/d/1enuxmfslZciWGAl63WGh2ekVo00FYuQ9/view?usp=drive_link",
} }
VOCODER_URLS = { VOCODER_URLS = {
@@ -28,7 +28,7 @@ VOCODER_URLS = {
} }
MULTISPEAKER_MODEL = { MULTISPEAKER_MODEL = {
"matcha_vctk": {"vocoder": "hifigan_univ_v1", "speaking_rate": 0.85, "spk": 0, "spk_range": (0, 108)} "matcha_vctk": {"vocoder": "hifigan_univ_v1", "speaking_rate": 0.85, "spk": 0, "spk_range": (0, 107)}
} }
SINGLESPEAKER_MODEL = {"matcha_ljspeech": {"vocoder": "hifigan_T2_v1", "speaking_rate": 0.95, "spk": None}} SINGLESPEAKER_MODEL = {"matcha_ljspeech": {"vocoder": "hifigan_T2_v1", "speaking_rate": 0.95, "spk": None}}

View File

@@ -35,7 +35,7 @@ torchaudio
matplotlib matplotlib
pandas pandas
conformer==0.3.2 conformer==0.3.2
diffusers==0.21.1 diffusers==0.21.2
notebook notebook
ipywidgets ipywidgets
gradio gradio