├── .gitignore ├── README.rst ├── bin ├── checkHotword.py └── trainHotword.py ├── docs └── source │ ├── conf.py │ ├── dtw.rst │ ├── hwdetector.rst │ ├── index.rst │ ├── introduction.rst │ ├── mfcc.rst │ └── word_recorder.rst ├── hotword_detection ├── README.txt ├── __init__.py ├── dtw.py ├── hwDetector.py ├── mfcc.py ├── test │ ├── README.txt │ ├── __init__.py │ ├── test_dtw.py │ ├── test_hwDetector.py │ └── test_mfcc.py └── wordRecorder.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/README.rst -------------------------------------------------------------------------------- /bin/checkHotword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/bin/checkHotword.py -------------------------------------------------------------------------------- /bin/trainHotword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/bin/trainHotword.py -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/dtw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/docs/source/dtw.rst -------------------------------------------------------------------------------- /docs/source/hwdetector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/docs/source/hwdetector.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/mfcc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/docs/source/mfcc.rst -------------------------------------------------------------------------------- /docs/source/word_recorder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/docs/source/word_recorder.rst -------------------------------------------------------------------------------- /hotword_detection/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/README.txt -------------------------------------------------------------------------------- /hotword_detection/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hotword_detection/dtw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/dtw.py -------------------------------------------------------------------------------- /hotword_detection/hwDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/hwDetector.py -------------------------------------------------------------------------------- /hotword_detection/mfcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/mfcc.py -------------------------------------------------------------------------------- /hotword_detection/test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/test/README.txt -------------------------------------------------------------------------------- /hotword_detection/test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /hotword_detection/test/test_dtw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/test/test_dtw.py -------------------------------------------------------------------------------- /hotword_detection/test/test_hwDetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/test/test_hwDetector.py -------------------------------------------------------------------------------- /hotword_detection/test/test_mfcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/test/test_mfcc.py -------------------------------------------------------------------------------- /hotword_detection/wordRecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/hotword_detection/wordRecorder.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakethgsharma/HotWordDetection/HEAD/setup.py --------------------------------------------------------------------------------