基于知识图谱问答系统
.
├── 找例子网_基于知识图谱的电影问答系统.rar
└── 基于知识图谱的电影问答系统
├── README.md
├── __pycache__
│ ├── answer_search.cpython-36.pyc
│ ├── question_classifier.cpython-36.pyc
│ ├── question_classifier.cpython-39.pyc
│ └── question_parser.cpython-36.pyc
├── answer_search.py
├── chatbot_graph.py
├── data
│ ├── genre.csv
│ ├── movie.csv
│ ├── movie_to_genre.csv
│ ├── person.csv
│ ├── person_to_movie.csv
│ ├── question
│ │ ├── question_classification.txt
│ │ ├── vocabulary.txt
│ │ ├── 【0】评分.txt
│ │ ├── 【10】某演员出演过哪些类型的电影.txt
│ │ ├── 【11】演员A和演员B合作了哪些电影.txt
│ │ ├── 【12】某演员一共演过多少电影.txt
│ │ ├── 【13】演员出生日期.txt
│ │ ├── 【1】上映.txt
│ │ ├── 【2】风格.txt
│ │ ├── 【3】剧情.txt
│ │ ├── 【4】某电影有哪些演员出演.txt
│ │ ├── 【5】演员简介.txt
│ │ ├── 【6】某演员出演过的类型电影有哪些.txt
│ │ ├── 【7】某演员演了什么电影.txt
│ │ ├── 【8】演员参演的电影评分【大于】.txt
│ │ └── 【9】演员参演的电影评分【小于】.txt
│ ├── userdict3.txt
│ └── vocabulary.txt
├── genre.txt
├── movie.txt
├── person.txt
├── question_classifier.py
├── question_parser.py
├── 建立图谱.py
└── 建立词表.py
4 directories, 38 files
评论