jsmc commited on
Commit
a19f4af
·
1 Parent(s): 6d5f18e

Update README.md

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