mrm8488 commited on
Commit
14e1cb1
1 Parent(s): d7b5e9c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -2
README.md CHANGED
@@ -38,7 +38,13 @@ It achieves the following results on the evaluation set:
38
 
39
  ## Model description
40
 
41
- More information needed
 
 
 
 
 
 
42
 
43
  ## Intended uses & limitations
44
 
@@ -49,7 +55,6 @@ More information needed
49
 
50
  The Corpus of Linguistic Acceptability (CoLA) in its full form consists of 10657 sentences from 23 linguistics publications, expertly annotated for acceptability (grammaticality) by their original authors. The public version provided here contains 9594 sentences belonging to training and development sets, and excludes 1063 sentences belonging to a held out test set.
51
 
52
- More information needed
53
 
54
  ## Training procedure
55
 
38
 
39
  ## Model description
40
 
41
+ [DeBERTa](https://arxiv.org/abs/2006.03654) improves the BERT and RoBERTa models using disentangled attention and enhanced mask decoder. With those two improvements, DeBERTa out perform RoBERTa on a majority of NLU tasks with 80GB training data.
42
+
43
+ Please check the [official repository](https://github.com/microsoft/DeBERTa) for more details and updates.
44
+
45
+ In [DeBERTa V3](https://arxiv.org/abs/2111.09543), 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.
46
+
47
+ The DeBERTa V3 small model comes with 6 layers and a hidden size of 768. Its total parameter number is 143M 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.
48
 
49
  ## Intended uses & limitations
50
 
55
 
56
  The Corpus of Linguistic Acceptability (CoLA) in its full form consists of 10657 sentences from 23 linguistics publications, expertly annotated for acceptability (grammaticality) by their original authors. The public version provided here contains 9594 sentences belonging to training and development sets, and excludes 1063 sentences belonging to a held out test set.
57
 
 
58
 
59
  ## Training procedure
60