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
In include/decoder.py, and in the definition of decodernw, there is a if i != len(num_channels_up) - 1 inside the loop. However, as the loop is range(len(num_channels_up)-1), it seems that the condition is always true and the if clause is not really necessary?
The text was updated successfully, but these errors were encountered:
In
include/decoder.py
, and in the definition ofdecodernw
, there is aif i != len(num_channels_up) - 1
inside the loop. However, as the loop isrange(len(num_channels_up)-1)
, it seems that the condition is always true and the if clause is not really necessary?The text was updated successfully, but these errors were encountered: