├── .gitattributes ├── .idea ├── misc.xml ├── modules.xml ├── my_flask.iml └── workspace.xml ├── README.md ├── cnt_edges.py ├── config.ini ├── demo ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── flask_app.py ├── jw ├── Q_Search.py ├── README.txt ├── __init__.py ├── __pycache__ │ ├── Q_Search.cpython-35.pyc │ ├── Q_Search.cpython-36.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── config.cpython-35.pyc │ ├── config.cpython-36.pyc │ ├── svm_model.cpython-35.pyc │ ├── svm_model.cpython-36.pyc │ ├── utils.cpython-35.pyc │ └── utils.cpython-36.pyc ├── config.py ├── csv2neo4j.py ├── genre.csv ├── genres.json ├── movie.csv ├── movie_names.txt ├── movie_to_genre.csv ├── movies.json ├── movies.txt ├── person.csv ├── person_names.json ├── person_to_movie.csv ├── question_classification.txt ├── spider.py ├── svm.json ├── svm_11.json ├── svm_model.py ├── templates │ ├── 【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 ├── test.py ├── utils.py ├── vocabulary.txt └── write_csv.py ├── logs ├── all_ip.txt ├── copy.txt ├── extract_ip.py ├── pro.log ├── pro1.log └── pro2.log ├── recommend_list.json ├── static ├── css │ ├── bootstrap.css │ ├── circles.css │ ├── font-awesome.css │ ├── owl.carousel.css │ ├── poposlides.css │ ├── style.css │ └── style000.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── arr.png │ ├── arrows.png │ ├── banner.png │ ├── banner1.jpg │ ├── banner2.jpg │ ├── banner3.jpg │ ├── banner4.jpg │ ├── me.jpg │ ├── mememe.jpg │ └── teambg.jpg └── js │ ├── SmoothScroll.min.js │ ├── bootstrap.js │ ├── circles.js │ ├── code.js │ ├── easing.js │ ├── jquery-2.1.4.min.js │ ├── jquery.magnific-popup.js │ ├── move-top.js │ ├── owl.carousel.js │ ├── poposlides.js │ └── search.js ├── templates ├── form.html ├── home.html ├── index.html ├── index000.html ├── index1.html ├── index2.html ├── signin-ok.html └── test_cytoscape.html └── test.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/my_flask.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/.idea/my_flask.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/README.md -------------------------------------------------------------------------------- /cnt_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/cnt_edges.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/config.ini -------------------------------------------------------------------------------- /demo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/demo/1.png -------------------------------------------------------------------------------- /demo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/demo/2.png -------------------------------------------------------------------------------- /demo/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/demo/3.png -------------------------------------------------------------------------------- /demo/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/demo/4.png -------------------------------------------------------------------------------- /flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/flask_app.py -------------------------------------------------------------------------------- /jw/Q_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/Q_Search.py -------------------------------------------------------------------------------- /jw/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/README.txt -------------------------------------------------------------------------------- /jw/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /jw/__pycache__/Q_Search.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/Q_Search.cpython-35.pyc -------------------------------------------------------------------------------- /jw/__pycache__/Q_Search.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/Q_Search.cpython-36.pyc -------------------------------------------------------------------------------- /jw/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /jw/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /jw/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /jw/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /jw/__pycache__/svm_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/svm_model.cpython-35.pyc -------------------------------------------------------------------------------- /jw/__pycache__/svm_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/svm_model.cpython-36.pyc -------------------------------------------------------------------------------- /jw/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /jw/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /jw/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/config.py -------------------------------------------------------------------------------- /jw/csv2neo4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/csv2neo4j.py -------------------------------------------------------------------------------- /jw/genre.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/genre.csv -------------------------------------------------------------------------------- /jw/genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/genres.json -------------------------------------------------------------------------------- /jw/movie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/movie.csv -------------------------------------------------------------------------------- /jw/movie_names.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jw/movie_to_genre.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/movie_to_genre.csv -------------------------------------------------------------------------------- /jw/movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/movies.json -------------------------------------------------------------------------------- /jw/movies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/movies.txt -------------------------------------------------------------------------------- /jw/person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/person.csv -------------------------------------------------------------------------------- /jw/person_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/person_names.json -------------------------------------------------------------------------------- /jw/person_to_movie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/person_to_movie.csv -------------------------------------------------------------------------------- /jw/question_classification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/question_classification.txt -------------------------------------------------------------------------------- /jw/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/spider.py -------------------------------------------------------------------------------- /jw/svm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/svm.json -------------------------------------------------------------------------------- /jw/svm_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/svm_11.json -------------------------------------------------------------------------------- /jw/svm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/svm_model.py -------------------------------------------------------------------------------- /jw/templates/【0】评分.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【0】评分.txt -------------------------------------------------------------------------------- /jw/templates/【10】某演员出演过哪些类型的电影.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【10】某演员出演过哪些类型的电影.txt -------------------------------------------------------------------------------- /jw/templates/【11】演员A和演员B合作了哪些电影.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【11】演员A和演员B合作了哪些电影.txt -------------------------------------------------------------------------------- /jw/templates/【12】某演员一共演过多少电影.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【12】某演员一共演过多少电影.txt -------------------------------------------------------------------------------- /jw/templates/【13】演员出生日期.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【13】演员出生日期.txt -------------------------------------------------------------------------------- /jw/templates/【1】上映.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【1】上映.txt -------------------------------------------------------------------------------- /jw/templates/【2】风格.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【2】风格.txt -------------------------------------------------------------------------------- /jw/templates/【3】剧情.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【3】剧情.txt -------------------------------------------------------------------------------- /jw/templates/【4】某电影有哪些演员出演.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【4】某电影有哪些演员出演.txt -------------------------------------------------------------------------------- /jw/templates/【5】演员简介.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【5】演员简介.txt -------------------------------------------------------------------------------- /jw/templates/【6】某演员出演过的类型电影有哪些.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【6】某演员出演过的类型电影有哪些.txt -------------------------------------------------------------------------------- /jw/templates/【7】某演员演了什么电影.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【7】某演员演了什么电影.txt -------------------------------------------------------------------------------- /jw/templates/【8】演员参演的电影评分【大于】.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【8】演员参演的电影评分【大于】.txt -------------------------------------------------------------------------------- /jw/templates/【9】演员参演的电影评分【小于】.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/templates/【9】演员参演的电影评分【小于】.txt -------------------------------------------------------------------------------- /jw/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/test.py -------------------------------------------------------------------------------- /jw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/utils.py -------------------------------------------------------------------------------- /jw/vocabulary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/vocabulary.txt -------------------------------------------------------------------------------- /jw/write_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/jw/write_csv.py -------------------------------------------------------------------------------- /logs/all_ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/logs/all_ip.txt -------------------------------------------------------------------------------- /logs/copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/logs/copy.txt -------------------------------------------------------------------------------- /logs/extract_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/logs/extract_ip.py -------------------------------------------------------------------------------- /logs/pro.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/logs/pro.log -------------------------------------------------------------------------------- /logs/pro1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/logs/pro1.log -------------------------------------------------------------------------------- /logs/pro2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/logs/pro2.log -------------------------------------------------------------------------------- /recommend_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/recommend_list.json -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/circles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/css/circles.css -------------------------------------------------------------------------------- /static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/css/font-awesome.css -------------------------------------------------------------------------------- /static/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/css/owl.carousel.css -------------------------------------------------------------------------------- /static/css/poposlides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/css/poposlides.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/style000.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/css/style000.css -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/images/arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/arr.png -------------------------------------------------------------------------------- /static/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/arrows.png -------------------------------------------------------------------------------- /static/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/banner.png -------------------------------------------------------------------------------- /static/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/banner1.jpg -------------------------------------------------------------------------------- /static/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/banner2.jpg -------------------------------------------------------------------------------- /static/images/banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/banner3.jpg -------------------------------------------------------------------------------- /static/images/banner4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/banner4.jpg -------------------------------------------------------------------------------- /static/images/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/me.jpg -------------------------------------------------------------------------------- /static/images/mememe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/mememe.jpg -------------------------------------------------------------------------------- /static/images/teambg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/images/teambg.jpg -------------------------------------------------------------------------------- /static/js/SmoothScroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/SmoothScroll.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/circles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/circles.js -------------------------------------------------------------------------------- /static/js/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/code.js -------------------------------------------------------------------------------- /static/js/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/easing.js -------------------------------------------------------------------------------- /static/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /static/js/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/jquery.magnific-popup.js -------------------------------------------------------------------------------- /static/js/move-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/move-top.js -------------------------------------------------------------------------------- /static/js/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/owl.carousel.js -------------------------------------------------------------------------------- /static/js/poposlides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/poposlides.js -------------------------------------------------------------------------------- /static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/static/js/search.js -------------------------------------------------------------------------------- /templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/form.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/index000.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/index000.html -------------------------------------------------------------------------------- /templates/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/index1.html -------------------------------------------------------------------------------- /templates/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/index2.html -------------------------------------------------------------------------------- /templates/signin-ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/signin-ok.html -------------------------------------------------------------------------------- /templates/test_cytoscape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/templates/test_cytoscape.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChandlerBang/Movie-QA-System/HEAD/test.py --------------------------------------------------------------------------------