spraxx commited on
Commit
d2e8c4b
·
verified ·
1 Parent(s): 5c44aba

End of training

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: bert-base-cased
5
+ tags:
6
+ - generated_from_trainer
7
+ datasets:
8
+ - conll2003
9
+ metrics:
10
+ - f1
11
+ - precision
12
+ - recall
13
+ model-index:
14
+ - name: bert-base-cased-conll2003-ner
15
+ results:
16
+ - task:
17
+ name: Token Classification
18
+ type: token-classification
19
+ dataset:
20
+ name: conll2003
21
+ type: conll2003
22
+ config: conll2003
23
+ split: validation
24
+ args: conll2003
25
+ metrics:
26
+ - name: F1
27
+ type: f1
28
+ value: 0.911552663970459
29
+ - name: Precision
30
+ type: precision
31
+ value: 0.9053440447083478
32
+ - name: Recall
33
+ type: recall
34
+ value: 0.9178470254957507
35
+ ---
36
+
37
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
38
+ should probably proofread and complete it, then remove this comment. -->
39
+
40
+ # bert-base-cased-conll2003-ner
41
+
42
+ This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the conll2003 dataset.
43
+ It achieves the following results on the evaluation set:
44
+ - Loss: 0.1194
45
+ - F1: 0.9116
46
+ - Precision: 0.9053
47
+ - Recall: 0.9178
48
+
49
+ ## Model description
50
+
51
+ More information needed
52
+
53
+ ## Intended uses & limitations
54
+
55
+ More information needed
56
+
57
+ ## Training and evaluation data
58
+
59
+ More information needed
60
+
61
+ ## Training procedure
62
+
63
+ ### Training hyperparameters
64
+
65
+ The following hyperparameters were used during training:
66
+ - learning_rate: 2e-05
67
+ - train_batch_size: 16
68
+ - eval_batch_size: 16
69
+ - seed: 42
70
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
71
+ - lr_scheduler_type: linear
72
+ - num_epochs: 3
73
+
74
+ ### Training results
75
+
76
+ | Training Loss | Epoch | Step | Validation Loss | F1 | Precision | Recall |
77
+ |:-------------:|:-----:|:----:|:---------------:|:------:|:---------:|:------:|
78
+ | 0.1659 | 1.0 | 878 | 0.0414 | 0.9342 | 0.9314 | 0.9371 |
79
+ | 0.0279 | 2.0 | 1756 | 0.0383 | 0.9480 | 0.9463 | 0.9497 |
80
+ | 0.0145 | 3.0 | 2634 | 0.0374 | 0.9518 | 0.9497 | 0.9539 |
81
+
82
+
83
+ ### Framework versions
84
+
85
+ - Transformers 5.0.0
86
+ - Pytorch 2.10.0+cu128
87
+ - Datasets 2.21.0
88
+ - Tokenizers 0.22.2