eeshclusive commited on
Commit
8eacee9
1 Parent(s): 830a941

Training complete

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: bert-base-cased
4
+ tags:
5
+ - generated_from_trainer
6
+ metrics:
7
+ - precision
8
+ - recall
9
+ - f1
10
+ - accuracy
11
+ model-index:
12
+ - name: bert-base-finetuned-ner
13
+ results: []
14
+ ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+ # bert-base-finetuned-ner
20
+
21
+ This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the None dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 0.3723
24
+ - Precision: 0.5534
25
+ - Recall: 0.5362
26
+ - F1: 0.5447
27
+ - Accuracy: 0.9281
28
+
29
+ ## Model description
30
+
31
+ More information needed
32
+
33
+ ## Intended uses & limitations
34
+
35
+ More information needed
36
+
37
+ ## Training and evaluation data
38
+
39
+ More information needed
40
+
41
+ ## Training procedure
42
+
43
+ ### Training hyperparameters
44
+
45
+ The following hyperparameters were used during training:
46
+ - learning_rate: 2e-05
47
+ - train_batch_size: 8
48
+ - eval_batch_size: 8
49
+ - seed: 42
50
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
51
+ - lr_scheduler_type: linear
52
+ - num_epochs: 10
53
+
54
+ ### Training results
55
+
56
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
57
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
58
+ | No log | 1.0 | 121 | 0.4063 | 0.2711 | 0.2638 | 0.2674 | 0.8968 |
59
+ | No log | 2.0 | 242 | 0.3501 | 0.4935 | 0.3220 | 0.3897 | 0.9196 |
60
+ | No log | 3.0 | 363 | 0.2928 | 0.4839 | 0.4255 | 0.4528 | 0.9272 |
61
+ | No log | 4.0 | 484 | 0.3419 | 0.5407 | 0.3957 | 0.4570 | 0.9247 |
62
+ | 0.3258 | 5.0 | 605 | 0.3310 | 0.5431 | 0.4553 | 0.4954 | 0.9294 |
63
+ | 0.3258 | 6.0 | 726 | 0.3424 | 0.5248 | 0.4809 | 0.5019 | 0.9274 |
64
+ | 0.3258 | 7.0 | 847 | 0.3587 | 0.5471 | 0.5191 | 0.5328 | 0.9309 |
65
+ | 0.3258 | 8.0 | 968 | 0.3639 | 0.5396 | 0.5220 | 0.5306 | 0.9281 |
66
+ | 0.1033 | 9.0 | 1089 | 0.3695 | 0.5471 | 0.5277 | 0.5372 | 0.9276 |
67
+ | 0.1033 | 10.0 | 1210 | 0.3723 | 0.5534 | 0.5362 | 0.5447 | 0.9281 |
68
+
69
+
70
+ ### Framework versions
71
+
72
+ - Transformers 4.34.1
73
+ - Pytorch 2.1.0+cu118
74
+ - Datasets 2.14.6
75
+ - Tokenizers 0.14.1