Browse Source

0.4 scalar tensor padding update

master
Raul Puri 6 years ago
parent
commit
b20765a3dc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      model.py

+ 1
- 1
model.py View File

@ -470,8 +470,8 @@ class Tacotron2(nn.Module):
text_padded, input_lengths, mel_padded, gate_padded, \
output_lengths = batch
text_padded = to_gpu(text_padded).long()
max_len = int(torch.max(input_lengths.data).numpy())
input_lengths = to_gpu(input_lengths).long()
max_len = torch.max(input_lengths.data).cpu().numpy()[0]
mel_padded = to_gpu(mel_padded).float()
gate_padded = to_gpu(gate_padded).float()
output_lengths = to_gpu(output_lengths).long()

Loading…
Cancel
Save