Update README.md
Browse files
README.md
CHANGED
@@ -8,41 +8,34 @@ thumbnail: https://huggingface.co/front/thumbnails/microsoft.png
|
|
8 |
license: mit
|
9 |
pipeline_tag: zero-shot-classification
|
10 |
---
|
11 |
-
|
12 |
-
[
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
title={DEBERTA: DECODING-ENHANCED BERT WITH DISENTANGLED ATTENTION},
|
43 |
-
author={Pengcheng He and Xiaodong Liu and Jianfeng Gao and Weizhu Chen},
|
44 |
-
booktitle={International Conference on Learning Representations},
|
45 |
-
year={2021},
|
46 |
-
url={https://openreview.net/forum?id=XPZIaotutsD}
|
47 |
-
}
|
48 |
-
```
|
|
|
8 |
license: mit
|
9 |
pipeline_tag: zero-shot-classification
|
10 |
---
|
11 |
+
|
12 |
+
This model is a fine-tuned version of [microsoft/deberta-v3-large](https://huggingface.co/microsoft/deberta-v3-large) on the GLUE MNLI dataset.
|
13 |
+
It achieves the following results on the evaluation set:
|
14 |
+
- Loss: 0.4103
|
15 |
+
- Accuracy: 0.9175
|
16 |
+
### Training hyperparameters
|
17 |
+
|
18 |
+
The following hyperparameters were used during training:
|
19 |
+
- learning_rate: 6e-06
|
20 |
+
- train_batch_size: 8
|
21 |
+
- eval_batch_size: 8
|
22 |
+
- seed: 42
|
23 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
24 |
+
- lr_scheduler_type: linear
|
25 |
+
- lr_scheduler_warmup_steps: 50
|
26 |
+
- num_epochs: 2.0
|
27 |
+
|
28 |
+
### Training results
|
29 |
+
|
30 |
+
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|
31 |
+
|:-------------:|:-----:|:-----:|:---------------:|:--------:|
|
32 |
+
| 0.3631 | 1.0 | 49088 | 0.3129 | 0.9130 |
|
33 |
+
| 0.2267 | 2.0 | 98176 | 0.4157 | 0.9153 |
|
34 |
+
|
35 |
+
|
36 |
+
### Framework versions
|
37 |
+
|
38 |
+
- Transformers 4.13.0.dev0
|
39 |
+
- Pytorch 1.10.0
|
40 |
+
- Datasets 1.15.2.dev0
|
41 |
+
- Tokenizers 0.10.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|