Training in progress epoch 0
Browse files- README.md +53 -0
- config.json +23 -0
- logs/train/events.out.tfevents.1652809500.92778943723c.33.0.v2 +3 -0
- logs/train/events.out.tfevents.1652809517.92778943723c.profile-empty +3 -0
- logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.input_pipeline.pb +3 -0
- logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.kernel_stats.pb +3 -0
- logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.memory_profile.json.gz +3 -0
- logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.overview_page.pb +3 -0
- logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.tensorflow_stats.pb +3 -0
- logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.trace.json.gz +3 -0
- logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.xplane.pb +3 -0
- logs/validation/events.out.tfevents.1652823309.92778943723c.33.1.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: ksabeh/distilbert-base-uncased-attribute-correction-qa
|
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 |
+
# ksabeh/distilbert-base-uncased-attribute-correction-qa
|
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: 0.1796
|
18 |
+
- Validation Loss: 0.0754
|
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': 36794, '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 |
+
| 0.1796 | 0.0754 | 0 |
|
46 |
+
|
47 |
+
|
48 |
+
### Framework versions
|
49 |
+
|
50 |
+
- Transformers 4.18.0
|
51 |
+
- TensorFlow 2.6.3
|
52 |
+
- Datasets 2.1.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.1652809500.92778943723c.33.0.v2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8609a455c8fc374cc44ed866e102460f3852af43e27b24d5aa35215fd3c444b6
|
3 |
+
size 1469388
|
logs/train/events.out.tfevents.1652809517.92778943723c.profile-empty
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5bb1afa1707533bbddb1fee68e121894cff464c2defbd9d49503cab0e5bc5a2c
|
3 |
+
size 40
|
logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.input_pipeline.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4df0e230c9bcb6f0bfa9e896d89c8b15bf5a8272eec2ee92dadfb059e0df666c
|
3 |
+
size 3028
|
logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.kernel_stats.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04864f89a1a7cd1eff363b8cb0c62c3b256b0144965324c8909b8f9c5023da46
|
3 |
+
size 312772
|
logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.memory_profile.json.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c772b21749961e7fce6ac241373936afd33830098b41dc63fb6167b70d29ba82
|
3 |
+
size 35800
|
logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.overview_page.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fd1e6bf93d03d41cfd8ff77a644ba448f602eb9b6cbdc864f3b422dda3b4d40e
|
3 |
+
size 6002
|
logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.tensorflow_stats.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1a6e3ab19379dbe4f345037e72d768e674278638bb8c1a33859ee655f1dc33db
|
3 |
+
size 189727
|
logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.trace.json.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7205ca4366a5f46ee603d99a6ef5ff23d55eeb541152ab49b81ef4b9e9631f59
|
3 |
+
size 149717
|
logs/train/plugins/profile/2022_05_17_17_45_17/92778943723c.xplane.pb
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80bd8a02c0cc46b9088f859c66a2ad1c7bd9db2e29f853b7598adea0c5ee41a1
|
3 |
+
size 1136856
|
logs/validation/events.out.tfevents.1652823309.92778943723c.33.1.v2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dd4daf9a5bda68d44836ad990cd4646004e56cbcfb1da6f93a3eb71e6b80e322
|
3 |
+
size 195
|
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:ba5dbb9e7652eb695a856faf4cad30f6170e50d18722df924e42e84224d1e1d4
|
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
|
|