Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,59 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
|
5 |
+
## Model description
|
6 |
+
|
7 |
+
Question type classification model based on multilingual BERT.
|
8 |
+
|
9 |
+
The question type classifier takes as input the question, and returns a label that distinguishes boolean and extractive questions.
|
10 |
+
|
11 |
+
The model was initialized with [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) and fine-tuned on the answerable subset of [TyDiQA](https://huggingface.co/datasets/tydiqa) train questions.
|
12 |
+
|
13 |
+
## Intended uses & limitations
|
14 |
+
|
15 |
+
You can use the raw model for question classification. Biases associated with the pre-existing language model, bert-base-multilingual-cased, that we used may be present in our fine-tuned model, tydiqa-boolean-question-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 question in reading comprehension and in this [examples](https://github.com/primeqa/primeqa/tree/main/examples/boolqa).
|
20 |
+
|
21 |
+
### BibTeX entry and citation info
|
22 |
+
|
23 |
+
```bibtex
|
24 |
+
@article{DBLP:journals/corr/abs-1810-04805,
|
25 |
+
author = {Jacob Devlin and
|
26 |
+
Ming{-}Wei Chang and
|
27 |
+
Kenton Lee and
|
28 |
+
Kristina Toutanova},
|
29 |
+
title = {{BERT:} Pre-training of Deep Bidirectional Transformers for Language
|
30 |
+
Understanding},
|
31 |
+
journal = {CoRR},
|
32 |
+
volume = {abs/1810.04805},
|
33 |
+
year = {2018},
|
34 |
+
url = {http://arxiv.org/abs/1810.04805},
|
35 |
+
archivePrefix = {arXiv},
|
36 |
+
eprint = {1810.04805},
|
37 |
+
timestamp = {Tue, 30 Oct 2018 20:39:56 +0100},
|
38 |
+
biburl = {https://dblp.org/rec/journals/corr/abs-1810-04805.bib},
|
39 |
+
bibsource = {dblp computer science bibliography, https://dblp.org}
|
40 |
+
}
|
41 |
+
```
|
42 |
+
|
43 |
+
```bibtex
|
44 |
+
@misc{https://doi.org/10.48550/arxiv.2206.08441,
|
45 |
+
author = {McCarley, Scott and
|
46 |
+
Bornea, Mihaela and
|
47 |
+
Rosenthal, Sara and
|
48 |
+
Ferritto, Anthony and
|
49 |
+
Sultan, Md Arafat and
|
50 |
+
Sil, Avirup and
|
51 |
+
Florian, Radu},
|
52 |
+
title = {GAAMA 2.0: An Integrated System that Answers Boolean and Extractive Questions},
|
53 |
+
journal = {CoRR},
|
54 |
+
publisher = {arXiv},
|
55 |
+
year = {2022},
|
56 |
+
url = {https://arxiv.org/abs/2206.08441},
|
57 |
+
}
|
58 |
+
|
59 |
+
```
|