colingao commited on
Commit
37608c9
1 Parent(s): 9d51a7a

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ datasets:
5
+ - emotion
6
+ metrics:
7
+ - accuracy
8
+ - f1
9
+ - precision
10
+ model-index:
11
+ - name: bert-base-uncased_emotion_ft
12
+ results:
13
+ - task:
14
+ name: Text Classification
15
+ type: text-classification
16
+ dataset:
17
+ name: emotion
18
+ type: emotion
19
+ config: split
20
+ split: validation
21
+ args: split
22
+ metrics:
23
+ - name: Accuracy
24
+ type: accuracy
25
+ value: 0.9355
26
+ - name: F1
27
+ type: f1
28
+ value: 0.9356618127644594
29
+ - name: Precision
30
+ type: precision
31
+ value: 0.9107946719559769
32
+ ---
33
+
34
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
35
+ should probably proofread and complete it, then remove this comment. -->
36
+
37
+ # bert-base-uncased_emotion_ft
38
+
39
+ This model was trained from scratch on the emotion dataset.
40
+ It achieves the following results on the evaluation set:
41
+ - Loss: 0.1553
42
+ - Accuracy: 0.9355
43
+ - F1: 0.9357
44
+ - Precision: 0.9108
45
+
46
+ ## Model description
47
+
48
+ More information needed
49
+
50
+ ## Intended uses & limitations
51
+
52
+ More information needed
53
+
54
+ ## Training and evaluation data
55
+
56
+ More information needed
57
+
58
+ ## Training procedure
59
+
60
+ ### Training hyperparameters
61
+
62
+ The following hyperparameters were used during training:
63
+ - learning_rate: 2e-05
64
+ - train_batch_size: 64
65
+ - eval_batch_size: 64
66
+ - seed: 42
67
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
68
+ - lr_scheduler_type: linear
69
+ - num_epochs: 4
70
+
71
+ ### Training results
72
+
73
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision |
74
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|
75
+ | 0.82 | 1.0 | 250 | 0.2697 | 0.9105 | 0.9112 | 0.8759 |
76
+ | 0.2002 | 2.0 | 500 | 0.1846 | 0.9325 | 0.9331 | 0.9059 |
77
+ | 0.1237 | 3.0 | 750 | 0.1562 | 0.9365 | 0.9368 | 0.9120 |
78
+ | 0.097 | 4.0 | 1000 | 0.1553 | 0.9355 | 0.9357 | 0.9108 |
79
+
80
+
81
+ ### Framework versions
82
+
83
+ - Transformers 4.31.0
84
+ - Pytorch 2.0.1+cu117
85
+ - Datasets 2.14.4
86
+ - Tokenizers 0.13.3