LucasMagnana commited on
Commit
db45ec2
1 Parent(s): 628fe41

Training complete

Browse files
Files changed (1) hide show
  1. README.md +40 -2
README.md CHANGED
@@ -5,9 +5,36 @@ tags:
5
  - generated_from_trainer
6
  datasets:
7
  - conll2003
 
 
 
 
 
8
  model-index:
9
  - name: bert-finetuned-ner
10
- results: []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
 
13
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
@@ -16,6 +43,12 @@ should probably proofread and complete it, then remove this comment. -->
16
  # bert-finetuned-ner
17
 
18
  This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the conll2003 dataset.
 
 
 
 
 
 
19
 
20
  ## Model description
21
 
@@ -40,10 +73,15 @@ The following hyperparameters were used during training:
40
  - seed: 42
41
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
42
  - lr_scheduler_type: linear
43
- - num_epochs: 0
44
 
45
  ### Training results
46
 
 
 
 
 
 
47
 
48
 
49
  ### Framework versions
 
5
  - generated_from_trainer
6
  datasets:
7
  - conll2003
8
+ metrics:
9
+ - precision
10
+ - recall
11
+ - f1
12
+ - accuracy
13
  model-index:
14
  - name: bert-finetuned-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: Precision
27
+ type: precision
28
+ value: 0.9317693705600528
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.9491753618310333
32
+ - name: F1
33
+ type: f1
34
+ value: 0.9403918299291371
35
+ - name: Accuracy
36
+ type: accuracy
37
+ value: 0.9865338199799847
38
  ---
39
 
40
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
43
  # bert-finetuned-ner
44
 
45
  This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the conll2003 dataset.
46
+ It achieves the following results on the evaluation set:
47
+ - Loss: 0.0595
48
+ - Precision: 0.9318
49
+ - Recall: 0.9492
50
+ - F1: 0.9404
51
+ - Accuracy: 0.9865
52
 
53
  ## Model description
54
 
 
73
  - seed: 42
74
  - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
75
  - lr_scheduler_type: linear
76
+ - num_epochs: 3
77
 
78
  ### Training results
79
 
80
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
81
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
82
+ | 0.0757 | 1.0 | 1756 | 0.0603 | 0.9045 | 0.9320 | 0.9180 | 0.9817 |
83
+ | 0.0382 | 2.0 | 3512 | 0.0615 | 0.9334 | 0.9460 | 0.9397 | 0.9854 |
84
+ | 0.0213 | 3.0 | 5268 | 0.0595 | 0.9318 | 0.9492 | 0.9404 | 0.9865 |
85
 
86
 
87
  ### Framework versions