MarcusB2012 commited on
Commit
232e339
·
verified ·
1 Parent(s): b5233ab

Upload 11 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
added_tokens.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "<<ENT>>": 250103,
3
+ "<<SEP>>": 250104,
4
+ "[FLERT]": 250102,
5
+ "[MASK]": 250101
6
+ }
gliner_config.json ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 1,
3
+ "class_token_index": 250103,
4
+ "dropout": 0.4,
5
+ "embed_ent_token": true,
6
+ "encoder_config": {
7
+ "_name_or_path": "microsoft/mdeberta-v3-base",
8
+ "add_cross_attention": false,
9
+ "architectures": null,
10
+ "attention_probs_dropout_prob": 0.1,
11
+ "bad_words_ids": null,
12
+ "begin_suppress_tokens": null,
13
+ "bos_token_id": null,
14
+ "chunk_size_feed_forward": 0,
15
+ "cross_attention_hidden_size": null,
16
+ "decoder_start_token_id": null,
17
+ "diversity_penalty": 0.0,
18
+ "do_sample": false,
19
+ "dtype": null,
20
+ "early_stopping": false,
21
+ "encoder_no_repeat_ngram_size": 0,
22
+ "eos_token_id": null,
23
+ "exponential_decay_length_penalty": null,
24
+ "finetuning_task": null,
25
+ "forced_bos_token_id": null,
26
+ "forced_eos_token_id": null,
27
+ "hidden_act": "gelu",
28
+ "hidden_dropout_prob": 0.1,
29
+ "hidden_size": 768,
30
+ "id2label": {
31
+ "0": "LABEL_0",
32
+ "1": "LABEL_1"
33
+ },
34
+ "initializer_range": 0.02,
35
+ "intermediate_size": 3072,
36
+ "is_decoder": false,
37
+ "is_encoder_decoder": false,
38
+ "label2id": {
39
+ "LABEL_0": 0,
40
+ "LABEL_1": 1
41
+ },
42
+ "layer_norm_eps": 1e-07,
43
+ "legacy": true,
44
+ "length_penalty": 1.0,
45
+ "max_length": 20,
46
+ "max_position_embeddings": 512,
47
+ "max_relative_positions": -1,
48
+ "min_length": 0,
49
+ "model_type": "deberta-v2",
50
+ "no_repeat_ngram_size": 0,
51
+ "norm_rel_ebd": "layer_norm",
52
+ "num_attention_heads": 12,
53
+ "num_beam_groups": 1,
54
+ "num_beams": 1,
55
+ "num_hidden_layers": 12,
56
+ "num_return_sequences": 1,
57
+ "output_attentions": false,
58
+ "output_hidden_states": false,
59
+ "output_scores": false,
60
+ "pad_token_id": 0,
61
+ "pooler_dropout": 0,
62
+ "pooler_hidden_act": "gelu",
63
+ "pooler_hidden_size": 768,
64
+ "pos_att_type": [
65
+ "p2c",
66
+ "c2p"
67
+ ],
68
+ "position_biased_input": false,
69
+ "position_buckets": 256,
70
+ "prefix": null,
71
+ "problem_type": null,
72
+ "pruned_heads": {},
73
+ "relative_attention": true,
74
+ "remove_invalid_values": false,
75
+ "repetition_penalty": 1.0,
76
+ "return_dict": true,
77
+ "return_dict_in_generate": false,
78
+ "sep_token_id": null,
79
+ "share_att_key": true,
80
+ "suppress_tokens": null,
81
+ "task_specific_params": null,
82
+ "temperature": 1.0,
83
+ "tf_legacy_loss": false,
84
+ "tie_encoder_decoder": false,
85
+ "tie_word_embeddings": true,
86
+ "tokenizer_class": null,
87
+ "top_k": 50,
88
+ "top_p": 1.0,
89
+ "torchscript": false,
90
+ "type_vocab_size": 0,
91
+ "typical_p": 1.0,
92
+ "use_bfloat16": false,
93
+ "vocab_size": 250105
94
+ },
95
+ "ent_token": "<<ENT>>",
96
+ "eos_token_id": 2,
97
+ "eval_every": 5000,
98
+ "fine_tune": true,
99
+ "fuse_layers": false,
100
+ "hidden_size": 512,
101
+ "lr_encoder": "1e-5",
102
+ "lr_others": "5e-5",
103
+ "max_len": 1400,
104
+ "max_neg_type_ratio": 1,
105
+ "max_types": 25,
106
+ "max_width": 12,
107
+ "model_name": "microsoft/mdeberta-v3-base",
108
+ "model_type": null,
109
+ "name": "correct",
110
+ "num_post_fusion_layers": 1,
111
+ "num_rnn_layers": 1,
112
+ "num_steps": 30000,
113
+ "pad_token_id": 0,
114
+ "post_fusion_schema": "",
115
+ "random_drop": true,
116
+ "sep_token": "<<SEP>>",
117
+ "shuffle_types": true,
118
+ "size_sup": -1,
119
+ "span_mode": "markerV0",
120
+ "subtoken_pooling": "first",
121
+ "train_batch_size": 8,
122
+ "transformers_version": "4.57.3",
123
+ "vocab_size": 250105,
124
+ "warmup_ratio": 3000,
125
+ "words_splitter_type": "whitespace"
126
+ }
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
3
+ size 0
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03cc713ba2b67ab6e31ef05b2eecac863b7cfea0823c5898e9854d48403821cf
3
+ size 1155877731
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:828fb7d132a3281c110c56629f4440486c2cc40a5c19ab0f4cee17b53ec7c312
3
+ size 14455
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1afd1e9d5db958ddd278c14cb488de7988bee2450684048440093f2c8c06fa11
3
+ size 1529
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
5
+ "mask_token": "[MASK]",
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "unk_token": {
9
+ "content": "[UNK]",
10
+ "lstrip": false,
11
+ "normalized": true,
12
+ "rstrip": false,
13
+ "single_word": false
14
+ }
15
+ }
spm.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13c8d666d62a7bc4ac8f040aab68e942c861f93303156cc28f5c7e885d86d6e3
3
+ size 4305025
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87208f39b9e81f180629d45da55d7a24cf1e011884552d6d5096c92e0a639d39
3
+ size 16351316
tokenizer_config.json ADDED
@@ -0,0 +1,883 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[CLS]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[SEP]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[UNK]",
29
+ "lstrip": false,
30
+ "normalized": true,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "250001": {
36
+ "content": "▁<extra_id_99>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": false
42
+ },
43
+ "250002": {
44
+ "content": "▁<extra_id_98>",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": false
50
+ },
51
+ "250003": {
52
+ "content": "▁<extra_id_97>",
53
+ "lstrip": false,
54
+ "normalized": false,
55
+ "rstrip": false,
56
+ "single_word": false,
57
+ "special": false
58
+ },
59
+ "250004": {
60
+ "content": "▁<extra_id_96>",
61
+ "lstrip": false,
62
+ "normalized": false,
63
+ "rstrip": false,
64
+ "single_word": false,
65
+ "special": false
66
+ },
67
+ "250005": {
68
+ "content": "▁<extra_id_95>",
69
+ "lstrip": false,
70
+ "normalized": false,
71
+ "rstrip": false,
72
+ "single_word": false,
73
+ "special": false
74
+ },
75
+ "250006": {
76
+ "content": "▁<extra_id_94>",
77
+ "lstrip": false,
78
+ "normalized": false,
79
+ "rstrip": false,
80
+ "single_word": false,
81
+ "special": false
82
+ },
83
+ "250007": {
84
+ "content": "▁<extra_id_93>",
85
+ "lstrip": false,
86
+ "normalized": false,
87
+ "rstrip": false,
88
+ "single_word": false,
89
+ "special": false
90
+ },
91
+ "250008": {
92
+ "content": "▁<extra_id_92>",
93
+ "lstrip": false,
94
+ "normalized": false,
95
+ "rstrip": false,
96
+ "single_word": false,
97
+ "special": false
98
+ },
99
+ "250009": {
100
+ "content": "▁<extra_id_91>",
101
+ "lstrip": false,
102
+ "normalized": false,
103
+ "rstrip": false,
104
+ "single_word": false,
105
+ "special": false
106
+ },
107
+ "250010": {
108
+ "content": "▁<extra_id_90>",
109
+ "lstrip": false,
110
+ "normalized": false,
111
+ "rstrip": false,
112
+ "single_word": false,
113
+ "special": false
114
+ },
115
+ "250011": {
116
+ "content": "▁<extra_id_89>",
117
+ "lstrip": false,
118
+ "normalized": false,
119
+ "rstrip": false,
120
+ "single_word": false,
121
+ "special": false
122
+ },
123
+ "250012": {
124
+ "content": "▁<extra_id_88>",
125
+ "lstrip": false,
126
+ "normalized": false,
127
+ "rstrip": false,
128
+ "single_word": false,
129
+ "special": false
130
+ },
131
+ "250013": {
132
+ "content": "▁<extra_id_87>",
133
+ "lstrip": false,
134
+ "normalized": false,
135
+ "rstrip": false,
136
+ "single_word": false,
137
+ "special": false
138
+ },
139
+ "250014": {
140
+ "content": "▁<extra_id_86>",
141
+ "lstrip": false,
142
+ "normalized": false,
143
+ "rstrip": false,
144
+ "single_word": false,
145
+ "special": false
146
+ },
147
+ "250015": {
148
+ "content": "▁<extra_id_85>",
149
+ "lstrip": false,
150
+ "normalized": false,
151
+ "rstrip": false,
152
+ "single_word": false,
153
+ "special": false
154
+ },
155
+ "250016": {
156
+ "content": "▁<extra_id_84>",
157
+ "lstrip": false,
158
+ "normalized": false,
159
+ "rstrip": false,
160
+ "single_word": false,
161
+ "special": false
162
+ },
163
+ "250017": {
164
+ "content": "▁<extra_id_83>",
165
+ "lstrip": false,
166
+ "normalized": false,
167
+ "rstrip": false,
168
+ "single_word": false,
169
+ "special": false
170
+ },
171
+ "250018": {
172
+ "content": "▁<extra_id_82>",
173
+ "lstrip": false,
174
+ "normalized": false,
175
+ "rstrip": false,
176
+ "single_word": false,
177
+ "special": false
178
+ },
179
+ "250019": {
180
+ "content": "▁<extra_id_81>",
181
+ "lstrip": false,
182
+ "normalized": false,
183
+ "rstrip": false,
184
+ "single_word": false,
185
+ "special": false
186
+ },
187
+ "250020": {
188
+ "content": "▁<extra_id_80>",
189
+ "lstrip": false,
190
+ "normalized": false,
191
+ "rstrip": false,
192
+ "single_word": false,
193
+ "special": false
194
+ },
195
+ "250021": {
196
+ "content": "▁<extra_id_79>",
197
+ "lstrip": false,
198
+ "normalized": false,
199
+ "rstrip": false,
200
+ "single_word": false,
201
+ "special": false
202
+ },
203
+ "250022": {
204
+ "content": "▁<extra_id_78>",
205
+ "lstrip": false,
206
+ "normalized": false,
207
+ "rstrip": false,
208
+ "single_word": false,
209
+ "special": false
210
+ },
211
+ "250023": {
212
+ "content": "▁<extra_id_77>",
213
+ "lstrip": false,
214
+ "normalized": false,
215
+ "rstrip": false,
216
+ "single_word": false,
217
+ "special": false
218
+ },
219
+ "250024": {
220
+ "content": "▁<extra_id_76>",
221
+ "lstrip": false,
222
+ "normalized": false,
223
+ "rstrip": false,
224
+ "single_word": false,
225
+ "special": false
226
+ },
227
+ "250025": {
228
+ "content": "▁<extra_id_75>",
229
+ "lstrip": false,
230
+ "normalized": false,
231
+ "rstrip": false,
232
+ "single_word": false,
233
+ "special": false
234
+ },
235
+ "250026": {
236
+ "content": "▁<extra_id_74>",
237
+ "lstrip": false,
238
+ "normalized": false,
239
+ "rstrip": false,
240
+ "single_word": false,
241
+ "special": false
242
+ },
243
+ "250027": {
244
+ "content": "▁<extra_id_73>",
245
+ "lstrip": false,
246
+ "normalized": false,
247
+ "rstrip": false,
248
+ "single_word": false,
249
+ "special": false
250
+ },
251
+ "250028": {
252
+ "content": "▁<extra_id_72>",
253
+ "lstrip": false,
254
+ "normalized": false,
255
+ "rstrip": false,
256
+ "single_word": false,
257
+ "special": false
258
+ },
259
+ "250029": {
260
+ "content": "▁<extra_id_71>",
261
+ "lstrip": false,
262
+ "normalized": false,
263
+ "rstrip": false,
264
+ "single_word": false,
265
+ "special": false
266
+ },
267
+ "250030": {
268
+ "content": "▁<extra_id_70>",
269
+ "lstrip": false,
270
+ "normalized": false,
271
+ "rstrip": false,
272
+ "single_word": false,
273
+ "special": false
274
+ },
275
+ "250031": {
276
+ "content": "▁<extra_id_69>",
277
+ "lstrip": false,
278
+ "normalized": false,
279
+ "rstrip": false,
280
+ "single_word": false,
281
+ "special": false
282
+ },
283
+ "250032": {
284
+ "content": "▁<extra_id_68>",
285
+ "lstrip": false,
286
+ "normalized": false,
287
+ "rstrip": false,
288
+ "single_word": false,
289
+ "special": false
290
+ },
291
+ "250033": {
292
+ "content": "▁<extra_id_67>",
293
+ "lstrip": false,
294
+ "normalized": false,
295
+ "rstrip": false,
296
+ "single_word": false,
297
+ "special": false
298
+ },
299
+ "250034": {
300
+ "content": "▁<extra_id_66>",
301
+ "lstrip": false,
302
+ "normalized": false,
303
+ "rstrip": false,
304
+ "single_word": false,
305
+ "special": false
306
+ },
307
+ "250035": {
308
+ "content": "▁<extra_id_65>",
309
+ "lstrip": false,
310
+ "normalized": false,
311
+ "rstrip": false,
312
+ "single_word": false,
313
+ "special": false
314
+ },
315
+ "250036": {
316
+ "content": "▁<extra_id_64>",
317
+ "lstrip": false,
318
+ "normalized": false,
319
+ "rstrip": false,
320
+ "single_word": false,
321
+ "special": false
322
+ },
323
+ "250037": {
324
+ "content": "▁<extra_id_63>",
325
+ "lstrip": false,
326
+ "normalized": false,
327
+ "rstrip": false,
328
+ "single_word": false,
329
+ "special": false
330
+ },
331
+ "250038": {
332
+ "content": "▁<extra_id_62>",
333
+ "lstrip": false,
334
+ "normalized": false,
335
+ "rstrip": false,
336
+ "single_word": false,
337
+ "special": false
338
+ },
339
+ "250039": {
340
+ "content": "▁<extra_id_61>",
341
+ "lstrip": false,
342
+ "normalized": false,
343
+ "rstrip": false,
344
+ "single_word": false,
345
+ "special": false
346
+ },
347
+ "250040": {
348
+ "content": "▁<extra_id_60>",
349
+ "lstrip": false,
350
+ "normalized": false,
351
+ "rstrip": false,
352
+ "single_word": false,
353
+ "special": false
354
+ },
355
+ "250041": {
356
+ "content": "▁<extra_id_59>",
357
+ "lstrip": false,
358
+ "normalized": false,
359
+ "rstrip": false,
360
+ "single_word": false,
361
+ "special": false
362
+ },
363
+ "250042": {
364
+ "content": "▁<extra_id_58>",
365
+ "lstrip": false,
366
+ "normalized": false,
367
+ "rstrip": false,
368
+ "single_word": false,
369
+ "special": false
370
+ },
371
+ "250043": {
372
+ "content": "▁<extra_id_57>",
373
+ "lstrip": false,
374
+ "normalized": false,
375
+ "rstrip": false,
376
+ "single_word": false,
377
+ "special": false
378
+ },
379
+ "250044": {
380
+ "content": "▁<extra_id_56>",
381
+ "lstrip": false,
382
+ "normalized": false,
383
+ "rstrip": false,
384
+ "single_word": false,
385
+ "special": false
386
+ },
387
+ "250045": {
388
+ "content": "▁<extra_id_55>",
389
+ "lstrip": false,
390
+ "normalized": false,
391
+ "rstrip": false,
392
+ "single_word": false,
393
+ "special": false
394
+ },
395
+ "250046": {
396
+ "content": "▁<extra_id_54>",
397
+ "lstrip": false,
398
+ "normalized": false,
399
+ "rstrip": false,
400
+ "single_word": false,
401
+ "special": false
402
+ },
403
+ "250047": {
404
+ "content": "▁<extra_id_53>",
405
+ "lstrip": false,
406
+ "normalized": false,
407
+ "rstrip": false,
408
+ "single_word": false,
409
+ "special": false
410
+ },
411
+ "250048": {
412
+ "content": "▁<extra_id_52>",
413
+ "lstrip": false,
414
+ "normalized": false,
415
+ "rstrip": false,
416
+ "single_word": false,
417
+ "special": false
418
+ },
419
+ "250049": {
420
+ "content": "▁<extra_id_51>",
421
+ "lstrip": false,
422
+ "normalized": false,
423
+ "rstrip": false,
424
+ "single_word": false,
425
+ "special": false
426
+ },
427
+ "250050": {
428
+ "content": "▁<extra_id_50>",
429
+ "lstrip": false,
430
+ "normalized": false,
431
+ "rstrip": false,
432
+ "single_word": false,
433
+ "special": false
434
+ },
435
+ "250051": {
436
+ "content": "▁<extra_id_49>",
437
+ "lstrip": false,
438
+ "normalized": false,
439
+ "rstrip": false,
440
+ "single_word": false,
441
+ "special": false
442
+ },
443
+ "250052": {
444
+ "content": "▁<extra_id_48>",
445
+ "lstrip": false,
446
+ "normalized": false,
447
+ "rstrip": false,
448
+ "single_word": false,
449
+ "special": false
450
+ },
451
+ "250053": {
452
+ "content": "▁<extra_id_47>",
453
+ "lstrip": false,
454
+ "normalized": false,
455
+ "rstrip": false,
456
+ "single_word": false,
457
+ "special": false
458
+ },
459
+ "250054": {
460
+ "content": "▁<extra_id_46>",
461
+ "lstrip": false,
462
+ "normalized": false,
463
+ "rstrip": false,
464
+ "single_word": false,
465
+ "special": false
466
+ },
467
+ "250055": {
468
+ "content": "▁<extra_id_45>",
469
+ "lstrip": false,
470
+ "normalized": false,
471
+ "rstrip": false,
472
+ "single_word": false,
473
+ "special": false
474
+ },
475
+ "250056": {
476
+ "content": "▁<extra_id_44>",
477
+ "lstrip": false,
478
+ "normalized": false,
479
+ "rstrip": false,
480
+ "single_word": false,
481
+ "special": false
482
+ },
483
+ "250057": {
484
+ "content": "▁<extra_id_43>",
485
+ "lstrip": false,
486
+ "normalized": false,
487
+ "rstrip": false,
488
+ "single_word": false,
489
+ "special": false
490
+ },
491
+ "250058": {
492
+ "content": "▁<extra_id_42>",
493
+ "lstrip": false,
494
+ "normalized": false,
495
+ "rstrip": false,
496
+ "single_word": false,
497
+ "special": false
498
+ },
499
+ "250059": {
500
+ "content": "▁<extra_id_41>",
501
+ "lstrip": false,
502
+ "normalized": false,
503
+ "rstrip": false,
504
+ "single_word": false,
505
+ "special": false
506
+ },
507
+ "250060": {
508
+ "content": "▁<extra_id_40>",
509
+ "lstrip": false,
510
+ "normalized": false,
511
+ "rstrip": false,
512
+ "single_word": false,
513
+ "special": false
514
+ },
515
+ "250061": {
516
+ "content": "▁<extra_id_39>",
517
+ "lstrip": false,
518
+ "normalized": false,
519
+ "rstrip": false,
520
+ "single_word": false,
521
+ "special": false
522
+ },
523
+ "250062": {
524
+ "content": "▁<extra_id_38>",
525
+ "lstrip": false,
526
+ "normalized": false,
527
+ "rstrip": false,
528
+ "single_word": false,
529
+ "special": false
530
+ },
531
+ "250063": {
532
+ "content": "▁<extra_id_37>",
533
+ "lstrip": false,
534
+ "normalized": false,
535
+ "rstrip": false,
536
+ "single_word": false,
537
+ "special": false
538
+ },
539
+ "250064": {
540
+ "content": "▁<extra_id_36>",
541
+ "lstrip": false,
542
+ "normalized": false,
543
+ "rstrip": false,
544
+ "single_word": false,
545
+ "special": false
546
+ },
547
+ "250065": {
548
+ "content": "▁<extra_id_35>",
549
+ "lstrip": false,
550
+ "normalized": false,
551
+ "rstrip": false,
552
+ "single_word": false,
553
+ "special": false
554
+ },
555
+ "250066": {
556
+ "content": "▁<extra_id_34>",
557
+ "lstrip": false,
558
+ "normalized": false,
559
+ "rstrip": false,
560
+ "single_word": false,
561
+ "special": false
562
+ },
563
+ "250067": {
564
+ "content": "▁<extra_id_33>",
565
+ "lstrip": false,
566
+ "normalized": false,
567
+ "rstrip": false,
568
+ "single_word": false,
569
+ "special": false
570
+ },
571
+ "250068": {
572
+ "content": "▁<extra_id_32>",
573
+ "lstrip": false,
574
+ "normalized": false,
575
+ "rstrip": false,
576
+ "single_word": false,
577
+ "special": false
578
+ },
579
+ "250069": {
580
+ "content": "▁<extra_id_31>",
581
+ "lstrip": false,
582
+ "normalized": false,
583
+ "rstrip": false,
584
+ "single_word": false,
585
+ "special": false
586
+ },
587
+ "250070": {
588
+ "content": "▁<extra_id_30>",
589
+ "lstrip": false,
590
+ "normalized": false,
591
+ "rstrip": false,
592
+ "single_word": false,
593
+ "special": false
594
+ },
595
+ "250071": {
596
+ "content": "▁<extra_id_29>",
597
+ "lstrip": false,
598
+ "normalized": false,
599
+ "rstrip": false,
600
+ "single_word": false,
601
+ "special": false
602
+ },
603
+ "250072": {
604
+ "content": "▁<extra_id_28>",
605
+ "lstrip": false,
606
+ "normalized": false,
607
+ "rstrip": false,
608
+ "single_word": false,
609
+ "special": false
610
+ },
611
+ "250073": {
612
+ "content": "▁<extra_id_27>",
613
+ "lstrip": false,
614
+ "normalized": false,
615
+ "rstrip": false,
616
+ "single_word": false,
617
+ "special": false
618
+ },
619
+ "250074": {
620
+ "content": "▁<extra_id_26>",
621
+ "lstrip": false,
622
+ "normalized": false,
623
+ "rstrip": false,
624
+ "single_word": false,
625
+ "special": false
626
+ },
627
+ "250075": {
628
+ "content": "▁<extra_id_25>",
629
+ "lstrip": false,
630
+ "normalized": false,
631
+ "rstrip": false,
632
+ "single_word": false,
633
+ "special": false
634
+ },
635
+ "250076": {
636
+ "content": "▁<extra_id_24>",
637
+ "lstrip": false,
638
+ "normalized": false,
639
+ "rstrip": false,
640
+ "single_word": false,
641
+ "special": false
642
+ },
643
+ "250077": {
644
+ "content": "▁<extra_id_23>",
645
+ "lstrip": false,
646
+ "normalized": false,
647
+ "rstrip": false,
648
+ "single_word": false,
649
+ "special": false
650
+ },
651
+ "250078": {
652
+ "content": "▁<extra_id_22>",
653
+ "lstrip": false,
654
+ "normalized": false,
655
+ "rstrip": false,
656
+ "single_word": false,
657
+ "special": false
658
+ },
659
+ "250079": {
660
+ "content": "▁<extra_id_21>",
661
+ "lstrip": false,
662
+ "normalized": false,
663
+ "rstrip": false,
664
+ "single_word": false,
665
+ "special": false
666
+ },
667
+ "250080": {
668
+ "content": "▁<extra_id_20>",
669
+ "lstrip": false,
670
+ "normalized": false,
671
+ "rstrip": false,
672
+ "single_word": false,
673
+ "special": false
674
+ },
675
+ "250081": {
676
+ "content": "▁<extra_id_19>",
677
+ "lstrip": false,
678
+ "normalized": false,
679
+ "rstrip": false,
680
+ "single_word": false,
681
+ "special": false
682
+ },
683
+ "250082": {
684
+ "content": "▁<extra_id_18>",
685
+ "lstrip": false,
686
+ "normalized": false,
687
+ "rstrip": false,
688
+ "single_word": false,
689
+ "special": false
690
+ },
691
+ "250083": {
692
+ "content": "▁<extra_id_17>",
693
+ "lstrip": false,
694
+ "normalized": false,
695
+ "rstrip": false,
696
+ "single_word": false,
697
+ "special": false
698
+ },
699
+ "250084": {
700
+ "content": "▁<extra_id_16>",
701
+ "lstrip": false,
702
+ "normalized": false,
703
+ "rstrip": false,
704
+ "single_word": false,
705
+ "special": false
706
+ },
707
+ "250085": {
708
+ "content": "▁<extra_id_15>",
709
+ "lstrip": false,
710
+ "normalized": false,
711
+ "rstrip": false,
712
+ "single_word": false,
713
+ "special": false
714
+ },
715
+ "250086": {
716
+ "content": "▁<extra_id_14>",
717
+ "lstrip": false,
718
+ "normalized": false,
719
+ "rstrip": false,
720
+ "single_word": false,
721
+ "special": false
722
+ },
723
+ "250087": {
724
+ "content": "▁<extra_id_13>",
725
+ "lstrip": false,
726
+ "normalized": false,
727
+ "rstrip": false,
728
+ "single_word": false,
729
+ "special": false
730
+ },
731
+ "250088": {
732
+ "content": "▁<extra_id_12>",
733
+ "lstrip": false,
734
+ "normalized": false,
735
+ "rstrip": false,
736
+ "single_word": false,
737
+ "special": false
738
+ },
739
+ "250089": {
740
+ "content": "▁<extra_id_11>",
741
+ "lstrip": false,
742
+ "normalized": false,
743
+ "rstrip": false,
744
+ "single_word": false,
745
+ "special": false
746
+ },
747
+ "250090": {
748
+ "content": "▁<extra_id_10>",
749
+ "lstrip": false,
750
+ "normalized": false,
751
+ "rstrip": false,
752
+ "single_word": false,
753
+ "special": false
754
+ },
755
+ "250091": {
756
+ "content": "▁<extra_id_9>",
757
+ "lstrip": false,
758
+ "normalized": false,
759
+ "rstrip": false,
760
+ "single_word": false,
761
+ "special": false
762
+ },
763
+ "250092": {
764
+ "content": "▁<extra_id_8>",
765
+ "lstrip": false,
766
+ "normalized": false,
767
+ "rstrip": false,
768
+ "single_word": false,
769
+ "special": false
770
+ },
771
+ "250093": {
772
+ "content": "▁<extra_id_7>",
773
+ "lstrip": false,
774
+ "normalized": false,
775
+ "rstrip": false,
776
+ "single_word": false,
777
+ "special": false
778
+ },
779
+ "250094": {
780
+ "content": "▁<extra_id_6>",
781
+ "lstrip": false,
782
+ "normalized": false,
783
+ "rstrip": false,
784
+ "single_word": false,
785
+ "special": false
786
+ },
787
+ "250095": {
788
+ "content": "▁<extra_id_5>",
789
+ "lstrip": false,
790
+ "normalized": false,
791
+ "rstrip": false,
792
+ "single_word": false,
793
+ "special": false
794
+ },
795
+ "250096": {
796
+ "content": "▁<extra_id_4>",
797
+ "lstrip": false,
798
+ "normalized": false,
799
+ "rstrip": false,
800
+ "single_word": false,
801
+ "special": false
802
+ },
803
+ "250097": {
804
+ "content": "▁<extra_id_3>",
805
+ "lstrip": false,
806
+ "normalized": false,
807
+ "rstrip": false,
808
+ "single_word": false,
809
+ "special": false
810
+ },
811
+ "250098": {
812
+ "content": "▁<extra_id_2>",
813
+ "lstrip": false,
814
+ "normalized": false,
815
+ "rstrip": false,
816
+ "single_word": false,
817
+ "special": false
818
+ },
819
+ "250099": {
820
+ "content": "▁<extra_id_1>",
821
+ "lstrip": false,
822
+ "normalized": false,
823
+ "rstrip": false,
824
+ "single_word": false,
825
+ "special": false
826
+ },
827
+ "250100": {
828
+ "content": "▁<extra_id_0>",
829
+ "lstrip": false,
830
+ "normalized": false,
831
+ "rstrip": false,
832
+ "single_word": false,
833
+ "special": false
834
+ },
835
+ "250101": {
836
+ "content": "[MASK]",
837
+ "lstrip": false,
838
+ "normalized": false,
839
+ "rstrip": false,
840
+ "single_word": false,
841
+ "special": true
842
+ },
843
+ "250102": {
844
+ "content": "[FLERT]",
845
+ "lstrip": false,
846
+ "normalized": false,
847
+ "rstrip": false,
848
+ "single_word": false,
849
+ "special": true
850
+ },
851
+ "250103": {
852
+ "content": "<<ENT>>",
853
+ "lstrip": false,
854
+ "normalized": false,
855
+ "rstrip": false,
856
+ "single_word": false,
857
+ "special": true
858
+ },
859
+ "250104": {
860
+ "content": "<<SEP>>",
861
+ "lstrip": false,
862
+ "normalized": false,
863
+ "rstrip": false,
864
+ "single_word": false,
865
+ "special": true
866
+ }
867
+ },
868
+ "bos_token": "[CLS]",
869
+ "clean_up_tokenization_spaces": false,
870
+ "cls_token": "[CLS]",
871
+ "do_lower_case": false,
872
+ "eos_token": "[SEP]",
873
+ "extra_special_tokens": {},
874
+ "mask_token": "[MASK]",
875
+ "model_max_length": 1000000000000000019884624838656,
876
+ "pad_token": "[PAD]",
877
+ "sep_token": "[SEP]",
878
+ "sp_model_kwargs": {},
879
+ "split_by_punct": false,
880
+ "tokenizer_class": "DebertaV2Tokenizer",
881
+ "unk_token": "[UNK]",
882
+ "vocab_type": "spm"
883
+ }
trainer_state.json ADDED
@@ -0,0 +1,559 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 4.967105263157895,
6
+ "eval_steps": 500,
7
+ "global_step": 755,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.06578947368421052,
14
+ "grad_norm": 12741.283203125,
15
+ "learning_rate": 2.368421052631579e-06,
16
+ "loss": 1343.5036,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.13157894736842105,
21
+ "grad_norm": 3765.042724609375,
22
+ "learning_rate": 5e-06,
23
+ "loss": 1025.8134,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.19736842105263158,
28
+ "grad_norm": 3857.6552734375,
29
+ "learning_rate": 7.631578947368423e-06,
30
+ "loss": 931.7692,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.2631578947368421,
35
+ "grad_norm": 3910.090087890625,
36
+ "learning_rate": 9.986052998605302e-06,
37
+ "loss": 828.1059,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.32894736842105265,
42
+ "grad_norm": 3312.494140625,
43
+ "learning_rate": 9.846582984658299e-06,
44
+ "loss": 701.0779,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.39473684210526316,
49
+ "grad_norm": 7742.6982421875,
50
+ "learning_rate": 9.707112970711298e-06,
51
+ "loss": 575.7785,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.4605263157894737,
56
+ "grad_norm": 4383.2861328125,
57
+ "learning_rate": 9.567642956764297e-06,
58
+ "loss": 683.3667,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.5263157894736842,
63
+ "grad_norm": 4326.119140625,
64
+ "learning_rate": 9.428172942817295e-06,
65
+ "loss": 689.7952,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.5921052631578947,
70
+ "grad_norm": 3050.6357421875,
71
+ "learning_rate": 9.288702928870293e-06,
72
+ "loss": 529.22,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.6578947368421053,
77
+ "grad_norm": 8133.0595703125,
78
+ "learning_rate": 9.149232914923292e-06,
79
+ "loss": 493.8726,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.7236842105263158,
84
+ "grad_norm": 4629.41162109375,
85
+ "learning_rate": 9.00976290097629e-06,
86
+ "loss": 480.3524,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.7894736842105263,
91
+ "grad_norm": 3343.38232421875,
92
+ "learning_rate": 8.87029288702929e-06,
93
+ "loss": 519.6425,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.8552631578947368,
98
+ "grad_norm": 3955.08447265625,
99
+ "learning_rate": 8.730822873082288e-06,
100
+ "loss": 580.8739,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.9210526315789473,
105
+ "grad_norm": 4120.26123046875,
106
+ "learning_rate": 8.591352859135287e-06,
107
+ "loss": 566.2863,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.9868421052631579,
112
+ "grad_norm": 2743.97119140625,
113
+ "learning_rate": 8.451882845188284e-06,
114
+ "loss": 498.7171,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 1.0526315789473684,
119
+ "grad_norm": 3119.446044921875,
120
+ "learning_rate": 8.312412831241283e-06,
121
+ "loss": 448.7976,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 1.118421052631579,
126
+ "grad_norm": 3619.334228515625,
127
+ "learning_rate": 8.172942817294282e-06,
128
+ "loss": 490.538,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 1.1842105263157894,
133
+ "grad_norm": 3563.162353515625,
134
+ "learning_rate": 8.033472803347281e-06,
135
+ "loss": 550.9566,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 1.25,
140
+ "grad_norm": 3006.31884765625,
141
+ "learning_rate": 7.89400278940028e-06,
142
+ "loss": 496.8316,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 1.3157894736842106,
147
+ "grad_norm": 3445.16650390625,
148
+ "learning_rate": 7.754532775453279e-06,
149
+ "loss": 468.8848,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 1.381578947368421,
154
+ "grad_norm": 2652.3056640625,
155
+ "learning_rate": 7.615062761506277e-06,
156
+ "loss": 386.9485,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 1.4473684210526316,
161
+ "grad_norm": 7152.8544921875,
162
+ "learning_rate": 7.475592747559275e-06,
163
+ "loss": 406.5552,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 1.513157894736842,
168
+ "grad_norm": 2007.9990234375,
169
+ "learning_rate": 7.3361227336122745e-06,
170
+ "loss": 453.7567,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 1.5789473684210527,
175
+ "grad_norm": 3840.892578125,
176
+ "learning_rate": 7.1966527196652726e-06,
177
+ "loss": 379.3861,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 1.6447368421052633,
182
+ "grad_norm": 3999.458740234375,
183
+ "learning_rate": 7.057182705718271e-06,
184
+ "loss": 477.9281,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 1.7105263157894737,
189
+ "grad_norm": 2132.456787109375,
190
+ "learning_rate": 6.91771269177127e-06,
191
+ "loss": 410.921,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 1.776315789473684,
196
+ "grad_norm": 3105.357421875,
197
+ "learning_rate": 6.778242677824268e-06,
198
+ "loss": 442.1194,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 1.8421052631578947,
203
+ "grad_norm": 2635.864501953125,
204
+ "learning_rate": 6.6387726638772664e-06,
205
+ "loss": 389.496,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 1.9078947368421053,
210
+ "grad_norm": 2923.394287109375,
211
+ "learning_rate": 6.499302649930266e-06,
212
+ "loss": 439.763,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 1.973684210526316,
217
+ "grad_norm": 3647.169921875,
218
+ "learning_rate": 6.359832635983264e-06,
219
+ "loss": 406.6518,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 2.039473684210526,
224
+ "grad_norm": 2935.630126953125,
225
+ "learning_rate": 6.220362622036262e-06,
226
+ "loss": 331.8123,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 2.1052631578947367,
231
+ "grad_norm": 2370.527099609375,
232
+ "learning_rate": 6.080892608089262e-06,
233
+ "loss": 343.2197,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 2.1710526315789473,
238
+ "grad_norm": 2738.644287109375,
239
+ "learning_rate": 5.94142259414226e-06,
240
+ "loss": 369.9035,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 2.236842105263158,
245
+ "grad_norm": 2592.207275390625,
246
+ "learning_rate": 5.801952580195258e-06,
247
+ "loss": 402.548,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 2.3026315789473686,
252
+ "grad_norm": 4248.5478515625,
253
+ "learning_rate": 5.662482566248258e-06,
254
+ "loss": 457.1924,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 2.3684210526315788,
259
+ "grad_norm": 2736.706298828125,
260
+ "learning_rate": 5.523012552301256e-06,
261
+ "loss": 381.4614,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 2.4342105263157894,
266
+ "grad_norm": 2056.372802734375,
267
+ "learning_rate": 5.383542538354254e-06,
268
+ "loss": 363.8397,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 2.5,
273
+ "grad_norm": 2987.6806640625,
274
+ "learning_rate": 5.244072524407254e-06,
275
+ "loss": 432.6885,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 2.5657894736842106,
280
+ "grad_norm": 4919.654296875,
281
+ "learning_rate": 5.104602510460252e-06,
282
+ "loss": 395.5194,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 2.6315789473684212,
287
+ "grad_norm": 2719.568115234375,
288
+ "learning_rate": 4.9651324965132506e-06,
289
+ "loss": 377.963,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 2.6973684210526314,
294
+ "grad_norm": 3378.98876953125,
295
+ "learning_rate": 4.825662482566249e-06,
296
+ "loss": 454.2221,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 2.763157894736842,
301
+ "grad_norm": 941.3067016601562,
302
+ "learning_rate": 4.6861924686192475e-06,
303
+ "loss": 334.1994,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 2.8289473684210527,
308
+ "grad_norm": 3209.615478515625,
309
+ "learning_rate": 4.546722454672246e-06,
310
+ "loss": 386.7458,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 2.8947368421052633,
315
+ "grad_norm": 2738.612060546875,
316
+ "learning_rate": 4.407252440725244e-06,
317
+ "loss": 313.3205,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 2.9605263157894735,
322
+ "grad_norm": 2505.005126953125,
323
+ "learning_rate": 4.267782426778243e-06,
324
+ "loss": 318.3042,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 3.026315789473684,
329
+ "grad_norm": 2280.536865234375,
330
+ "learning_rate": 4.128312412831242e-06,
331
+ "loss": 355.1427,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 3.0921052631578947,
336
+ "grad_norm": 3746.776123046875,
337
+ "learning_rate": 3.98884239888424e-06,
338
+ "loss": 321.6535,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 3.1578947368421053,
343
+ "grad_norm": 2580.090087890625,
344
+ "learning_rate": 3.849372384937239e-06,
345
+ "loss": 389.3218,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 3.223684210526316,
350
+ "grad_norm": 2343.642578125,
351
+ "learning_rate": 3.7099023709902376e-06,
352
+ "loss": 359.2708,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 3.2894736842105265,
357
+ "grad_norm": 2266.267822265625,
358
+ "learning_rate": 3.570432357043236e-06,
359
+ "loss": 435.1246,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 3.3552631578947367,
364
+ "grad_norm": 3043.51318359375,
365
+ "learning_rate": 3.4309623430962345e-06,
366
+ "loss": 321.2599,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 3.4210526315789473,
371
+ "grad_norm": 2253.009765625,
372
+ "learning_rate": 3.2914923291492334e-06,
373
+ "loss": 310.0588,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 3.486842105263158,
378
+ "grad_norm": 4041.337890625,
379
+ "learning_rate": 3.152022315202232e-06,
380
+ "loss": 302.3955,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 3.5526315789473686,
385
+ "grad_norm": 3892.867431640625,
386
+ "learning_rate": 3.0125523012552303e-06,
387
+ "loss": 372.87,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 3.6184210526315788,
392
+ "grad_norm": 1721.0771484375,
393
+ "learning_rate": 2.873082287308229e-06,
394
+ "loss": 339.0192,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 3.6842105263157894,
399
+ "grad_norm": 2730.7734375,
400
+ "learning_rate": 2.7336122733612273e-06,
401
+ "loss": 335.406,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 3.75,
406
+ "grad_norm": 2706.309814453125,
407
+ "learning_rate": 2.594142259414226e-06,
408
+ "loss": 357.9787,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 3.8157894736842106,
413
+ "grad_norm": 5227.97705078125,
414
+ "learning_rate": 2.4546722454672246e-06,
415
+ "loss": 362.4296,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 3.8815789473684212,
420
+ "grad_norm": 2932.572998046875,
421
+ "learning_rate": 2.315202231520223e-06,
422
+ "loss": 329.5911,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 3.9473684210526314,
427
+ "grad_norm": 2948.697265625,
428
+ "learning_rate": 2.175732217573222e-06,
429
+ "loss": 366.91,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 4.0131578947368425,
434
+ "grad_norm": 2344.489013671875,
435
+ "learning_rate": 2.0362622036262205e-06,
436
+ "loss": 314.6336,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 4.078947368421052,
441
+ "grad_norm": 3181.4521484375,
442
+ "learning_rate": 1.8967921896792191e-06,
443
+ "loss": 309.1377,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 4.144736842105263,
448
+ "grad_norm": 2467.346435546875,
449
+ "learning_rate": 1.7573221757322176e-06,
450
+ "loss": 349.3991,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 4.2105263157894735,
455
+ "grad_norm": 4259.5654296875,
456
+ "learning_rate": 1.6178521617852163e-06,
457
+ "loss": 318.5878,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 4.276315789473684,
462
+ "grad_norm": 2608.833984375,
463
+ "learning_rate": 1.478382147838215e-06,
464
+ "loss": 329.6976,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 4.342105263157895,
469
+ "grad_norm": 4429.38671875,
470
+ "learning_rate": 1.3389121338912134e-06,
471
+ "loss": 308.7365,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 4.407894736842105,
476
+ "grad_norm": 3620.8515625,
477
+ "learning_rate": 1.199442119944212e-06,
478
+ "loss": 353.2343,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 4.473684210526316,
483
+ "grad_norm": 3577.33203125,
484
+ "learning_rate": 1.0599721059972108e-06,
485
+ "loss": 304.5744,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 4.5394736842105265,
490
+ "grad_norm": 2387.5029296875,
491
+ "learning_rate": 9.205020920502093e-07,
492
+ "loss": 388.6656,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 4.605263157894737,
497
+ "grad_norm": 2653.211669921875,
498
+ "learning_rate": 7.810320781032078e-07,
499
+ "loss": 360.9954,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 4.671052631578947,
504
+ "grad_norm": 3058.907470703125,
505
+ "learning_rate": 6.415620641562065e-07,
506
+ "loss": 417.5069,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 4.7368421052631575,
511
+ "grad_norm": 3122.1025390625,
512
+ "learning_rate": 5.020920502092051e-07,
513
+ "loss": 286.6377,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 4.802631578947368,
518
+ "grad_norm": 2571.658935546875,
519
+ "learning_rate": 3.6262203626220363e-07,
520
+ "loss": 289.6024,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 4.868421052631579,
525
+ "grad_norm": 4391.81591796875,
526
+ "learning_rate": 2.2315202231520225e-07,
527
+ "loss": 301.8846,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 4.934210526315789,
532
+ "grad_norm": 2866.98486328125,
533
+ "learning_rate": 8.368200836820084e-08,
534
+ "loss": 348.0844,
535
+ "step": 750
536
+ }
537
+ ],
538
+ "logging_steps": 10,
539
+ "max_steps": 755,
540
+ "num_input_tokens_seen": 0,
541
+ "num_train_epochs": 5,
542
+ "save_steps": 1000,
543
+ "stateful_callbacks": {
544
+ "TrainerControl": {
545
+ "args": {
546
+ "should_epoch_stop": false,
547
+ "should_evaluate": false,
548
+ "should_log": false,
549
+ "should_save": true,
550
+ "should_training_stop": true
551
+ },
552
+ "attributes": {}
553
+ }
554
+ },
555
+ "total_flos": 0.0,
556
+ "train_batch_size": 8,
557
+ "trial_name": null,
558
+ "trial_params": null
559
+ }