├── README.md ├── corpus └── jieba.txt ├── data ├── cv_1000_raw_id.bin ├── cv_1000_raw_id_backup.bin ├── data_view.py ├── pic │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── sample_1000.bin ├── sample_cv_1000_dict_id.bin └── sample_cv_1000_raw.bin ├── db.sqlite3 ├── dnn_model.h5 ├── dnn_model_backup.h5 ├── manage.py ├── plot.py ├── requirements.txt ├── resume_recommender ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── util ├── __init__.py ├── knowledge_graph.py ├── parse.py └── tools.py └── webapp ├── __init__.py ├── admin.py ├── apps.py ├── migrations └── __init__.py ├── models.py ├── static ├── books.json ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── custom.css ├── echarts-wordcloud.js ├── echarts.min.js ├── jquery-3.1.1.min.js └── signin.css ├── templates ├── about.html ├── analysis.html ├── base.html ├── cv_list.html ├── detail.html ├── index.html ├── result.html └── statistics.html ├── tests.py ├── urls.py └── views.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/README.md -------------------------------------------------------------------------------- /corpus/jieba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/corpus/jieba.txt -------------------------------------------------------------------------------- /data/cv_1000_raw_id.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/cv_1000_raw_id.bin -------------------------------------------------------------------------------- /data/cv_1000_raw_id_backup.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/cv_1000_raw_id_backup.bin -------------------------------------------------------------------------------- /data/data_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/data_view.py -------------------------------------------------------------------------------- /data/pic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/pic/1.png -------------------------------------------------------------------------------- /data/pic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/pic/2.png -------------------------------------------------------------------------------- /data/pic/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/pic/3.png -------------------------------------------------------------------------------- /data/pic/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/pic/4.png -------------------------------------------------------------------------------- /data/pic/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/pic/5.png -------------------------------------------------------------------------------- /data/pic/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/pic/6.png -------------------------------------------------------------------------------- /data/sample_1000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/sample_1000.bin -------------------------------------------------------------------------------- /data/sample_cv_1000_dict_id.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/sample_cv_1000_dict_id.bin -------------------------------------------------------------------------------- /data/sample_cv_1000_raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/data/sample_cv_1000_raw.bin -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dnn_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/dnn_model.h5 -------------------------------------------------------------------------------- /dnn_model_backup.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/dnn_model_backup.h5 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/manage.py -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/plot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/requirements.txt -------------------------------------------------------------------------------- /resume_recommender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resume_recommender/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/resume_recommender/settings.py -------------------------------------------------------------------------------- /resume_recommender/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/resume_recommender/urls.py -------------------------------------------------------------------------------- /resume_recommender/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/resume_recommender/wsgi.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/knowledge_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/util/knowledge_graph.py -------------------------------------------------------------------------------- /util/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/util/parse.py -------------------------------------------------------------------------------- /util/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/util/tools.py -------------------------------------------------------------------------------- /webapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/admin.py -------------------------------------------------------------------------------- /webapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/apps.py -------------------------------------------------------------------------------- /webapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/models.py -------------------------------------------------------------------------------- /webapp/static/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/books.json -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /webapp/static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /webapp/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /webapp/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /webapp/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /webapp/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /webapp/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /webapp/static/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/bootstrap/js/npm.js -------------------------------------------------------------------------------- /webapp/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/custom.css -------------------------------------------------------------------------------- /webapp/static/echarts-wordcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/echarts-wordcloud.js -------------------------------------------------------------------------------- /webapp/static/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/echarts.min.js -------------------------------------------------------------------------------- /webapp/static/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /webapp/static/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/static/signin.css -------------------------------------------------------------------------------- /webapp/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/about.html -------------------------------------------------------------------------------- /webapp/templates/analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/analysis.html -------------------------------------------------------------------------------- /webapp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/base.html -------------------------------------------------------------------------------- /webapp/templates/cv_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/cv_list.html -------------------------------------------------------------------------------- /webapp/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/detail.html -------------------------------------------------------------------------------- /webapp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/index.html -------------------------------------------------------------------------------- /webapp/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/result.html -------------------------------------------------------------------------------- /webapp/templates/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/templates/statistics.html -------------------------------------------------------------------------------- /webapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/tests.py -------------------------------------------------------------------------------- /webapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/urls.py -------------------------------------------------------------------------------- /webapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weikoi/Resume_Recommender/HEAD/webapp/views.py --------------------------------------------------------------------------------