You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Could you help me something about your code?
In tacotron.py in line encoder_outputs = encoder_cell(embedded_inputs, tower_input_lengths[i]). You add tower_input_lengths[i] (this is a tensor) to EncoderRNN (this is a BiLSTM) with code:
Hi, Could you help me something about your code?
In tacotron.py in line
encoder_outputs = encoder_cell(embedded_inputs, tower_input_lengths[i])
. You addtower_input_lengths[i]
(this is a tensor) to EncoderRNN (this is a BiLSTM) with code:So
sequence_length
have toint type not tensor
, but how you can do withtower_input_lengths[i]
, this is a tensor.The text was updated successfully, but these errors were encountered: