End of training
Browse files- README.md +32 -0
- all_results.json +8 -0
- train_results.json +8 -0
README.md
CHANGED
@@ -4,6 +4,10 @@ license: mit
|
|
4 |
base_model: microsoft/deberta-v3-base
|
5 |
tags:
|
6 |
- generated_from_trainer
|
|
|
|
|
|
|
|
|
7 |
model-index:
|
8 |
- name: twitter_sentiment_small_4
|
9 |
results: []
|
@@ -16,6 +20,12 @@ should probably proofread and complete it, then remove this comment. -->
|
|
16 |
# twitter_sentiment_small_4
|
17 |
|
18 |
This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggingface.co/microsoft/deberta-v3-base) on an unknown dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
## Model description
|
21 |
|
@@ -43,6 +53,28 @@ The following hyperparameters were used during training:
|
|
43 |
- lr_scheduler_warmup_steps: 50
|
44 |
- num_epochs: 3
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
### Framework versions
|
47 |
|
48 |
- Transformers 4.44.2
|
|
|
4 |
base_model: microsoft/deberta-v3-base
|
5 |
tags:
|
6 |
- generated_from_trainer
|
7 |
+
metrics:
|
8 |
+
- accuracy
|
9 |
+
- precision
|
10 |
+
- recall
|
11 |
model-index:
|
12 |
- name: twitter_sentiment_small_4
|
13 |
results: []
|
|
|
20 |
# twitter_sentiment_small_4
|
21 |
|
22 |
This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggingface.co/microsoft/deberta-v3-base) on an unknown dataset.
|
23 |
+
It achieves the following results on the evaluation set:
|
24 |
+
- Loss: 0.4844
|
25 |
+
- Accuracy: 0.824
|
26 |
+
- F1-score: 0.8057
|
27 |
+
- Precision: 0.8295
|
28 |
+
- Recall: 0.7833
|
29 |
|
30 |
## Model description
|
31 |
|
|
|
53 |
- lr_scheduler_warmup_steps: 50
|
54 |
- num_epochs: 3
|
55 |
|
56 |
+
### Training results
|
57 |
+
|
58 |
+
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1-score | Precision | Recall |
|
59 |
+
|:-------------:|:------:|:----:|:---------------:|:--------:|:--------:|:---------:|:------:|
|
60 |
+
| 0.643 | 0.0889 | 100 | 0.5191 | 0.774 | 0.7466 | 0.7817 | 0.7146 |
|
61 |
+
| 0.4779 | 0.1778 | 200 | 0.4895 | 0.787 | 0.7677 | 0.7805 | 0.7554 |
|
62 |
+
| 0.4069 | 0.2667 | 300 | 0.4630 | 0.795 | 0.7745 | 0.7946 | 0.7554 |
|
63 |
+
| 0.4215 | 0.3556 | 400 | 0.4562 | 0.8 | 0.7669 | 0.8393 | 0.7060 |
|
64 |
+
| 0.4187 | 0.4444 | 500 | 0.4350 | 0.807 | 0.7992 | 0.7758 | 0.8240 |
|
65 |
+
| 0.4197 | 0.5333 | 600 | 0.4497 | 0.806 | 0.7785 | 0.8317 | 0.7318 |
|
66 |
+
| 0.4034 | 0.6222 | 700 | 0.4335 | 0.817 | 0.8111 | 0.7813 | 0.8433 |
|
67 |
+
| 0.4058 | 0.7111 | 800 | 0.4231 | 0.804 | 0.7996 | 0.7637 | 0.8391 |
|
68 |
+
| 0.4044 | 0.8 | 900 | 0.4404 | 0.805 | 0.8056 | 0.7523 | 0.8670 |
|
69 |
+
| 0.3678 | 0.8889 | 1000 | 0.4000 | 0.815 | 0.8095 | 0.7782 | 0.8433 |
|
70 |
+
| 0.3791 | 0.9778 | 1100 | 0.4451 | 0.814 | 0.814 | 0.7622 | 0.8734 |
|
71 |
+
| 0.3109 | 1.0667 | 1200 | 0.5034 | 0.817 | 0.8039 | 0.8030 | 0.8047 |
|
72 |
+
| 0.2999 | 1.1556 | 1300 | 0.4740 | 0.812 | 0.8105 | 0.7643 | 0.8627 |
|
73 |
+
| 0.2902 | 1.2444 | 1400 | 0.4517 | 0.825 | 0.8066 | 0.8314 | 0.7833 |
|
74 |
+
| 0.2664 | 1.3333 | 1500 | 0.4646 | 0.83 | 0.8225 | 0.8008 | 0.8455 |
|
75 |
+
| 0.2826 | 1.4222 | 1600 | 0.4844 | 0.824 | 0.8057 | 0.8295 | 0.7833 |
|
76 |
+
|
77 |
+
|
78 |
### Framework versions
|
79 |
|
80 |
- Transformers 4.44.2
|
all_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 1.4222222222222223,
|
3 |
+
"total_flos": 460888389916608.0,
|
4 |
+
"train_loss": 0.3873763084411621,
|
5 |
+
"train_runtime": 21680.5848,
|
6 |
+
"train_samples_per_second": 2.491,
|
7 |
+
"train_steps_per_second": 0.156
|
8 |
+
}
|
train_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 1.4222222222222223,
|
3 |
+
"total_flos": 460888389916608.0,
|
4 |
+
"train_loss": 0.3873763084411621,
|
5 |
+
"train_runtime": 21680.5848,
|
6 |
+
"train_samples_per_second": 2.491,
|
7 |
+
"train_steps_per_second": 0.156
|
8 |
+
}
|