We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
i see in feature extraction after this piece of code
audio_data, sample_rate = librosa.load(file_name) stft = np.abs(librosa.stft(audio_data))
that you some time use stf and some times use audio_data like
mfcc = np.mean(librosa.feature.mfcc(y=audio_data, sr=sample_rate, n_mfcc=40).T,axis=0) features.extend(mfcc) # 40 = 40
chroma = np.mean(librosa.feature.chroma_stft(S=stft, sr=sample_rate).T,axis=0) features.extend(chroma) # 12 = 52`
why is that ? what is the difference ? would like you to elaborate more on this. :)
Thank you !
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i see in feature extraction after this piece of code
audio_data, sample_rate = librosa.load(file_name) stft = np.abs(librosa.stft(audio_data))
that you some time use stf and some times use audio_data
like
why is that ? what is the difference ? would like you to elaborate more on this. :)
Thank you !
The text was updated successfully, but these errors were encountered: