rbattle commited on
Commit
09716b1
1 Parent(s): 18be4c2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +142 -0
README.md CHANGED
@@ -1,3 +1,145 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ datasets:
4
+ - mrqa
5
+ language:
6
+ - en
7
+ metrics:
8
+ - exact_match
9
+ - f1
10
+
11
+ model-index:
12
+ - name: VMware/electra-base-mrqa
13
+ results:
14
+ - task:
15
+ type: Question-Answering
16
+ dataset:
17
+ type: mrqa
18
+ name: MRQA
19
+ metrics:
20
+ - type: exact_match
21
+ value: 68.78
22
+ name: Eval EM
23
+ - type: f1
24
+ value: 80.16
25
+ name: Eval F1
26
+ - type: exact_match
27
+ value: 54.70
28
+ name: Test EM
29
+ - type: f1
30
+ value: 65.80
31
+ name: Test F1
32
  ---
33
+
34
+
35
+ This model release is part of a joint research project with Howard University's Innovation Foundry/AIM-AHEAD Lab.
36
+
37
+
38
+ # Model Details
39
+
40
+ - **Model name:** ELECTRA-Base-MRQA
41
+ - **Model type:** Extractive Question Answering
42
+ - **Parent Model:** [ELECTRA-Base-Discriminator](https://huggingface.co/google/electra-base-discriminator)
43
+ - **Training dataset:** [MRQA](https://huggingface.co/datasets/mrqa) (Machine Reading for Question Answering)
44
+ - **Training data size:** 516,819 examples
45
+ - **Training time:** 8:40:57 on 1 Nvidia V100 32GB GPU
46
+ - **Language:** English
47
+ - **Framework:** PyTorch
48
+ - **Model version:** 1.0
49
+
50
+
51
+ # Intended Use
52
+
53
+ This model is intended to provide accurate answers to questions based on context passages. It can be used for a variety of tasks, including question-answering for search engines, chatbots, customer service systems, and other applications that require natural language understanding.
54
+
55
+
56
+ # How to Use
57
+
58
+ ```python
59
+ from transformers import pipeline
60
+
61
+ question_answerer = pipeline("question-answering", model='VMware/electra-base-mrqa')
62
+
63
+ context = "We present the results of the Machine Reading for Question Answering (MRQA) 2019 shared task on evaluating the generalization capabilities of reading comprehension systems. In this task, we adapted and unified 18 distinct question answering datasets into the same format. Among them, six datasets were made available for training, six datasets were made available for development, and the final six were hidden for final evaluation. Ten teams submitted systems, which explored various ideas including data sampling, multi-task learning, adversarial training and ensembling. The best system achieved an average F1 score of 72.5 on the 12 held-out datasets, 10.7 absolute points higher than our initial baseline based on BERT."
64
+
65
+ question = "What is MRQA?"
66
+
67
+ result = question_answerer(question=question, context=context)
68
+
69
+ print(result)
70
+
71
+ # {
72
+ # 'score': 0.9068707823753357,
73
+ # 'start': 30,
74
+ # 'end': 68,
75
+ # 'answer': 'Machine Reading for Question Answering'
76
+ # }
77
+
78
+ ```
79
+
80
+
81
+ # Training Details
82
+
83
+ The model was trained for 1 epoch on the MRQA training set.
84
+
85
+
86
+ ## Training Hyperparameters
87
+
88
+ ```python
89
+ args = TrainingArguments(
90
+ "electra-base-mrqa",
91
+ save_strategy="epoch",
92
+ learning_rate=1e-5,
93
+ num_train_epochs=1,
94
+ weight_decay=0.01,
95
+ per_device_train_batch_size=16,
96
+ )
97
+ ```
98
+
99
+
100
+ # Evaluation Metrics
101
+
102
+ The model was evaluated using standard metrics for question-answering models, including:
103
+
104
+ Exact match (EM): The percentage of questions for which the model produces an exact match with the ground truth answer.
105
+
106
+ F1 score: A weighted average of precision and recall, which measures the overlap between the predicted answer and the ground truth answer.
107
+
108
+
109
+ # Model Family Performance
110
+
111
+ | Parent Language Model | Number of Parameters | Training Time | Eval Time | Test Time | Eval EM | Eval F1 | Test EM | Test F1 |
112
+ |---|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
113
+ | BERT-Tiny | 4,369,666 | 26:11 | 0:41 | 0:04 | 22.78 | 32.42 | 10.18 | 18.72 |
114
+ | BERT-Base | 108,893,186 | 8:39:10 | 18:42 | 2:13 | 64.48 | 76.14 | 48.89 | 59.89 |
115
+ | BERT-Large | 334,094,338 | 28:35:38 | 1:00:56 | 7:14 | 69.52 | 80.50 | 55.00 | 65.78 |
116
+ | DeBERTa-v3-Extra-Small | 70,682,882 | 5:19:05 | 11:29 | 1:16 | 65.58 | 77.17 | 50.92 | 62.58 |
117
+ | DeBERTa-v3-Base | 183,833,090 | 12:13:41 | 28:18 | 3:09 | 71.43 | 82.59 | 59.49 | 70.46 |
118
+ | DeBERTa-v3-Large | 434,014,210 | 38:36:13 | 1:25:47 | 9:33 | **76.08** | **86.23** | **64.27** | **75.22** |
119
+ | ELECTRA-Small | 13,483,522 | 2:16:36 | 3:55 | 0:27 | 57.63 | 69.38 | 38.68 | 51.56 |
120
+ | ELECTRA-Base | 108,893,186 | 8:40:57 | 18:41 | 2:12 | 68.78 | 80.16 | 54.70 | 65.80 |
121
+ | ELECTRA-Large | 334,094,338 | 28:31:59 | 1:00:40 | 7:13 | 74.15 | 84.96 | 62.35 | 73.28 |
122
+ | MiniLMv2-L6-H384-from-BERT-Large | 22,566,146 | 2:12:48 | 4:23 | 0:40 | 59.31 | 71.09 | 41.78 | 53.30 |
123
+ | MiniLMv2-L6-H768-from-BERT-Large | 66,365,954 | 4:42:59 | 10:01 | 1:10 | 64.27 | 75.84 | 49.05 | 59.82 |
124
+ | MiniLMv2-L6-H384-from-RoBERTa-Large | 30,147,842 | 2:15:10 | 4:19 | 0:30 | 59.27 | 70.64 | 42.95 | 54.03 |
125
+ | MiniLMv2-L12-H384-from-RoBERTa-Large | 40,794,626 | 4:14:22 | 8:27 | 0:58 | 64.58 | 76.23 | 51.28 | 62.83 |
126
+ | MiniLMv2-L6-H768-from-RoBERTa-Large | 81,529,346 | 4:39:02 | 9:34 | 1:06 | 65.80 | 77.17 | 51.72 | 63.27 |
127
+ | TinyRoBERTa | 81,529.346 | 4:27:06\* | 9:54 | 1:04 | 69.38 | 80.07 | 53.29 | 64.16 |
128
+ | RoBERTa-Base | 124,056,578 | 8:50:29 | 18:59 | 2:11 | 69.06 | 80.08 | 55.53 | 66.49 |
129
+ | RoBERTa-Large | 354,312,194 | 29:16:06 | 1:01:10 | 7:04 | 74.08 | 84.38 | 62.20 | 72.88 |
130
+
131
+ \* TinyRoBERTa's training time isn't directly comparable to the other models since it was distilled from [VMware/roberta-large-mrqa](https://huggingface.co/VMware/roberta-large-mrqa) that was already trained on MRQA.
132
+
133
+ # Limitations and Bias
134
+
135
+ The model is based on a large and diverse dataset, but it may still have limitations and biases in certain areas. Some limitations include:
136
+
137
+ - Language: The model is designed to work with English text only and may not perform as well on other languages.
138
+
139
+ - Domain-specific knowledge: The model has been trained on a general dataset and may not perform well on questions that require domain-specific knowledge.
140
+
141
+ - Out-of-distribution questions: The model may struggle with questions that are outside the scope of the MRQA dataset. This is best demonstrated by the delta between its scores on the eval vs test datasets.
142
+
143
+ In addition, the model may have some bias in terms of the data it was trained on. The dataset includes questions from a variety of sources, but it may not be representative of all populations or perspectives. As a result, the model may perform better or worse for certain types of questions or on certain types of texts.
144
+
145
+