From e88fe41d37cbe907a7c48234b023bcb2fd53c2ae Mon Sep 17 00:00:00 2001 From: chenyu Date: Sat, 7 Jun 2025 20:47:28 -0400 Subject: [PATCH] update vits vctk model to use download from huggingface (#10688) google drive points to a warning page that does not work --- examples/vits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vits.py b/examples/vits.py index 6a76236d65..b315a5253a 100644 --- a/examples/vits.py +++ b/examples/vits.py @@ -651,7 +651,7 @@ class TextMapper: # Based on https://github.com/keithito/tacotron VITS_PATH = Path(__file__).parents[1] / "weights/VITS/" MODELS = { # config_url, weights_url "ljs": ("https://raw.githubusercontent.com/jaywalnut310/vits/main/configs/ljs_base.json", "https://drive.google.com/uc?export=download&id=1q86w74Ygw2hNzYP9cWkeClGT5X25PvBT&confirm=t"), - "vctk": ("https://raw.githubusercontent.com/jaywalnut310/vits/main/configs/vctk_base.json", "https://drive.google.com/uc?export=download&id=11aHOlhnxzjpdWDpsz1vFDCzbeEfoIxru&confirm=t"), + "vctk": ("https://huggingface.co/csukuangfj/vits-vctk/resolve/main/vctk_base.json", "https://huggingface.co/csukuangfj/vits-vctk/resolve/main/pretrained_vctk.pth"), "mmts-tts": ("https://huggingface.co/facebook/mms-tts/raw/main/full_models/eng/config.json", "https://huggingface.co/facebook/mms-tts/resolve/main/full_models/eng/G_100000.pth"), "uma_trilingual": ("https://huggingface.co/spaces/Plachta/VITS-Umamusume-voice-synthesizer/raw/main/configs/uma_trilingual.json", "https://huggingface.co/spaces/Plachta/VITS-Umamusume-voice-synthesizer/resolve/main/pretrained_models/G_trilingual.pth"), "cjks": ("https://huggingface.co/spaces/skytnt/moe-tts/resolve/main/saved_model/14/config.json", "https://huggingface.co/spaces/skytnt/moe-tts/resolve/main/saved_model/14/model.pth"),