darrel999 commited on
Commit
a133841
·
1 Parent(s): be1f9e1

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_0523
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.917
27
+ - name: F1
28
+ type: f1
29
+ value: 0.9167815299071149
30
+ - name: Precision
31
+ type: precision
32
+ value: 0.8882036697297124
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_0523
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.2694
43
+ - Accuracy: 0.917
44
+ - F1: 0.9168
45
+ - Precision: 0.8882
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: 256
66
+ - eval_batch_size: 256
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 | 63 | 0.9564 | 0.641 | 0.5522 | 0.5005 |
77
+ | No log | 2.0 | 126 | 0.4544 | 0.8635 | 0.8507 | 0.8714 |
78
+ | No log | 3.0 | 189 | 0.2987 | 0.91 | 0.9093 | 0.8805 |
79
+ | 0.67 | 4.0 | 252 | 0.2694 | 0.917 | 0.9168 | 0.8882 |
80
+
81
+
82
+ ### Framework versions
83
+
84
+ - Transformers 4.29.1
85
+ - Pytorch 2.0.1
86
+ - Datasets 2.12.0
87
+ - Tokenizers 0.13.3