├── .idea ├── Insurance_product_KGQA.iml ├── deployment.xml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── KGQA_保险产品.docx ├── LICENSE ├── README.md ├── __pycache__ ├── question_classifier.cpython-36.pyc ├── question_parse.cpython-36.pyc └── question_query.cpython-36.pyc ├── data └── ins_product_data.xls ├── graph ├── graph_build.py └── graph_revise.py ├── question_classifier.py ├── question_parse.py ├── question_query.py ├── server_websocket.py └── templates └── web_socket.html /.idea/Insurance_product_KGQA.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/.idea/Insurance_product_KGQA.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /KGQA_保险产品.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/KGQA_保险产品.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/question_classifier.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/__pycache__/question_classifier.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/question_parse.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/__pycache__/question_parse.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/question_query.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/__pycache__/question_query.cpython-36.pyc -------------------------------------------------------------------------------- /data/ins_product_data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/data/ins_product_data.xls -------------------------------------------------------------------------------- /graph/graph_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/graph/graph_build.py -------------------------------------------------------------------------------- /graph/graph_revise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/graph/graph_revise.py -------------------------------------------------------------------------------- /question_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/question_classifier.py -------------------------------------------------------------------------------- /question_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/question_parse.py -------------------------------------------------------------------------------- /question_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/question_query.py -------------------------------------------------------------------------------- /server_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/server_websocket.py -------------------------------------------------------------------------------- /templates/web_socket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingerun/KGQA_insurance_product/HEAD/templates/web_socket.html --------------------------------------------------------------------------------