├── .gitignore ├── README.md ├── Test.py ├── config.py ├── const.py ├── main.py ├── service ├── __init__.py ├── retrieval_service.py └── template_service.py ├── utils ├── __init__.py ├── logger.py ├── neo4j_api.py ├── nlu_api.py └── solr_api.py ├── web └── __init__.py └── wordembedding ├── __init__.py ├── embedding.py ├── embedding_h5.py ├── readme └── wordvector.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KnowledgeGraph-QA-Service 2 | 基于知识图谱的问答 3 | -------------------------------------------------------------------------------- /Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/Test.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/config.py -------------------------------------------------------------------------------- /const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/const.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/main.py -------------------------------------------------------------------------------- /service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/service/__init__.py -------------------------------------------------------------------------------- /service/retrieval_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/service/retrieval_service.py -------------------------------------------------------------------------------- /service/template_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/service/template_service.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/neo4j_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/utils/neo4j_api.py -------------------------------------------------------------------------------- /utils/nlu_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/utils/nlu_api.py -------------------------------------------------------------------------------- /utils/solr_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/utils/solr_api.py -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordembedding/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/wordembedding/__init__.py -------------------------------------------------------------------------------- /wordembedding/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/wordembedding/embedding.py -------------------------------------------------------------------------------- /wordembedding/embedding_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/wordembedding/embedding_h5.py -------------------------------------------------------------------------------- /wordembedding/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/wordembedding/readme -------------------------------------------------------------------------------- /wordembedding/wordvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kangzhun/KnowledgeGraph-QA-Service/HEAD/wordembedding/wordvector.py --------------------------------------------------------------------------------