diff --git a/CHANGE.txt b/CHANGE.txt index 0db8b8d..7e08ecc 100644 --- a/CHANGE.txt +++ b/CHANGE.txt @@ -1,3 +1,6 @@ +* 0.0.17: + 1. add assistment-2017 dataset! + * 0.0.16: 1. update reporthook4urlretrieve, supporting dynamic unit displaying 2. return unzip filepath instead of the original one when downloading zipped files diff --git a/EduData/DataSet/download_data/download_data.py b/EduData/DataSet/download_data/download_data.py index ee528e3..f7e8cfa 100644 --- a/EduData/DataSet/download_data/download_data.py +++ b/EduData/DataSet/download_data/download_data.py @@ -26,6 +26,8 @@ "http://base.ustc.edu.cn/data/ASSISTment/2012-2013-data-with-predictions-4-final.zip", "assistment-2015": "http://base.ustc.edu.cn/data/ASSISTment/2015_100_skill_builders_main_problems.zip", + "assistment-2017": + "http://base.ustc.edu.cn/data/ASSISTment/anonymized_full_release_competition_dataset.zip", "junyi": "http://base.ustc.edu.cn/data/JunyiAcademy_Math_Practicing_Log/junyi.rar", "KDD-CUP-2010": diff --git a/README.md b/README.md index bf88bc5..a527335 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The datasets include: * [KDD Cup 2010](https://pslcdatashop.web.cmu.edu/KDDCup/downloads.jsp) [[Analysis]](https://github.com/bigdata-ustc/EduData/blob/master/docs/KDD%20Cup%202010.ipynb) -* [ASSISTments](https://sites.google.com/site/assistmentsdata/) [[Analysis]](docs/ASSISTments) +* [ASSISTments (2009-2010, 2012-2013, 2015, 2017)](https://sites.google.com/site/assistmentsdata/) [[Analysis]](docs/ASSISTments) * [OLI Engineering Statics 2011](https://pslcdatashop.web.cmu.edu/DatasetInfo?datasetId=507) [[Analysis]](docs/OLI_Fall2011) diff --git a/setup.py b/setup.py index 7c3517a..5173503 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='EduData', - version='0.0.16', + version='0.0.17', extras_require={ 'test': test_deps, },