Skip to content

Commit

Permalink
fix: indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jaketae committed Aug 13, 2023
1 parent 26c7a14 commit 41de849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TTS/utils/synthesizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def tts(
# [1, T, C]
waveform = self.vocoder_model.inference(vocoder_input.to(vocoder_device))
if waveform.device != torch.device("cpu"):
waveform = waveform.cpu()
waveform = waveform.cpu()
if not use_gl:
waveform = waveform.numpy()
wavs = waveform.squeeze()
Expand Down

0 comments on commit 41de849

Please sign in to comment.