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
Previously I was using fbank for feature extraction. Then when I found that when I used log on the Fbank the accuracy of the model was better. But I was using hamming frame on windows for feature extraction, because of this I was taking log after implementing fbank. So it would be better if we have a choice to apply window function while using logfbank function as well.
:param lowfreq: lowest band edge of mel filters. In Hz, default is 0.
77
78
:param highfreq: highest band edge of mel filters. In Hz, default is samplerate/2
78
79
:param preemph: apply preemphasis filter with preemph as coefficient. 0 is no filter. Default is 0.97.
80
+
:param winfunc: the analysis window to apply to each frame. By default no window is applied. You can use numpy window functions here e.g. winfunc=numpy.hamming
79
81
:returns: A numpy array of size (NUMFRAMES by nfilt) containing features. Each row holds 1 feature vector.
0 commit comments