├── KG4Ex.png ├── README.md ├── codes ├── dataloader.py ├── model.py ├── models │ ├── .gitignore │ └── algebra2005 │ │ ├── .gitignore │ │ └── TransE_adv │ │ ├── checkpoint │ │ ├── config.json │ │ ├── entity_embedding.npy │ │ ├── relation_embedding.npy │ │ └── train.log ├── run.py ├── run.sh └── test_TransE .py ├── data ├── .gitignore └── algebra2005 │ ├── Q.txt │ ├── algebra2005_uid_kc_response.txt │ ├── entities.dict │ ├── relations.dict │ ├── test_triples.txt │ └── triples.txt ├── pyKT_example └── Algebra2005_head_10.csv ├── questionnaire.txt └── requirements.txt /KG4Ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/KG4Ex.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/README.md -------------------------------------------------------------------------------- /codes/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/dataloader.py -------------------------------------------------------------------------------- /codes/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/model.py -------------------------------------------------------------------------------- /codes/models/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codes/models/algebra2005/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codes/models/algebra2005/TransE_adv/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/models/algebra2005/TransE_adv/checkpoint -------------------------------------------------------------------------------- /codes/models/algebra2005/TransE_adv/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/models/algebra2005/TransE_adv/config.json -------------------------------------------------------------------------------- /codes/models/algebra2005/TransE_adv/entity_embedding.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/models/algebra2005/TransE_adv/entity_embedding.npy -------------------------------------------------------------------------------- /codes/models/algebra2005/TransE_adv/relation_embedding.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/models/algebra2005/TransE_adv/relation_embedding.npy -------------------------------------------------------------------------------- /codes/models/algebra2005/TransE_adv/train.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/models/algebra2005/TransE_adv/train.log -------------------------------------------------------------------------------- /codes/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/run.py -------------------------------------------------------------------------------- /codes/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/run.sh -------------------------------------------------------------------------------- /codes/test_TransE .py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/codes/test_TransE .py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/algebra2005/Q.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/data/algebra2005/Q.txt -------------------------------------------------------------------------------- /data/algebra2005/algebra2005_uid_kc_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/data/algebra2005/algebra2005_uid_kc_response.txt -------------------------------------------------------------------------------- /data/algebra2005/entities.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/data/algebra2005/entities.dict -------------------------------------------------------------------------------- /data/algebra2005/relations.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/data/algebra2005/relations.dict -------------------------------------------------------------------------------- /data/algebra2005/test_triples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/data/algebra2005/test_triples.txt -------------------------------------------------------------------------------- /data/algebra2005/triples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/data/algebra2005/triples.txt -------------------------------------------------------------------------------- /pyKT_example/Algebra2005_head_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/pyKT_example/Algebra2005_head_10.csv -------------------------------------------------------------------------------- /questionnaire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/questionnaire.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chanllon/KG4EX.Exercise-Recommendation/HEAD/requirements.txt --------------------------------------------------------------------------------