├── .gitignore ├── README.md ├── detection_only.py ├── for_develop ├── detected_processing.py ├── detection.py ├── do_learning.py ├── for_research.py └── input_data.py ├── model_data_16000 ├── checkpoint ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.index └── model.ckpt.meta ├── model_data_44100 ├── checkpoint ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.index └── model.ckpt.meta ├── my_modules ├── const.py ├── learning.py ├── plot.py └── sound_data.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/README.md -------------------------------------------------------------------------------- /detection_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/detection_only.py -------------------------------------------------------------------------------- /for_develop/detected_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/for_develop/detected_processing.py -------------------------------------------------------------------------------- /for_develop/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/for_develop/detection.py -------------------------------------------------------------------------------- /for_develop/do_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/for_develop/do_learning.py -------------------------------------------------------------------------------- /for_develop/for_research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/for_develop/for_research.py -------------------------------------------------------------------------------- /for_develop/input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/for_develop/input_data.py -------------------------------------------------------------------------------- /model_data_16000/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_16000/checkpoint -------------------------------------------------------------------------------- /model_data_16000/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_16000/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /model_data_16000/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_16000/model.ckpt.index -------------------------------------------------------------------------------- /model_data_16000/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_16000/model.ckpt.meta -------------------------------------------------------------------------------- /model_data_44100/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_44100/checkpoint -------------------------------------------------------------------------------- /model_data_44100/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_44100/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /model_data_44100/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_44100/model.ckpt.index -------------------------------------------------------------------------------- /model_data_44100/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/model_data_44100/model.ckpt.meta -------------------------------------------------------------------------------- /my_modules/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/my_modules/const.py -------------------------------------------------------------------------------- /my_modules/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/my_modules/learning.py -------------------------------------------------------------------------------- /my_modules/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/my_modules/plot.py -------------------------------------------------------------------------------- /my_modules/sound_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/my_modules/sound_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imajoriri/finger-snap/HEAD/requirements.txt --------------------------------------------------------------------------------