jameslyons / python_speech_features

This library provides common speech features for ASR including MFCCs and filterbank energies.
MIT License
2.38k stars 617 forks source link

updated base.py. (winfunc added in logfbank) #67

Closed mr-yamraj closed 6 years ago

mr-yamraj commented 6 years ago

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.

jameslyons commented 6 years ago

Thanks mr yamraj