├── README.md ├── data └── mini_data │ ├── history_test.pkl │ ├── history_train.pkl │ ├── history_valid.pkl │ ├── problem_skill_maxSkillOfProblem_number.pkl │ ├── problem_skills_relation.pkl │ └── skill_problems_map.pkl ├── dataset.py ├── main copy.py ├── main.py ├── models.py ├── modules.py ├── run └── 1 │ └── log.txt ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/README.md -------------------------------------------------------------------------------- /data/mini_data/history_test.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/data/mini_data/history_test.pkl -------------------------------------------------------------------------------- /data/mini_data/history_train.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/data/mini_data/history_train.pkl -------------------------------------------------------------------------------- /data/mini_data/history_valid.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/data/mini_data/history_valid.pkl -------------------------------------------------------------------------------- /data/mini_data/problem_skill_maxSkillOfProblem_number.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/data/mini_data/problem_skill_maxSkillOfProblem_number.pkl -------------------------------------------------------------------------------- /data/mini_data/problem_skills_relation.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/data/mini_data/problem_skills_relation.pkl -------------------------------------------------------------------------------- /data/mini_data/skill_problems_map.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/data/mini_data/skill_problems_map.pkl -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/dataset.py -------------------------------------------------------------------------------- /main copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/main copy.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/modules.py -------------------------------------------------------------------------------- /run/1/log.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubg0/CoKT/HEAD/utils.py --------------------------------------------------------------------------------