Model save
Browse files
README.md
CHANGED
@@ -3,6 +3,11 @@ license: apache-2.0
|
|
3 |
base_model: bert-base-uncased
|
4 |
tags:
|
5 |
- generated_from_trainer
|
|
|
|
|
|
|
|
|
|
|
6 |
model-index:
|
7 |
- name: bert-base-uncased-finetuned-ner
|
8 |
results: []
|
@@ -14,6 +19,12 @@ should probably proofread and complete it, then remove this comment. -->
|
|
14 |
# bert-base-uncased-finetuned-ner
|
15 |
|
16 |
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
## Model description
|
19 |
|
@@ -40,6 +51,18 @@ The following hyperparameters were used during training:
|
|
40 |
- lr_scheduler_type: linear
|
41 |
- num_epochs: 3
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
### Framework versions
|
44 |
|
45 |
- Transformers 4.36.2
|
|
|
3 |
base_model: bert-base-uncased
|
4 |
tags:
|
5 |
- generated_from_trainer
|
6 |
+
metrics:
|
7 |
+
- precision
|
8 |
+
- recall
|
9 |
+
- f1
|
10 |
+
- accuracy
|
11 |
model-index:
|
12 |
- name: bert-base-uncased-finetuned-ner
|
13 |
results: []
|
|
|
19 |
# bert-base-uncased-finetuned-ner
|
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.1340
|
24 |
+
- Precision: 0.9582
|
25 |
+
- Recall: 0.9500
|
26 |
+
- F1: 0.9541
|
27 |
+
- Accuracy: 0.9499
|
28 |
|
29 |
## Model description
|
30 |
|
|
|
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.1595 | 0.5 | 7000 | 0.1539 | 0.9469 | 0.9377 | 0.9423 | 0.9375 |
|
59 |
+
| 0.1497 | 0.99 | 14000 | 0.1383 | 0.9549 | 0.9418 | 0.9483 | 0.9437 |
|
60 |
+
| 0.1185 | 1.49 | 21000 | 0.1314 | 0.9557 | 0.9464 | 0.9510 | 0.9467 |
|
61 |
+
| 0.1153 | 1.99 | 28000 | 0.1306 | 0.9553 | 0.9503 | 0.9528 | 0.9487 |
|
62 |
+
| 0.0977 | 2.49 | 35000 | 0.1340 | 0.9582 | 0.9500 | 0.9541 | 0.9499 |
|
63 |
+
| 0.0948 | 2.98 | 42000 | 0.1325 | 0.9584 | 0.9512 | 0.9548 | 0.9506 |
|
64 |
+
|
65 |
+
|
66 |
### Framework versions
|
67 |
|
68 |
- Transformers 4.36.2
|