diff --git a/ChatTTS/core.py b/ChatTTS/core.py index 994eb7741..79ef9bc8d 100644 --- a/ChatTTS/core.py +++ b/ChatTTS/core.py @@ -121,7 +121,7 @@ def load( self, source: Literal["huggingface", "local", "custom"] = "local", force_redownload=False, - compile: bool = True, + compile: bool = False, custom_path: Optional[torch.serialization.FILE_LIKE] = None, device: Optional[torch.device] = None, coef: Optional[torch.Tensor] = None, @@ -229,7 +229,7 @@ def _load( decoder_ckpt_path: str = None, tokenizer_path: str = None, device: Optional[torch.device] = None, - compile: bool = True, + compile: bool = False, coef: Optional[str] = None, use_flash_attn=False, use_vllm=False,