DeBERTa commited on
Commit
9cd17f4
1 Parent(s): c29fd30

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -13,9 +13,10 @@ 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 [DeBERTa](https://arxiv.org/abs/2006.03654) for more details.
 
 
17
 
18
- This is the DeBERTa V3 large model with 24 layers, 1024 hidden size. Total parameters is 418M while Embedding layer takes about 131M due to the usage of 128k vocabulary. It's trained with 160GB data.
19
 
20
  #### Fine-tuning on NLU tasks
21
 
@@ -26,7 +27,7 @@ We present the dev results on SQuAD 1.1/2.0 and MNLI tasks.
26
  | RoBERTa-large | 94.6/88.9 | 89.4/86.5 | 90.2 |
27
  | XLNet-large | 95.1/89.7 | 90.6/87.9 | 90.8 |
28
  | DeBERTa-large | -/- | 90.7/88.0 | 91.3 |
29
- | **DeBERTa-v3-large** | -/- | 91.5/89.0 | **91.9** |
30
  | DeBERTa-v2-xxlarge|96.1/91.4 |**92.2/89.7** | 91.7 |
31
 
32
  #### 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 24 layers and a hidden size of 1024 . Its total parameter number is 418M since we use a vocabulary containing 128K tokens which introduce 131M 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
 
 
27
  | RoBERTa-large | 94.6/88.9 | 89.4/86.5 | 90.2 |
28
  | XLNet-large | 95.1/89.7 | 90.6/87.9 | 90.8 |
29
  | DeBERTa-large | -/- | 90.7/88.0 | 91.3 |
30
+ | **DeBERTa-v3-large** | -/- | 91.5/89.0 | **92.0** |
31
  | DeBERTa-v2-xxlarge|96.1/91.4 |**92.2/89.7** | 91.7 |
32
 
33
  #### Fine-tuning with HF transformers