check for speaker id is None before put on cuda

This commit is contained in:
Thomas Werkmeister
2019-07-17 14:08:53 +02:00
committed by GitHub
parent 1468db0d07
commit ee4d55549d

View File

@@ -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(