Training in progress epoch 0
Browse files- README.md +8 -10
- config.json +16 -24
- tf_model.h5 +2 -2
README.md
CHANGED
|
@@ -14,13 +14,13 @@ probably proofread and complete it, then remove this comment. -->
|
|
| 14 |
|
| 15 |
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
-
- Train Loss: 0.
|
| 18 |
-
- Validation Loss: 0.
|
| 19 |
-
- Train Precision: 0.
|
| 20 |
-
- Train Recall: 0.
|
| 21 |
-
- Train F1: 0.
|
| 22 |
-
- Train Accuracy: 0.
|
| 23 |
-
- Epoch:
|
| 24 |
|
| 25 |
## Model description
|
| 26 |
|
|
@@ -46,9 +46,7 @@ The following hyperparameters were used during training:
|
|
| 46 |
|
| 47 |
| Train Loss | Validation Loss | Train Precision | Train Recall | Train F1 | Train Accuracy | Epoch |
|
| 48 |
|:----------:|:---------------:|:---------------:|:------------:|:--------:|:--------------:|:-----:|
|
| 49 |
-
| 0.
|
| 50 |
-
| 0.0444 | 0.0510 | 0.9236 | 0.9318 | 0.9277 | 0.9858 | 1 |
|
| 51 |
-
| 0.0282 | 0.0510 | 0.9227 | 0.9355 | 0.9291 | 0.9864 | 2 |
|
| 52 |
|
| 53 |
|
| 54 |
### Framework versions
|
|
|
|
| 14 |
|
| 15 |
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
+
- Train Loss: 0.1611
|
| 18 |
+
- Validation Loss: 0.0606
|
| 19 |
+
- Train Precision: 0.8987
|
| 20 |
+
- Train Recall: 0.9164
|
| 21 |
+
- Train F1: 0.9074
|
| 22 |
+
- Train Accuracy: 0.9830
|
| 23 |
+
- Epoch: 0
|
| 24 |
|
| 25 |
## Model description
|
| 26 |
|
|
|
|
| 46 |
|
| 47 |
| Train Loss | Validation Loss | Train Precision | Train Recall | Train F1 | Train Accuracy | Epoch |
|
| 48 |
|:----------:|:---------------:|:---------------:|:------------:|:--------:|:--------------:|:-----:|
|
| 49 |
+
| 0.1611 | 0.0606 | 0.8987 | 0.9164 | 0.9074 | 0.9830 | 0 |
|
|
|
|
|
|
|
| 50 |
|
| 51 |
|
| 52 |
### Framework versions
|
config.json
CHANGED
|
@@ -10,33 +10,25 @@
|
|
| 10 |
"hidden_dim": 3072,
|
| 11 |
"id2label": {
|
| 12 |
"0": "O",
|
| 13 |
-
"1": "B-
|
| 14 |
-
"2": "I-
|
| 15 |
-
"3": "B-
|
| 16 |
-
"4": "I-
|
| 17 |
-
"5": "B-
|
| 18 |
-
"6": "I-
|
| 19 |
-
"7": "B-
|
| 20 |
-
"8": "I-
|
| 21 |
-
"9": "B-person",
|
| 22 |
-
"10": "I-person",
|
| 23 |
-
"11": "B-product",
|
| 24 |
-
"12": "I-product"
|
| 25 |
},
|
| 26 |
"initializer_range": 0.02,
|
| 27 |
"label2id": {
|
| 28 |
-
"B-
|
| 29 |
-
"B-
|
| 30 |
-
"B-
|
| 31 |
-
"B-
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
-
"I-
|
| 35 |
-
"I-
|
| 36 |
-
"I-group": 6,
|
| 37 |
-
"I-location": 8,
|
| 38 |
-
"I-person": 10,
|
| 39 |
-
"I-product": 12,
|
| 40 |
"O": 0
|
| 41 |
},
|
| 42 |
"max_position_embeddings": 512,
|
|
|
|
| 10 |
"hidden_dim": 3072,
|
| 11 |
"id2label": {
|
| 12 |
"0": "O",
|
| 13 |
+
"1": "B-PER",
|
| 14 |
+
"2": "I-PER",
|
| 15 |
+
"3": "B-ORG",
|
| 16 |
+
"4": "I-ORG",
|
| 17 |
+
"5": "B-LOC",
|
| 18 |
+
"6": "I-LOC",
|
| 19 |
+
"7": "B-MISC",
|
| 20 |
+
"8": "I-MISC"
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
},
|
| 22 |
"initializer_range": 0.02,
|
| 23 |
"label2id": {
|
| 24 |
+
"B-LOC": 5,
|
| 25 |
+
"B-MISC": 7,
|
| 26 |
+
"B-ORG": 3,
|
| 27 |
+
"B-PER": 1,
|
| 28 |
+
"I-LOC": 6,
|
| 29 |
+
"I-MISC": 8,
|
| 30 |
+
"I-ORG": 4,
|
| 31 |
+
"I-PER": 2,
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
"O": 0
|
| 33 |
},
|
| 34 |
"max_position_embeddings": 512,
|
tf_model.h5
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8edbe401a548cb7cb2fe1164b5cdc3aaf18eca2f78929afa4e713c717535e4dc
|
| 3 |
+
size 265606504
|