The Model Zoo of Cognitive Diagnosis Models
Cognitive diagnosis model (CDM) for intelligent educational systems is a type of model that infers students' knowledge states from their learning behaviors (especially exercise response logs).
Typically, the input of a CDM could be the students' response logs of items (i.e., exercises/questions), the Q-matrix that denotes the correlation between items and knowledge concepts (skills). The output is the diagnosed student knowledge states, such as students' abilities and students' proficiencies on each knowledge concepts.
Traditional CDMs include:
- IRT: item response theory, a continuous unidimensional CDM with logistic-like item response function.
- MIRT: Multidimensional item response theory, a continuous multidimensional CDM with logistic-like item response function. Mostly extended from unidimensional IRT.
- DINA: deterministic input, noisy "and" model, a discrete multidimensional CDM. Q-matrix is used to model the effect of knowledge concepts in the cognitive process, as well as guessing and slipping factors.
etc.
More recent researches about CDMs:
- FuzzyCDF: fuzzy cognitive diagnosis framework, a continuous multidimensional CDM for students' cognitive modeling with both objective and subjective items.
- NeuralCD: neural cognitive diagnosis framework, a neural-network-based general cognitive diagnosis framework. In this repository we provide the basic implementation NCDM.
- NCDM [doc] [example]
- FuzzyCDF [doc] [example]
- DINA [doc] [example]
- IRT [doc] [example]
- MCD [doc] [example]
- IRR[doc][example]
- IRR-NCDM
- IRR-DINA
- IRR-IRT
Git and install with pip
:
git clone https://github.com/bigdata-ustc/EduCDM.git
cd path/to/code
pip install .
Or directly install from pypi:
pip install EduCDM
EduCDM is still under development. More algorithms and features are going to be added and we always welcome contributions to help make EduCDM better. If you would like to contribute, please follow this guideline.
If this repository is helpful for you, please cite our work
@misc{bigdata2021educdm,
title={EduCDM},
author={bigdata-ustc},
publisher = {GitHub},
journal = {GitHub repository},
year = {2021},
howpublished = {\url{https://github.com/bigdata-ustc/EduCDM}},
}