bhadresh-savani commited on
Commit
7455df9
1 Parent(s): 25370be

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ datasets:
5
+ - emotion
6
+ metrics:
7
+ - accuracy
8
+ - f1
9
+ model-index:
10
+ - name: bertweet-base-finetuned-emotion
11
+ results:
12
+ - task:
13
+ name: Text Classification
14
+ type: text-classification
15
+ dataset:
16
+ name: emotion
17
+ type: emotion
18
+ args: default
19
+ metrics:
20
+ - name: Accuracy
21
+ type: accuracy
22
+ value: 0.929
23
+ - name: F1
24
+ type: f1
25
+ value: 0.9295613935787139
26
+ ---
27
+
28
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
29
+ should probably proofread and complete it, then remove this comment. -->
30
+
31
+ # bertweet-base-finetuned-emotion
32
+
33
+ This model is a fine-tuned version of [vinai/bertweet-base](https://huggingface.co/vinai/bertweet-base) on the emotion dataset.
34
+ It achieves the following results on the evaluation set:
35
+ - Loss: 0.1737
36
+ - Accuracy: 0.929
37
+ - F1: 0.9296
38
+
39
+ ## Model description
40
+
41
+ More information needed
42
+
43
+ ## Intended uses & limitations
44
+
45
+ More information needed
46
+
47
+ ## Training and evaluation data
48
+
49
+ More information needed
50
+
51
+ ## Training procedure
52
+
53
+ ### Training hyperparameters
54
+
55
+ The following hyperparameters were used during training:
56
+ - learning_rate: 2e-05
57
+ - train_batch_size: 64
58
+ - eval_batch_size: 64
59
+ - seed: 42
60
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
61
+ - lr_scheduler_type: linear
62
+ - num_epochs: 4
63
+
64
+ ### Training results
65
+
66
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
67
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|
68
+ | 0.9469 | 1.0 | 250 | 0.3643 | 0.895 | 0.8921 |
69
+ | 0.2807 | 2.0 | 500 | 0.2173 | 0.9245 | 0.9252 |
70
+ | 0.1749 | 3.0 | 750 | 0.1859 | 0.926 | 0.9266 |
71
+ | 0.1355 | 4.0 | 1000 | 0.1737 | 0.929 | 0.9296 |
72
+
73
+
74
+ ### Framework versions
75
+
76
+ - Transformers 4.13.0
77
+ - Pytorch 1.11.0+cu113
78
+ - Datasets 1.16.1
79
+ - Tokenizers 0.10.3