This commit is contained in:
ChristianRomberg 2024-06-12 18:39:39 +02:00 committed by GitHub
parent dbf1a08a0d
commit 356eb702ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -379,7 +379,8 @@ class FreeVC(BaseVC):
"""Load pretrained speaker encoder model as mentioned in the paper."""
print(" > Loading pretrained speaker encoder model ...")
self.enc_spk_ex = SpeakerEncoderEx(
"https://github.com/coqui-ai/TTS/releases/download/v0.13.0_models/speaker_encoder.pt"
"https://github.com/coqui-ai/TTS/releases/download/v0.13.0_models/speaker_encoder.pt",
device=self.device
)
def init_multispeaker(self, config: Coqpit):