Model save
Browse files- .gitignore +1 -0
- config.json +49 -0
- pytorch_model.bin +3 -0
- runs/Aug26_12-30-25_10-1-16-163/1693020642.8382845/events.out.tfevents.1693020642.10-1-16-163.1602143.1 +3 -0
- runs/Aug26_12-30-25_10-1-16-163/events.out.tfevents.1693020642.10-1-16-163.1602143.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-*/
|
config.json
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-large-cased",
|
3 |
+
"adapters": {
|
4 |
+
"adapters": {},
|
5 |
+
"config_map": {},
|
6 |
+
"fusion_config_map": {},
|
7 |
+
"fusions": {}
|
8 |
+
},
|
9 |
+
"architectures": [
|
10 |
+
"BertPrefixForMultipleChoice"
|
11 |
+
],
|
12 |
+
"attention_probs_dropout_prob": 0.1,
|
13 |
+
"classifier_dropout": null,
|
14 |
+
"directionality": "bidi",
|
15 |
+
"finetuning_task": "copa",
|
16 |
+
"gradient_checkpointing": false,
|
17 |
+
"hidden_act": "gelu",
|
18 |
+
"hidden_dropout_prob": 0.1,
|
19 |
+
"hidden_size": 1024,
|
20 |
+
"id2label": {
|
21 |
+
"0": "LABEL_0"
|
22 |
+
},
|
23 |
+
"initializer_range": 0.02,
|
24 |
+
"intermediate_size": 4096,
|
25 |
+
"label2id": {
|
26 |
+
"LABEL_0": 0
|
27 |
+
},
|
28 |
+
"layer_norm_eps": 1e-12,
|
29 |
+
"max_position_embeddings": 512,
|
30 |
+
"model_type": "bert",
|
31 |
+
"num_attention_heads": 16,
|
32 |
+
"num_hidden_layers": 24,
|
33 |
+
"pad_token_id": 0,
|
34 |
+
"pooler_fc_size": 768,
|
35 |
+
"pooler_num_attention_heads": 12,
|
36 |
+
"pooler_num_fc_layers": 3,
|
37 |
+
"pooler_size_per_head": 128,
|
38 |
+
"pooler_type": "first_token_transform",
|
39 |
+
"position_embedding_type": "absolute",
|
40 |
+
"pre_seq_len": 1,
|
41 |
+
"prefix_hidden_size": 512,
|
42 |
+
"prefix_projection": false,
|
43 |
+
"teacher_model_location": "/home/user17/code/COLING/copa_tuning/checkpoints/ptuning/copa/20230826004809/",
|
44 |
+
"torch_dtype": "float32",
|
45 |
+
"transformers_version": "4.26.1",
|
46 |
+
"type_vocab_size": 2,
|
47 |
+
"use_cache": true,
|
48 |
+
"vocab_size": 28996
|
49 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:81bf057594fdc6fc2d6adb71fc0e8598ceef9db195fb2dd158c2a95df010c257
|
3 |
+
size 2669913253
|
runs/Aug26_12-30-25_10-1-16-163/1693020642.8382845/events.out.tfevents.1693020642.10-1-16-163.1602143.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aeb10ab4343c4fafb5def590ea8b14e760e05098661c68ebf0e3c84032832d8b
|
3 |
+
size 5783
|
runs/Aug26_12-30-25_10-1-16-163/events.out.tfevents.1693020642.10-1-16-163.1602143.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:abe23a780cbe0a000d0e9ecb99ea3c06768b9423e46381b5ffc1294e5dbde39c
|
3 |
+
size 44740
|
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 |
+
"cls_token": "[CLS]",
|
3 |
+
"do_lower_case": false,
|
4 |
+
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"name_or_path": "bert-large-cased",
|
7 |
+
"pad_token": "[PAD]",
|
8 |
+
"sep_token": "[SEP]",
|
9 |
+
"special_tokens_map_file": null,
|
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:b3bc70245f64e6f85e598849c950ec6c39b4a400db9bae4412824dad55c85b8c
|
3 |
+
size 3579
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|