Fix merge bug

This commit is contained in:
WeberJulian 2021-11-23 16:25:21 +01:00 committed by Eren Gölge
parent 9c1bec86a4
commit eff0a5ca10
1 changed files with 2 additions and 1 deletions

View File

@ -410,7 +410,8 @@ class Vits(BaseTTS):
and self.config.audio["sample_rate"] != self.speaker_encoder.audio_config["sample_rate"]
):
raise RuntimeError(
" [!] To use the speaker consistency loss (SCL) you need to have the TTS model sampling rate ({}) equal to the speaker encoder sampling rate ({}) !".format(self.audio_config["sample_rate"], self.speaker_encoder.audio_config["sample_rate"])
' [!] To use the speaker consistency loss (SCL) you need to have matching sample rates between the TTS model ({}) and the speaker encoder ({})!'
.format(self.config.audio["sample_rate"], self.speaker_encoder.audio_config["sample_rate"])
)
# pylint: disable=W0101,W0105
""" self.audio_transform = torchaudio.transforms.Resample(