Fix merge bug

This commit is contained in:
WeberJulian
2021-12-09 13:41:56 +00:00
committed by Eren Gölge
parent 9c1bec86a4
commit eff0a5ca10
+2 -1
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(