sjrosenthal commited on
Commit
e9883ea
·
1 Parent(s): c1c8b16

Update README.md

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