Vedmani commited on
Commit
5046f0b
1 Parent(s): f6030ad

Model save

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: bert-base-cased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - accuracy
8
+ model-index:
9
+ - name: output
10
+ results: []
11
+ ---
12
+
13
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
14
+ should probably proofread and complete it, then remove this comment. -->
15
+
16
+ # output
17
+
18
+ This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the None dataset.
19
+ It achieves the following results on the evaluation set:
20
+ - Loss: 0.2749
21
+ - Accuracy: 0.9364
22
+
23
+ ## Model description
24
+
25
+ More information needed
26
+
27
+ ## Intended uses & limitations
28
+
29
+ More information needed
30
+
31
+ ## Training and evaluation data
32
+
33
+ More information needed
34
+
35
+ ## Training procedure
36
+
37
+ ### Training hyperparameters
38
+
39
+ The following hyperparameters were used during training:
40
+ - learning_rate: 0.0005
41
+ - train_batch_size: 16
42
+ - eval_batch_size: 16
43
+ - seed: 42
44
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
45
+ - lr_scheduler_type: cosine
46
+ - lr_scheduler_warmup_ratio: 0.3
47
+ - num_epochs: 10.0
48
+
49
+ ### Training results
50
+
51
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
52
+ |:-------------:|:-----:|:-----:|:---------------:|:--------:|
53
+ | 0.2399 | 1.0 | 2500 | 0.2539 | 0.9037 |
54
+ | 0.2454 | 2.0 | 5000 | 0.2753 | 0.9064 |
55
+ | 0.2251 | 3.0 | 7500 | 0.2436 | 0.9167 |
56
+ | 0.1996 | 4.0 | 10000 | 0.2271 | 0.9246 |
57
+ | 0.1845 | 5.0 | 12500 | 0.2116 | 0.9269 |
58
+ | 0.205 | 6.0 | 15000 | 0.1946 | 0.9312 |
59
+ | 0.1352 | 7.0 | 17500 | 0.2233 | 0.9328 |
60
+ | 0.1306 | 8.0 | 20000 | 0.2257 | 0.936 |
61
+ | 0.0849 | 9.0 | 22500 | 0.2582 | 0.9372 |
62
+ | 0.0609 | 10.0 | 25000 | 0.2749 | 0.9364 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.32.0.dev0
68
+ - Pytorch 2.0.1+cu118
69
+ - Datasets 2.13.1
70
+ - Tokenizers 0.13.3