├── README.md ├── paper ├── pom.xml └── src │ └── main │ ├── java │ └── hust │ │ └── eic │ │ └── paper │ │ ├── Paper.java │ │ ├── admin │ │ └── AdminDAO.java │ │ ├── course │ │ └── Course.java │ │ ├── servlet │ │ ├── GetAnswer.java │ │ ├── GetStudents.java │ │ ├── GetTermCourse.java │ │ ├── SaveAIGrades.java │ │ └── SubmitGrade.java │ │ ├── student │ │ ├── Grade.java │ │ └── Student.java │ │ └── teacher │ │ ├── Grades.java │ │ ├── TeacherDAO.java │ │ └── Test.java │ └── webapp │ ├── WEB-INF │ ├── applicationContext.xml │ └── web.xml │ ├── component │ └── layui │ │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ │ ├── layui.all.js │ │ └── layui.js │ ├── css │ └── common.css │ ├── icon │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.js │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 │ ├── img │ └── upload.png │ ├── index.jsp │ ├── js │ └── paper.js │ └── paper.html ├── paperProcess ├── ImgProcess │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── apps.cpython-36.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── grade.cpython-37.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── save_grades.cpython-37.pyc │ │ ├── views.cpython-36.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── grade.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── save_grades.py │ ├── tests.py │ └── views.py ├── db.sqlite3 ├── manage.py └── paperProcess │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-36.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-36.pyc │ ├── urls.cpython-37.pyc │ ├── wsgi.cpython-36.pyc │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── recognition ├── choice.py ├── cqq.py ├── data.xml ├── emnist ├── t10k-images-idx3-ubyte.gz ├── t10k-labels-idx1-ubyte.gz ├── train-images-idx3-ubyte.gz └── train-labels-idx1-ubyte.gz ├── keras_choice.py ├── model └── model_weights3.h5 ├── mytensorboard └── events.out.tfevents.1558081301.BEARBOY ├── pred_data ├── choiceA0.jpg ├── choiceA1.jpg ├── choiceA2.jpg ├── choiceA3.jpg ├── choiceA4.jpg ├── choiceA5.jpg ├── choiceA6.jpg ├── choiceA7.jpg ├── choiceA8.jpg ├── choiceA9.jpg ├── choiceB0.jpg ├── choiceB1.jpg ├── choiceB2.jpg ├── choiceB3.jpg ├── choiceB4.jpg ├── choiceB5.jpg ├── choiceB6.jpg ├── choiceB7.jpg ├── choiceB8.jpg └── choiceB9.jpg ├── process ├── step1.jpg ├── step2.jpg ├── step3.jpg ├── step4.jpg └── step5.jpg ├── processed_data ├── choiceA0.jpg ├── choiceA1.jpg ├── choiceA2.jpg ├── choiceA3.jpg ├── choiceA4.jpg ├── choiceA5.jpg ├── choiceA6.jpg ├── choiceA7.jpg ├── choiceA8.jpg ├── choiceA9.jpg ├── choiceB0.jpg ├── choiceB1.jpg ├── choiceB2.jpg ├── choiceB3.jpg ├── choiceB4.jpg ├── choiceB5.jpg ├── choiceB6.jpg ├── choiceB7.jpg ├── choiceB8.jpg └── choiceB9.jpg ├── stu_num.py ├── thresh1.py └── xuehao_keras_weight.h5 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/README.md -------------------------------------------------------------------------------- /paper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/pom.xml -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/Paper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/Paper.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/admin/AdminDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/admin/AdminDAO.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/course/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/course/Course.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/servlet/GetAnswer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/servlet/GetAnswer.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/servlet/GetStudents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/servlet/GetStudents.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/servlet/GetTermCourse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/servlet/GetTermCourse.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/servlet/SaveAIGrades.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/servlet/SaveAIGrades.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/servlet/SubmitGrade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/servlet/SubmitGrade.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/student/Grade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/student/Grade.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/student/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/student/Student.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/teacher/Grades.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/teacher/Grades.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/teacher/TeacherDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/teacher/TeacherDAO.java -------------------------------------------------------------------------------- /paper/src/main/java/hust/eic/paper/teacher/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/java/hust/eic/paper/teacher/Test.java -------------------------------------------------------------------------------- /paper/src/main/webapp/WEB-INF/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/WEB-INF/applicationContext.xml -------------------------------------------------------------------------------- /paper/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/layui.css -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/code.css -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/font/iconfont.eot -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/font/iconfont.svg -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/font/iconfont.woff -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/0.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/1.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/10.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/11.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/12.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/13.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/14.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/15.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/16.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/17.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/18.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/19.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/2.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/20.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/21.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/22.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/23.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/24.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/25.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/26.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/27.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/28.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/29.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/3.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/30.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/31.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/32.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/33.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/34.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/35.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/36.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/37.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/38.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/39.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/4.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/40.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/41.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/42.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/43.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/44.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/45.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/46.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/47.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/48.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/49.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/5.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/50.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/51.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/52.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/53.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/54.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/55.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/56.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/57.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/58.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/59.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/6.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/60.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/61.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/62.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/63.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/64.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/65.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/66.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/67.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/68.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/69.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/7.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/70.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/71.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/8.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/images/face/9.gif -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/code.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/colorpicker.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/element.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/form.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/rate.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/slider.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/table.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/lay/modules/util.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/layui.all.js -------------------------------------------------------------------------------- /paper/src/main/webapp/component/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/component/layui/layui.js -------------------------------------------------------------------------------- /paper/src/main/webapp/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/css/common.css -------------------------------------------------------------------------------- /paper/src/main/webapp/icon/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/icon/iconfont.css -------------------------------------------------------------------------------- /paper/src/main/webapp/icon/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/icon/iconfont.eot -------------------------------------------------------------------------------- /paper/src/main/webapp/icon/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/icon/iconfont.js -------------------------------------------------------------------------------- /paper/src/main/webapp/icon/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/icon/iconfont.svg -------------------------------------------------------------------------------- /paper/src/main/webapp/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/icon/iconfont.ttf -------------------------------------------------------------------------------- /paper/src/main/webapp/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/icon/iconfont.woff -------------------------------------------------------------------------------- /paper/src/main/webapp/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/icon/iconfont.woff2 -------------------------------------------------------------------------------- /paper/src/main/webapp/img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/img/upload.png -------------------------------------------------------------------------------- /paper/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /paper/src/main/webapp/js/paper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/js/paper.js -------------------------------------------------------------------------------- /paper/src/main/webapp/paper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paper/src/main/webapp/paper.html -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/grade.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/grade.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/save_grades.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/save_grades.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/admin.py -------------------------------------------------------------------------------- /paperProcess/ImgProcess/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/apps.py -------------------------------------------------------------------------------- /paperProcess/ImgProcess/grade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/grade.py -------------------------------------------------------------------------------- /paperProcess/ImgProcess/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paperProcess/ImgProcess/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/ImgProcess/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/models.py -------------------------------------------------------------------------------- /paperProcess/ImgProcess/save_grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/save_grades.py -------------------------------------------------------------------------------- /paperProcess/ImgProcess/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/tests.py -------------------------------------------------------------------------------- /paperProcess/ImgProcess/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/ImgProcess/views.py -------------------------------------------------------------------------------- /paperProcess/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/db.sqlite3 -------------------------------------------------------------------------------- /paperProcess/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/manage.py -------------------------------------------------------------------------------- /paperProcess/paperProcess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /paperProcess/paperProcess/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/settings.py -------------------------------------------------------------------------------- /paperProcess/paperProcess/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/urls.py -------------------------------------------------------------------------------- /paperProcess/paperProcess/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/paperProcess/paperProcess/wsgi.py -------------------------------------------------------------------------------- /recognition/choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/choice.py -------------------------------------------------------------------------------- /recognition/cqq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/cqq.py -------------------------------------------------------------------------------- /recognition/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/data.xml -------------------------------------------------------------------------------- /recognition/emnist/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/emnist/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /recognition/emnist/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/emnist/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /recognition/emnist/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/emnist/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /recognition/emnist/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/emnist/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /recognition/keras_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/keras_choice.py -------------------------------------------------------------------------------- /recognition/model/model_weights3.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/model/model_weights3.h5 -------------------------------------------------------------------------------- /recognition/mytensorboard/events.out.tfevents.1558081301.BEARBOY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/mytensorboard/events.out.tfevents.1558081301.BEARBOY -------------------------------------------------------------------------------- /recognition/pred_data/choiceA0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA0.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA1.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA2.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA3.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA4.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA5.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA6.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA7.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA8.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceA9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceA9.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB0.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB1.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB2.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB3.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB4.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB5.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB6.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB7.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB8.jpg -------------------------------------------------------------------------------- /recognition/pred_data/choiceB9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/pred_data/choiceB9.jpg -------------------------------------------------------------------------------- /recognition/process/step1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/process/step1.jpg -------------------------------------------------------------------------------- /recognition/process/step2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/process/step2.jpg -------------------------------------------------------------------------------- /recognition/process/step3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/process/step3.jpg -------------------------------------------------------------------------------- /recognition/process/step4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/process/step4.jpg -------------------------------------------------------------------------------- /recognition/process/step5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/process/step5.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA0.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA1.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA2.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA3.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA4.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA5.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA6.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA7.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA8.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceA9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceA9.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB0.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB1.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB2.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB3.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB4.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB5.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB6.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB7.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB8.jpg -------------------------------------------------------------------------------- /recognition/processed_data/choiceB9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/processed_data/choiceB9.jpg -------------------------------------------------------------------------------- /recognition/stu_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/stu_num.py -------------------------------------------------------------------------------- /recognition/thresh1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/thresh1.py -------------------------------------------------------------------------------- /recognition/xuehao_keras_weight.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-cqq/AIPaper/HEAD/recognition/xuehao_keras_weight.h5 --------------------------------------------------------------------------------