sjrosenthal commited on
Commit
7ad9f7b
1 Parent(s): 2d8003e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md CHANGED
@@ -1,3 +1,80 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ tags:
4
+ - MRC
5
+ - Natural Questions List
6
+ - xlm-roberta-large
7
+ language:
8
+ - multilingual
9
  ---
10
+
11
+ # Model description
12
+
13
+ An XLM-RoBERTa reading comprehension model for List Question Answering using a fine-tuned [xlm-roberta-large](https://huggingface.co/xlm-roberta-large/) model that is further fine-tuned on the list questions in the [Natural Questions](https://huggingface.co/datasets/natural_questions) dataset.
14
+
15
+ ## Intended uses & limitations
16
+
17
+ You can use the raw model for the reading comprehension task. Biases associated with the pre-existing language model, xlm-roberta-large, that we used may be present in our fine-tuned model, listqa_nq-task-xlm-roberta-large.
18
+
19
+ ## Usage
20
+
21
+ You can use this model directly with the [PrimeQA](https://github.com/primeqa/primeqa) pipeline for reading comprehension [listqa.ipynb](https://github.com/primeqa/primeqa/blob/main/notebooks/mrc/listqa.ipynb).
22
+
23
+ ### BibTeX entry and citation info
24
+
25
+ ```bibtex
26
+ @article{kwiatkowski-etal-2019-natural,
27
+ title = "Natural Questions: A Benchmark for Question Answering Research",
28
+ author = "Kwiatkowski, Tom and
29
+ Palomaki, Jennimaria and
30
+ Redfield, Olivia and
31
+ Collins, Michael and
32
+ Parikh, Ankur and
33
+ Alberti, Chris and
34
+ Epstein, Danielle and
35
+ Polosukhin, Illia and
36
+ Devlin, Jacob and
37
+ Lee, Kenton and
38
+ Toutanova, Kristina and
39
+ Jones, Llion and
40
+ Kelcey, Matthew and
41
+ Chang, Ming-Wei and
42
+ Dai, Andrew M. and
43
+ Uszkoreit, Jakob and
44
+ Le, Quoc and
45
+ Petrov, Slav",
46
+ journal = "Transactions of the Association for Computational Linguistics",
47
+ volume = "7",
48
+ year = "2019",
49
+ address = "Cambridge, MA",
50
+ publisher = "MIT Press",
51
+ url = "https://aclanthology.org/Q19-1026",
52
+ doi = "10.1162/tacl_a_00276",
53
+ pages = "452--466",
54
+ }
55
+ ```
56
+
57
+ ```bibtex
58
+ @article{DBLP:journals/corr/abs-1911-02116,
59
+ author = {Alexis Conneau and
60
+ Kartikay Khandelwal and
61
+ Naman Goyal and
62
+ Vishrav Chaudhary and
63
+ Guillaume Wenzek and
64
+ Francisco Guzm{\'{a}}n and
65
+ Edouard Grave and
66
+ Myle Ott and
67
+ Luke Zettlemoyer and
68
+ Veselin Stoyanov},
69
+ title = {Unsupervised Cross-lingual Representation Learning at Scale},
70
+ journal = {CoRR},
71
+ volume = {abs/1911.02116},
72
+ year = {2019},
73
+ url = {http://arxiv.org/abs/1911.02116},
74
+ eprinttype = {arXiv},
75
+ eprint = {1911.02116},
76
+ timestamp = {Mon, 11 Nov 2019 18:38:09 +0100},
77
+ biburl = {https://dblp.org/rec/journals/corr/abs-1911-02116.bib},
78
+ bibsource = {dblp computer science bibliography, https://dblp.org}
79
+ }
80
+ ```