aimarsg commited on
Commit
e3ea8f0
1 Parent(s): f9010c7

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ metrics:
5
+ - accuracy
6
+ - precision
7
+ - recall
8
+ model-index:
9
+ - name: results
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
+ # results
17
+
18
+ This model was trained from scratch on an unknown dataset.
19
+ It achieves the following results on the evaluation set:
20
+ - Loss: 0.2338
21
+ - Accuracy: 0.9388
22
+ - Precision: 0.8813
23
+ - Recall: 0.9388
24
+ - F1 Score: 0.9091
25
+
26
+ ## Model description
27
+
28
+ More information needed
29
+
30
+ ## Intended uses & limitations
31
+
32
+ More information needed
33
+
34
+ ## Training and evaluation data
35
+
36
+ More information needed
37
+
38
+ ## Training procedure
39
+
40
+ ### Training hyperparameters
41
+
42
+ The following hyperparameters were used during training:
43
+ - learning_rate: 5e-05
44
+ - train_batch_size: 16
45
+ - eval_batch_size: 64
46
+ - seed: 42
47
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
48
+ - lr_scheduler_type: linear
49
+ - lr_scheduler_warmup_steps: 250
50
+ - num_epochs: 3
51
+
52
+ ### Training results
53
+
54
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 Score |
55
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:--------:|
56
+ | 0.2704 | 1.0 | 507 | 0.2323 | 0.9388 | 0.8813 | 0.9388 | 0.9091 |
57
+ | 0.2884 | 2.0 | 1014 | 0.2311 | 0.9388 | 0.8813 | 0.9388 | 0.9091 |
58
+ | 0.2175 | 3.0 | 1521 | 0.2338 | 0.9388 | 0.8813 | 0.9388 | 0.9091 |
59
+
60
+
61
+ ### Framework versions
62
+
63
+ - Transformers 4.28.1
64
+ - Pytorch 2.0.0+cu118
65
+ - Datasets 2.11.0
66
+ - Tokenizers 0.13.3