├── .gitignore ├── README.md ├── app.py ├── compute_sent_emb.py ├── config_example.py ├── generate_voc_pairs.py ├── hybrid_model.py ├── imgs ├── 测试.png └── 网页版.png ├── model.py ├── preprocess_emb.py ├── retrieval.py ├── static ├── css │ ├── normalize.css │ └── style.css ├── js │ ├── index.js │ ├── jquery-latest.js │ ├── jquery.mCustomScrollbar.concat.min.js │ ├── jquery.mCustomScrollbar.min.css │ └── jquery.min.js ├── res │ ├── botim.png │ ├── easybot.png │ ├── hd1.jpg │ ├── hd2.jpg │ └── 银杏叶.jpg └── scss │ └── style.scss ├── templates └── index.html ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/app.py -------------------------------------------------------------------------------- /compute_sent_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/compute_sent_emb.py -------------------------------------------------------------------------------- /config_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/config_example.py -------------------------------------------------------------------------------- /generate_voc_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/generate_voc_pairs.py -------------------------------------------------------------------------------- /hybrid_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/hybrid_model.py -------------------------------------------------------------------------------- /imgs/测试.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/imgs/测试.png -------------------------------------------------------------------------------- /imgs/网页版.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/imgs/网页版.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/model.py -------------------------------------------------------------------------------- /preprocess_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/preprocess_emb.py -------------------------------------------------------------------------------- /retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/retrieval.py -------------------------------------------------------------------------------- /static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/css/normalize.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/js/jquery-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/js/jquery-latest.js -------------------------------------------------------------------------------- /static/js/jquery.mCustomScrollbar.concat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/js/jquery.mCustomScrollbar.concat.min.js -------------------------------------------------------------------------------- /static/js/jquery.mCustomScrollbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/js/jquery.mCustomScrollbar.min.css -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/res/botim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/res/botim.png -------------------------------------------------------------------------------- /static/res/easybot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/res/easybot.png -------------------------------------------------------------------------------- /static/res/hd1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/res/hd1.jpg -------------------------------------------------------------------------------- /static/res/hd2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/res/hd2.jpg -------------------------------------------------------------------------------- /static/res/银杏叶.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/res/银杏叶.jpg -------------------------------------------------------------------------------- /static/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/static/scss/style.scss -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/templates/index.html -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coranholmes/pt_chatbot/HEAD/utils.py --------------------------------------------------------------------------------