Closed ctwillson closed 2 weeks ago
Not currently, but it shouldn't be too hard to add support for it. With the signal/ ops you can implement a mel-spectrum filter bank followed by a log. To complete the MFCC computation, you'll need to add a DCT-II operation. Following the example code code in: https://www.tensorflow.org/api_docs/python/tf/signal/mfccs_from_log_mel_spectrograms You will need to add the operation at the very end: mfccs = tf.signal.mfccs_from_log_mel_spectrograms( log_mel_spectrograms)[..., :13]
Hi shlmregev: This is a bit difficult for me. Will the official support MFCC? It is very effective for audio feature extraction
"This issue is being marked as stale due to inactivity. Remove label or comment to prevent closure in 5 days."
"This issue is being closed because it has been marked as stale for 5 days with no further activity."
Not currently, but it shouldn't be too hard to add support for it. With the signal/ ops you can implement a mel-spectrum filter bank followed by a log. To complete the MFCC computation, you'll need to add a DCT-II operation. Following the example code code in: https://www.tensorflow.org/api_docs/python/tf/signal/mfccs_from_log_mel_spectrograms You will need to add the operation at the very end: mfccs = tf.signal.mfccs_from_log_mel_spectrograms( log_mel_spectrograms)[..., :13]