juanxo90 commited on
Commit
90462b8
·
1 Parent(s): a0bc420

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - emotion
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ - recall
11
+ model-index:
12
+ - name: distilbert-base-uncased-fine-tuned-emotion
13
+ results:
14
+ - task:
15
+ name: Text Classification
16
+ type: text-classification
17
+ dataset:
18
+ name: emotion
19
+ type: emotion
20
+ config: split
21
+ split: validation
22
+ args: split
23
+ metrics:
24
+ - name: Accuracy
25
+ type: accuracy
26
+ value: 0.9255
27
+ - name: F1
28
+ type: f1
29
+ value: 0.9254141326182981
30
+ - name: Recall
31
+ type: recall
32
+ value: 0.9255
33
+ ---
34
+
35
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
36
+ should probably proofread and complete it, then remove this comment. -->
37
+
38
+ # distilbert-base-uncased-fine-tuned-emotion
39
+
40
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the emotion dataset.
41
+ It achieves the following results on the evaluation set:
42
+ - Loss: 0.2156
43
+ - Accuracy: 0.9255
44
+ - F1: 0.9254
45
+ - Recall: 0.9255
46
+
47
+ ## Model description
48
+
49
+ More information needed
50
+
51
+ ## Intended uses & limitations
52
+
53
+ More information needed
54
+
55
+ ## Training and evaluation data
56
+
57
+ More information needed
58
+
59
+ ## Training procedure
60
+
61
+ ### Training hyperparameters
62
+
63
+ The following hyperparameters were used during training:
64
+ - learning_rate: 2e-05
65
+ - train_batch_size: 64
66
+ - eval_batch_size: 64
67
+ - seed: 42
68
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
69
+ - lr_scheduler_type: linear
70
+ - num_epochs: 2
71
+
72
+ ### Training results
73
+
74
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Recall |
75
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:------:|
76
+ | 0.7838 | 1.0 | 250 | 0.2995 | 0.906 | 0.9039 | 0.906 |
77
+ | 0.237 | 2.0 | 500 | 0.2156 | 0.9255 | 0.9254 | 0.9255 |
78
+
79
+
80
+ ### Framework versions
81
+
82
+ - Transformers 4.30.2
83
+ - Pytorch 1.13.1+cu117
84
+ - Datasets 2.13.2
85
+ - Tokenizers 0.12.1