TeamResearch commited on
Commit
5a868cf
1 Parent(s): b88ec3a

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ datasets:
5
+ - emotion
6
+ metrics:
7
+ - accuracy
8
+ model-index:
9
+ - name: bnb-sentiment-model-saagie
10
+ results:
11
+ - task:
12
+ name: Text Classification
13
+ type: text-classification
14
+ dataset:
15
+ name: emotion
16
+ type: emotion
17
+ args: split
18
+ metrics:
19
+ - name: Accuracy
20
+ type: accuracy
21
+ value: 0.93
22
+ ---
23
+
24
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
25
+ should probably proofread and complete it, then remove this comment. -->
26
+
27
+ # bnb-sentiment-model-saagie
28
+
29
+ This model is a fine-tuned version of [j-hartmann/emotion-english-distilroberta-base](https://huggingface.co/j-hartmann/emotion-english-distilroberta-base) on the emotion dataset.
30
+ It achieves the following results on the evaluation set:
31
+ - Loss: 0.2269
32
+ - Accuracy: 0.93
33
+
34
+ ## Model description
35
+
36
+ More information needed
37
+
38
+ ## Intended uses & limitations
39
+
40
+ More information needed
41
+
42
+ ## Training and evaluation data
43
+
44
+ More information needed
45
+
46
+ ## Training procedure
47
+
48
+ ### Training hyperparameters
49
+
50
+ The following hyperparameters were used during training:
51
+ - learning_rate: 5e-05
52
+ - train_batch_size: 8
53
+ - eval_batch_size: 8
54
+ - seed: 42
55
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
56
+ - lr_scheduler_type: linear
57
+ - num_epochs: 3
58
+
59
+ ### Training results
60
+
61
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
62
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|
63
+ | 0.3839 | 1.0 | 1500 | 0.2857 | 0.9333 |
64
+ | 0.1902 | 2.0 | 3000 | 0.2143 | 0.9417 |
65
+ | 0.1159 | 3.0 | 4500 | 0.2269 | 0.93 |
66
+
67
+
68
+ ### Framework versions
69
+
70
+ - Transformers 4.18.0
71
+ - Pytorch 1.8.1
72
+ - Datasets 2.12.0
73
+ - Tokenizers 0.12.1