lanchunhui commited on
Commit
fd9f9fa
1 Parent(s): 165d1a1

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - emotion
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ - precision
11
+ model-index:
12
+ - name: distilbert-base-uncased_emotion_ft_0416
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.9325
27
+ - name: F1
28
+ type: f1
29
+ value: 0.9327439172316551
30
+ - name: Precision
31
+ type: precision
32
+ value: 0.9027697506235867
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_emotion_ft_0416
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.1714
43
+ - Accuracy: 0.9325
44
+ - F1: 0.9327
45
+ - Precision: 0.9028
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: 128
66
+ - eval_batch_size: 128
67
+ - seed: 42
68
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
69
+ - lr_scheduler_type: linear
70
+ - num_epochs: 4
71
+
72
+ ### Training results
73
+
74
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision |
75
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|
76
+ | No log | 1.0 | 125 | 0.4267 | 0.877 | 0.8677 | 0.8778 |
77
+ | 0.6498 | 2.0 | 250 | 0.2128 | 0.922 | 0.9219 | 0.8975 |
78
+ | 0.6498 | 3.0 | 375 | 0.1880 | 0.925 | 0.9258 | 0.8877 |
79
+ | 0.1653 | 4.0 | 500 | 0.1714 | 0.9325 | 0.9327 | 0.9028 |
80
+
81
+
82
+ ### Framework versions
83
+
84
+ - Transformers 4.28.0.dev0
85
+ - Pytorch 2.0.0+cu118
86
+ - Datasets 2.11.0
87
+ - Tokenizers 0.11.0