tasinhoque
commited on
Commit
•
5b53272
1
Parent(s):
ef48e01
update model card README.md
Browse files
README.md
CHANGED
@@ -1,12 +1,37 @@
|
|
1 |
---
|
2 |
-
license:
|
3 |
tags:
|
4 |
- generated_from_trainer
|
5 |
datasets:
|
6 |
- go_emotions
|
|
|
|
|
|
|
|
|
|
|
7 |
model-index:
|
8 |
- name: text-classification-goemotions
|
9 |
-
results:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
---
|
11 |
|
12 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
@@ -14,7 +39,13 @@ should probably proofread and complete it, then remove this comment. -->
|
|
14 |
|
15 |
# text-classification-goemotions
|
16 |
|
17 |
-
This model is a fine-tuned version of [
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
## Model description
|
20 |
|
@@ -35,14 +66,20 @@ More information needed
|
|
35 |
The following hyperparameters were used during training:
|
36 |
- learning_rate: 5e-05
|
37 |
- train_batch_size: 128
|
38 |
-
- eval_batch_size:
|
39 |
- seed: 42
|
40 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
41 |
- lr_scheduler_type: linear
|
42 |
-
- num_epochs:
|
43 |
|
44 |
### Training results
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
|
48 |
### Framework versions
|
|
|
1 |
---
|
2 |
+
license: mit
|
3 |
tags:
|
4 |
- generated_from_trainer
|
5 |
datasets:
|
6 |
- go_emotions
|
7 |
+
metrics:
|
8 |
+
- accuracy
|
9 |
+
- precision
|
10 |
+
- recall
|
11 |
+
- f1
|
12 |
model-index:
|
13 |
- name: text-classification-goemotions
|
14 |
+
results:
|
15 |
+
- task:
|
16 |
+
name: Text Classification
|
17 |
+
type: text-classification
|
18 |
+
dataset:
|
19 |
+
name: go_emotions
|
20 |
+
type: go_emotions
|
21 |
+
args: simplified
|
22 |
+
metrics:
|
23 |
+
- name: Accuracy
|
24 |
+
type: accuracy
|
25 |
+
value: 0.4327312937707335
|
26 |
+
- name: Precision
|
27 |
+
type: precision
|
28 |
+
value: 0.5160135896476034
|
29 |
+
- name: Recall
|
30 |
+
type: recall
|
31 |
+
value: 0.5555752222497288
|
32 |
+
- name: F1
|
33 |
+
type: f1
|
34 |
+
value: 0.5226068504396464
|
35 |
---
|
36 |
|
37 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
39 |
|
40 |
# text-classification-goemotions
|
41 |
|
42 |
+
This model is a fine-tuned version of [roberta-large](https://huggingface.co/roberta-large) on the go_emotions dataset.
|
43 |
+
It achieves the following results on the evaluation set:
|
44 |
+
- Loss: 0.0830
|
45 |
+
- Accuracy: 0.4327
|
46 |
+
- Precision: 0.5160
|
47 |
+
- Recall: 0.5556
|
48 |
+
- F1: 0.5226
|
49 |
|
50 |
## Model description
|
51 |
|
|
|
66 |
The following hyperparameters were used during training:
|
67 |
- learning_rate: 5e-05
|
68 |
- train_batch_size: 128
|
69 |
+
- eval_batch_size: 128
|
70 |
- seed: 42
|
71 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
72 |
- lr_scheduler_type: linear
|
73 |
+
- num_epochs: 4
|
74 |
|
75 |
### Training results
|
76 |
|
77 |
+
| Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
|
78 |
+
|:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
|
79 |
+
| No log | 1.0 | 340 | 0.0884 | 0.3782 | 0.4798 | 0.4643 | 0.4499 |
|
80 |
+
| 0.1042 | 2.0 | 680 | 0.0829 | 0.4093 | 0.4766 | 0.5272 | 0.4879 |
|
81 |
+
| 0.1042 | 3.0 | 1020 | 0.0821 | 0.4202 | 0.5103 | 0.5531 | 0.5092 |
|
82 |
+
| 0.0686 | 4.0 | 1360 | 0.0830 | 0.4327 | 0.5160 | 0.5556 | 0.5226 |
|
83 |
|
84 |
|
85 |
### Framework versions
|