gavulsim commited on
Commit
8710096
1 Parent(s): ea25a01

End of training

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: microsoft/deberta-base
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - yahoo_answers_topics
8
+ metrics:
9
+ - accuracy
10
+ model-index:
11
+ - name: deberta_finetuned_yahoo_answers_topics
12
+ results:
13
+ - task:
14
+ name: Text Classification
15
+ type: text-classification
16
+ dataset:
17
+ name: yahoo_answers_topics
18
+ type: yahoo_answers_topics
19
+ config: yahoo_answers_topics
20
+ split: test
21
+ args: yahoo_answers_topics
22
+ metrics:
23
+ - name: Accuracy
24
+ type: accuracy
25
+ value: 0.7073333333333334
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
+ # deberta_finetuned_yahoo_answers_topics
32
+
33
+ This model is a fine-tuned version of [microsoft/deberta-base](https://huggingface.co/microsoft/deberta-base) on the yahoo_answers_topics dataset.
34
+ It achieves the following results on the evaluation set:
35
+ - Loss: 0.9246
36
+ - Accuracy: 0.7073
37
+
38
+ ## Model description
39
+
40
+ More information needed
41
+
42
+ ## Intended uses & limitations
43
+
44
+ More information needed
45
+
46
+ ## Training and evaluation data
47
+
48
+ More information needed
49
+
50
+ ## Training procedure
51
+
52
+ ### Training hyperparameters
53
+
54
+ The following hyperparameters were used during training:
55
+ - learning_rate: 5e-05
56
+ - train_batch_size: 8
57
+ - eval_batch_size: 8
58
+ - seed: 42
59
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
60
+ - lr_scheduler_type: linear
61
+ - training_steps: 30000
62
+
63
+ ### Training results
64
+
65
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
66
+ |:-------------:|:-----:|:-----:|:---------------:|:--------:|
67
+ | 1.197 | 0.03 | 5000 | 1.1306 | 0.6511 |
68
+ | 1.0564 | 0.06 | 10000 | 1.0731 | 0.6690 |
69
+ | 0.9436 | 0.09 | 15000 | 1.0345 | 0.6864 |
70
+ | 1.0601 | 0.11 | 20000 | 0.9684 | 0.6925 |
71
+ | 0.9577 | 0.14 | 25000 | 0.9466 | 0.7015 |
72
+ | 0.9172 | 0.17 | 30000 | 0.9246 | 0.7073 |
73
+
74
+
75
+ ### Framework versions
76
+
77
+ - Transformers 4.34.1
78
+ - Pytorch 2.0.0
79
+ - Datasets 2.14.5
80
+ - Tokenizers 0.14.1