Training in progress, step 240
Browse files- config.json +94 -0
- generation_config.json +12 -0
- model.safetensors +3 -0
- tokenizer.json +165 -0
- tokenizer_config.json +8 -0
- training_args.bin +3 -0
config.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"EncoderDecoderModel"
|
| 4 |
+
],
|
| 5 |
+
"decoder": {
|
| 6 |
+
"_name_or_path": "",
|
| 7 |
+
"add_cross_attention": true,
|
| 8 |
+
"architectures": null,
|
| 9 |
+
"attention_probs_dropout_prob": 0.1,
|
| 10 |
+
"bos_token_id": null,
|
| 11 |
+
"chunk_size_feed_forward": 0,
|
| 12 |
+
"classifier_dropout": null,
|
| 13 |
+
"dtype": null,
|
| 14 |
+
"eos_token_id": null,
|
| 15 |
+
"hidden_act": "gelu",
|
| 16 |
+
"hidden_dropout_prob": 0.1,
|
| 17 |
+
"hidden_size": 256,
|
| 18 |
+
"id2label": {
|
| 19 |
+
"0": "LABEL_0",
|
| 20 |
+
"1": "LABEL_1"
|
| 21 |
+
},
|
| 22 |
+
"initializer_range": 0.02,
|
| 23 |
+
"intermediate_size": 1024,
|
| 24 |
+
"is_decoder": true,
|
| 25 |
+
"is_encoder_decoder": false,
|
| 26 |
+
"label2id": {
|
| 27 |
+
"LABEL_0": 0,
|
| 28 |
+
"LABEL_1": 1
|
| 29 |
+
},
|
| 30 |
+
"layer_norm_eps": 1e-12,
|
| 31 |
+
"max_position_embeddings": 512,
|
| 32 |
+
"model_type": "bert",
|
| 33 |
+
"num_attention_heads": 4,
|
| 34 |
+
"num_hidden_layers": 4,
|
| 35 |
+
"output_attentions": false,
|
| 36 |
+
"output_hidden_states": false,
|
| 37 |
+
"pad_token_id": 0,
|
| 38 |
+
"problem_type": null,
|
| 39 |
+
"return_dict": true,
|
| 40 |
+
"tie_word_embeddings": true,
|
| 41 |
+
"type_vocab_size": 2,
|
| 42 |
+
"use_cache": true,
|
| 43 |
+
"vocab_size": 25
|
| 44 |
+
},
|
| 45 |
+
"decoder_start_token_id": 2,
|
| 46 |
+
"dtype": "float32",
|
| 47 |
+
"encoder": {
|
| 48 |
+
"_name_or_path": "",
|
| 49 |
+
"add_cross_attention": false,
|
| 50 |
+
"architectures": null,
|
| 51 |
+
"attention_probs_dropout_prob": 0.1,
|
| 52 |
+
"bos_token_id": null,
|
| 53 |
+
"chunk_size_feed_forward": 0,
|
| 54 |
+
"classifier_dropout": null,
|
| 55 |
+
"dtype": null,
|
| 56 |
+
"eos_token_id": null,
|
| 57 |
+
"hidden_act": "gelu",
|
| 58 |
+
"hidden_dropout_prob": 0.1,
|
| 59 |
+
"hidden_size": 256,
|
| 60 |
+
"id2label": {
|
| 61 |
+
"0": "LABEL_0",
|
| 62 |
+
"1": "LABEL_1"
|
| 63 |
+
},
|
| 64 |
+
"initializer_range": 0.02,
|
| 65 |
+
"intermediate_size": 1024,
|
| 66 |
+
"is_decoder": false,
|
| 67 |
+
"is_encoder_decoder": false,
|
| 68 |
+
"label2id": {
|
| 69 |
+
"LABEL_0": 0,
|
| 70 |
+
"LABEL_1": 1
|
| 71 |
+
},
|
| 72 |
+
"layer_norm_eps": 1e-12,
|
| 73 |
+
"max_position_embeddings": 512,
|
| 74 |
+
"model_type": "bert",
|
| 75 |
+
"num_attention_heads": 4,
|
| 76 |
+
"num_hidden_layers": 4,
|
| 77 |
+
"output_attentions": false,
|
| 78 |
+
"output_hidden_states": false,
|
| 79 |
+
"pad_token_id": 0,
|
| 80 |
+
"problem_type": null,
|
| 81 |
+
"return_dict": true,
|
| 82 |
+
"tie_word_embeddings": true,
|
| 83 |
+
"type_vocab_size": 2,
|
| 84 |
+
"use_cache": true,
|
| 85 |
+
"vocab_size": 25
|
| 86 |
+
},
|
| 87 |
+
"eos_token_id": 0,
|
| 88 |
+
"is_encoder_decoder": true,
|
| 89 |
+
"model_type": "encoder-decoder",
|
| 90 |
+
"pad_token_id": 3,
|
| 91 |
+
"transformers_version": "5.0.0",
|
| 92 |
+
"unk_token_id": null,
|
| 93 |
+
"use_cache": false
|
| 94 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"decoder_start_token_id": 2,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
0
|
| 6 |
+
],
|
| 7 |
+
"output_attentions": false,
|
| 8 |
+
"output_hidden_states": false,
|
| 9 |
+
"pad_token_id": 3,
|
| 10 |
+
"transformers_version": "5.0.0",
|
| 11 |
+
"use_cache": true
|
| 12 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:504329fed012390f27a057b05d8001090e9828bb3ab292e3dcce7d628f276089
|
| 3 |
+
size 31150148
|
tokenizer.json
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "1.0",
|
| 3 |
+
"truncation": null,
|
| 4 |
+
"padding": null,
|
| 5 |
+
"added_tokens": [
|
| 6 |
+
{
|
| 7 |
+
"id": 0,
|
| 8 |
+
"content": "[EOS]",
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"lstrip": false,
|
| 11 |
+
"rstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"special": true
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"id": 1,
|
| 17 |
+
"content": "[UNK]",
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"normalized": false,
|
| 22 |
+
"special": true
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"id": 2,
|
| 26 |
+
"content": "[CLS]",
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"lstrip": false,
|
| 29 |
+
"rstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"special": true
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"id": 3,
|
| 35 |
+
"content": "[PAD]",
|
| 36 |
+
"single_word": false,
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"rstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"special": true
|
| 41 |
+
}
|
| 42 |
+
],
|
| 43 |
+
"normalizer": null,
|
| 44 |
+
"pre_tokenizer": {
|
| 45 |
+
"type": "Whitespace"
|
| 46 |
+
},
|
| 47 |
+
"post_processor": {
|
| 48 |
+
"type": "TemplateProcessing",
|
| 49 |
+
"single": [
|
| 50 |
+
{
|
| 51 |
+
"Sequence": {
|
| 52 |
+
"id": "A",
|
| 53 |
+
"type_id": 0
|
| 54 |
+
}
|
| 55 |
+
},
|
| 56 |
+
{
|
| 57 |
+
"SpecialToken": {
|
| 58 |
+
"id": "[EOS]",
|
| 59 |
+
"type_id": 0
|
| 60 |
+
}
|
| 61 |
+
}
|
| 62 |
+
],
|
| 63 |
+
"pair": [
|
| 64 |
+
{
|
| 65 |
+
"Sequence": {
|
| 66 |
+
"id": "A",
|
| 67 |
+
"type_id": 0
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"Sequence": {
|
| 72 |
+
"id": "B",
|
| 73 |
+
"type_id": 1
|
| 74 |
+
}
|
| 75 |
+
}
|
| 76 |
+
],
|
| 77 |
+
"special_tokens": {
|
| 78 |
+
"[EOS]": {
|
| 79 |
+
"id": "[EOS]",
|
| 80 |
+
"ids": [
|
| 81 |
+
0
|
| 82 |
+
],
|
| 83 |
+
"tokens": [
|
| 84 |
+
"[EOS]"
|
| 85 |
+
]
|
| 86 |
+
}
|
| 87 |
+
}
|
| 88 |
+
},
|
| 89 |
+
"decoder": null,
|
| 90 |
+
"model": {
|
| 91 |
+
"type": "BPE",
|
| 92 |
+
"dropout": null,
|
| 93 |
+
"unk_token": "[UNK]",
|
| 94 |
+
"continuing_subword_prefix": null,
|
| 95 |
+
"end_of_word_suffix": null,
|
| 96 |
+
"fuse_unk": false,
|
| 97 |
+
"byte_fallback": false,
|
| 98 |
+
"ignore_merges": false,
|
| 99 |
+
"vocab": {
|
| 100 |
+
"[EOS]": 0,
|
| 101 |
+
"[UNK]": 1,
|
| 102 |
+
"[CLS]": 2,
|
| 103 |
+
"[PAD]": 3,
|
| 104 |
+
"+": 4,
|
| 105 |
+
"-": 5,
|
| 106 |
+
"0": 6,
|
| 107 |
+
"1": 7,
|
| 108 |
+
"2": 8,
|
| 109 |
+
"3": 9,
|
| 110 |
+
"4": 10,
|
| 111 |
+
"5": 11,
|
| 112 |
+
"6": 12,
|
| 113 |
+
"7": 13,
|
| 114 |
+
"8": 14,
|
| 115 |
+
"9": 15,
|
| 116 |
+
"10": 16,
|
| 117 |
+
"11": 17,
|
| 118 |
+
"12": 18,
|
| 119 |
+
"13": 19,
|
| 120 |
+
"14": 20,
|
| 121 |
+
"15": 21,
|
| 122 |
+
"16": 22,
|
| 123 |
+
"17": 23,
|
| 124 |
+
"18": 24
|
| 125 |
+
},
|
| 126 |
+
"merges": [
|
| 127 |
+
[
|
| 128 |
+
"1",
|
| 129 |
+
"0"
|
| 130 |
+
],
|
| 131 |
+
[
|
| 132 |
+
"1",
|
| 133 |
+
"1"
|
| 134 |
+
],
|
| 135 |
+
[
|
| 136 |
+
"1",
|
| 137 |
+
"2"
|
| 138 |
+
],
|
| 139 |
+
[
|
| 140 |
+
"1",
|
| 141 |
+
"3"
|
| 142 |
+
],
|
| 143 |
+
[
|
| 144 |
+
"1",
|
| 145 |
+
"4"
|
| 146 |
+
],
|
| 147 |
+
[
|
| 148 |
+
"1",
|
| 149 |
+
"5"
|
| 150 |
+
],
|
| 151 |
+
[
|
| 152 |
+
"1",
|
| 153 |
+
"6"
|
| 154 |
+
],
|
| 155 |
+
[
|
| 156 |
+
"1",
|
| 157 |
+
"7"
|
| 158 |
+
],
|
| 159 |
+
[
|
| 160 |
+
"1",
|
| 161 |
+
"8"
|
| 162 |
+
]
|
| 163 |
+
]
|
| 164 |
+
}
|
| 165 |
+
}
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"backend": "tokenizers",
|
| 3 |
+
"cls_token": "[CLS]",
|
| 4 |
+
"eos_token": "[EOS]",
|
| 5 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 6 |
+
"pad_token": "[PAD]",
|
| 7 |
+
"tokenizer_class": "TokenizersBackend"
|
| 8 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e5bd21f5b75e02d3a5f02a16f27a8afa1723203bd0e3638c5333a46112b4f1a
|
| 3 |
+
size 5329
|