riiider commited on
Commit
be67c9b
1 Parent(s): 4af673d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -6
README.md CHANGED
@@ -1,5 +1,9 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
3
  ---
4
 
5
  # How to use
@@ -8,16 +12,36 @@ This is a model used in the EMNLP 2022 work, "Evaluating the Knowledge Dependenc
8
  We fine-tuned the [xlnet-large](https://huggingface.co/xlnet-large-cased) model on the RACE dataset. <br>
9
  Please refer to our publication to check how to use the model to evaluate the question.
10
 
 
 
 
 
 
11
  Code | https://github.com/riiid/question-score
12
 
13
- Paper preprint | https://arxiv.org/abs/2211.11902
14
 
15
  # How to cite
16
  ```
17
- @inproceedings{moon2022eval,
18
- title={Evaluating the Knowledge Dependency of Questions,
19
- author={Moon, H., Yang, Y., Shin, J., Yu, H., Lee, S., Jeong, M., Park, J., Kim, M., & Choi, S.},
20
- booktitle={Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing},
21
- year={2022}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
 
23
  ```
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ datasets:
4
+ - race
5
+ language:
6
+ - en
7
  ---
8
 
9
  # How to use
12
  We fine-tuned the [xlnet-large](https://huggingface.co/xlnet-large-cased) model on the RACE dataset. <br>
13
  Please refer to our publication to check how to use the model to evaluate the question.
14
 
15
+
16
+ RACE finetune:
17
+ - validation_loss: 0.583
18
+ - validation_acc : 0.805
19
+
20
  Code | https://github.com/riiid/question-score
21
 
22
+ Paper | https://aclanthology.org/2022.emnlp-main.718/
23
 
24
  # How to cite
25
  ```
26
+ @inproceedings{moon-etal-2022-evaluating,
27
+ title = "Evaluating the Knowledge Dependency of Questions",
28
+ author = "Moon, Hyeongdon and
29
+ Yang, Yoonseok and
30
+ Yu, Hangyeol and
31
+ Lee, Seunghyun and
32
+ Jeong, Myeongho and
33
+ Park, Juneyoung and
34
+ Shin, Jamin and
35
+ Kim, Minsam and
36
+ Choi, Seungtaek",
37
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
38
+ month = dec,
39
+ year = "2022",
40
+ address = "Abu Dhabi, United Arab Emirates",
41
+ publisher = "Association for Computational Linguistics",
42
+ url = "https://aclanthology.org/2022.emnlp-main.718",
43
+ pages = "10512--10526",
44
+ abstract = "The automatic generation of Multiple Choice Questions (MCQ) has the potential to reduce the time educators spend on student assessment significantly. However, existing evaluation metrics for MCQ generation, such as BLEU, ROUGE, and METEOR, focus on the n-gram based similarity of the generated MCQ to the gold sample in the dataset and disregard their educational value.They fail to evaluate the MCQ{'}s ability to assess the student{'}s knowledge of the corresponding target fact. To tackle this issue, we propose a novel automatic evaluation metric, coined Knowledge Dependent Answerability (KDA), which measures the MCQ{'}s answerability given knowledge of the target fact. Specifically, we first show how to measure KDA based on student responses from a human survey.Then, we propose two automatic evaluation metrics, KDA{\_}disc and KDA{\_}cont, that approximate KDA by leveraging pre-trained language models to imitate students{'} problem-solving behavior.Through our human studies, we show that KDA{\_}disc and KDA{\_}soft have strong correlations with both (1) KDA and (2) usability in an actual classroom setting, labeled by experts. Furthermore, when combined with n-gram based similarity metrics, KDA{\_}disc and KDA{\_}cont are shown to have a strong predictive power for various expert-labeled MCQ quality measures.",
45
  }
46
+
47
  ```