End of training
Browse files- README.md +16 -16
- added_tokens.json +2 -2
- config.json +1 -1
- pytorch_model.bin +1 -1
- tokenizer.json +2 -2
- tokenizer_config.json +43 -0
- training_args.bin +1 -1
README.md
CHANGED
|
@@ -20,11 +20,11 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 20 |
|
| 21 |
This model is a fine-tuned version of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) on an unknown dataset.
|
| 22 |
It achieves the following results on the evaluation set:
|
| 23 |
-
- Loss: 0.
|
| 24 |
-
- Precision: 0.
|
| 25 |
-
- Recall: 0.
|
| 26 |
-
- F1: 0.
|
| 27 |
-
- Accuracy: 0.
|
| 28 |
|
| 29 |
## Model description
|
| 30 |
|
|
@@ -43,7 +43,7 @@ More information needed
|
|
| 43 |
### Training hyperparameters
|
| 44 |
|
| 45 |
The following hyperparameters were used during training:
|
| 46 |
-
- learning_rate:
|
| 47 |
- train_batch_size: 8
|
| 48 |
- eval_batch_size: 8
|
| 49 |
- seed: 42
|
|
@@ -53,18 +53,18 @@ The following hyperparameters were used during training:
|
|
| 53 |
|
| 54 |
### Training results
|
| 55 |
|
| 56 |
-
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1
|
| 57 |
-
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:---:|:--------:|
|
| 58 |
-
| No log | 1.0 | 144 | 0.
|
| 59 |
-
| No log | 2.0 | 288 | 0.
|
| 60 |
-
| No log | 3.0 | 432 | 0.
|
| 61 |
-
| 0.
|
| 62 |
-
| 0.
|
| 63 |
|
| 64 |
|
| 65 |
### Framework versions
|
| 66 |
|
| 67 |
-
- Transformers 4.
|
| 68 |
-
- Pytorch 2.0.
|
| 69 |
- Datasets 2.14.5
|
| 70 |
-
- Tokenizers 0.
|
|
|
|
| 20 |
|
| 21 |
This model is a fine-tuned version of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) on an unknown dataset.
|
| 22 |
It achieves the following results on the evaluation set:
|
| 23 |
+
- Loss: 0.1356
|
| 24 |
+
- Precision: 0.8055
|
| 25 |
+
- Recall: 0.8642
|
| 26 |
+
- F1: 0.8338
|
| 27 |
+
- Accuracy: 0.9637
|
| 28 |
|
| 29 |
## Model description
|
| 30 |
|
|
|
|
| 43 |
### Training hyperparameters
|
| 44 |
|
| 45 |
The following hyperparameters were used during training:
|
| 46 |
+
- learning_rate: 2e-05
|
| 47 |
- train_batch_size: 8
|
| 48 |
- eval_batch_size: 8
|
| 49 |
- seed: 42
|
|
|
|
| 53 |
|
| 54 |
### Training results
|
| 55 |
|
| 56 |
+
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|
| 57 |
+
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
|
| 58 |
+
| No log | 1.0 | 144 | 0.1590 | 0.7660 | 0.7930 | 0.7793 | 0.9516 |
|
| 59 |
+
| No log | 2.0 | 288 | 0.1321 | 0.7907 | 0.8625 | 0.8250 | 0.9593 |
|
| 60 |
+
| No log | 3.0 | 432 | 0.1258 | 0.8002 | 0.8584 | 0.8283 | 0.9618 |
|
| 61 |
+
| 0.1493 | 4.0 | 576 | 0.1346 | 0.8009 | 0.8658 | 0.8321 | 0.9616 |
|
| 62 |
+
| 0.1493 | 5.0 | 720 | 0.1356 | 0.8055 | 0.8642 | 0.8338 | 0.9637 |
|
| 63 |
|
| 64 |
|
| 65 |
### Framework versions
|
| 66 |
|
| 67 |
+
- Transformers 4.34.0
|
| 68 |
+
- Pytorch 2.0.1+cu118
|
| 69 |
- Datasets 2.14.5
|
| 70 |
+
- Tokenizers 0.14.1
|
added_tokens.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
{
|
| 2 |
-
"[CLS]":
|
| 3 |
"[MASK]": 103,
|
| 4 |
"[PAD]": 0,
|
| 5 |
-
"[SEP]":
|
| 6 |
"[UNK]": 100
|
| 7 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"[CLS]": 101,
|
| 3 |
"[MASK]": 103,
|
| 4 |
"[PAD]": 0,
|
| 5 |
+
"[SEP]": 102,
|
| 6 |
"[UNK]": 100
|
| 7 |
}
|
config.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
| 44 |
"pooler_type": "first_token_transform",
|
| 45 |
"position_embedding_type": "absolute",
|
| 46 |
"torch_dtype": "float32",
|
| 47 |
-
"transformers_version": "4.
|
| 48 |
"type_vocab_size": 2,
|
| 49 |
"use_cache": true,
|
| 50 |
"vocab_size": 119547
|
|
|
|
| 44 |
"pooler_type": "first_token_transform",
|
| 45 |
"position_embedding_type": "absolute",
|
| 46 |
"torch_dtype": "float32",
|
| 47 |
+
"transformers_version": "4.34.0",
|
| 48 |
"type_vocab_size": 2,
|
| 49 |
"use_cache": true,
|
| 50 |
"vocab_size": 119547
|
pytorch_model.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 709143721
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b969de7ca84619e4c5e9578fbffb8d627aae68499c0db5ed2a1b9b9794ed8ab4
|
| 3 |
size 709143721
|
tokenizer.json
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:7d76a4d25ebe8f217654f1039bd991bfc96e7c2cd36e6d28aff941783ed1e9c8
|
| 3 |
+
size 2919460
|
tokenizer_config.json
CHANGED
|
@@ -1,4 +1,47 @@
|
|
| 1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
"clean_up_tokenization_spaces": true,
|
| 3 |
"cls_token": "[CLS]",
|
| 4 |
"do_lower_case": false,
|
|
|
|
| 1 |
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"0": {
|
| 4 |
+
"content": "[PAD]",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"100": {
|
| 12 |
+
"content": "[UNK]",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"101": {
|
| 20 |
+
"content": "[CLS]",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"102": {
|
| 28 |
+
"content": "[SEP]",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"103": {
|
| 36 |
+
"content": "[MASK]",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
}
|
| 43 |
+
},
|
| 44 |
+
"additional_special_tokens": [],
|
| 45 |
"clean_up_tokenization_spaces": true,
|
| 46 |
"cls_token": "[CLS]",
|
| 47 |
"do_lower_case": false,
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 4027
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61e9fd2a061e85f91e78638a0a2296a75d14aafa364d1f4e434b47410ee3ee63
|
| 3 |
size 4027
|