I am currently trying to replicate the works of a paper, in which they train a cnn using MFCC features without the DCT performed at the end. It is basically the log of the energies of the filter banks.
I know that kaldi can compute the MFCC features using the make_mfcc.sh script. But can the script somehow be altered to compute the MFCC without the DCT performed at the end, if not is there other tools that might me able to do so?
MFCCs are commonly derived as follows:
Take the Fourier transform of (a windowed excerpt of) a signal.
You can use make_fbank
script to extract log energies.