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
I believe the line <3, 4> of above forward method is redundant and wrong
In line 2, input_lengths has already been updated to the proper output_lengths.
then after line 2 executed
outputs.shape ==> [2, 249, num_out_features]
input_lengths ==> [249, 146]
the intput_lengths has been updated to the proper output_lengths.
but later in line <3, 4>, output_lenghts is assigned to input_lenghts divided by 4 which I believe leads to an error.
The text was updated successfully, but these errors were encountered:
❓ Questions & Help
I believe the line <3, 4> of above forward method is redundant and wrong
In line 2, input_lengths has already been updated to the proper output_lengths.
Details
eg:
inputs.shape ==> [batch_size, time, features] == [2, 1000, 80]
input_lengths ==> [1000, 587]
then after line 2 executed
outputs.shape ==> [2, 249, num_out_features]
input_lengths ==> [249, 146]
the intput_lengths has been updated to the proper output_lengths.
but later in line <3, 4>, output_lenghts is assigned to input_lenghts divided by 4 which I believe leads to an error.
The text was updated successfully, but these errors were encountered: