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
Hi, line 42 of the pySpeechRev.py, the normalisation is wrong. You should abs them before u get the max.
From
# Signal normalization
signal_clean=signal_clean/np.abs(np.max(signal_clean))
to
# Signal normalization
signal_clean=signal_clean/np.max(np.abs(signal_clean))
But actually this might not be the best way to normalise a signal. you should probably calulate the power of the signal and scale them according to the power you desire.
The text was updated successfully, but these errors were encountered:
Hi, line 42 of the pySpeechRev.py, the normalisation is wrong. You should abs them before u get the max.
From
to
But actually this might not be the best way to normalise a signal. you should probably calulate the power of the signal and scale them according to the power you desire.
The text was updated successfully, but these errors were encountered: