Training in progress epoch 0
Browse files- README.md +12 -15
- added_tokens.json +7 -0
- config.json +2 -2
- tf_model.h5 +1 -1
- tokenizer_config.json +43 -0
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
-
base_model:
|
| 4 |
tags:
|
| 5 |
- generated_from_keras_callback
|
| 6 |
model-index:
|
|
@@ -13,12 +13,13 @@ probably proofread and complete it, then remove this comment. -->
|
|
| 13 |
|
| 14 |
# ayshi/basic_distil
|
| 15 |
|
| 16 |
-
This model is a fine-tuned version of [
|
| 17 |
It achieves the following results on the evaluation set:
|
| 18 |
-
- Train Loss: 0.
|
| 19 |
-
- Validation Loss: 0.
|
| 20 |
-
- Train
|
| 21 |
-
-
|
|
|
|
| 22 |
|
| 23 |
## Model description
|
| 24 |
|
|
@@ -42,18 +43,14 @@ The following hyperparameters were used during training:
|
|
| 42 |
|
| 43 |
### Training results
|
| 44 |
|
| 45 |
-
| Train Loss | Validation Loss | Train
|
| 46 |
-
|
| 47 |
-
|
|
| 48 |
-
| 0.9980 | 1.0243 | 0.6667 | 1 |
|
| 49 |
-
| 0.8564 | 0.9625 | 0.7067 | 2 |
|
| 50 |
-
| 0.7175 | 0.8779 | 0.7289 | 3 |
|
| 51 |
-
| 0.6225 | 0.8513 | 0.7333 | 4 |
|
| 52 |
|
| 53 |
|
| 54 |
### Framework versions
|
| 55 |
|
| 56 |
-
- Transformers 4.
|
| 57 |
- TensorFlow 2.13.0
|
| 58 |
- Datasets 2.14.5
|
| 59 |
-
- Tokenizers 0.
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
base_model: ayshi/basic_distil
|
| 4 |
tags:
|
| 5 |
- generated_from_keras_callback
|
| 6 |
model-index:
|
|
|
|
| 13 |
|
| 14 |
# ayshi/basic_distil
|
| 15 |
|
| 16 |
+
This model is a fine-tuned version of [ayshi/basic_distil](https://huggingface.co/ayshi/basic_distil) on an unknown dataset.
|
| 17 |
It achieves the following results on the evaluation set:
|
| 18 |
+
- Train Loss: 0.6951
|
| 19 |
+
- Validation Loss: 0.7997
|
| 20 |
+
- Train Acc: {'accuracy': 0.7466666666666667}
|
| 21 |
+
- Train F1: {'f1': 0.6052389245138363}
|
| 22 |
+
- Epoch: 0
|
| 23 |
|
| 24 |
## Model description
|
| 25 |
|
|
|
|
| 43 |
|
| 44 |
### Training results
|
| 45 |
|
| 46 |
+
| Train Loss | Validation Loss | Train Acc | Train F1 | Epoch |
|
| 47 |
+
|:----------:|:---------------:|:--------------------------------:|:--------------------------:|:-----:|
|
| 48 |
+
| 0.6951 | 0.7997 | {'accuracy': 0.7466666666666667} | {'f1': 0.6052389245138363} | 0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
|
| 51 |
### Framework versions
|
| 52 |
|
| 53 |
+
- Transformers 4.34.0
|
| 54 |
- TensorFlow 2.13.0
|
| 55 |
- Datasets 2.14.5
|
| 56 |
+
- Tokenizers 0.14.0
|
added_tokens.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"[CLS]": 101,
|
| 3 |
+
"[MASK]": 103,
|
| 4 |
+
"[PAD]": 0,
|
| 5 |
+
"[SEP]": 102,
|
| 6 |
+
"[UNK]": 100
|
| 7 |
+
}
|
config.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"_name_or_path": "
|
| 3 |
"activation": "gelu",
|
| 4 |
"architectures": [
|
| 5 |
"DistilBertForSequenceClassification"
|
|
@@ -35,6 +35,6 @@
|
|
| 35 |
"seq_classif_dropout": 0.2,
|
| 36 |
"sinusoidal_pos_embds": false,
|
| 37 |
"tie_weights_": true,
|
| 38 |
-
"transformers_version": "4.
|
| 39 |
"vocab_size": 119547
|
| 40 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"_name_or_path": "ayshi/basic_distil",
|
| 3 |
"activation": "gelu",
|
| 4 |
"architectures": [
|
| 5 |
"DistilBertForSequenceClassification"
|
|
|
|
| 35 |
"seq_classif_dropout": 0.2,
|
| 36 |
"sinusoidal_pos_embds": false,
|
| 37 |
"tie_weights_": true,
|
| 38 |
+
"transformers_version": "4.34.0",
|
| 39 |
"vocab_size": 119547
|
| 40 |
}
|
tf_model.h5
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 541448896
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54286edd79a21b82e8edeb60df09aa570701d68e98b7223bcc8731c3f6d13556
|
| 3 |
size 541448896
|
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,
|