Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
## Model description
|
| 6 |
+
|
| 7 |
+
An answer classification model for boolean questions based on XLM-RoBERTa.
|
| 8 |
+
|
| 9 |
+
The answer classifier takes as input a boolean question and a passage, and returns a label (yes, no-answer, no).
|
| 10 |
+
|
| 11 |
+
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#).
|
| 12 |
+
|
| 13 |
+
## Intended uses & limitations
|
| 14 |
+
|
| 15 |
+
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.
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
|
| 19 |
+
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).
|
| 20 |
+
|
| 21 |
+
### BibTeX entry and citation info
|
| 22 |
+
|
| 23 |
+
```bibtex
|
| 24 |
+
@article{Rosenthal2021DoAT,
|
| 25 |
+
title={Do Answers to Boolean Questions Need Explanations? Yes},
|
| 26 |
+
author={Sara Rosenthal and Mihaela A. Bornea and Avirup Sil and Radu Florian and Scott McCarley},
|
| 27 |
+
journal={ArXiv},
|
| 28 |
+
year={2021},
|
| 29 |
+
volume={abs/2112.07772}
|
| 30 |
+
}
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
```bibtex
|
| 34 |
+
@misc{https://doi.org/10.48550/arxiv.2206.08441,
|
| 35 |
+
author = {McCarley, Scott and
|
| 36 |
+
Bornea, Mihaela and
|
| 37 |
+
Rosenthal, Sara and
|
| 38 |
+
Ferritto, Anthony and
|
| 39 |
+
Sultan, Md Arafat and
|
| 40 |
+
Sil, Avirup and
|
| 41 |
+
Florian, Radu},
|
| 42 |
+
title = {GAAMA 2.0: An Integrated System that Answers Boolean and Extractive Questions},
|
| 43 |
+
journal = {CoRR},
|
| 44 |
+
publisher = {arXiv},
|
| 45 |
+
year = {2022},
|
| 46 |
+
url = {https://arxiv.org/abs/2206.08441},
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
```
|