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
self.target_frame_inds = np.arange(2, len(self.spectrogram) // self.audio.num_bins_per_frame - 2)
In voxtest_dataset.py L107, target frame index starts from 2. But in the paper, it starts from 1 (it means start from 0 in python).
I don't understand why it is.
Thanks.
The text was updated successfully, but these errors were encountered:
self.target_frame_inds = np.arange(2, len(self.spectrogram) // self.audio.num_bins_per_frame - 2)
In voxtest_dataset.py L107, target frame index starts from 2. But in the paper, it starts from 1 (it means start from 0 in python).
I don't understand why it is.
Thanks.
The text was updated successfully, but these errors were encountered: