Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Low memory usage function mfcc_lm added #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jkravanja
Copy link

Function mfcc uses a lot of memory resources with long signals. mfcc_lm splits signal into smaller chunks and calls mfcc function. Additional parameter chk_frames specifies how many frames should be computed at once. The final result should be the same calling either mfcc_lm or mfcc directly. However, because of preemphasis, each chk_frames-th frame slightly differs from that computed by original mfcc function.

Function mfcc uses a lot of memory resources with long signals. mfcc_lm splits signal into smaller chunks and calls mfcc function. Additional parameter chk_frames specifies how many frames should be computed at once. The final result should be the same calling wither mfcc_lm or mfcc directly. However, because of preemphasis, each chk_frames-th frames slightly differs from that computed by original mfcc function.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant