DeBERTa commited on
Commit
e69fce6
1 Parent(s): 2c19ca0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -13,9 +13,11 @@ license: mit
13
 
14
  Please check the [official repository](https://github.com/microsoft/DeBERTa) for more details and updates.
15
 
16
- In DeBERTa V3 we replaced MLM objective with RTD(Replaced Token Detection) objective which was first introduced by ELECTRA for pre-training. The new objective significantly improves the model performance. Please check appendix A11 in our [paper](https://arxiv.org/abs/2006.03654) for more details.
 
 
 
17
 
18
- This is the DeBERTa V3 small model with 12 layers, 768 hidden size. Total parameters is 183M while Embedding layer take about 98M due to the usage of 128k vocabulary. It's trained with 160GB data.
19
  #### Fine-tuning on NLU tasks
20
 
21
  We present the dev results on SQuAD 1.1/2.0 and MNLI tasks.
@@ -25,7 +27,7 @@ We present the dev results on SQuAD 1.1/2.0 and MNLI tasks.
25
  | RoBERTa-base | 91.5/84.6 | 83.7/80.5 | 87.6 |
26
  | XLNet-base | -/- | -/80.2 | 86.8 |
27
  | DeBERTa-base | 93.1/87.2 | 86.2/83.1 | 88.8 |
28
- | **DeBERTa-v3-base** | 93.9/88.4 | 88.4/85.4 | 90.5 |
29
  | DeBERTa-v3-base+SiFT | -/- | -/- | **91.0** |
30
 
31
  #### Fine-tuning with HF transformers
 
13
 
14
  Please check the [official repository](https://github.com/microsoft/DeBERTa) for more details and updates.
15
 
16
+ In DeBERTa V3, we replaced the MLM objective with the RTD(Replaced Token Detection) objective introduced by ELECTRA for pre-training, as well as some innovations to be introduced in our upcoming paper. Compared to DeBERTa-V2, our V3 version significantly improves the model performance in downstream tasks. You can find a simple introduction about the model from the appendix A11 in our original [paper](https://arxiv.org/abs/2006.03654), but we will provide more details in a separate write-up.
17
+
18
+ The DeBERTa V3 large model comes with 12 layers and a hidden size of 768. Its total parameter number is 183M since we use a vocabulary containing 128K tokens which introduce 98M parameters in the Embedding layer. This model was trained using the 160GB data as DeBERTa V2.
19
+
20
 
 
21
  #### Fine-tuning on NLU tasks
22
 
23
  We present the dev results on SQuAD 1.1/2.0 and MNLI tasks.
 
27
  | RoBERTa-base | 91.5/84.6 | 83.7/80.5 | 87.6 |
28
  | XLNet-base | -/- | -/80.2 | 86.8 |
29
  | DeBERTa-base | 93.1/87.2 | 86.2/83.1 | 88.8 |
30
+ | **DeBERTa-v3-base** | 93.9/88.4 | 88.4/85.4 | 90.6 |
31
  | DeBERTa-v3-base+SiFT | -/- | -/- | **91.0** |
32
 
33
  #### Fine-tuning with HF transformers