From 59f35adad85815df27e9c6b33d420f5ebfd8376b Mon Sep 17 00:00:00 2001 From: RVC-Boss <129054828+RVC-Boss@users.noreply.github.com> Date: Thu, 8 Feb 2024 21:53:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dgpt=E8=AE=AD=E7=BB=83?= =?UTF-8?q?=E5=8D=A1=E6=AD=BB=E9=97=AE=E9=A2=98=E5=92=8Cunmatched=20'}'=20?= =?UTF-8?q?in=20format=20string=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复gpt训练卡死问题和unmatched '}' in format string问题 --- GPT_SoVITS/s1_train.py | 1 + 1 file changed, 1 insertion(+) diff --git a/GPT_SoVITS/s1_train.py b/GPT_SoVITS/s1_train.py index 3bbfdfb..c26302a 100644 --- a/GPT_SoVITS/s1_train.py +++ b/GPT_SoVITS/s1_train.py @@ -106,6 +106,7 @@ def main(args): dirpath=ckpt_dir, ) logger = TensorBoardLogger(name=output_dir.stem, save_dir=output_dir) + os.environ["MASTER_ADDR"]="localhost" trainer: Trainer = Trainer( max_epochs=config["train"]["epochs"], accelerator="gpu",