├── .DS_Store ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Config ├── __init__.py ├── base.py ├── cat_key.csv ├── category.csv ├── config.conf └── variable.ini ├── Controller ├── DataController.py ├── QSController.py └── __init__.py ├── Handler ├── DataHandler.py ├── QSHandler.py └── __init__.py ├── Helper ├── DataHelper.py └── __init__.py ├── LICENSE ├── Model ├── __init__.py ├── dialogue.py ├── product.py └── user.py ├── README.md ├── View └── view.html ├── decend.py ├── demo.py ├── dict ├── check.txt ├── deny.txt ├── department.txt ├── disease.txt ├── drug.txt ├── food.txt ├── producer.txt └── symptom.txt ├── doc ├── 产品文档.docx ├── 微点-知识图谱搭建.xmind └── 微点知识图谱搭建.xmind ├── example_create_graph.py ├── nba_graph.py ├── pro_dict ├── product.json └── relation.json ├── resources ├── .DS_Store ├── data │ ├── medical.json │ ├── product.csv │ └── qa.csv ├── dict │ ├── expendword.txt │ ├── question.csv │ ├── relation.csv │ ├── 客服行为分类.csv │ ├── 用户行为分类.csv │ └── 辱骂.txt ├── product.csv ├── refer │ └── wordflag.csv └── sql │ └── sql.md ├── server ├── __init__.py └── dataserver.py ├── test.py └── 增长黑客.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Config/base.py -------------------------------------------------------------------------------- /Config/cat_key.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Config/cat_key.csv -------------------------------------------------------------------------------- /Config/category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Config/category.csv -------------------------------------------------------------------------------- /Config/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Config/config.conf -------------------------------------------------------------------------------- /Config/variable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Config/variable.ini -------------------------------------------------------------------------------- /Controller/DataController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Controller/DataController.py -------------------------------------------------------------------------------- /Controller/QSController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Controller/QSController.py -------------------------------------------------------------------------------- /Controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Handler/DataHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Handler/DataHandler.py -------------------------------------------------------------------------------- /Handler/QSHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Handler/QSHandler.py -------------------------------------------------------------------------------- /Handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Helper/DataHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Helper/DataHelper.py -------------------------------------------------------------------------------- /Helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model/dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/Model/dialogue.py -------------------------------------------------------------------------------- /Model/product.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model/user.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/README.md -------------------------------------------------------------------------------- /View/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/View/view.html -------------------------------------------------------------------------------- /decend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/decend.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/demo.py -------------------------------------------------------------------------------- /dict/check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/check.txt -------------------------------------------------------------------------------- /dict/deny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/deny.txt -------------------------------------------------------------------------------- /dict/department.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/department.txt -------------------------------------------------------------------------------- /dict/disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/disease.txt -------------------------------------------------------------------------------- /dict/drug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/drug.txt -------------------------------------------------------------------------------- /dict/food.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/food.txt -------------------------------------------------------------------------------- /dict/producer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/producer.txt -------------------------------------------------------------------------------- /dict/symptom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/dict/symptom.txt -------------------------------------------------------------------------------- /doc/产品文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/doc/产品文档.docx -------------------------------------------------------------------------------- /doc/微点-知识图谱搭建.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/doc/微点-知识图谱搭建.xmind -------------------------------------------------------------------------------- /doc/微点知识图谱搭建.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/doc/微点知识图谱搭建.xmind -------------------------------------------------------------------------------- /example_create_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/example_create_graph.py -------------------------------------------------------------------------------- /nba_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/nba_graph.py -------------------------------------------------------------------------------- /pro_dict/product.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pro_dict/relation.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/.DS_Store -------------------------------------------------------------------------------- /resources/data/medical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/data/medical.json -------------------------------------------------------------------------------- /resources/data/product.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/data/qa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/data/qa.csv -------------------------------------------------------------------------------- /resources/dict/expendword.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/dict/expendword.txt -------------------------------------------------------------------------------- /resources/dict/question.csv: -------------------------------------------------------------------------------- 1 | word,type,grade 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resources/dict/relation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/dict/relation.csv -------------------------------------------------------------------------------- /resources/dict/客服行为分类.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/dict/客服行为分类.csv -------------------------------------------------------------------------------- /resources/dict/用户行为分类.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/dict/用户行为分类.csv -------------------------------------------------------------------------------- /resources/dict/辱骂.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/dict/辱骂.txt -------------------------------------------------------------------------------- /resources/product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/product.csv -------------------------------------------------------------------------------- /resources/refer/wordflag.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/refer/wordflag.csv -------------------------------------------------------------------------------- /resources/sql/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/resources/sql/sql.md -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/dataserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/server/dataserver.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/test.py -------------------------------------------------------------------------------- /增长黑客.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMingYang/ECKG/HEAD/增长黑客.md --------------------------------------------------------------------------------