From f0cfe397089a6fd507d678c71adeaab5e7ed0683 Mon Sep 17 00:00:00 2001 From: RVC-Boss <129054828+RVC-Boss@users.noreply.github.com> Date: Sun, 28 Jan 2024 19:34:03 +0800 Subject: [PATCH] fix gpt not save issue. --- GPT_SoVITS/s1_train.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/GPT_SoVITS/s1_train.py b/GPT_SoVITS/s1_train.py index 30c167e..3bbfdfb 100644 --- a/GPT_SoVITS/s1_train.py +++ b/GPT_SoVITS/s1_train.py @@ -44,9 +44,8 @@ class my_model_ckpt(ModelCheckpoint): self.config = config def on_train_epoch_end(self, trainer, pl_module): - if not self._should_skip_saving_checkpoint( - trainer - ) and self._should_save_on_train_epoch_end(trainer): + # if not self._should_skip_saving_checkpoint(trainer) and self._should_save_on_train_epoch_end(trainer): + if self._should_save_on_train_epoch_end(trainer): monitor_candidates = self._monitor_candidates(trainer) if ( self._every_n_epochs >= 1