mirror of
https://github.com/shivammehta25/Matcha-TTS.git
synced 2026-02-04 09:49:21 +08:00
bumping diffusers, changing depandabot to open PR to dev branch, adding url for multispeaker matcha checkpoint
This commit is contained in:
1
.github/dependabot.yml
vendored
1
.github/dependabot.yml
vendored
@@ -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:
|
||||||
|
|||||||
@@ -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():
|
||||||
|
|||||||
@@ -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}}
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user