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
The linear frequency spectrogram frontend results in 197 frames instead of 199, which seems to be caused by:
In _librosa_linear_frontend (openl3/core.py), center=False should be center=True when calling librosa.stft
In _construct_linear_audio_network (openl3/models.py), pad_end=True should be added to argument for __fix_kapre_spec
In _construct_linear_audio_network (openl3/models.py), in the else block corresponding to if include_frontend, the input_shape should account for centering
In addition to fixing these, we'll need to regenerate the regression data likely
The text was updated successfully, but these errors were encountered:
The linear frequency spectrogram frontend results in 197 frames instead of 199, which seems to be caused by:
_librosa_linear_frontend
(openl3/core.py
),center=False
should becenter=True
when callinglibrosa.stft
_construct_linear_audio_network
(openl3/models.py
),pad_end=True
should be added to argument for __fix_kapre_spec_construct_linear_audio_network
(openl3/models.py
), in theelse
block corresponding toif include_frontend
, theinput_shape
should account for centeringIn addition to fixing these, we'll need to regenerate the regression data likely
The text was updated successfully, but these errors were encountered: