tasinhoque commited on
Commit
10030d9
1 Parent(s): 220ba11

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -1
README.md CHANGED
@@ -1,3 +1,92 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
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: distilbert-go-emotions
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.42867674161444896
26
+ - name: Precision
27
+ type: precision
28
+ value: 0.4503794622630937
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.5002719498073401
32
+ - name: F1
33
+ type: f1
34
+ value: 0.47024637118703766
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
+ # distilbert-go-emotions
41
+
42
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the go_emotions dataset.
43
+ It achieves the following results on the evaluation set:
44
+ - Loss: 0.0907
45
+ - Accuracy: 0.4287
46
+ - Precision: 0.4504
47
+ - Recall: 0.5003
48
+ - F1: 0.4702
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: 6
74
+
75
+ ### Training results
76
+
77
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
78
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
79
+ | No log | 1.0 | 340 | 0.1102 | 0.4125 | 0.2946 | 0.2139 | 0.2014 |
80
+ | 0.1347 | 2.0 | 680 | 0.0890 | 0.3900 | 0.4252 | 0.4627 | 0.4262 |
81
+ | 0.1347 | 3.0 | 1020 | 0.0860 | 0.4097 | 0.4344 | 0.4992 | 0.4578 |
82
+ | 0.0771 | 4.0 | 1360 | 0.0864 | 0.4298 | 0.4561 | 0.4974 | 0.4701 |
83
+ | 0.0771 | 5.0 | 1700 | 0.0891 | 0.4266 | 0.4522 | 0.4992 | 0.4703 |
84
+ | 0.0617 | 6.0 | 2040 | 0.0907 | 0.4287 | 0.4504 | 0.5003 | 0.4702 |
85
+
86
+
87
+ ### Framework versions
88
+
89
+ - Transformers 4.20.1
90
+ - Pytorch 1.12.0
91
+ - Datasets 2.1.0
92
+ - Tokenizers 0.12.1