Huseyin commited on
Commit
f292399
1 Parent(s): 87b2197

Model save

Browse files
README.md CHANGED
@@ -1,4 +1,5 @@
1
  ---
 
2
  license: apache-2.0
3
  base_model: bert-base-uncased
4
  tags:
@@ -20,11 +21,11 @@ should probably proofread and complete it, then remove this comment. -->
20
 
21
  This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
22
  It achieves the following results on the evaluation set:
23
- - Loss: 0.2076
24
- - Precision: 0.9531
25
- - Recall: 0.9556
26
- - F1: 0.9544
27
- - Accuracy: 0.9468
28
 
29
  ## Model description
30
 
@@ -43,26 +44,38 @@ More information needed
43
  ### Training hyperparameters
44
 
45
  The following hyperparameters were used during training:
46
- - learning_rate: 2e-05
47
- - train_batch_size: 16
48
- - eval_batch_size: 16
49
  - seed: 42
50
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
  - lr_scheduler_type: linear
52
- - num_epochs: 3
53
 
54
  ### Training results
55
 
56
- | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
57
- |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
58
- | 0.3298 | 1.0 | 1250 | 0.2486 | 0.9328 | 0.9362 | 0.9345 | 0.9253 |
59
- | 0.1802 | 2.0 | 2500 | 0.2049 | 0.9489 | 0.9552 | 0.9520 | 0.9448 |
60
- | 0.1233 | 3.0 | 3750 | 0.2076 | 0.9531 | 0.9556 | 0.9544 | 0.9468 |
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
 
63
  ### Framework versions
64
 
65
- - Transformers 4.41.2
66
- - Pytorch 2.3.0+cu121
67
- - Datasets 2.19.2
68
  - Tokenizers 0.19.1
 
1
  ---
2
+ library_name: transformers
3
  license: apache-2.0
4
  base_model: bert-base-uncased
5
  tags:
 
21
 
22
  This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
23
  It achieves the following results on the evaluation set:
24
+ - Loss: 0.3910
25
+ - Precision: 0.9616
26
+ - Recall: 0.9637
27
+ - F1: 0.9627
28
+ - Accuracy: 0.9560
29
 
30
  ## Model description
31
 
 
44
  ### Training hyperparameters
45
 
46
  The following hyperparameters were used during training:
47
+ - learning_rate: 1e-05
48
+ - train_batch_size: 6
49
+ - eval_batch_size: 6
50
  - seed: 42
51
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
52
  - lr_scheduler_type: linear
53
+ - num_epochs: 15
54
 
55
  ### Training results
56
 
57
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
58
+ |:-------------:|:-----:|:-----:|:---------------:|:---------:|:------:|:------:|:--------:|
59
+ | 0.3052 | 1.0 | 3334 | 0.2630 | 0.9365 | 0.9367 | 0.9366 | 0.9228 |
60
+ | 0.2104 | 2.0 | 6668 | 0.2481 | 0.9418 | 0.9537 | 0.9477 | 0.9400 |
61
+ | 0.163 | 3.0 | 10002 | 0.2390 | 0.9495 | 0.9606 | 0.9550 | 0.9479 |
62
+ | 0.1151 | 4.0 | 13336 | 0.2516 | 0.9549 | 0.9616 | 0.9583 | 0.9515 |
63
+ | 0.0809 | 5.0 | 16670 | 0.2887 | 0.9590 | 0.9556 | 0.9573 | 0.9493 |
64
+ | 0.0625 | 6.0 | 20004 | 0.2912 | 0.9573 | 0.9611 | 0.9592 | 0.9520 |
65
+ | 0.0516 | 7.0 | 23338 | 0.3139 | 0.9581 | 0.9563 | 0.9572 | 0.9501 |
66
+ | 0.0388 | 8.0 | 26672 | 0.3070 | 0.9605 | 0.9600 | 0.9602 | 0.9531 |
67
+ | 0.0273 | 9.0 | 30006 | 0.3344 | 0.9607 | 0.9617 | 0.9612 | 0.9535 |
68
+ | 0.0252 | 10.0 | 33340 | 0.3547 | 0.9608 | 0.9638 | 0.9623 | 0.9554 |
69
+ | 0.0242 | 11.0 | 36674 | 0.3726 | 0.9600 | 0.9619 | 0.9610 | 0.9541 |
70
+ | 0.0119 | 12.0 | 40008 | 0.3727 | 0.9602 | 0.9623 | 0.9612 | 0.9546 |
71
+ | 0.0078 | 13.0 | 43342 | 0.3772 | 0.9617 | 0.9639 | 0.9628 | 0.9562 |
72
+ | 0.0078 | 14.0 | 46676 | 0.3904 | 0.9615 | 0.9638 | 0.9627 | 0.9560 |
73
+ | 0.0026 | 15.0 | 50010 | 0.3910 | 0.9616 | 0.9637 | 0.9627 | 0.9560 |
74
 
75
 
76
  ### Framework versions
77
 
78
+ - Transformers 4.44.2
79
+ - Pytorch 2.4.0+cu121
80
+ - Datasets 2.21.0
81
  - Tokenizers 0.19.1
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3abdee2b6af3e085e9555adb3cb15f600ba3db3e06d071b96f4eae0376e7005b
3
  size 435642228
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8add676909737c061f8510e1a5bcecbbb79a9044ea9c653898956115f81dcef
3
  size 435642228
runs/Aug30_15-42-45_66d12255e562/events.out.tfevents.1725032566.66d12255e562.293.0 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8be99099226f235d6024653caaa67e03ecf6a44a1a5aceb844559ec63516637d
3
- size 21591
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:403267d8235d004e17b30bcc19ced942bec482b44074d0f1b0cf12481ba0ad86
3
+ size 34563