├── LICENSE ├── README.assets ├── image-20240424010725459.png ├── image-20240424010739677.png ├── image-20240424010757102.png ├── image-20240424010805777.png ├── image-20240424010816079.png └── image-20240424010842901.png ├── README.md ├── Web ├── Base │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backend.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── KG │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backend.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── QA │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backend.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── Web │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── static │ ├── css │ │ ├── button.css │ │ └── option.css │ ├── fonts │ │ ├── fonts2.woff2 │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── index.jpg │ │ └── math.jpg │ └── js │ │ ├── chat.js │ │ ├── createreq.js │ │ ├── entityRecognition.js │ │ ├── graph.js │ │ ├── graph_get.js │ │ ├── relationExtraction.js │ │ ├── tables.js │ │ └── toggle.js └── templates │ ├── 404.html │ ├── 500.html │ ├── courses_overview.html │ ├── index.html │ ├── info_query.html │ ├── question_answer.html │ ├── study_route.html │ └── welcome.html └── neo4j_db ├── __init__.py ├── course_graph.py └── data ├── 知识模块.csv ├── 知识要点.csv ├── 课程.csv └── 课程模块.csv /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/image-20240424010725459.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/README.assets/image-20240424010725459.png -------------------------------------------------------------------------------- /README.assets/image-20240424010739677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/README.assets/image-20240424010739677.png -------------------------------------------------------------------------------- /README.assets/image-20240424010757102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/README.assets/image-20240424010757102.png -------------------------------------------------------------------------------- /README.assets/image-20240424010805777.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/README.assets/image-20240424010805777.png -------------------------------------------------------------------------------- /README.assets/image-20240424010816079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/README.assets/image-20240424010816079.png -------------------------------------------------------------------------------- /README.assets/image-20240424010842901.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/README.assets/image-20240424010842901.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/README.md -------------------------------------------------------------------------------- /Web/Base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/Base/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Base/admin.py -------------------------------------------------------------------------------- /Web/Base/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Base/apps.py -------------------------------------------------------------------------------- /Web/Base/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Base/backend.py -------------------------------------------------------------------------------- /Web/Base/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/Base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Base/models.py -------------------------------------------------------------------------------- /Web/Base/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Base/tests.py -------------------------------------------------------------------------------- /Web/Base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Base/urls.py -------------------------------------------------------------------------------- /Web/Base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Base/views.py -------------------------------------------------------------------------------- /Web/KG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/KG/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/KG/admin.py -------------------------------------------------------------------------------- /Web/KG/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/KG/apps.py -------------------------------------------------------------------------------- /Web/KG/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/KG/backend.py -------------------------------------------------------------------------------- /Web/KG/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/KG/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/KG/models.py -------------------------------------------------------------------------------- /Web/KG/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/KG/tests.py -------------------------------------------------------------------------------- /Web/KG/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/KG/urls.py -------------------------------------------------------------------------------- /Web/KG/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/KG/views.py -------------------------------------------------------------------------------- /Web/QA/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/QA/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/QA/admin.py -------------------------------------------------------------------------------- /Web/QA/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/QA/apps.py -------------------------------------------------------------------------------- /Web/QA/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/QA/backend.py -------------------------------------------------------------------------------- /Web/QA/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/QA/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/QA/models.py -------------------------------------------------------------------------------- /Web/QA/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/QA/tests.py -------------------------------------------------------------------------------- /Web/QA/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/QA/urls.py -------------------------------------------------------------------------------- /Web/QA/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/QA/views.py -------------------------------------------------------------------------------- /Web/Web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/Web/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Web/asgi.py -------------------------------------------------------------------------------- /Web/Web/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Web/settings.py -------------------------------------------------------------------------------- /Web/Web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Web/urls.py -------------------------------------------------------------------------------- /Web/Web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/Web/wsgi.py -------------------------------------------------------------------------------- /Web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/manage.py -------------------------------------------------------------------------------- /Web/static/css/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/css/button.css -------------------------------------------------------------------------------- /Web/static/css/option.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/css/option.css -------------------------------------------------------------------------------- /Web/static/fonts/fonts2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/fonts/fonts2.woff2 -------------------------------------------------------------------------------- /Web/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Web/static/img/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/img/index.jpg -------------------------------------------------------------------------------- /Web/static/img/math.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/img/math.jpg -------------------------------------------------------------------------------- /Web/static/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/chat.js -------------------------------------------------------------------------------- /Web/static/js/createreq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/createreq.js -------------------------------------------------------------------------------- /Web/static/js/entityRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/entityRecognition.js -------------------------------------------------------------------------------- /Web/static/js/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/graph.js -------------------------------------------------------------------------------- /Web/static/js/graph_get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/graph_get.js -------------------------------------------------------------------------------- /Web/static/js/relationExtraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/relationExtraction.js -------------------------------------------------------------------------------- /Web/static/js/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/tables.js -------------------------------------------------------------------------------- /Web/static/js/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/static/js/toggle.js -------------------------------------------------------------------------------- /Web/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/404.html -------------------------------------------------------------------------------- /Web/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/500.html -------------------------------------------------------------------------------- /Web/templates/courses_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/courses_overview.html -------------------------------------------------------------------------------- /Web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/index.html -------------------------------------------------------------------------------- /Web/templates/info_query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/info_query.html -------------------------------------------------------------------------------- /Web/templates/question_answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/question_answer.html -------------------------------------------------------------------------------- /Web/templates/study_route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/study_route.html -------------------------------------------------------------------------------- /Web/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/Web/templates/welcome.html -------------------------------------------------------------------------------- /neo4j_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neo4j_db/course_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/neo4j_db/course_graph.py -------------------------------------------------------------------------------- /neo4j_db/data/知识模块.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/neo4j_db/data/知识模块.csv -------------------------------------------------------------------------------- /neo4j_db/data/知识要点.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/neo4j_db/data/知识要点.csv -------------------------------------------------------------------------------- /neo4j_db/data/课程.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/neo4j_db/data/课程.csv -------------------------------------------------------------------------------- /neo4j_db/data/课程模块.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityUniverse0/Mathematical-Courses-Knowledge-Graph/HEAD/neo4j_db/data/课程模块.csv --------------------------------------------------------------------------------