mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
fix gpt not save issue.
This commit is contained in:
parent
ecb4b23fc3
commit
f0cfe39708
@ -44,9 +44,8 @@ class my_model_ckpt(ModelCheckpoint):
|
|||||||
self.config = config
|
self.config = config
|
||||||
|
|
||||||
def on_train_epoch_end(self, trainer, pl_module):
|
def on_train_epoch_end(self, trainer, pl_module):
|
||||||
if not self._should_skip_saving_checkpoint(
|
# if not self._should_skip_saving_checkpoint(trainer) and self._should_save_on_train_epoch_end(trainer):
|
||||||
trainer
|
if self._should_save_on_train_epoch_end(trainer):
|
||||||
) and self._should_save_on_train_epoch_end(trainer):
|
|
||||||
monitor_candidates = self._monitor_candidates(trainer)
|
monitor_candidates = self._monitor_candidates(trainer)
|
||||||
if (
|
if (
|
||||||
self._every_n_epochs >= 1
|
self._every_n_epochs >= 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user