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
I notice that there is no introduction or description of the features you exttracted from the .wav of
database.
The only description is the code 👍
ifextract_features:
win_size=0.04step=0.01Fglobal= []
i=0for (x, Fs) indb.data:
############F=audioFeatureExtraction.stFeatureExtraction(x, Fs, win_size*Fs, step*Fs)
Fglobal.append(np.concatenate((np.mean(F[0], axis=1),np.std(F[0], axis=1))))
###############I think these are all of the code which are used to extract featuressys.stdout.write("\033[F") # cursor up one linei=i+1;
print"Extracting features "+str(i) +'/'+str(n_samples) +" from data..."print"Saving features to file..."cPickle.dump(Fglobal, open(db_type+'_features.p', 'wb'))
So, could you give some introdaction to what features you extracted from the file ?
( the mean and standard deviation ?)
Thank you very much, and sorry for my poor english.
The text was updated successfully, but these errors were encountered:
I notice that there is no introduction or description of the features you exttracted from the .wav of
database.
The only description is the code 👍
So, could you give some introdaction to what features you extracted from the file ?
( the mean and standard deviation ?)
Thank you very much, and sorry for my poor english.
The text was updated successfully, but these errors were encountered: