├── .gitignore ├── LICENSE ├── README.md ├── english.wav ├── english_crop.wav ├── pytorch_mfcc ├── __init__.py └── pytorch_mfcc.py └── torch_example.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaws2003/pytorch-mfcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaws2003/pytorch-mfcc/HEAD/README.md -------------------------------------------------------------------------------- /english.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaws2003/pytorch-mfcc/HEAD/english.wav -------------------------------------------------------------------------------- /english_crop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaws2003/pytorch-mfcc/HEAD/english_crop.wav -------------------------------------------------------------------------------- /pytorch_mfcc/__init__.py: -------------------------------------------------------------------------------- 1 | from .pytorch_mfcc import MFCC -------------------------------------------------------------------------------- /pytorch_mfcc/pytorch_mfcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaws2003/pytorch-mfcc/HEAD/pytorch_mfcc/pytorch_mfcc.py -------------------------------------------------------------------------------- /torch_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaws2003/pytorch-mfcc/HEAD/torch_example.py --------------------------------------------------------------------------------