相关:Are MFCC features required for speech recognition
能否将平均归一化简化为所有(n,13) MFCC的简单平均减法,并用于训练数据?
np.subtract(mfcc_feat,np.mean(mfcc_feat))
发布于 2016-08-11 17:25:17
是的,,这是正确的。另外,你也可以用方差除以。
https://stackoverflow.com/questions/38879549
相似问题