├── .DS_Store ├── README.md ├── data └── assistments.txt ├── requirements.txt └── src ├── TensorFlowDKT.py ├── __init__.py ├── data_process.py └── train_dkt.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofengShi/DKT-TensorFlow/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofengShi/DKT-TensorFlow/HEAD/README.md -------------------------------------------------------------------------------- /data/assistments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofengShi/DKT-TensorFlow/HEAD/data/assistments.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow>=1.0.0 2 | scikit-learn>=0.17.1 3 | -------------------------------------------------------------------------------- /src/TensorFlowDKT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofengShi/DKT-TensorFlow/HEAD/src/TensorFlowDKT.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofengShi/DKT-TensorFlow/HEAD/src/data_process.py -------------------------------------------------------------------------------- /src/train_dkt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofengShi/DKT-TensorFlow/HEAD/src/train_dkt.py --------------------------------------------------------------------------------