From e06f53cdb1e7c34c8aba9f14c6a641c148059246 Mon Sep 17 00:00:00 2001 From: ChasonJiang <1440499136@qq.com> Date: Wed, 5 Mar 2025 02:30:40 +0800 Subject: [PATCH] rollback tts_config --- GPT_SoVITS/TTS_infer_pack/TTS.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/GPT_SoVITS/TTS_infer_pack/TTS.py b/GPT_SoVITS/TTS_infer_pack/TTS.py index 9728e44..420aa77 100644 --- a/GPT_SoVITS/TTS_infer_pack/TTS.py +++ b/GPT_SoVITS/TTS_infer_pack/TTS.py @@ -149,11 +149,11 @@ class TTS_Config: print(f"Warning: CUDA is not available, set device to CPU.") self.device = torch.device("cpu") - self.is_half = self.configs.get("is_half", False) - if str(self.device) == "cpu" and self.is_half: - print(f"Warning: Half precision is not supported on CPU, set is_half to False.") - self.is_half = False - + # self.is_half = self.configs.get("is_half", False) + # if str(self.device) == "cpu" and self.is_half: + # print(f"Warning: Half precision is not supported on CPU, set is_half to False.") + # self.is_half = False + self.version = version self.t2s_weights_path = self.configs.get("t2s_weights_path", None) self.vits_weights_path = self.configs.get("vits_weights_path", None)