├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── asr ├── README.md ├── __init__.py ├── decoder.py ├── model.py ├── models │ ├── download_asr.sh │ └── download_lm.sh └── requirements.txt ├── conf.yaml ├── rasa-demo ├── __init__.py ├── actions.py ├── config.yml ├── credentials.yml ├── data │ ├── nlu.md │ └── stories.md ├── domain.yml ├── endpoints.yml ├── events.db ├── events.db-shm ├── events.db-wal ├── models │ └── 20191201-102138.tar.gz ├── rasa.db ├── rasa.db-shm └── rasa.db-wal ├── static ├── audio │ ├── beeb.wav │ └── tone.wav ├── bootstrap │ ├── css │ │ ├── .DS_Store │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map ├── css │ └── style.css ├── fa │ ├── css │ │ └── all.min.css │ └── webfonts │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── img │ ├── bot.png │ └── user.png └── js │ ├── app.js │ ├── controllers │ └── MainController.js │ └── shared │ ├── angular.js │ ├── jquery.min.js │ ├── resampler.js │ └── synth-js │ ├── synth.min.js │ └── synth.min.js.map ├── templates └── index.html ├── tts ├── README.md ├── __init__.py ├── cleaners.py ├── models │ ├── download_fastspeech.sh │ ├── download_tacotron2.sh │ └── download_transformer.sh ├── requirements.txt ├── text_numbers.py └── utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/app.py -------------------------------------------------------------------------------- /asr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/asr/README.md -------------------------------------------------------------------------------- /asr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/asr/__init__.py -------------------------------------------------------------------------------- /asr/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/asr/decoder.py -------------------------------------------------------------------------------- /asr/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/asr/model.py -------------------------------------------------------------------------------- /asr/models/download_asr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/asr/models/download_asr.sh -------------------------------------------------------------------------------- /asr/models/download_lm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/asr/models/download_lm.sh -------------------------------------------------------------------------------- /asr/requirements.txt: -------------------------------------------------------------------------------- 1 | wget 2 | librosa 3 | python-Levenshtein -------------------------------------------------------------------------------- /conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/conf.yaml -------------------------------------------------------------------------------- /rasa-demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa-demo/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/actions.py -------------------------------------------------------------------------------- /rasa-demo/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/config.yml -------------------------------------------------------------------------------- /rasa-demo/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/credentials.yml -------------------------------------------------------------------------------- /rasa-demo/data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/data/nlu.md -------------------------------------------------------------------------------- /rasa-demo/data/stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/data/stories.md -------------------------------------------------------------------------------- /rasa-demo/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/domain.yml -------------------------------------------------------------------------------- /rasa-demo/endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/endpoints.yml -------------------------------------------------------------------------------- /rasa-demo/events.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/events.db -------------------------------------------------------------------------------- /rasa-demo/events.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/events.db-shm -------------------------------------------------------------------------------- /rasa-demo/events.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa-demo/models/20191201-102138.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/models/20191201-102138.tar.gz -------------------------------------------------------------------------------- /rasa-demo/rasa.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/rasa.db -------------------------------------------------------------------------------- /rasa-demo/rasa.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/rasa.db-shm -------------------------------------------------------------------------------- /rasa-demo/rasa.db-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/rasa-demo/rasa.db-wal -------------------------------------------------------------------------------- /static/audio/beeb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/audio/beeb.wav -------------------------------------------------------------------------------- /static/audio/tone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/audio/tone.wav -------------------------------------------------------------------------------- /static/bootstrap/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/.DS_Store -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/fa/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/fa/css/all.min.css -------------------------------------------------------------------------------- /static/fa/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/fa/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/fa/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/fa/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/fa/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/fa/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/fa/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/fa/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/fa/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/fa/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/fa/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/fa/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/img/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/img/bot.png -------------------------------------------------------------------------------- /static/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/img/user.png -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/js/controllers/MainController.js -------------------------------------------------------------------------------- /static/js/shared/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/js/shared/angular.js -------------------------------------------------------------------------------- /static/js/shared/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/js/shared/jquery.min.js -------------------------------------------------------------------------------- /static/js/shared/resampler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/js/shared/resampler.js -------------------------------------------------------------------------------- /static/js/shared/synth-js/synth.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/js/shared/synth-js/synth.min.js -------------------------------------------------------------------------------- /static/js/shared/synth-js/synth.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/static/js/shared/synth-js/synth.min.js.map -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/templates/index.html -------------------------------------------------------------------------------- /tts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/README.md -------------------------------------------------------------------------------- /tts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/__init__.py -------------------------------------------------------------------------------- /tts/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/cleaners.py -------------------------------------------------------------------------------- /tts/models/download_fastspeech.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/models/download_fastspeech.sh -------------------------------------------------------------------------------- /tts/models/download_tacotron2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/models/download_tacotron2.sh -------------------------------------------------------------------------------- /tts/models/download_transformer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/models/download_transformer.sh -------------------------------------------------------------------------------- /tts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/requirements.txt -------------------------------------------------------------------------------- /tts/text_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/text_numbers.py -------------------------------------------------------------------------------- /tts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/tts/utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anwarvic/RasaChatbot-with-ASR-and-TTS/HEAD/utils.py --------------------------------------------------------------------------------