Training in progress epoch 0
Browse files- README.md +6 -7
- config.json +4 -3
- tf_model.h5 +2 -2
- tokenizer.json +0 -0
- tokenizer_config.json +2 -2
- vocab.txt +0 -0
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
-
base_model: distilbert
|
4 |
tags:
|
5 |
- generated_from_keras_callback
|
6 |
model-index:
|
@@ -13,11 +13,11 @@ probably proofread and complete it, then remove this comment. -->
|
|
13 |
|
14 |
# aiuser1/blog-post-model-bert-uncased
|
15 |
|
16 |
-
This model is a fine-tuned version of [distilbert
|
17 |
It achieves the following results on the evaluation set:
|
18 |
-
- Train Loss:
|
19 |
- Validation Loss: 0.0
|
20 |
-
- Epoch:
|
21 |
|
22 |
## Model description
|
23 |
|
@@ -36,15 +36,14 @@ More information needed
|
|
36 |
### Training hyperparameters
|
37 |
|
38 |
The following hyperparameters were used during training:
|
39 |
-
- optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': False, 'is_legacy_optimizer': False, 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps':
|
40 |
- training_precision: float32
|
41 |
|
42 |
### Training results
|
43 |
|
44 |
| Train Loss | Validation Loss | Epoch |
|
45 |
|:----------:|:---------------:|:-----:|
|
46 |
-
|
|
47 |
-
| 5.6125 | 0.0 | 1 |
|
48 |
|
49 |
|
50 |
### Framework versions
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
base_model: distilbert-base-cased-distilled-squad
|
4 |
tags:
|
5 |
- generated_from_keras_callback
|
6 |
model-index:
|
|
|
13 |
|
14 |
# aiuser1/blog-post-model-bert-uncased
|
15 |
|
16 |
+
This model is a fine-tuned version of [distilbert-base-cased-distilled-squad](https://huggingface.co/distilbert-base-cased-distilled-squad) on an unknown dataset.
|
17 |
It achieves the following results on the evaluation set:
|
18 |
+
- Train Loss: 0.2289
|
19 |
- Validation Loss: 0.0
|
20 |
+
- Epoch: 0
|
21 |
|
22 |
## Model description
|
23 |
|
|
|
36 |
### Training hyperparameters
|
37 |
|
38 |
The following hyperparameters were used during training:
|
39 |
+
- optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': False, 'is_legacy_optimizer': False, 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 10, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_name': None}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
|
40 |
- training_precision: float32
|
41 |
|
42 |
### Training results
|
43 |
|
44 |
| Train Loss | Validation Loss | Epoch |
|
45 |
|:----------:|:---------------:|:-----:|
|
46 |
+
| 0.2289 | 0.0 | 0 |
|
|
|
47 |
|
48 |
|
49 |
### Framework versions
|
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "distilbert
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForQuestionAnswering"
|
@@ -13,11 +13,12 @@
|
|
13 |
"model_type": "distilbert",
|
14 |
"n_heads": 12,
|
15 |
"n_layers": 6,
|
|
|
16 |
"pad_token_id": 0,
|
17 |
"qa_dropout": 0.1,
|
18 |
"seq_classif_dropout": 0.2,
|
19 |
-
"sinusoidal_pos_embds":
|
20 |
"tie_weights_": true,
|
21 |
"transformers_version": "4.38.2",
|
22 |
-
"vocab_size":
|
23 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "distilbert-base-cased-distilled-squad",
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForQuestionAnswering"
|
|
|
13 |
"model_type": "distilbert",
|
14 |
"n_heads": 12,
|
15 |
"n_layers": 6,
|
16 |
+
"output_past": true,
|
17 |
"pad_token_id": 0,
|
18 |
"qa_dropout": 0.1,
|
19 |
"seq_classif_dropout": 0.2,
|
20 |
+
"sinusoidal_pos_embds": true,
|
21 |
"tie_weights_": true,
|
22 |
"transformers_version": "4.38.2",
|
23 |
+
"vocab_size": 28996
|
24 |
}
|
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:a2df1fdb5e190a6a9a10a5c79dde7554cec5d8df282728e839a55f8413c654c3
|
3 |
+
size 260895720
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -43,9 +43,9 @@
|
|
43 |
},
|
44 |
"clean_up_tokenization_spaces": true,
|
45 |
"cls_token": "[CLS]",
|
46 |
-
"do_lower_case":
|
47 |
"mask_token": "[MASK]",
|
48 |
-
"model_max_length":
|
49 |
"pad_token": "[PAD]",
|
50 |
"sep_token": "[SEP]",
|
51 |
"strip_accents": null,
|
|
|
43 |
},
|
44 |
"clean_up_tokenization_spaces": true,
|
45 |
"cls_token": "[CLS]",
|
46 |
+
"do_lower_case": false,
|
47 |
"mask_token": "[MASK]",
|
48 |
+
"model_max_length": 512,
|
49 |
"pad_token": "[PAD]",
|
50 |
"sep_token": "[SEP]",
|
51 |
"strip_accents": null,
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|