raulgdp commited on
Commit
401edf7
·
verified ·
1 Parent(s): d2966cc

End of training

Browse files
Files changed (1) hide show
  1. README.md +95 -0
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: google-bert/bert-base-uncased
5
+ tags:
6
+ - generated_from_trainer
7
+ datasets:
8
+ - conll2002
9
+ metrics:
10
+ - precision
11
+ - recall
12
+ - f1
13
+ - accuracy
14
+ model-index:
15
+ - name: NER-finetuning-BETO-PRO
16
+ results:
17
+ - task:
18
+ name: Token Classification
19
+ type: token-classification
20
+ dataset:
21
+ name: conll2002
22
+ type: conll2002
23
+ config: es
24
+ split: validation
25
+ args: es
26
+ metrics:
27
+ - name: Precision
28
+ type: precision
29
+ value: 0.7017726798748697
30
+ - name: Recall
31
+ type: recall
32
+ value: 0.7732077205882353
33
+ - name: F1
34
+ type: f1
35
+ value: 0.7357603585875151
36
+ - name: Accuracy
37
+ type: accuracy
38
+ value: 0.9536327652922068
39
+ ---
40
+
41
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
42
+ should probably proofread and complete it, then remove this comment. -->
43
+
44
+ # NER-finetuning-BETO-PRO
45
+
46
+ This model is a fine-tuned version of [google-bert/bert-base-uncased](https://huggingface.co/google-bert/bert-base-uncased) on the conll2002 dataset.
47
+ It achieves the following results on the evaluation set:
48
+ - Loss: 0.1981
49
+ - Precision: 0.7018
50
+ - Recall: 0.7732
51
+ - F1: 0.7358
52
+ - Accuracy: 0.9536
53
+
54
+ ## Model description
55
+
56
+ More information needed
57
+
58
+ ## Intended uses & limitations
59
+
60
+ More information needed
61
+
62
+ ## Training and evaluation data
63
+
64
+ More information needed
65
+
66
+ ## Training procedure
67
+
68
+ ### Training hyperparameters
69
+
70
+ The following hyperparameters were used during training:
71
+ - learning_rate: 2e-05
72
+ - train_batch_size: 8
73
+ - eval_batch_size: 8
74
+ - seed: 42
75
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
76
+ - lr_scheduler_type: linear
77
+ - num_epochs: 5
78
+
79
+ ### Training results
80
+
81
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
82
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
83
+ | 0.1941 | 1.0 | 1041 | 0.1965 | 0.6201 | 0.6836 | 0.6503 | 0.9422 |
84
+ | 0.1276 | 2.0 | 2082 | 0.1843 | 0.6666 | 0.7387 | 0.7008 | 0.9487 |
85
+ | 0.0885 | 3.0 | 3123 | 0.1760 | 0.7056 | 0.7601 | 0.7319 | 0.9538 |
86
+ | 0.0623 | 4.0 | 4164 | 0.1856 | 0.6982 | 0.7670 | 0.7310 | 0.9532 |
87
+ | 0.0485 | 5.0 | 5205 | 0.1981 | 0.7018 | 0.7732 | 0.7358 | 0.9536 |
88
+
89
+
90
+ ### Framework versions
91
+
92
+ - Transformers 4.50.3
93
+ - Pytorch 2.6.0+cu124
94
+ - Datasets 3.5.0
95
+ - Tokenizers 0.21.1