Number T frames output of STFT in 0.4.1

according to STFT output shape
it should be:
n_frames = ((data_len - (win_size - 1) - 1) / hop_size) + 1
which as well does not match the actual STFT output shape
floor or ceil(n_frames) is still smaller than T as computed by STFT 0.4.1

1 Like