Removed the mention of DistilBERT
Browse files
README.md
CHANGED
@@ -19,23 +19,14 @@ introduced in [this paper](https://aclanthology.org/2022.lrec-1.359/). This mode
|
|
19 |
|
20 |
## Model description
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
with no humans labelling them in any way (which is why it can use lots of publicly available data) with an automatic
|
25 |
-
process to generate inputs and labels from those texts using the BERT base model. More precisely, it was pretrained
|
26 |
-
with three objectives:
|
27 |
|
28 |
-
- Distillation loss: the model was trained to return the same probabilities as the BERT base model.
|
29 |
- Masked language modeling (MLM): this is part of the original training loss of the BERT base model. When taking a
|
30 |
sentence, the model randomly masks 15% of the words in the input then run the entire masked sentence through the
|
31 |
model and has to predict the masked words. This is different from traditional recurrent neural networks (RNNs) that
|
32 |
usually see the words one after the other, or from autoregressive models like GPT which internally mask the future
|
33 |
tokens. It allows the model to learn a bidirectional representation of the sentence.
|
34 |
-
- Cosine embedding loss: the model was also trained to generate hidden states as close as possible as the BERT base
|
35 |
-
model.
|
36 |
-
|
37 |
-
This way, the model learns the same inner representation of the English language than its teacher model, while being
|
38 |
-
faster for inference or downstream tasks.
|
39 |
|
40 |
## Intended uses & limitations
|
41 |
|
|
|
19 |
|
20 |
## Model description
|
21 |
|
22 |
+
D'AlemBERT is a transformers mode pretrained on the raw texts only with no humans labelling them in any way with an automatic process to generate inputs and labels from those texts using the RoBERTa base model. More precisely, it was pretrained
|
23 |
+
with one objective:
|
|
|
|
|
|
|
24 |
|
|
|
25 |
- Masked language modeling (MLM): this is part of the original training loss of the BERT base model. When taking a
|
26 |
sentence, the model randomly masks 15% of the words in the input then run the entire masked sentence through the
|
27 |
model and has to predict the masked words. This is different from traditional recurrent neural networks (RNNs) that
|
28 |
usually see the words one after the other, or from autoregressive models like GPT which internally mask the future
|
29 |
tokens. It allows the model to learn a bidirectional representation of the sentence.
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
## Intended uses & limitations
|
32 |
|