tasinhoque commited on
Commit
ea3aa2c
1 Parent(s): 6166c3e

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md CHANGED
@@ -1,3 +1,89 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: roberta-large-go-emotions-3
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.44452635458901585
26
+ - name: Precision
27
+ type: precision
28
+ value: 0.5241481690233145
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.532779745019394
32
+ - name: F1
33
+ type: f1
34
+ value: 0.5160548869396229
35
  ---
36
+
37
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
38
+ should probably proofread and complete it, then remove this comment. -->
39
+
40
+ # roberta-large-go-emotions-3
41
+
42
+ This model is a fine-tuned version of [tasinhoque/roberta-large-go-emotions](https://huggingface.co/tasinhoque/roberta-large-go-emotions) on the go_emotions dataset.
43
+ It achieves the following results on the evaluation set:
44
+ - Loss: 0.0956
45
+ - Accuracy: 0.4445
46
+ - Precision: 0.5241
47
+ - Recall: 0.5328
48
+ - F1: 0.5161
49
+
50
+ ## Model description
51
+
52
+ More information needed
53
+
54
+ ## Intended uses & limitations
55
+
56
+ More information needed
57
+
58
+ ## Training and evaluation data
59
+
60
+ More information needed
61
+
62
+ ## Training procedure
63
+
64
+ ### Training hyperparameters
65
+
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: 3
74
+
75
+ ### Training results
76
+
77
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
78
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
79
+ | No log | 1.0 | 340 | 0.0862 | 0.4292 | 0.5012 | 0.5558 | 0.5208 |
80
+ | 0.0597 | 2.0 | 680 | 0.0924 | 0.4329 | 0.5164 | 0.5362 | 0.5151 |
81
+ | 0.0597 | 3.0 | 1020 | 0.0956 | 0.4445 | 0.5241 | 0.5328 | 0.5161 |
82
+
83
+
84
+ ### Framework versions
85
+
86
+ - Transformers 4.20.1
87
+ - Pytorch 1.12.0
88
+ - Datasets 2.1.0
89
+ - Tokenizers 0.12.1