jungealexander commited on
Commit
997c801
1 Parent(s): 331b9a2

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - generated_from_trainer
5
+ datasets:
6
+ - go_emotions
7
+ metrics:
8
+ - f1
9
+ - accuracy
10
+ model-index:
11
+ - name: distilbert-base-uncased-finetuned-go_emotions_20220608_1
12
+ results:
13
+ - task:
14
+ name: Text Classification
15
+ type: text-classification
16
+ dataset:
17
+ name: go_emotions
18
+ type: go_emotions
19
+ args: simplified
20
+ metrics:
21
+ - name: F1
22
+ type: f1
23
+ value: 0.5575026333429091
24
+ - name: Accuracy
25
+ type: accuracy
26
+ value: 0.43641725027644673
27
+ ---
28
+
29
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
30
+ should probably proofread and complete it, then remove this comment. -->
31
+
32
+ # distilbert-base-uncased-finetuned-go_emotions_20220608_1
33
+
34
+ This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the go_emotions dataset.
35
+ It achieves the following results on the evaluation set:
36
+ - Loss: 0.0857
37
+ - F1: 0.5575
38
+ - Roc Auc: 0.7242
39
+ - Accuracy: 0.4364
40
+
41
+ ## Model description
42
+
43
+ More information needed
44
+
45
+ ## Intended uses & limitations
46
+
47
+ More information needed
48
+
49
+ ## Training and evaluation data
50
+
51
+ More information needed
52
+
53
+ ## Training procedure
54
+
55
+ ### Training hyperparameters
56
+
57
+ The following hyperparameters were used during training:
58
+ - learning_rate: 2e-05
59
+ - train_batch_size: 64
60
+ - eval_batch_size: 64
61
+ - seed: 42
62
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
63
+ - lr_scheduler_type: linear
64
+ - num_epochs: 5
65
+
66
+ ### Training results
67
+
68
+ | Training Loss | Epoch | Step | Validation Loss | F1 | Roc Auc | Accuracy |
69
+ |:-------------:|:-----:|:----:|:---------------:|:------:|:-------:|:--------:|
70
+ | 0.173 | 1.0 | 679 | 0.1074 | 0.4245 | 0.6455 | 0.2976 |
71
+ | 0.0989 | 2.0 | 1358 | 0.0903 | 0.5199 | 0.6974 | 0.3972 |
72
+ | 0.0865 | 3.0 | 2037 | 0.0868 | 0.5504 | 0.7180 | 0.4263 |
73
+ | 0.0806 | 4.0 | 2716 | 0.0860 | 0.5472 | 0.7160 | 0.4233 |
74
+ | 0.0771 | 5.0 | 3395 | 0.0857 | 0.5575 | 0.7242 | 0.4364 |
75
+
76
+
77
+ ### Framework versions
78
+
79
+ - Transformers 4.19.2
80
+ - Pytorch 1.11.0+cu113
81
+ - Datasets 2.2.2
82
+ - Tokenizers 0.12.1