End of training
Browse files- README.md +8 -8
- config.json +26 -26
- model.safetensors +1 -1
- runs/Nov20_17-11-36_fd34eb50cdc0/events.out.tfevents.1732122748.fd34eb50cdc0.30.0 +3 -0
- training_args.bin +1 -1
README.md
CHANGED
@@ -21,11 +21,11 @@ should probably proofread and complete it, then remove this comment. -->
|
|
21 |
|
22 |
This model is a fine-tuned version of [distilbert-base-cased](https://huggingface.co/distilbert-base-cased) on an unknown dataset.
|
23 |
It achieves the following results on the evaluation set:
|
24 |
-
- Loss: 0.
|
25 |
-
- Precision: 0.
|
26 |
-
- Recall: 0.
|
27 |
-
- F1: 0.
|
28 |
-
- Accuracy: 0.
|
29 |
|
30 |
## Model description
|
31 |
|
@@ -56,9 +56,9 @@ The following hyperparameters were used during training:
|
|
56 |
|
57 |
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|
58 |
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
|
59 |
-
| No log | 1.0 |
|
60 |
-
|
|
61 |
-
| 0.
|
62 |
|
63 |
|
64 |
### Framework versions
|
|
|
21 |
|
22 |
This model is a fine-tuned version of [distilbert-base-cased](https://huggingface.co/distilbert-base-cased) on an unknown dataset.
|
23 |
It achieves the following results on the evaluation set:
|
24 |
+
- Loss: 0.1677
|
25 |
+
- Precision: 0.9005
|
26 |
+
- Recall: 0.9037
|
27 |
+
- F1: 0.9021
|
28 |
+
- Accuracy: 0.9532
|
29 |
|
30 |
## Model description
|
31 |
|
|
|
56 |
|
57 |
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|
58 |
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
|
59 |
+
| No log | 1.0 | 451 | 0.1872 | 0.8908 | 0.8907 | 0.8908 | 0.9472 |
|
60 |
+
| 0.3208 | 2.0 | 902 | 0.1698 | 0.9005 | 0.9012 | 0.9009 | 0.9527 |
|
61 |
+
| 0.1569 | 3.0 | 1353 | 0.1677 | 0.9005 | 0.9037 | 0.9021 | 0.9532 |
|
62 |
|
63 |
|
64 |
### Framework versions
|
config.json
CHANGED
@@ -9,35 +9,35 @@
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
-
"0": "
|
13 |
-
"1": "
|
14 |
-
"2": "B-
|
15 |
-
"3": "I-
|
16 |
-
"4": "
|
17 |
-
"5": "
|
18 |
-
"6": "
|
19 |
-
"7": "
|
20 |
-
"8": "
|
21 |
-
"9": "
|
22 |
-
"10": "
|
23 |
-
"11": "
|
24 |
-
"12": "I-
|
25 |
},
|
26 |
"initializer_range": 0.02,
|
27 |
"label2id": {
|
28 |
-
"B-LEG":
|
29 |
-
"B-LOC":
|
30 |
-
"B-MED":
|
31 |
-
"B-ORG":
|
32 |
-
"B-PER":
|
33 |
-
"B-VIP":
|
34 |
-
"I-LEG":
|
35 |
-
"I-LOC":
|
36 |
-
"I-MED":
|
37 |
-
"I-ORG":
|
38 |
-
"I-PER":
|
39 |
-
"I-VIP":
|
40 |
-
"O":
|
41 |
},
|
42 |
"max_position_embeddings": 512,
|
43 |
"model_type": "distilbert",
|
|
|
9 |
"dropout": 0.1,
|
10 |
"hidden_dim": 3072,
|
11 |
"id2label": {
|
12 |
+
"0": "B-LOC",
|
13 |
+
"1": "I-LEG",
|
14 |
+
"2": "B-LEG",
|
15 |
+
"3": "I-ORG",
|
16 |
+
"4": "B-ORG",
|
17 |
+
"5": "B-VIP",
|
18 |
+
"6": "I-VIP",
|
19 |
+
"7": "B-PER",
|
20 |
+
"8": "I-PER",
|
21 |
+
"9": "O",
|
22 |
+
"10": "I-LOC",
|
23 |
+
"11": "B-MED",
|
24 |
+
"12": "I-MED"
|
25 |
},
|
26 |
"initializer_range": 0.02,
|
27 |
"label2id": {
|
28 |
+
"B-LEG": 2,
|
29 |
+
"B-LOC": 0,
|
30 |
+
"B-MED": 11,
|
31 |
+
"B-ORG": 4,
|
32 |
+
"B-PER": 7,
|
33 |
+
"B-VIP": 5,
|
34 |
+
"I-LEG": 1,
|
35 |
+
"I-LOC": 10,
|
36 |
+
"I-MED": 12,
|
37 |
+
"I-ORG": 3,
|
38 |
+
"I-PER": 8,
|
39 |
+
"I-VIP": 6,
|
40 |
+
"O": 9
|
41 |
},
|
42 |
"max_position_embeddings": 512,
|
43 |
"model_type": "distilbert",
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 260815972
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6b7f106435a9ae3480d92e9b9172c4607a37809ea3af42117e2ea41041978980
|
3 |
size 260815972
|
runs/Nov20_17-11-36_fd34eb50cdc0/events.out.tfevents.1732122748.fd34eb50cdc0.30.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91b326cb01790c0b2c43514beadbb5d5c6201e305be1e825a12dea10a917c084
|
3 |
+
size 7588
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5240
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f6b81b940abbb999399667aa47a997dd488e0ceae04df2e1821b05e41c4b5e8b
|
3 |
size 5240
|