ParulChaudhari
commited on
Commit
路
58d6988
1
Parent(s):
211756c
Training in progress epoch 0
Browse files- README.md +53 -0
- config.json +23 -0
- logs/train/events.out.tfevents.1649863893.PARULCHAUDHARI.21252.2607.v2 +3 -0
- logs/train/events.out.tfevents.1649863902.PARULCHAUDHARI.profile-empty +3 -0
- logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.input_pipeline.pb +3 -0
- logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.kernel_stats.pb +0 -0
- logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.memory_profile.json.gz +3 -0
- logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.overview_page.pb +3 -0
- logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.tensorflow_stats.pb +3 -0
- logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.trace.json.gz +3 -0
- logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.xplane.pb +3 -0
- logs/validation/events.out.tfevents.1649868737.PARULCHAUDHARI.21252.455195.v2 +3 -0
- special_tokens_map.json +1 -0
- tf_model.h5 +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- vocab.txt +0 -0
README.md
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- generated_from_keras_callback
|
5 |
+
model-index:
|
6 |
+
- name: ParulChaudhari/distilbert-base-uncased-finetuned-squad
|
7 |
+
results: []
|
8 |
+
---
|
9 |
+
|
10 |
+
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
11 |
+
probably proofread and complete it, then remove this comment. -->
|
12 |
+
|
13 |
+
# ParulChaudhari/distilbert-base-uncased-finetuned-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: 1.3927
|
18 |
+
- Validation Loss: 1.1305
|
19 |
+
- Epoch: 0
|
20 |
+
|
21 |
+
## Model description
|
22 |
+
|
23 |
+
More information needed
|
24 |
+
|
25 |
+
## Intended uses & limitations
|
26 |
+
|
27 |
+
More information needed
|
28 |
+
|
29 |
+
## Training and evaluation data
|
30 |
+
|
31 |
+
More information needed
|
32 |
+
|
33 |
+
## Training procedure
|
34 |
+
|
35 |
+
### Training hyperparameters
|
36 |
+
|
37 |
+
The following hyperparameters were used during training:
|
38 |
+
- optimizer: {'name': 'Adam', 'learning_rate': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 177048, '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}
|
39 |
+
- training_precision: float32
|
40 |
+
|
41 |
+
### Training results
|
42 |
+
|
43 |
+
| Train Loss | Validation Loss | Epoch |
|
44 |
+
|:----------:|:---------------:|:-----:|
|
45 |
+
| 1.3927 | 1.1305 | 0 |
|
46 |
+
|
47 |
+
|
48 |
+
### Framework versions
|
49 |
+
|
50 |
+
- Transformers 4.18.0
|
51 |
+
- TensorFlow 2.5.0
|
52 |
+
- Datasets 2.0.0
|
53 |
+
- Tokenizers 0.12.1
|
config.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.18.0",
|
22 |
+
"vocab_size": 30522
|
23 |
+
}
|
logs/train/events.out.tfevents.1649863893.PARULCHAUDHARI.21252.2607.v2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aff54b4aa0f5adee2fb70d256bd1afeec2ccac0a6f2f4e9906a60be318a58973
|
3 |
+
size 1469201
|
logs/train/events.out.tfevents.1649863902.PARULCHAUDHARI.profile-empty
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4f9fa1c1fd4d6a643703b8f7893130bf56885e398cf142510e2b2ead3e062778
|
3 |
+
size 40
|
logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.input_pipeline.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:44ee195fd0e1b93ba500a9655e27ef4607d02107c9512d5d055b5a8ca402ae1f
|
3 |
+
size 2836
|
logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.kernel_stats.pb
ADDED
File without changes
|
logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.memory_profile.json.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4a2e08f72c80f1ee4fa2057e629af5face405ad0e913f75be1852359181c8c0
|
3 |
+
size 32668
|
logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.overview_page.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f839aea8ca393fecad391dcdb0e4bbf6da9ce8cd056acf6a6c424dfc506f255b
|
3 |
+
size 4383
|
logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.tensorflow_stats.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a6f57f8b9c47fceb6a289796d7c080b95a5401c179790278eceda3e44a67a72c
|
3 |
+
size 4875
|
logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.trace.json.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:95d82db568fe32bdf72301f63da07caaf31310565f6d49df0fa96fb821dadbe0
|
3 |
+
size 6034
|
logs/train/plugins/profile/2022_04_13_15_31_42/PARULCHAUDHARI.xplane.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7113343fc63055842d87454d18428e0e93a1feb9bf60f6efaddc1ef66057d5f9
|
3 |
+
size 328500
|
logs/validation/events.out.tfevents.1649868737.PARULCHAUDHARI.21252.455195.v2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f614f6a5d64eac6f6dbb60dd1c477a5da13915fa27868a433370d19261dccd6
|
3 |
+
size 155
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tf_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32dbb19d811557a882952d9c892ea98c3c99faaf0466314c587ac7e197002adc
|
3 |
+
size 265583688
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|