├── README.md ├── actions.py ├── config.yml ├── credentials.yml ├── data ├── nlu.md ├── responses.md └── stories.md ├── domain.yml ├── endpoints.yml ├── models ├── 20200212-160311.tar.gz ├── 20200212-161828.tar.gz ├── 20200217-144048.tar.gz ├── 20200217-144756.tar.gz ├── 20200217-152104.tar.gz ├── 20200217-164856.tar.gz └── nlu-20200217-164749.tar.gz ├── results ├── CRFEntityExtractor_report.json ├── confmat.png ├── failed_stories.md ├── hist.png ├── intent_report.json └── story_confmat.pdf └── test_stories.md /README.md: -------------------------------------------------------------------------------- 1 | # Sales-Chatbot -------------------------------------------------------------------------------- /actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/actions.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/config.yml -------------------------------------------------------------------------------- /credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/credentials.yml -------------------------------------------------------------------------------- /data/nlu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/data/nlu.md -------------------------------------------------------------------------------- /data/responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/data/responses.md -------------------------------------------------------------------------------- /data/stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/data/stories.md -------------------------------------------------------------------------------- /domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/domain.yml -------------------------------------------------------------------------------- /endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/endpoints.yml -------------------------------------------------------------------------------- /models/20200212-160311.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/models/20200212-160311.tar.gz -------------------------------------------------------------------------------- /models/20200212-161828.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/models/20200212-161828.tar.gz -------------------------------------------------------------------------------- /models/20200217-144048.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/models/20200217-144048.tar.gz -------------------------------------------------------------------------------- /models/20200217-144756.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/models/20200217-144756.tar.gz -------------------------------------------------------------------------------- /models/20200217-152104.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/models/20200217-152104.tar.gz -------------------------------------------------------------------------------- /models/20200217-164856.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/models/20200217-164856.tar.gz -------------------------------------------------------------------------------- /models/nlu-20200217-164749.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/models/nlu-20200217-164749.tar.gz -------------------------------------------------------------------------------- /results/CRFEntityExtractor_report.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /results/confmat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/results/confmat.png -------------------------------------------------------------------------------- /results/failed_stories.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/results/hist.png -------------------------------------------------------------------------------- /results/intent_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/results/intent_report.json -------------------------------------------------------------------------------- /results/story_confmat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/results/story_confmat.pdf -------------------------------------------------------------------------------- /test_stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Sales-Chatbot/HEAD/test_stories.md --------------------------------------------------------------------------------