├── .github └── workflows │ └── manual.yml ├── .gitignore ├── CODEOWNERS ├── LICENSE.txt ├── README.md ├── char_map.py ├── create_desc_json.py ├── data_generator.py ├── flac_to_wav.sh ├── images ├── bidirectional_rnn_model.png ├── cnn_rnn_model.png ├── deep_rnn_model.png ├── pipeline.png ├── rnn_model.png ├── rnn_model_unrolled.png ├── select_kernel.png ├── simple_rnn.png └── simple_rnn_unrolled.png ├── requirements.txt ├── sample_models.py ├── train_utils.py ├── utils.py └── vui_notebook.ipynb /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/README.md -------------------------------------------------------------------------------- /char_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/char_map.py -------------------------------------------------------------------------------- /create_desc_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/create_desc_json.py -------------------------------------------------------------------------------- /data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/data_generator.py -------------------------------------------------------------------------------- /flac_to_wav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/flac_to_wav.sh -------------------------------------------------------------------------------- /images/bidirectional_rnn_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/bidirectional_rnn_model.png -------------------------------------------------------------------------------- /images/cnn_rnn_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/cnn_rnn_model.png -------------------------------------------------------------------------------- /images/deep_rnn_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/deep_rnn_model.png -------------------------------------------------------------------------------- /images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/pipeline.png -------------------------------------------------------------------------------- /images/rnn_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/rnn_model.png -------------------------------------------------------------------------------- /images/rnn_model_unrolled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/rnn_model_unrolled.png -------------------------------------------------------------------------------- /images/select_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/select_kernel.png -------------------------------------------------------------------------------- /images/simple_rnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/simple_rnn.png -------------------------------------------------------------------------------- /images/simple_rnn_unrolled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/images/simple_rnn_unrolled.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/sample_models.py -------------------------------------------------------------------------------- /train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/train_utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/utils.py -------------------------------------------------------------------------------- /vui_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/AIND-VUI-Capstone/HEAD/vui_notebook.ipynb --------------------------------------------------------------------------------