| { |
| "paper_id": "2021", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T01:09:46.103789Z" |
| }, |
| "title": "On the application of Transformers for estimating the difficulty of Multiple-Choice Questions from text", |
| "authors": [ |
| { |
| "first": "Luca", |
| "middle": [], |
| "last": "Benedetto", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Politecnico di Milano", |
| "location": { |
| "settlement": "Milan", |
| "country": "Italy" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Paolo", |
| "middle": [], |
| "last": "Cremonesi", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Politecnico di Milano", |
| "location": { |
| "settlement": "Milan", |
| "country": "Italy" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Giovanni", |
| "middle": [], |
| "last": "Aradelli", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Andrea", |
| "middle": [], |
| "last": "Cappelli", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Andrea", |
| "middle": [], |
| "last": "Giussani", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Roberto", |
| "middle": [], |
| "last": "Turrin", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "Classical approaches to question calibration are either subjective or require newly created questions to be deployed before being calibrated. Recent works explored the possibility of estimating question difficulty from text, but did not experiment with the most recent NLP models, in particular Transformers. In this paper, we compare the performance of previous literature with Transformer models experimenting on a public and a private dataset. Our experimental results show that Transformers are capable of outperforming previously proposed models. Moreover, if an additional corpus of related documents is available, Transformers can leverage that information to further improve calibration accuracy. We characterize the dependence of the model performance on some properties of the questions, showing that it performs best on questions ending with a question mark and Multiple-Choice Questions (MCQs) with one correct choice.", |
| "pdf_parse": { |
| "paper_id": "2021", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "Classical approaches to question calibration are either subjective or require newly created questions to be deployed before being calibrated. Recent works explored the possibility of estimating question difficulty from text, but did not experiment with the most recent NLP models, in particular Transformers. In this paper, we compare the performance of previous literature with Transformer models experimenting on a public and a private dataset. Our experimental results show that Transformers are capable of outperforming previously proposed models. Moreover, if an additional corpus of related documents is available, Transformers can leverage that information to further improve calibration accuracy. We characterize the dependence of the model performance on some properties of the questions, showing that it performs best on questions ending with a question mark and Multiple-Choice Questions (MCQs) with one correct choice.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Question Difficulty Estimation (QDE), also referred to as \"calibration\", is a crucial task in education. Indeed, since question difficulty can be leveraged to assess the skill level of students under examination, wrongly calibrated questions are cause of erroneous estimations. Also, an accurate calibration enables to detect and discard questions that are too easy or too difficult for certain students. Traditionally, QDE is performed manually or with pretesting. Manual calibration is intrinsically subjective and inconsistent. Pretesting leads indeed to an accurate and consistent calibration, but i) introduces a long delay between question generation and when the question can be used to score students, and ii) requires to deploy the new questions before actually using them for scoring. To address the issues of the traditional approaches to calibration, recent research tried to leverage Natural Language Processing (NLP) techniques to perform QDE from question text: the idea is to use some pretested questions to train a model that performs QDE from text and thus eliminates (or at least reduces) the need for pretesting of new questions. Although such works showed promising results, none of them experimented with the latest NLP research, such as Transformer-based models (Vaswani et al., 2017) . In this work, we aim at filling that gap, studying how different Transformers, also trained with different approaches, compare with the current state of the art. We evaluate several models built upon the pre-trained BERT (Devlin et al., 2019) and DistilBERT (Sanh et al., 2019) language models on the publicly available ASSISTments dataset and the private CloudAcademy dataset. By using data from two different domains, we add to the growing body of evidence showing that item text can be used to perform QDE. More precisely, we show that -after being fine-tuned on the task of QDE from text -Transformer models are capable of calibrating newly generated questions more accurately than previously proposed approaches. On top of that, we explore the possibility of leveraging additional textual information which might be available (e.g. transcript of video lectures) to perform an additional pre-training of the Transformers before fine-tuning them for QDE, and show that such approach can be used to further improve the accuracy. Overall, Transformer-based models are capable of reducing the RMSE by up tp 6.5%, with respect to previous approaches. Lastly, we perform an analysis of the best performing model to under-stand whether some question characteristics (e.g. text length, question type) particularly affect its performance. Code is available at https://github. com/aradelli/transformers-for-qde.", |
| "cite_spans": [ |
| { |
| "start": 1285, |
| "end": 1307, |
| "text": "(Vaswani et al., 2017)", |
| "ref_id": "BIBREF15" |
| }, |
| { |
| "start": 1531, |
| "end": 1552, |
| "text": "(Devlin et al., 2019)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 1568, |
| "end": 1587, |
| "text": "(Sanh et al., 2019)", |
| "ref_id": "BIBREF14" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "There is a large interest in understanding how textual features affect item difficulty (El Masri et al., 2017; Hickendorff, 2013) , and this is not limited to the educational domain: for instance Wang et al. (2014) focus on difficulty estimation in community question answering systems. The first works addressing QDE from text focused on MCQs and used deterministic approaches based on bag of words and similarities between question, answer, and distractors (Alsubait et al., 2013; Yaneva et al., 2018; Kurdi et al., 2016) . Recent works mostly use machine learning approaches. Huang et al. (2017) proposed a neural network for QDE of \"reading\" problems, in which the answer has to be found in a text provided together with the question. The model receives as input both the text of the question and the document, thus it actually estimates the difficulty of finding the correct answer in the provided document. This is a major difference from all other works, in which the difficulty depends on the questions only. Yaneva et al. (2019) introduced a model to estimate the p-value of questions from text. The p-value of a question is defined as the fraction of students who correctly answered it and does not account for different skill levels. This model was trained using the text of questions and a large dataset of medical documents, thus it cannot be used if an analogous dataset is not available. Similarly, the model proposed in (Qiu et al., 2019) requires for training a dataset of medical documents in addition to the question texts. The model is made of two neural architectures to estimate the wrongness (i.e. 1 \u2212 p-value) of newly-generated MCQs, considering it as made of two components which indicate i) how difficult it is to choose between the possible choices, and ii) how difficult it is to recall the knowledge required to answer the question. Benedetto et al. (2020b) proposed R2DE, a model that estimates the difficulty and discrimination, as defined in Item Response Theory (IRT) (Hambleton et al., 1991) , of newly generated MCQs. R2DE computes TF-IDF features from the text of the questions and the text of the possible choices, and feeds two Random Forest regressors with such features. The performance of R2DE was improved in (Benedetto et al., 2020a) , with the addition of readability and linguistics features.", |
| "cite_spans": [ |
| { |
| "start": 87, |
| "end": 110, |
| "text": "(El Masri et al., 2017;", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 111, |
| "end": 129, |
| "text": "Hickendorff, 2013)", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 196, |
| "end": 214, |
| "text": "Wang et al. (2014)", |
| "ref_id": "BIBREF16" |
| }, |
| { |
| "start": 459, |
| "end": 482, |
| "text": "(Alsubait et al., 2013;", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 483, |
| "end": 503, |
| "text": "Yaneva et al., 2018;", |
| "ref_id": "BIBREF19" |
| }, |
| { |
| "start": 504, |
| "end": 523, |
| "text": "Kurdi et al., 2016)", |
| "ref_id": "BIBREF10" |
| }, |
| { |
| "start": 579, |
| "end": 598, |
| "text": "Huang et al. (2017)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 1017, |
| "end": 1037, |
| "text": "Yaneva et al. (2019)", |
| "ref_id": "BIBREF18" |
| }, |
| { |
| "start": 1436, |
| "end": 1454, |
| "text": "(Qiu et al., 2019)", |
| "ref_id": "BIBREF12" |
| }, |
| { |
| "start": 1863, |
| "end": 1887, |
| "text": "Benedetto et al. (2020b)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 2002, |
| "end": 2026, |
| "text": "(Hambleton et al., 1991)", |
| "ref_id": "BIBREF6" |
| }, |
| { |
| "start": 2252, |
| "end": 2277, |
| "text": "(Benedetto et al., 2020a)", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "To the best of our knowledge, (Xue et al., 2020) is the first work that explored the effects of transfer learning for QDE from text. Specifically, the authors fine-tune pre-trained ELMo embeddings (Peters et al., 2018) for the task of response time prediction, and subsequently perform a second finetuning for the task of p-value estimation. Differently from all the other models, this one and R2DE can be trained using only question text, without needing an additional dataset of related documents.", |
| "cite_spans": [ |
| { |
| "start": 197, |
| "end": 218, |
| "text": "(Peters et al., 2018)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Our approach differs from previous research in several ways. First of all, we adopt transfer learning on Transformers, which are yet to be explored for QDE from text. Secondly, similarly to (Benedetto et al., 2020b,a) , we perform the estimation of the IRT difficulty which, differently from wrongness and p-value, models students' skill levels as well. Specifically, we consider the one-parameter model (Rasch, 1960 ), a logistic model that associates a skill level to each student and a difficulty level to each question (both represented as scalars). A brief introduction to the one-parameter IRT model is given in Appendix A. Thirdly, the Transformer models presented here do not necessarily require an additional dataset of documents from the same topics as the questions, and they can be trained using only question texts; however, if such dataset is available, it can be leveraged to further improve the accuracy of calibration. Lastly, each previous work experimented on one private dataset; we experiment on two datasets (one being publicly available), showing that Transformers can be successfully used for QDE in different domains.", |
| "cite_spans": [ |
| { |
| "start": 190, |
| "end": 217, |
| "text": "(Benedetto et al., 2020b,a)", |
| "ref_id": null |
| }, |
| { |
| "start": 404, |
| "end": 416, |
| "text": "(Rasch, 1960", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "BERT (Devlin et al., 2019 ) is a pre-trained language model that reached state of the art performance in many language tasks. Its key technical innovation was the application of the Transformer, a popular self-attention model (Vaswani et al., 2017) , to language modeling. BERT is originally trained to address two tasks: Masked Language Modeling (MLM) and Next Sentence Prediction (NSP). MLM consists in removing one word from the input text and asking the model to fill the gap, while in NSP the model is asked -given two input sentences -to tell whether the second sentence is a reasonable continuation to the first one. Crucially, BERT can be used for many different downstream tasks, as we do here for QDE: starting from the pre-trained model, it is sufficient to stack an additional layer on top of the original network and then retrain it on the desired task (process named \"finetuning\"). During fine-tuning, the internal weights of the pre-trained model are updated and adapted to the desired task (together with the weights of the added layer), which is both more efficient than training the whole network from scratch and capable of better results, as the knowledge of the pre-trained model is not discarded.", |
| "cite_spans": [ |
| { |
| "start": 5, |
| "end": 25, |
| "text": "(Devlin et al., 2019", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 226, |
| "end": 248, |
| "text": "(Vaswani et al., 2017)", |
| "ref_id": "BIBREF15" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction to BERT and DistilBERT", |
| "sec_num": "3" |
| }, |
| { |
| "text": "BERT is a large model and therefore requires many resources for training and fine-tuning. For this reason, we also experiment with DistilBERT (Sanh et al., 2019) , which is a language model obtained by distilling BERT. Knowledge distillation is a compression technique in which a small model is trained to reproduce the full output distribution of a larger model (Hinton et al., 2015) . With this approach, DistilBERT is able to retain 95% of BERT's performance on several language understanding tasks using about half the number of parameters of BERT. Similarly to BERT, Distil-BERT can be fine-tuned on downstream tasks and it is therefore worth exploring for QDE from text.", |
| "cite_spans": [ |
| { |
| "start": 142, |
| "end": 161, |
| "text": "(Sanh et al., 2019)", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 363, |
| "end": 384, |
| "text": "(Hinton et al., 2015)", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction to BERT and DistilBERT", |
| "sec_num": "3" |
| }, |
| { |
| "text": "This section describes how we build the different models which are compared with the current state of the art of QDE from text. These models are built upon the two pre-trained language models, finetuning them with two different approaches. The first approach consists in directly fine-tuning the pre-trained model for the task of QDE from text.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Models", |
| "sec_num": "4" |
| }, |
| { |
| "text": "The second approach is made of two steps: we i) further pre-train the pre-trained model on the task of Masked Language Modeling (MLM) to improve domain knowledge, and subsequently ii) fine-tune it on the task of QDE from text. This is all done separately for the two datasets: we do not perform any experiments across the two datasets.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Models", |
| "sec_num": "4" |
| }, |
| { |
| "text": "This is the simplest of the two approaches; the architecture used for fine-tuning is shown in Figure 1 . Given the pre-trained language model, we stack an additional fully connected layer on top of the network, in order to use that as the new output. Following the fine-tuning guidelines in (Devlin et al., 2019) , we use only the first output of the pre-trained language model. This works since the first output correspond to the special token [CLS] which is added at the beginning of the input text and is the only one used for regression and classification. Since question calibration is a regression task, the additional output layer has one neuron, and the weights of the connections with the previous layer are randomly initialized. During fine-tuning, both the weights of the additional layer and the internal weights of the pre-trained language model are updated. For the input, we use the same tokenization and the same encoding as the original models. That is, all the input samples start with the special token [CLS] and contain two sentences, separated by the [SEP] token (another special token): the first sentence is the (tokenized) question while the second one contains the (tokenized) choices' text 1 .", |
| "cite_spans": [ |
| { |
| "start": 292, |
| "end": 313, |
| "text": "(Devlin et al., 2019)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 94, |
| "end": 103, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Fine-tuning for QDE from text", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "Specifically, we experiment with three different encodings for the second sentence: i) Q only, we leave it empty, thus considering only the text of the question, ii) Q+correct, we use the text of the correct choice(s) (as in Figure 1 ), iii) Q+all, we use the text of all the possible choices, concatenating them in a single sentence. For the ASSISTments dataset, only the first encoding is possible as the text of the choices (correct answer and distractors) is not available. We also experimented a fourth approach, considering all the possible choices using several [SEP] tokens between each choice; however, this approach performed largely worse that the others, thus we do not report it here. We believe that the model, in that case, does not have enough training questions to learn the meaning of the additional separators (BERT and DistilBERT are pre-trained to use only one [SEP] token).", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 225, |
| "end": 233, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Fine-tuning for QDE from text", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "Masked Language Modeling (MLM) is a fill-in-theblank task, where a word of the input text is substituted by a [MASK] token and the model is trained to use the surrounding words to predict the word that was masked. We leverage MLM to perform an additional pre-training of the pre-trained language models before the fine-tuning on QDE from text. Our goal is to let the model learn the questions' topics more accurately than how it would do with the fine-tuning on QDE only. In order for MLM to be effective, though, we need an additional dataset of documents about the same topics that are assessed by the questions: this is available only for the CloudAcademy dataset, which contains the transcript of some of the video-lectures on the e-learning platform. In practice, we perform pretraining with MLM as follows. We randomly mask 15% of the words of the available lectures, then train the language model to predict the masked words sentence by sentence. The actual prediction is performed by stacking a fully connected layer and a softmax layer on top of the original pre-trained model: for each masked sentence, this additional layer consumes as input the contextual embedding corresponding to the [MASK] token, and tries to predict the word that should be inserted in its place. After pre-training the model on the task of MLM, the additional dense and softmax layers are removed from the network, thus leaving us with and the [SEP] token is still used only to indicate the end of the question. We use this naming (\"Sentence 1\" and \"Sentence 2\") since it is the one used in the original paper.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Pre-training for MLM", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "a pre-trained model which has the same architecture as the original one, with the only difference that all the internal weights were updated during the additional MLM pre-training. The architecture for the final fine-tuning for QDE from text is the same as the one shown in Figure 1 .", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 274, |
| "end": 282, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Pre-training for MLM", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "In this work we use the publicly available data collection provided by ASSISTments and the private CloudAcademy data collection. Both data collections are made of two datasets: i) the Answers dataset (referred to as A) and ii) the Questions dataset (Q). It is important to remark that A and Q are abstract names: we have one A dataset for CloudAcademy and one A dataset for ASSISTments (similarly for Q). A contains the students' answers: for each one, it stores the user ID, the question ID, the correctness of the answer and a timestamp. Importantly, A contains only \"first timers\", meaning that we consider only the first interaction between a student and a question. Q contains the textual information about the items: question ID, question text and, in the case of CloudAcademy, the text of the possible choices. For the experiments on CloudAcademy data, we also have access to an additional dataset -referred to as Lectures (L)which contains the transcripts of some online lectures available on the platform and is used for the additional MLM pre-training.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Datasets", |
| "sec_num": "5" |
| }, |
| { |
| "text": "ASSISTments 2 is an online tutoring system that provides instructional assistance while assessing students (Feng et al., 2009) . In practice, this means that questions -called problems -can be broken down into steps: if the student does not get the original problem correctly, he has to answer a sequence of scaffolding questions that break the problem down into steps. In the current work, we consider both original and scaffolding problems for QDE from text. An example problem and the corresponding scaffolding questions are shown in Appendix B. We filter the dataset to keep only questions that are answered by at least 50 students, to improve the reliability of the estimation of ground truth latent traits with IRT; on average, each item is answered by 151 students and each student answers to 64 different items. We also remove the questions that require external resources and the system messages (e.g. \"Submit your answer from the textbook.\", \"Sorry, that is incorrect. Let's go to the next question!\"). After removal of the unsuitable questions, the final dataset used for QDE from text contains 11,393 different items. A is publicly available for download 3 ; Q is publicly available under request 4 .", |
| "cite_spans": [ |
| { |
| "start": 107, |
| "end": 126, |
| "text": "(Feng et al., 2009)", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "ASSISTments dataset", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "CloudAcademy 5 is an e-learning provider offering online courses about IT technologies. All the questions are MCQ and we have access to the text of the possible choices. An example question is shown in Appendix B. The dataset used in our experiments is a sub-sample of the CloudAcademy data collection and it was generated in order to have only questions answered by at least 50 students. A contains 7,323,502 interactions, involving 34,696 students and 13,603 unique questions; on average, each item is answered by 304 students and each student answers to 115 different items. The overall correctness is 66%. L contains the transcript of some of the online lectures offered by CloudAcademy about the same topics (i.e. cloud technologies) assessed by the questions. L contains a total of 159,563 sentences and 3,228,038 words.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "CloudAcademy dataset", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "As displayed in Figure 2 , training is performed in two steps, repeated for the two datasets: i) the IRT model is trained in order to calibrate the questions and obtain the ground truth difficulties, then ii) these ground truth latent traits are used as target values to train the model on QDE from text.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 16, |
| "end": 24, |
| "text": "Figure 2", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "6" |
| }, |
| { |
| "text": "The first step consists in using A to estimate with IRT the target difficulty of all the questions. Specifically, we use pyirt 6 for the estimation and consider [\u22125; 5] as the possible range of difficulties. Difficulties estimated at this stage will later be used as ground truth and therefore are inserted as target values in Q. Then, Q is split into a train dataset (Q TRAIN ), used to train our model on QDE from text, and a test dataset (Q TEST ), which is used for the final evaluation of the model; we keep 80% of the questions for training and 20% for testing. At training time, we keep a portion of Q TRAIN (10%) as development set, for hyperparameter tuning.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "6" |
| }, |
| { |
| "text": "When L is used for pre-training the model, the setup is very similar. The only difference is that the regression model, before being fine-tuned on the task of QDE from text using Q TRAIN , is pre-trained on the task of MLM on L. Being an unsupervised task, we use the whole L for this.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Transformers are implemented with the transformers 7 library from HuggingFace; fine-tuning and pre-training are performed with TensorFlow 8 . Hyperparameters are shown in Appendix C.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Before comparing the Transformer models with the state of the art, we show here the performance of the different configurations, both with and without the additional pre-training on MLM. Table 1 displays the Mean Absolute Error (MAE) and the Root Mean Squared Error (RMSE) of the different configurations; the error is the difference between the IRT difficulty and the estimation of the Transformer model. The input configurations are the ones pre- Q+all. We show the mean of the errors, measured over three independent runs with different random initializations. The results shown here are obtained on Q TEST for CloudAcademy; indeed, for ASSISTments the text of the possible choices is not avail- able and therefore the only possible input configuration is Q only. Even though there is not one model configuration which clearly outperforms all the others, it can be seen that both the additional pre-training and the textual information of the possible choices are helpful in improving the accuracy of the estimation. For DistilBERT without the additional MLM pre-training the best configuration is Q+all, while in all the other cases the best input configuration is Q+correct.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 187, |
| "end": 194, |
| "text": "Table 1", |
| "ref_id": "TABREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation of the input configurations", |
| "sec_num": "7.1" |
| }, |
| { |
| "text": "As baselines, we use: i) ZeroR: predicts for all the questions the average difficulty of the training questions. ii) R2DE (Benedetto et al., 2020b) : performs difficulty estimation in two steps: the input texts are converted into feature arrays with TF-IDF and then the feature arrays are given as input to a Random Forest regression model, that performs the actual estimation. We implemented R2DE using the available code 9 . iii) ELMo (Xue et al., 2020): we re-implement this model to adapt it to our experimental datasets, and show here the results obtained with all the input configurations (on our dataset, the best performing input configuration is different than the one in the original paper). Table 2 and Table 3 show the results of the experiments on QDE for CloudAcademy and ASSISTments, by displaying the MAE and the RMSE obtained on Q TEST by the Transformer models and the chosen baselines (all the possible input configurations are considered for the baselines). For each Transformer model, only one input configuration is shown, as obtained in subsection 7.1. In order to understand how well the models estimate the difficulty of very easy and very challenging questions, we also show the MAE and RMSE measured on the questions whose difficulty b is such that |b| > 2 (also referred to as \"extreme\" questions). The results shown are the mean and the standard deviation of the errors over three independent runs. Table 2 shows that also R2DE and ELMo are able to leverage the text of the possible choices to improve the accuracy of the estimation; indeed, the best performing input configuration is Q+all for R2DE and Q+correct for ELMo. The table shows that the Transformer models generally outperform the proposed baselines on both metrics, both with and without the additional pre-training on MLM. The model that consistently and significantly outperforms all the others is BERT with Q+correct and the additional MLM pre-training. It is also interesting to remark that ELMo seems to perform estimations a bit biased towards high and low difficulties: indeed, considering overall MAE and RMSE it performs at the same level of R2DE but it is better for the estimation of \"extreme\" questions. This might also be the reason why ELMo performs better than DistilBERT without MLM on \"extreme\" questions but worse overall. All models have larger errors on \"extreme\" questions than on general ones, but the increase is different for each of them: the best performing model has an increase in the MAE of 1.19, which is lower than the other Transformers (from 1.28 to 1.41), ELMo (1.37) and R2DE (1.52). Results are similar for the RMSE: the increase is 1.19 for the best model, between 1.19 and 1.30 for the other Transformers, 1.23 for ELMo (Q+correct) and 1.37 for R2DE (Q+all). Table 3 shows results similar to Table 2: BERT is the best performing model and both Transformer models outperform the baselines. However, we can see that the errors are larger than in the previous experiment, thus suggesting that all the models are less capable at estimating the difficulty of the questions in ASSISTments. There could be several reasons for this, but we believe that this limitation is mainly due to two aspects: i) the platform allows the creation of question with images (not available to us); ii) the language used in the dataset is \"less natural\" than in CloudAcademy (e.g. many questions are equations with no additional text). ", |
| "cite_spans": [ |
| { |
| "start": 122, |
| "end": 147, |
| "text": "(Benedetto et al., 2020b)", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 702, |
| "end": 709, |
| "text": "Table 2", |
| "ref_id": "TABREF1" |
| }, |
| { |
| "start": 714, |
| "end": 721, |
| "text": "Table 3", |
| "ref_id": "TABREF2" |
| }, |
| { |
| "start": 1428, |
| "end": 1435, |
| "text": "Table 2", |
| "ref_id": "TABREF1" |
| }, |
| { |
| "start": 2789, |
| "end": 2796, |
| "text": "Table 3", |
| "ref_id": "TABREF2" |
| }, |
| { |
| "start": 2822, |
| "end": 2830, |
| "text": "Table 2:", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Comparison with state of the art", |
| "sec_num": "7.2" |
| }, |
| { |
| "text": "We analyze here some of the characteristics of the best performing model (i.e. BERT), trying to understand whether there are some question properties which particularly influence its accuracy. We perform the same analysis for R2DE, to understand whether such characteristics are a peculiarity of BERT or are shared among different models; the choice of R2DE is motivated by the fact that it is the second best performing model on the CloudAcademy dataset (excluding the other Transformer models) and it uses TF-IDF to create the features, thus a non-neural approach. We report here the results of three analyses, studying possible differences in the accuracy of QDE depending on i) input length and question difficulty, ii) number of correct choices, and iii) whether it is a cloze question. First of all, in Figure 3 we show for the two datasets the distribution of questions depending on the input length and the true difficulty; the number of questions in each bin is represented by its color. The two figures show that the distribution is far for uniform and in many areas there are not enough questions to obtain significant results from this analysis. We do not show here the distribution of CloudAcademy for the Q+all input config-uration, which is the one used by R2DE, but it is qualitatively similar to the ones displayed. Considering this distribution, we decided to focus only on some of the questions while analyzing the error depending on the input length and the true difficulty. Specifically, we keep questions i) with |b| < 3 and len <= 110 for CloudAcademy and BERT (96.4% of the questions); ii) with |b| < 3 and len <= 110 for CloudAcademy and R2DE (96.9%); iii) with |b| < 4 and len <= 80 for ASSISTments (94.3%), there is no difference between BERT and R2DE because they use the same input configuration. Figure 4 shows how the estimation error (represented by the color) of BERT and R2DE depends on the input length and the target difficulty of the questions. The error heavily depends on the target difficulty: this suggests that the two models tend to estimate difficulties closer to 0 than the target values (especially R2DE). Indeed, we have observed that both the target difficulties and the estimated difficulties follow a Gaussian distribution, with higher variance for the target difficulties. There is no clear correlation between error and input length, but in some cases it seems that the error increases with the input length (e.g. row b = \u22121 in BERT). Figure 5 shows the same analysis as Figure 4 for ASSIST- ments. The findings are very similar, but it is even more evident the fact that R2DE tends to perform predictions close to 0; the error of BERT depends less heavily on the difficulty. Again, there are no clear correlations between the input length and the accuracy of the estimation.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 809, |
| "end": 817, |
| "text": "Figure 3", |
| "ref_id": "FIGREF3" |
| }, |
| { |
| "start": 1826, |
| "end": 1834, |
| "text": "Figure 4", |
| "ref_id": "FIGREF4" |
| }, |
| { |
| "start": 2487, |
| "end": 2496, |
| "text": "Figure 5", |
| "ref_id": "FIGREF6" |
| }, |
| { |
| "start": 2524, |
| "end": 2532, |
| "text": "Figure 4", |
| "ref_id": "FIGREF4" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Analysis of the best performing model", |
| "sec_num": "7.3" |
| }, |
| { |
| "text": "In CloudAcademy, there are i) cloze questions, in which the correct choice goes in place of an underscore in the text, and ii) questions with a question mark at the end. Of the 1259 test questions, 222 are cloze questions. From the average errors for the different types of questions, we observed that both BERT and R2DE perform slightly worse on cloze questions: BERT's MAE is 0.804 on cloze questions and 0.756 on the other questions; similarly, R2DE's MAE is 0.893 on cloze questions and 0.794 on the other questions.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Analysis of the best performing model", |
| "sec_num": "7.3" |
| }, |
| { |
| "text": "Lastly, we looked at the average error depending on the number of correct choices: we compared questions with multiple correct choices (there are 141 of them in the test set) and the questions with one correct choice. For BERT, the overall MAE is 0.774 and on the questions with multiple correct choices it is 0.764; in the case of R2DE, the MAE is 0.813 overall and 0.750 for questions with multiple correct choices. This difference between the two models might be due to the nature of R2DE itself: indeed, it uses a bag of words approach thus it does not care about the position of each word. Instead, BERT uses contextual embeddings which depend on the position of each word and the encoding of multiple correct choices we performed (i.e. concatenation) might not be the better choice, especially considering that probably there are not enough questions to learn the encoding. ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Analysis of the best performing model", |
| "sec_num": "7.3" |
| }, |
| { |
| "text": "In this paper we have performed a study of how Transformer models perform in the task of QDE from text, and have proposed a model which outperforms previous approaches. Specifically, the proposed model is built upon a pre-trained BERT language model, which is fine-tuned for the task of QDE from text. Previous approaches either require an additional dataset of documents about the same topics assessed by the questions or cannot leverage such information; differently from them the proposed model is capable of outperforming state of the art approaches being trained only on the text of the questions, and can be further improved if such additional dataset is available. As an outcome from our analysis, we can say that: i) if an additional dataset is available, BERT with MLM pre-training seems to be the best performing model; ii) if the only available data is the text of the questions, DistilBERT might be a better option, as it has basically the same performance as BERT but at a fraction of the computational cost. Furthermore, we studied the effect of some questions characteristics on BERT and R2DE, comparing the two models. We have observed that the magnitude of the error naturally increases with the magnitude of the difficulty (especially for R2DE), but there is not a clear correlation between the input length and the accuracy of the estimation. We have also observed that both models are less accurate in estimating the difficulty of cloze questions, compared to questions that end with a question mark, and that the decrease in accuracy is lower for BERT. We believe that this happens because underscores are not frequent in natural language and thus the model has a chance of learning them only during the fine-tuning on QDE, not during MLM pre-training. This is probably not enough data for learning (from scratch) the meaning of underscores in exam questions. Lastly, BERT performs better on questions with only one correct choice than on questions with multiple correct choices (for the latter, it is also outperformed by R2DE). This might be due to the encoding we used for multiple correct choices, and it is worth exploring in future research. Future works could continue to dig deeper into the analysis of the model, as we believe that the accuracy of the estimation could be further improved by using an ensemble model in which different sub-models are used depending on some characteristic of the question under calibration. Also, future works will try to explore the attention layers of the proposed model, as it might provide useful information about the reasons why the model works better on some questions.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusions", |
| "sec_num": "8" |
| }, |
| { |
| "text": "We model question difficulty as defined in the oneparameter IRT model (also named Rasch model (Rasch, 1960) ), which associates a skill level \u03b8 to each student and a difficulty level b to each question. For a given question j, its latent trait b j define the item response function (i.r.f.), which indicates the probability (P C ) that a student i with skill level \u03b8 i correctly answers the question. The formula of the i.r.f. is as follows:", |
| "cite_spans": [ |
| { |
| "start": 94, |
| "end": 107, |
| "text": "(Rasch, 1960)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "A Introduction to IRT", |
| "sec_num": null |
| }, |
| { |
| "text": "EQUATION", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [ |
| { |
| "start": 0, |
| "end": 8, |
| "text": "EQUATION", |
| "ref_id": "EQREF", |
| "raw_str": "P C = 1 1 + e \u22121.7\u2022(\u03b8 i \u2212b j )", |
| "eq_num": "(1)" |
| } |
| ], |
| "section": "A Introduction to IRT", |
| "sec_num": null |
| }, |
| { |
| "text": "According to the intuition, a student with a given skill \u03b8 i has a lower probability of correctly answering more difficult questions. Also, if a question is too difficult or too easy (i.e. b j \u2192 \u221e or b j \u2192 \u2212\u221e), all the students will answer in the same way (i.e. P C \u2192 0 or P C \u2192 1) regardless of \u03b8 i . Given some students' answers to a set of questions, with IRT it is possible to estimate both the ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "A Introduction to IRT", |
| "sec_num": null |
| }, |
| { |
| "text": "The computer game Peter wants to buy will cost at least $50 and not more than $70. He earns $3 an hour running errands for his grandmother. Which inequality shows the number of hours, n, he will have to work to pay for the game?", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "ID Question Type 330", |
| "sec_num": null |
| }, |
| { |
| "text": "Original 326 What is the minimum cost of the game? Scaffolding 327 What is the maximum cost of the game? Scaffolding 328 Write an expression that represents the amount of money Peter earns in n hours. Scaffolding 329 Which inequality shows the number of hours, n, Peter will have to work to pay for the game? Scaffolding ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "ID Question Type 330", |
| "sec_num": null |
| }, |
| { |
| "text": "Question A user has launched an EBS backed EC2 instance in the US-East-1 region. The user wants to implement a disaster recovery (DR) plan for that instance by creating another instance in a European region. How can the user accomplish this? Correct choice Create an AMI of the instance and copy the AMI to the EU region. Then launch the instance from the EU AMI.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Role Text", |
| "sec_num": null |
| }, |
| { |
| "text": "Use the \"Launch more like this\" option to copy the instance from one region to another.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Distractor", |
| "sec_num": null |
| }, |
| { |
| "text": "Copy the instance from the US East region to the EU region.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Distractor", |
| "sec_num": null |
| }, |
| { |
| "text": "Copy the running instance using the \"Instance Copy\" command to the EU region.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Distractor", |
| "sec_num": null |
| }, |
| { |
| "text": "skill levels of the students and the difficulty of the questions via likelihood maximization, by selecting the configuration (i.e.the \u03b8s and bs) that maximizes the probability of the observed results. Also, it is possible to assess the knowledge level\u03b8 i of a student i from the correctness of its answers to a set of calibrated assessment items Q = q 1 , q 2 , ..., q Nq . This is done by maximizing the results of the multiplication between the i.r.f. of the questions that were answered correctly and the complementary (i.e. 1 \u2212 P C ) of the i.r.f. of the questions that were answered erroneously.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Distractor", |
| "sec_num": null |
| }, |
| { |
| "text": "An example problem from ASSISTments and the corresponding scaffolding questions are shown in Table 4 . An example question from CloudAcademy, with its correct answer and distractors, is given in Table 5 .", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 93, |
| "end": 100, |
| "text": "Table 4", |
| "ref_id": "TABREF3" |
| }, |
| { |
| "start": 195, |
| "end": 203, |
| "text": "Table 5", |
| "ref_id": "TABREF4" |
| } |
| ], |
| "eq_spans": [], |
| "section": "B Example questions", |
| "sec_num": null |
| }, |
| { |
| "text": "For fine-tuning on QDE from text we select the hyperparameters from the following pool of candi-dates:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 batch size = 16, 32, 64;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 learning rate = 1e-5, 2e-5, 3-5;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 patience early stopping = 10 epochs;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 dropout additional layer = 0.1, 0.2, 0.3, 0.4, 0.5;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 internal dropout = 0.1, 0.2, 0.3, 0.4, 0.5.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "For the additional pre-training on MLM, the hyperparameters are selected between the following candidates:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 batch size = 64;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 learning rate = 1e-5;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 number of epochs = 4, 12, 24, 36;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 dropout = 0.1.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "In both cases we use sequence length = 256 and the Adam optimizer.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C Hyperparameters", |
| "sec_num": null |
| }, |
| { |
| "text": "It is possible to have a question made of several sentences. In that case, the whole question is considered as \"Sentence 1\",", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "https://new.assistments.org/", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "https://sites.google.com/ site/assistmentsdata/home/ 2012-13-school-data-with-affect 4 https://sites.google.com/ site/assistmentsdata/home/ assistments-problems 5 https://cloudacademy.com/ 6 https://pypi.org/project/pyirt/", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "https://huggingface.co/transformers 8 https://www.tensorflow.org/", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "https://github.com/lucabenedetto/ r2de-nlp-to-estimating-irt-parameters", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "A similarity-based theory of controlling mcq difficulty", |
| "authors": [ |
| { |
| "first": "Tahani", |
| "middle": [], |
| "last": "Alsubait", |
| "suffix": "" |
| }, |
| { |
| "first": "Bijan", |
| "middle": [], |
| "last": "Parsia", |
| "suffix": "" |
| }, |
| { |
| "first": "Ulrike", |
| "middle": [], |
| "last": "Sattler", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "2013 second international conference on elearning and e-technologies in education (ICEEE)", |
| "volume": "", |
| "issue": "", |
| "pages": "283--288", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Tahani Alsubait, Bijan Parsia, and Ulrike Sattler. 2013. A similarity-based theory of controlling mcq diffi- culty. In 2013 second international conference on e- learning and e-technologies in education (ICEEE), pages 283-288. IEEE.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Introducing a framework to assess newly created questions with natural language processing", |
| "authors": [ |
| { |
| "first": "Luca", |
| "middle": [], |
| "last": "Benedetto", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrea", |
| "middle": [], |
| "last": "Cappelli", |
| "suffix": "" |
| }, |
| { |
| "first": "Roberto", |
| "middle": [], |
| "last": "Turrin", |
| "suffix": "" |
| }, |
| { |
| "first": "Paolo", |
| "middle": [], |
| "last": "Cremonesi", |
| "suffix": "" |
| } |
| ], |
| "year": 2020, |
| "venue": "International Conference on Artificial Intelligence in Education", |
| "volume": "", |
| "issue": "", |
| "pages": "43--54", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Luca Benedetto, Andrea Cappelli, Roberto Turrin, and Paolo Cremonesi. 2020a. Introducing a framework to assess newly created questions with natural lan- guage processing. In International Conference on Artificial Intelligence in Education, pages 43-54. Springer.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "R2de: a nlp approach to estimating irt parameters of newly generated questions", |
| "authors": [ |
| { |
| "first": "Luca", |
| "middle": [], |
| "last": "Benedetto", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrea", |
| "middle": [], |
| "last": "Cappelli", |
| "suffix": "" |
| }, |
| { |
| "first": "Roberto", |
| "middle": [], |
| "last": "Turrin", |
| "suffix": "" |
| }, |
| { |
| "first": "Paolo", |
| "middle": [], |
| "last": "Cremonesi", |
| "suffix": "" |
| } |
| ], |
| "year": 2020, |
| "venue": "Proceedings of the Tenth International Conference on Learning Analytics & Knowledge", |
| "volume": "", |
| "issue": "", |
| "pages": "412--421", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Luca Benedetto, Andrea Cappelli, Roberto Turrin, and Paolo Cremonesi. 2020b. R2de: a nlp approach to estimating irt parameters of newly generated ques- tions. In Proceedings of the Tenth International Con- ference on Learning Analytics & Knowledge, pages 412-421.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Bert: Pre-training of deep bidirectional transformers for language understanding", |
| "authors": [ |
| { |
| "first": "Jacob", |
| "middle": [], |
| "last": "Devlin", |
| "suffix": "" |
| }, |
| { |
| "first": "Ming-Wei", |
| "middle": [], |
| "last": "Chang", |
| "suffix": "" |
| }, |
| { |
| "first": "Kenton", |
| "middle": [], |
| "last": "Lee", |
| "suffix": "" |
| }, |
| { |
| "first": "Kristina", |
| "middle": [], |
| "last": "Toutanova", |
| "suffix": "" |
| } |
| ], |
| "year": 2019, |
| "venue": "Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies", |
| "volume": "1", |
| "issue": "", |
| "pages": "4171--4186", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2019. Bert: Pre-training of deep bidirectional transformers for language under- standing. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Tech- nologies, Volume 1 (Long and Short Papers), pages 4171-4186.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Predicting item difficulty of science national curriculum tests: the case of key stage 2 assessments", |
| "authors": [ |
| { |
| "first": "Yasmine H El", |
| "middle": [], |
| "last": "Masri", |
| "suffix": "" |
| }, |
| { |
| "first": "Steve", |
| "middle": [], |
| "last": "Ferrara", |
| "suffix": "" |
| }, |
| { |
| "first": "W", |
| "middle": [], |
| "last": "Peter", |
| "suffix": "" |
| }, |
| { |
| "first": "Jo-Anne", |
| "middle": [], |
| "last": "Foltz", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Baird", |
| "suffix": "" |
| } |
| ], |
| "year": 2017, |
| "venue": "The Curriculum Journal", |
| "volume": "28", |
| "issue": "1", |
| "pages": "59--82", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Yasmine H El Masri, Steve Ferrara, Peter W Foltz, and Jo-Anne Baird. 2017. Predicting item difficulty of science national curriculum tests: the case of key stage 2 assessments. The Curriculum Journal, 28(1):59-82.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Addressing the assessment challenge with an online system that tutors as it assesses", |
| "authors": [ |
| { |
| "first": "Mingyu", |
| "middle": [], |
| "last": "Feng", |
| "suffix": "" |
| }, |
| { |
| "first": "Neil", |
| "middle": [], |
| "last": "Heffernan", |
| "suffix": "" |
| }, |
| { |
| "first": "Kenneth", |
| "middle": [], |
| "last": "Koedinger", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "", |
| "volume": "19", |
| "issue": "", |
| "pages": "243--266", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Mingyu Feng, Neil Heffernan, and Kenneth Koedinger. 2009. Addressing the assessment challenge with an online system that tutors as it assesses. volume 19, pages 243-266. Springer.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Fundamentals of item response theory", |
| "authors": [ |
| { |
| "first": "Hariharan", |
| "middle": [], |
| "last": "Ronald K Hambleton", |
| "suffix": "" |
| }, |
| { |
| "first": "H Jane", |
| "middle": [], |
| "last": "Swaminathan", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Rogers", |
| "suffix": "" |
| } |
| ], |
| "year": 1991, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ronald K Hambleton, Hariharan Swaminathan, and H Jane Rogers. 1991. Fundamentals of item re- sponse theory. Sage.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "The language factor in elementary mathematics assessments: Computational skills and applied problem solving in a multidimensional irt framework", |
| "authors": [ |
| { |
| "first": "Marian", |
| "middle": [], |
| "last": "Hickendorff", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Applied Measurement in Education", |
| "volume": "26", |
| "issue": "4", |
| "pages": "253--278", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Marian Hickendorff. 2013. The language factor in el- ementary mathematics assessments: Computational skills and applied problem solving in a multidimen- sional irt framework. Applied Measurement in Edu- cation, 26(4):253-278.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Distilling the knowledge in a neural network", |
| "authors": [ |
| { |
| "first": "Geoffrey", |
| "middle": [], |
| "last": "Hinton", |
| "suffix": "" |
| }, |
| { |
| "first": "Oriol", |
| "middle": [], |
| "last": "Vinyals", |
| "suffix": "" |
| }, |
| { |
| "first": "Jeff", |
| "middle": [], |
| "last": "Dean", |
| "suffix": "" |
| } |
| ], |
| "year": 2015, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1503.02531" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. 2015. Distilling the knowledge in a neural network. arXiv preprint arXiv:1503.02531.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Question difficulty prediction for reading problems in standard tests", |
| "authors": [ |
| { |
| "first": "Zhenya", |
| "middle": [], |
| "last": "Huang", |
| "suffix": "" |
| }, |
| { |
| "first": "Qi", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "Enhong", |
| "middle": [], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "Hongke", |
| "middle": [], |
| "last": "Zhao", |
| "suffix": "" |
| }, |
| { |
| "first": "Mingyong", |
| "middle": [], |
| "last": "Gao", |
| "suffix": "" |
| }, |
| { |
| "first": "Si", |
| "middle": [], |
| "last": "Wei", |
| "suffix": "" |
| }, |
| { |
| "first": "Yu", |
| "middle": [], |
| "last": "Su", |
| "suffix": "" |
| }, |
| { |
| "first": "Guoping", |
| "middle": [], |
| "last": "Hu", |
| "suffix": "" |
| } |
| ], |
| "year": 2017, |
| "venue": "Thirty-First AAAI Conference on Artificial Intelligence", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Zhenya Huang, Qi Liu, Enhong Chen, Hongke Zhao, Mingyong Gao, Si Wei, Yu Su, and Guoping Hu. 2017. Question difficulty prediction for reading problems in standard tests. In Thirty-First AAAI Conference on Artificial Intelligence.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "An experimental evaluation of automatically generated multiple choice questions from ontologies", |
| "authors": [ |
| { |
| "first": "Ghader", |
| "middle": [], |
| "last": "Kurdi", |
| "suffix": "" |
| }, |
| { |
| "first": "Bijan", |
| "middle": [], |
| "last": "Parsia", |
| "suffix": "" |
| }, |
| { |
| "first": "Uli", |
| "middle": [], |
| "last": "Sattler", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "OWL: Experiences And directions-reasoner evaluation", |
| "volume": "", |
| "issue": "", |
| "pages": "24--39", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ghader Kurdi, Bijan Parsia, and Uli Sattler. 2016. An experimental evaluation of automatically gener- ated multiple choice questions from ontologies. In OWL: Experiences And directions-reasoner evalua- tion, pages 24-39. Springer.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Deep contextualized word representations", |
| "authors": [ |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Matthew", |
| "suffix": "" |
| }, |
| { |
| "first": "Mark", |
| "middle": [], |
| "last": "Peters", |
| "suffix": "" |
| }, |
| { |
| "first": "Mohit", |
| "middle": [], |
| "last": "Neumann", |
| "suffix": "" |
| }, |
| { |
| "first": "Matt", |
| "middle": [], |
| "last": "Iyyer", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [], |
| "last": "Gardner", |
| "suffix": "" |
| }, |
| { |
| "first": "Kenton", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "Luke", |
| "middle": [], |
| "last": "Lee", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Zettlemoyer", |
| "suffix": "" |
| } |
| ], |
| "year": 2018, |
| "venue": "Proceedings of NAACL-HLT", |
| "volume": "", |
| "issue": "", |
| "pages": "2227--2237", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Matthew E Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and Luke Zettlemoyer. 2018. Deep contextualized word rep- resentations. In Proceedings of NAACL-HLT, pages 2227-2237.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Question difficulty prediction for multiple choice problems in medical exams", |
| "authors": [ |
| { |
| "first": "Zhaopeng", |
| "middle": [], |
| "last": "Qiu", |
| "suffix": "" |
| }, |
| { |
| "first": "Xian", |
| "middle": [], |
| "last": "Wu", |
| "suffix": "" |
| }, |
| { |
| "first": "Wei", |
| "middle": [], |
| "last": "Fan", |
| "suffix": "" |
| } |
| ], |
| "year": 2019, |
| "venue": "Proceedings of the 28th ACM International Conference on Information and Knowledge Management", |
| "volume": "", |
| "issue": "", |
| "pages": "139--148", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Zhaopeng Qiu, Xian Wu, and Wei Fan. 2019. Question difficulty prediction for multiple choice problems in medical exams. In Proceedings of the 28th ACM In- ternational Conference on Information and Knowl- edge Management, pages 139-148. ACM.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Probabilistic models for some intelligence and attainment tests", |
| "authors": [ |
| { |
| "first": "Georg", |
| "middle": [], |
| "last": "Rasch", |
| "suffix": "" |
| } |
| ], |
| "year": 1960, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Georg Rasch. 1960. Probabilistic models for some in- telligence and attainment tests. Danish Institute for Educational Research.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter", |
| "authors": [ |
| { |
| "first": "Victor", |
| "middle": [], |
| "last": "Sanh", |
| "suffix": "" |
| }, |
| { |
| "first": "Lysandre", |
| "middle": [], |
| "last": "Debut", |
| "suffix": "" |
| }, |
| { |
| "first": "Julien", |
| "middle": [], |
| "last": "Chaumond", |
| "suffix": "" |
| }, |
| { |
| "first": "Thomas", |
| "middle": [], |
| "last": "Wolf", |
| "suffix": "" |
| } |
| ], |
| "year": 2019, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1910.01108" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. 2019. Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter. arXiv preprint arXiv:1910.01108.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "Attention is all you need", |
| "authors": [ |
| { |
| "first": "Ashish", |
| "middle": [], |
| "last": "Vaswani", |
| "suffix": "" |
| }, |
| { |
| "first": "Noam", |
| "middle": [], |
| "last": "Shazeer", |
| "suffix": "" |
| }, |
| { |
| "first": "Niki", |
| "middle": [], |
| "last": "Parmar", |
| "suffix": "" |
| }, |
| { |
| "first": "Jakob", |
| "middle": [], |
| "last": "Uszkoreit", |
| "suffix": "" |
| }, |
| { |
| "first": "Llion", |
| "middle": [], |
| "last": "Jones", |
| "suffix": "" |
| }, |
| { |
| "first": "Aidan", |
| "middle": [ |
| "N" |
| ], |
| "last": "Gomez", |
| "suffix": "" |
| }, |
| { |
| "first": "\u0141ukasz", |
| "middle": [], |
| "last": "Kaiser", |
| "suffix": "" |
| }, |
| { |
| "first": "Illia", |
| "middle": [], |
| "last": "Polosukhin", |
| "suffix": "" |
| } |
| ], |
| "year": 2017, |
| "venue": "Advances in neural information processing systems", |
| "volume": "", |
| "issue": "", |
| "pages": "5998--6008", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, \u0141ukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. In Advances in neural information pro- cessing systems, pages 5998-6008.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "A regularized competition model for question difficulty estimation in community question answering services", |
| "authors": [ |
| { |
| "first": "Quan", |
| "middle": [], |
| "last": "Wang", |
| "suffix": "" |
| }, |
| { |
| "first": "Jing", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "Bin", |
| "middle": [], |
| "last": "Wang", |
| "suffix": "" |
| }, |
| { |
| "first": "Li", |
| "middle": [], |
| "last": "Guo", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)", |
| "volume": "", |
| "issue": "", |
| "pages": "1115--1126", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Quan Wang, Jing Liu, Bin Wang, and Li Guo. 2014. A regularized competition model for question diffi- culty estimation in community question answering services. In Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 1115-1126.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Predicting the difficulty and response time of multiple choice questions using transfer learning", |
| "authors": [ |
| { |
| "first": "Victoria", |
| "middle": [], |
| "last": "Kang Xue", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [], |
| "last": "Yaneva", |
| "suffix": "" |
| }, |
| { |
| "first": "Peter", |
| "middle": [], |
| "last": "Runyon", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Baldwin", |
| "suffix": "" |
| } |
| ], |
| "year": 2020, |
| "venue": "Proceedings of the Fifteenth Workshop on Innovative Use of NLP for Building Educational Applications", |
| "volume": "", |
| "issue": "", |
| "pages": "193--197", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Kang Xue, Victoria Yaneva, Christopher Runyon, and Peter Baldwin. 2020. Predicting the difficulty and response time of multiple choice questions using transfer learning. In Proceedings of the Fifteenth Workshop on Innovative Use of NLP for Building Ed- ucational Applications, pages 193-197.", |
| "links": null |
| }, |
| "BIBREF18": { |
| "ref_id": "b18", |
| "title": "Predicting the difficulty of multiple choice questions in a high-stakes medical exam", |
| "authors": [ |
| { |
| "first": "Victoria", |
| "middle": [], |
| "last": "Yaneva", |
| "suffix": "" |
| }, |
| { |
| "first": "Peter", |
| "middle": [], |
| "last": "Baldwin", |
| "suffix": "" |
| }, |
| { |
| "first": "Janet", |
| "middle": [], |
| "last": "Mee", |
| "suffix": "" |
| } |
| ], |
| "year": 2019, |
| "venue": "Proceedings of the Fourteenth Workshop on Innovative Use of NLP for Building Educational Applications", |
| "volume": "", |
| "issue": "", |
| "pages": "11--20", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Victoria Yaneva, Peter Baldwin, Janet Mee, et al. 2019. Predicting the difficulty of multiple choice questions in a high-stakes medical exam. In Proceedings of the Fourteenth Workshop on Innovative Use of NLP for Building Educational Applications, pages 11-20.", |
| "links": null |
| }, |
| "BIBREF19": { |
| "ref_id": "b19", |
| "title": "Automatic distractor suggestion for multiple-choice tests using concept embeddings and information retrieval", |
| "authors": [ |
| { |
| "first": "Victoria", |
| "middle": [], |
| "last": "Yaneva", |
| "suffix": "" |
| } |
| ], |
| "year": 2018, |
| "venue": "Proceedings of the thirteenth workshop on innovative use of NLP for building educational applications", |
| "volume": "", |
| "issue": "", |
| "pages": "389--398", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Victoria Yaneva et al. 2018. Automatic distractor sug- gestion for multiple-choice tests using concept em- beddings and information retrieval. In Proceedings of the thirteenth workshop on innovative use of NLP for building educational applications, pages 389- 398.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "num": null, |
| "uris": null, |
| "text": "Fine-tuning of the pre-trained language model for the task of question difficulty estimation.", |
| "type_str": "figure" |
| }, |
| "FIGREF1": { |
| "num": null, |
| "uris": null, |
| "text": "Experimental setup.", |
| "type_str": "figure" |
| }, |
| "FIGREF3": { |
| "num": null, |
| "uris": null, |
| "text": "Distribution of questions per input length and difficulty.", |
| "type_str": "figure" |
| }, |
| "FIGREF4": { |
| "num": null, |
| "uris": null, |
| "text": "CloudAcademy, estimation error depending on input length and target difficulty.", |
| "type_str": "figure" |
| }, |
| "FIGREF6": { |
| "num": null, |
| "uris": null, |
| "text": "ASSISTments, estimation error depending on input length and target difficulty.", |
| "type_str": "figure" |
| }, |
| "TABREF0": { |
| "num": null, |
| "content": "<table><tr><td colspan=\"3\">Comparison of different Transformer models</td></tr><tr><td colspan=\"3\">on CloudAcademy, with (Y) and without (N) additional</td></tr><tr><td>MLM pre-training.</td><td/><td/></tr><tr><td>Model (MLM)</td><td>Input</td><td>MAE RMSE</td></tr><tr><td colspan=\"2\">DistilBERT (N) Q only</td><td>0.805 1.017</td></tr><tr><td colspan=\"3\">DistilBERT (N) Q + cor. 0.799 1.019</td></tr><tr><td colspan=\"2\">DistilBERT (N) Q + all</td><td>0.794 1.013</td></tr><tr><td>BERT (N)</td><td>Q only</td><td>0.807 1.022</td></tr><tr><td>BERT (N)</td><td colspan=\"2\">Q + cor. 0.789 0.999</td></tr><tr><td>BERT (N)</td><td>Q + all</td><td>0.811 1.027</td></tr><tr><td colspan=\"2\">DistilBERT (Y) Q only</td><td>0.801 1.016</td></tr><tr><td colspan=\"3\">DistilBERT (Y) Q + cor. 0.788 0.998</td></tr><tr><td colspan=\"2\">DistilBERT (Y) Q + all</td><td>0.795 1.009</td></tr><tr><td>BERT (Y)</td><td>Q only</td><td>0.809 1.023</td></tr><tr><td>BERT (Y)</td><td colspan=\"2\">Q + cor. 0.774 0.981</td></tr><tr><td>BERT (Y)</td><td>Q + all</td><td>0.794 1.005</td></tr><tr><td colspan=\"3\">sented in Section 4: i) Q only, ii) Q+correct, iii)</td></tr></table>", |
| "text": "", |
| "type_str": "table", |
| "html": null |
| }, |
| "TABREF1": { |
| "num": null, |
| "content": "<table><tr><td>Model</td><td>Input</td><td>MLM</td><td>MAE</td><td>MAE, |b| > 2</td><td>RMSE</td><td>RMSE, |b| > 2</td></tr><tr><td>ZeroR</td><td>-</td><td>-</td><td colspan=\"4\">0.845 \u00b1 0.000 2.527 \u00b1 0.000 1.069 \u00b1 0.000 2.568 \u00b1 0.000</td></tr><tr><td>R2DE</td><td>Q only</td><td>-</td><td colspan=\"4\">0.826 \u00b1 0.001 2.397 \u00b1 0.004 1.051 \u00b1 0.001 2.468 \u00b1 0.005</td></tr><tr><td>R2DE</td><td>Q + cor.</td><td>-</td><td colspan=\"4\">0.819 \u00b1 0.001 2.320 \u00b1 0.005 1.033 \u00b1 0.002 2.391 \u00b1 0.005</td></tr><tr><td>R2DE</td><td>Q + all</td><td>-</td><td colspan=\"4\">0.813 \u00b1 0.001 2.331 \u00b1 0.008 1.034 \u00b1 0.001 2.405 \u00b1 0.008</td></tr><tr><td>ELMo</td><td>Q only</td><td>-</td><td colspan=\"4\">0.833 \u00b1 0.002 2.286 \u00b1 0.032 1.053 \u00b1 0.002 2.373 \u00b1 0.025</td></tr><tr><td>ELMo</td><td>Q + cor.</td><td>-</td><td colspan=\"4\">0.831 \u00b1 0.008 2.184 \u00b1 0.033 1.048 \u00b1 0.010 2.276 \u00b1 0.018</td></tr><tr><td>ELMo</td><td>Q + all</td><td>-</td><td colspan=\"4\">0.839 \u00b1 0.004 2.213 \u00b1 0.025 1.057 \u00b1 0.007 2.308 \u00b1 0.015</td></tr><tr><td colspan=\"2\">DistilBERT Q + all</td><td>N</td><td colspan=\"4\">0.794 \u00b1 0.005 2.203 \u00b1 0.044 1.013 \u00b1 0.007 2.309 \u00b1 0.036</td></tr><tr><td>BERT</td><td>Q + cor.</td><td>N</td><td colspan=\"4\">0.789 \u00b1 0.010 2.118 \u00b1 0.130 0.999 \u00b1 0.017 2.222 \u00b1 0.110</td></tr><tr><td colspan=\"2\">DistilBERT Q + cor.</td><td>Y</td><td colspan=\"4\">0.788 \u00b1 0.005 2.067 \u00b1 0.074 0.998 \u00b1 0.007 2.187 \u00b1 0.061</td></tr><tr><td>BERT</td><td>Q + cor.</td><td>Y</td><td colspan=\"4\">0.774 \u00b1 0.011 1.962 \u00b1 0.042 0.981 \u00b1 0.015 2.079 \u00b1 0.047</td></tr></table>", |
| "text": "Comparison with the state of the art on CloudAcademy.", |
| "type_str": "table", |
| "html": null |
| }, |
| "TABREF2": { |
| "num": null, |
| "content": "<table><tr><td>Model</td><td>Input</td><td>MLM</td><td>MAE</td><td>MAE, |b| > 2</td><td>RMSE</td><td>RMSE, |b| > 2</td></tr><tr><td>ZeroR</td><td>-</td><td>-</td><td colspan=\"4\">1.066 \u00b1 0.000 2.882 \u00b1 0.000 1.424 \u00b1 0.000 3.033 \u00b1 0.000</td></tr><tr><td>R2DE</td><td>Q only</td><td>-</td><td colspan=\"4\">0.966 \u00b1 0.001 2.408 \u00b1 0.005 1.304 \u00b1 0.001 2.700 \u00b1 0.003</td></tr><tr><td>ELMo</td><td>Q only</td><td>-</td><td colspan=\"4\">0.933 \u00b1 0.013 2.025 \u00b1 0.052 1.255 \u00b1 0.017 2.375 \u00b1 0.036</td></tr><tr><td colspan=\"2\">DistilBERT Q only</td><td>N</td><td colspan=\"4\">0.919 \u00b1 0.009 1.864 \u00b1 0.059 1.239 \u00b1 0.010 2.259 \u00b1 0.037</td></tr><tr><td>BERT</td><td>Q only</td><td>N</td><td colspan=\"4\">0.911 \u00b1 0.003 1.849 \u00b1 0.074 1.228 \u00b1 0.003 2.243 \u00b1 0.038</td></tr></table>", |
| "text": "Comparison with the state of the art on ASSISTments.", |
| "type_str": "table", |
| "html": null |
| }, |
| "TABREF3": { |
| "num": null, |
| "content": "<table/>", |
| "text": "Example questions from ASSISTments.", |
| "type_str": "table", |
| "html": null |
| }, |
| "TABREF4": { |
| "num": null, |
| "content": "<table/>", |
| "text": "Example question from CloudAcademy.", |
| "type_str": "table", |
| "html": null |
| } |
| } |
| } |
| } |