mirror of
https://github.com/coqui-ai/TTS.git
synced 2025-12-25 12:49:29 +01:00
check for speaker id is None before put on cuda
This commit is contained in:
committed by
GitHub
parent
1468db0d07
commit
ee4d55549d
@@ -108,7 +108,7 @@ def synthesis(model,
|
||||
# preprocess the given text
|
||||
inputs = text_to_seqvec(text, CONFIG, use_cuda)
|
||||
speaker_id = id_to_torch(speaker_id)
|
||||
if use_cuda:
|
||||
if speaker_id is not None and use_cuda:
|
||||
speaker_id = speaker_id.cuda()
|
||||
# synthesize voice
|
||||
decoder_output, postnet_output, alignments, stop_tokens = run_model(
|
||||
|
||||
Reference in New Issue
Block a user