Training in progress, epoch 1
Browse files- .gitignore +1 -0
- adapter_config.json +15 -0
- adapter_model.bin +3 -0
- runs/Aug07_22-08-29_Brians-Mac-mini.local/events.out.tfevents.1691464119.Brians-Mac-mini.local.21383.0 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +14 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
adapter_config.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"base_model_name_or_path": "bert-large-uncased",
|
3 |
+
"encoder_dropout": 0.0,
|
4 |
+
"encoder_hidden_size": 128,
|
5 |
+
"encoder_num_layers": 2,
|
6 |
+
"encoder_reparameterization_type": "MLP",
|
7 |
+
"inference_mode": true,
|
8 |
+
"num_attention_heads": 16,
|
9 |
+
"num_layers": 24,
|
10 |
+
"num_transformer_submodules": 1,
|
11 |
+
"num_virtual_tokens": 20,
|
12 |
+
"peft_type": "P_TUNING",
|
13 |
+
"task_type": "SEQ_CLS",
|
14 |
+
"token_dim": 1024
|
15 |
+
}
|
adapter_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9472d4a9a205c355e67c68bbed85ab0d3c70fe7d781fb42bb101baacbdc3ab1
|
3 |
+
size 91457
|
runs/Aug07_22-08-29_Brians-Mac-mini.local/events.out.tfevents.1691464119.Brians-Mac-mini.local.21383.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:539a46625a4f324d38e52d24388140614578ede1cfd233f01dd7847ea621d913
|
3 |
+
size 8195
|
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,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"clean_up_tokenization_spaces": true,
|
3 |
+
"cls_token": "[CLS]",
|
4 |
+
"do_lower_case": true,
|
5 |
+
"mask_token": "[MASK]",
|
6 |
+
"model_max_length": 512,
|
7 |
+
"pad_token": "[PAD]",
|
8 |
+
"padding_side": "right",
|
9 |
+
"sep_token": "[SEP]",
|
10 |
+
"strip_accents": null,
|
11 |
+
"tokenize_chinese_chars": true,
|
12 |
+
"tokenizer_class": "BertTokenizer",
|
13 |
+
"unk_token": "[UNK]"
|
14 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b64611a2479d71cf56cf819227291ec9d43e378fba6568182255d2e7c69b2952
|
3 |
+
size 4027
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|