End of training
Browse files- .gitignore +1 -0
- config.json +25 -0
- pytorch_model.bin +3 -0
- runs/Mar28_13-19-32_a357fa15afa9/1680009581.408604/events.out.tfevents.1680009581.a357fa15afa9.1176.1 +3 -0
- runs/Mar28_13-19-32_a357fa15afa9/events.out.tfevents.1680009581.a357fa15afa9.1176.0 +3 -0
- runs/Mar28_13-24-44_a357fa15afa9/1680009889.5883377/events.out.tfevents.1680009889.a357fa15afa9.1176.3 +3 -0
- runs/Mar28_13-24-44_a357fa15afa9/events.out.tfevents.1680009889.a357fa15afa9.1176.2 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +13 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-large-uncased-whole-word-masking-finetuned-squad",
|
3 |
+
"architectures": [
|
4 |
+
"BertForQuestionAnswering"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"classifier_dropout": null,
|
8 |
+
"hidden_act": "gelu",
|
9 |
+
"hidden_dropout_prob": 0.1,
|
10 |
+
"hidden_size": 1024,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 4096,
|
13 |
+
"layer_norm_eps": 1e-12,
|
14 |
+
"max_position_embeddings": 512,
|
15 |
+
"model_type": "bert",
|
16 |
+
"num_attention_heads": 16,
|
17 |
+
"num_hidden_layers": 24,
|
18 |
+
"pad_token_id": 0,
|
19 |
+
"position_embedding_type": "absolute",
|
20 |
+
"torch_dtype": "float32",
|
21 |
+
"transformers_version": "4.27.3",
|
22 |
+
"type_vocab_size": 2,
|
23 |
+
"use_cache": true,
|
24 |
+
"vocab_size": 30522
|
25 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:30f22a12fe4ad9e45ea1a9e8abb6a42a52adf342e82ca42a7d516a386ef72a97
|
3 |
+
size 1336515565
|
runs/Mar28_13-19-32_a357fa15afa9/1680009581.408604/events.out.tfevents.1680009581.a357fa15afa9.1176.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:50185251ae8af2ef1ec8528216310198a69d0b4918781db9b3991536e2a270c1
|
3 |
+
size 5781
|
runs/Mar28_13-19-32_a357fa15afa9/events.out.tfevents.1680009581.a357fa15afa9.1176.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ec7e7d31bf64707ffa627fa087dcf9ea2f8aa1b81609620d99cc4a1000a34c47
|
3 |
+
size 3932
|
runs/Mar28_13-24-44_a357fa15afa9/1680009889.5883377/events.out.tfevents.1680009889.a357fa15afa9.1176.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d9eccc3b7cbc4b9574c96f0963cc6538b2059a2099de7c2c7cbd951adb2878e4
|
3 |
+
size 5781
|
runs/Mar28_13-24-44_a357fa15afa9/events.out.tfevents.1680009889.a357fa15afa9.1176.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5dce9d496c81c337a3ce8477342979e23bf180da44688582327ca9751420cfbb
|
3 |
+
size 40
|
special_tokens_map.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"mask_token": "[MASK]",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"sep_token": "[SEP]",
|
6 |
+
"unk_token": "[UNK]"
|
7 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"do_lower_case": true,
|
4 |
+
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"pad_token": "[PAD]",
|
7 |
+
"sep_token": "[SEP]",
|
8 |
+
"special_tokens_map_file": null,
|
9 |
+
"strip_accents": null,
|
10 |
+
"tokenize_chinese_chars": true,
|
11 |
+
"tokenizer_class": "BertTokenizer",
|
12 |
+
"unk_token": "[UNK]"
|
13 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:087f952d70dd6480e7f9a41bbda2c13be193d504b5b5c1350274acefae800e2b
|
3 |
+
size 3579
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|