From c1762660ed81f369673c9c2f496f1b91a788d80e Mon Sep 17 00:00:00 2001 From: bivashy Date: Sat, 30 Dec 2023 00:14:29 +0600 Subject: [PATCH] Exclude xtts 2 from ignore list in config resolution --- TTS/utils/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/utils/manage.py b/TTS/utils/manage.py index 3a527f46..e8c009df 100644 --- a/TTS/utils/manage.py +++ b/TTS/utils/manage.py @@ -414,7 +414,7 @@ class ModelManager(object): output_model_path = output_path output_config_path = None if ( - model not in ["tortoise-v2", "bark"] and "fairseq" not in model_name and "xtts" not in model_name + model not in ["tortoise-v2", "bark"] and "fairseq" not in model_name and "xtts1" not in model_name ): # TODO:This is stupid but don't care for now. output_model_path, output_config_path = self._find_files(output_path) # update paths in the config.json