Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +24 -0
- pytorch_model.bin +3 -0
- runs/Oct19_20-06-58_7d3f6b5043d2/1634675195.669252/events.out.tfevents.1634675195.7d3f6b5043d2.78.1 +3 -0
- runs/Oct19_20-06-58_7d3f6b5043d2/1634675195.6740866/events.out.tfevents.1634675195.7d3f6b5043d2.78.3 +3 -0
- runs/Oct19_20-06-58_7d3f6b5043d2/events.out.tfevents.1634675195.7d3f6b5043d2.78.0 +3 -0
- runs/Oct19_20-06-58_7d3f6b5043d2/events.out.tfevents.1634675195.7d3f6b5043d2.78.2 +3 -0
- special_tokens_map.json +1 -0
- tokenizer.json +0 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"torch_dtype": "float32",
|
22 |
+
"transformers_version": "4.11.3",
|
23 |
+
"vocab_size": 30522
|
24 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59afecdc315dcfb5f4cd22bfd626da18ed256dfb2c334eca92a22fe4b8780ac5
|
3 |
+
size 265497077
|
runs/Oct19_20-06-58_7d3f6b5043d2/1634675195.669252/events.out.tfevents.1634675195.7d3f6b5043d2.78.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e2aa0653fbfee7c0a6d68a9fbe1c1ad5ec7cac18789f3af709ba7f534150a69
|
3 |
+
size 4576
|
runs/Oct19_20-06-58_7d3f6b5043d2/1634675195.6740866/events.out.tfevents.1634675195.7d3f6b5043d2.78.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:35bc35d910e4c0d76895012830c716c762632e791ab8daf3f027e43ec24b85e0
|
3 |
+
size 4576
|
runs/Oct19_20-06-58_7d3f6b5043d2/events.out.tfevents.1634675195.7d3f6b5043d2.78.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bbc32939767a49dab33f436a21a81ddcf7c052abf297934a6f796529df095cc9
|
3 |
+
size 3257
|
runs/Oct19_20-06-58_7d3f6b5043d2/events.out.tfevents.1634675195.7d3f6b5043d2.78.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:032e8fea3fc285c323cbe64922f4ffe62b399157b936971454d7543b2213a112
|
3 |
+
size 3257
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
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"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c877342b115633ad8239e2095beb9e3e1ae7f9725797305e111f2be0d2260b7e
|
3 |
+
size 2863
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|