jsmc commited on
Commit
1a65a18
·
1 Parent(s): b6c867c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -1,3 +1,48 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ ## Model description
5
+
6
+ A question type classification model based on XLM-RoBERTa.
7
+
8
+ The question type classifier takes as input the question, and returns a label that distinguishes between boolean and short answer extractive questions.
9
+
10
+ The model was initialized with [xlm-roberta-large](https://huggingface.co/xlm-roberta-large) and fine-tuned on the boolean questions from [TyDiQA](https://huggingface.co/datasets/tydiqa), as well as [BoolQ-X](https://arxiv.org/abs/2112.07772#).
11
+
12
+ ## Intended uses & limitations
13
+
14
+ You can use the raw model for question classification. Biases associated with the pre-existing language model, bert-base-multilingual-cased, may be present in our fine-tuned model, tydiqa-boolean-question-classifier.
15
+
16
+ ## Usage
17
+
18
+ You can use this model directly in the the [PrimeQA](https://github.com/primeqa/primeqa) framework for supporting boolean question in reading comprehension as in this [example](https://github.com/primeqa/primeqa/tree/main/examples/boolqa).
19
+
20
+ ### BibTeX entry and citation info
21
+
22
+ ```bibtex
23
+ @article{Rosenthal2021DoAT,
24
+ title={Do Answers to Boolean Questions Need Explanations? Yes},
25
+ author={Sara Rosenthal and Mihaela A. Bornea and Avirup Sil and Radu Florian and Scott McCarley},
26
+ journal={ArXiv},
27
+ year={2021},
28
+ volume={abs/2112.07772}
29
+ }
30
+ ```
31
+
32
+ ```bibtex
33
+ @misc{https://doi.org/10.48550/arxiv.2206.08441,
34
+ author = {McCarley, Scott and
35
+ Bornea, Mihaela and
36
+ Rosenthal, Sara and
37
+ Ferritto, Anthony and
38
+ Sultan, Md Arafat and
39
+ Sil, Avirup and
40
+ Florian, Radu},
41
+ title = {GAAMA 2.0: An Integrated System that Answers Boolean and Extractive Questions},
42
+ journal = {CoRR},
43
+ publisher = {arXiv},
44
+ year = {2022},
45
+ url = {https://arxiv.org/abs/2206.08441},
46
+ }
47
+
48
+ ```