Training in progress epoch 0
Browse files- README.md +6 -7
- config.json +15 -23
- tf_model.h5 +2 -2
- tokenizer.json +0 -0
- tokenizer_config.json +5 -6
- vocab.txt +0 -0
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
license:
|
3 |
tags:
|
4 |
- generated_from_keras_callback
|
5 |
model-index:
|
@@ -12,11 +12,11 @@ probably proofread and complete it, then remove this comment. -->
|
|
12 |
|
13 |
# NAOKITY/bert-squad
|
14 |
|
15 |
-
This model is a fine-tuned version of [
|
16 |
It achieves the following results on the evaluation set:
|
17 |
-
- Train Loss:
|
18 |
- Validation Loss: 0.0
|
19 |
-
- Epoch:
|
20 |
|
21 |
## Model description
|
22 |
|
@@ -35,15 +35,14 @@ More information needed
|
|
35 |
### Training hyperparameters
|
36 |
|
37 |
The following hyperparameters were used during training:
|
38 |
-
- optimizer: {'name': 'AdamWeightDecay', 'learning_rate': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps':
|
39 |
- training_precision: float32
|
40 |
|
41 |
### Training results
|
42 |
|
43 |
| Train Loss | Validation Loss | Epoch |
|
44 |
|:----------:|:---------------:|:-----:|
|
45 |
-
|
|
46 |
-
| 1.6405 | 0.0 | 1 |
|
47 |
|
48 |
|
49 |
### Framework versions
|
|
|
1 |
---
|
2 |
+
license: apache-2.0
|
3 |
tags:
|
4 |
- generated_from_keras_callback
|
5 |
model-index:
|
|
|
12 |
|
13 |
# NAOKITY/bert-squad
|
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: 3.3672
|
18 |
- Validation Loss: 0.0
|
19 |
+
- Epoch: 0
|
20 |
|
21 |
## Model description
|
22 |
|
|
|
35 |
### Training hyperparameters
|
36 |
|
37 |
The following hyperparameters were used during training:
|
38 |
+
- optimizer: {'name': 'AdamWeightDecay', 'learning_rate': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 1149, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}}, 'decay': 0.0, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False, 'weight_decay_rate': 0.01}
|
39 |
- training_precision: float32
|
40 |
|
41 |
### Training results
|
42 |
|
43 |
| Train Loss | Validation Loss | Epoch |
|
44 |
|:----------:|:---------------:|:-----:|
|
45 |
+
| 3.3672 | 0.0 | 0 |
|
|
|
46 |
|
47 |
|
48 |
### Framework versions
|
config.json
CHANGED
@@ -1,31 +1,23 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
|
|
3 |
"architectures": [
|
4 |
-
"
|
5 |
],
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"hidden_dropout_prob": 0.1,
|
11 |
-
"hidden_size": 768,
|
12 |
"initializer_range": 0.02,
|
13 |
-
"intermediate_size": 3072,
|
14 |
-
"layer_norm_eps": 1e-12,
|
15 |
"max_position_embeddings": 512,
|
16 |
-
"model_type": "
|
17 |
-
"
|
18 |
-
"
|
19 |
-
"output_past": true,
|
20 |
"pad_token_id": 0,
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
24 |
-
"
|
25 |
-
"pooler_type": "first_token_transform",
|
26 |
-
"position_embedding_type": "absolute",
|
27 |
"transformers_version": "4.20.0",
|
28 |
-
"
|
29 |
-
"use_cache": true,
|
30 |
-
"vocab_size": 29794
|
31 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "distilbert-base-uncased",
|
3 |
+
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
+
"DistilBertForQuestionAnswering"
|
6 |
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
|
|
|
|
11 |
"initializer_range": 0.02,
|
|
|
|
|
12 |
"max_position_embeddings": 512,
|
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": false,
|
20 |
+
"tie_weights_": true,
|
|
|
|
|
21 |
"transformers_version": "4.20.0",
|
22 |
+
"vocab_size": 30522
|
|
|
|
|
23 |
}
|
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:afda53c876448e9b6b390d97836128ca8181ac89b14472db3e2ebd479530bf81
|
3 |
+
size 265583592
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1,15 +1,14 @@
|
|
1 |
{
|
2 |
"cls_token": "[CLS]",
|
3 |
-
"
|
4 |
-
"do_lower_case": false,
|
5 |
"mask_token": "[MASK]",
|
6 |
-
"
|
7 |
-
"
|
8 |
"pad_token": "[PAD]",
|
9 |
"sep_token": "[SEP]",
|
10 |
-
"special_tokens_map_file":
|
11 |
"strip_accents": null,
|
12 |
"tokenize_chinese_chars": true,
|
13 |
-
"tokenizer_class": "
|
14 |
"unk_token": "[UNK]"
|
15 |
}
|
|
|
1 |
{
|
2 |
"cls_token": "[CLS]",
|
3 |
+
"do_lower_case": true,
|
|
|
4 |
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"name_or_path": "distilbert-base-uncased",
|
7 |
"pad_token": "[PAD]",
|
8 |
"sep_token": "[SEP]",
|
9 |
+
"special_tokens_map_file": null,
|
10 |
"strip_accents": null,
|
11 |
"tokenize_chinese_chars": true,
|
12 |
+
"tokenizer_class": "DistilBertTokenizer",
|
13 |
"unk_token": "[UNK]"
|
14 |
}
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|