--- license: cc-by-nc-4.0 extra_gated_prompt: "You agree to our [Responsible Use Guidelines](https://www.etrialstestbed.org/mathnet57963-guidelines)." extra_gated_fields: First and Last Name: text Affiliation(university, company, etc): text Country: country Why are you asking to use this dataset?: text How are you going to use this dataset?: text How will you store and secure this data?: text Do you have a university-affiliated email we could use to verify your request? If so, please enter it, if not, please explain why: text I agree to use this dataset for non-commercial use ONLY: checkbox While we think it's impossible for you to identify a student from these answers, you need to agree to not try to do so, and you also need to inform us if you find any PII in any of the images with the filenames: checkbox Check box - I agree that this data will be stored on secured institutional systems, will not be shared with unauthorized parties and will deleted or returned to ASSISTments when my research is complete: checkbox configs: - config_name: Foundational ASSIST Dataset data_files: Data/Problems.csv - config_name: Interactions data_files: Data/Interactions.csv - config_name: Skills data_files: Data/Skills.csv --- **Access requests will be faster if you have a university or research-affiliated email associated with your Hugging Face account** **Unfortunate news:** Please note that this project is primarily supported by federal grants from the US government. As such, we need to follow certain regulations. Sadly, one is that we cannot share data with researchers from countries designated as ["Countries of concern"](https://www.state.gov/countries-of-particular-concern-special-watch-list-countries-entities-of-particular-concern). We hope to soon share this dataset with the many fabulous researchers from these countries, but as of today, we are not legally permitted to do so. **IMPORTANT UPDATE ON 3/19:** Due to an issue with git LFS 700k rows in interactions.csv were missing. Please redownload the dataset to use these rows. # Overview of Foundational ASSIST Foundational ASSIST is a dataset containing all natural text of problems and student answers as recorded by ASSISTments. The problems are from from Illustrative Mathematics 6th - 8th grade math curriculum, a common core aligned curriculum popular in the United States. The data is in the "Data" folder. The code used to generate results in the original paper by Worden et al. is in the Code folder, and the results (in case you do not wish to reinference) are in the "Results" folder. The dataset is comprised of three files: 1. **Interactions**, which contains students attempts of problems, 2. **Problems**, which includes information relevant to problems, and 3. **Skills**, which links Problems to skills. The dataset was curated to include 5,000 unique students who have each completed between 211-421 problems in ASSISTments. The dataset includes 1.7 million instances of students solving problems, complete with the answer text, problem text, distractor text, and more. # Interactions File Interactions consists of 1,722,169 unique instances of students solving problems. The information provided includes a) problem_id, linking to Problems b) hint_count, the number of hints the student requested c) answer_text, the exact text of their first answer d) saw_answer, a boolean indicating whether the student requested to see the correct answer e) discrete_score, 0 the students score f) end_time, the time at which the student put in the correct answer to the problem g) user_xid, a unique identifier for each student. Note that ASSISTments provides a discrete_score of 1 only if the student gets the problem correct on their first attempt, without requesting any support. If the student requests a hint, requests the answer, or has multiple tries they receive a 0. Accordingly, a student's answer can be the correct answer, but they can receive a 0 if the student requests a hint or sees the answer before entering the answer. This is shown in “table 7 cognitive accuracy when answers are incorrect” in our paper. # Problems File This file consists of information about 3,395 unique problems. The columns include 1. Problem Set Id, which links problems that follow one another 2. Problem Part, which indicates where in the Problem Set the problem occurs 3. Problem Type, describing the type of problem 4. Answer Type, describing the type of answer (see below table or more information) 5. Problem Body, the problem text with HTML or markup illustrating exactly what the student saw (code to convert to natural language is available on the github) 6. Fill-in Options 7. Fill-in Answers 8. Multiple Choice Options 9. Multiple Choice Answers 10. problem_id Problem Set example: PSB6N4 consists of three problems. The first is problem_id 151389 (as it has ‘Problem Part’ = 1, the second is problem_id 151533, and the third/last is 151647.
| Answer Type | Description | Fill-in Options | Fill-in Answers | Multiple Choice Options | Multiple Choice Answers |
| Numeric | The student must type in the correct number | The correct answer. If there are multiple correct answers they are separated by a “,”. | The correct answer. If there are multiple correct answers they are separated by a “,”. | n/a | n/a |
| Drop Down | The student must select the correct option from a drop-down menu. These are similar to multiple choice | All the drop down options, separated by “</p>,” | The correct dropdown option. | n/a | n/a |
| Algebraic Expression | The student must type in the correct, short, algebraic expression, or a similar equivalent expression. E.g. if the answer is a^2+b^2 then b^2+a^2 would also be correct. | The correct answer. If there are multiple correct answers they are separated by a “,”. | The correct answer. If there are multiple correct answers they are separated by a “,”. | n/a | n/a |
| Ordering | The student must order some values in some order. Note the initial order of how these are presented to students is randomized. | The correct order of objects, separated by “,”. | The correct order of objects, separated by “,”. | n/a | n/a |
| Exact Match | The student must type in exactly the correct answer. This could be a number, expression, point, list, etc. | The correct answer. If there are multiple correct answers they are separated by a “,”. Note that some answers, e.g. lists, require the whole text (1,2,3) and there is only a single answer. | The correct answer. If there are multiple correct answers they are separated by a “,”. Note that some answers, e.g. lists, require the whole text (1,2,3) and there is only a single answer. | n/a | n/a |
| Exact Fraction | The student must type in exactly the correct fraction. | The correct answer. If there are multiple correct answers they are separated by a “,”. | The correct answer. If there are multiple correct answers they are separated by a “,”. | n/a | n/a |
| Numeric Expression | The student must type in a numeric expression. Note that simplification occurs, e.g. if the answer is 11^3, 1331 is also considered correct. | The correct answer. If there are multiple correct answers they are separated by a “,”. | The correct answer. If there are multiple correct answers they are separated by a “,”. | n/a | n/a |
| Multiple Choice | The student must select the correct option. | n/a | n/a | A list of options, separated by ‘||’. | The correct option. |
| Check all that apply | The student must select all correct option(s). | n/a | n/a | A list of options, separated by ‘||’. | The correct option(s), separated by ‘||’. |