Training in progress, step 1813
Browse files- .gitattributes +1 -0
- adapter_config.json +35 -0
- adapter_model.safetensors +3 -0
- special_tokens_map.json +26 -0
- tokenizer.json +3 -0
- tokenizer_config.json +2077 -0
- train.yaml +58 -0
- trainer_log.jsonl +368 -0
- training_args.bin +3 -0
.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
|
adapter_config.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"alpha_pattern": {},
|
| 3 |
+
"auto_mapping": null,
|
| 4 |
+
"base_model_name_or_path": "meta-llama/Meta-Llama-3-8B-Instruct",
|
| 5 |
+
"bias": "none",
|
| 6 |
+
"corda_config": null,
|
| 7 |
+
"eva_config": null,
|
| 8 |
+
"exclude_modules": null,
|
| 9 |
+
"fan_in_fan_out": false,
|
| 10 |
+
"inference_mode": true,
|
| 11 |
+
"init_lora_weights": true,
|
| 12 |
+
"layer_replication": null,
|
| 13 |
+
"layers_pattern": null,
|
| 14 |
+
"layers_to_transform": null,
|
| 15 |
+
"loftq_config": {},
|
| 16 |
+
"lora_alpha": 16,
|
| 17 |
+
"lora_bias": false,
|
| 18 |
+
"lora_dropout": 0.05,
|
| 19 |
+
"megatron_config": null,
|
| 20 |
+
"megatron_core": "megatron.core",
|
| 21 |
+
"modules_to_save": null,
|
| 22 |
+
"peft_type": "LORA",
|
| 23 |
+
"r": 16,
|
| 24 |
+
"rank_pattern": {},
|
| 25 |
+
"revision": null,
|
| 26 |
+
"target_modules": [
|
| 27 |
+
"k_proj",
|
| 28 |
+
"v_proj",
|
| 29 |
+
"down_proj"
|
| 30 |
+
],
|
| 31 |
+
"task_type": "CAUSAL_LM",
|
| 32 |
+
"trainable_token_indices": null,
|
| 33 |
+
"use_dora": false,
|
| 34 |
+
"use_rslora": false
|
| 35 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be941a3544503396cf280290ed78c73b84594786e84b1e6c25d2c9c64958a0d5
|
| 3 |
+
size 58745928
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
{
|
| 4 |
+
"content": "<|eom_id|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false
|
| 9 |
+
}
|
| 10 |
+
],
|
| 11 |
+
"bos_token": {
|
| 12 |
+
"content": "<|begin_of_text|>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false
|
| 17 |
+
},
|
| 18 |
+
"eos_token": {
|
| 19 |
+
"content": "<|eot_id|>",
|
| 20 |
+
"lstrip": false,
|
| 21 |
+
"normalized": false,
|
| 22 |
+
"rstrip": false,
|
| 23 |
+
"single_word": false
|
| 24 |
+
},
|
| 25 |
+
"pad_token": "<|eot_id|>"
|
| 26 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c1dcab308e7cf5970ea38815e0a62887d705c5b436f869ca27a5dcdd40c36a6
|
| 3 |
+
size 17210148
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,2077 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"added_tokens_decoder": {
|
| 3 |
+
"128000": {
|
| 4 |
+
"content": "<|begin_of_text|>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false,
|
| 9 |
+
"special": true
|
| 10 |
+
},
|
| 11 |
+
"128001": {
|
| 12 |
+
"content": "<|end_of_text|>",
|
| 13 |
+
"lstrip": false,
|
| 14 |
+
"normalized": false,
|
| 15 |
+
"rstrip": false,
|
| 16 |
+
"single_word": false,
|
| 17 |
+
"special": true
|
| 18 |
+
},
|
| 19 |
+
"128002": {
|
| 20 |
+
"content": "<|reserved_special_token_0|>",
|
| 21 |
+
"lstrip": false,
|
| 22 |
+
"normalized": false,
|
| 23 |
+
"rstrip": false,
|
| 24 |
+
"single_word": false,
|
| 25 |
+
"special": true
|
| 26 |
+
},
|
| 27 |
+
"128003": {
|
| 28 |
+
"content": "<|reserved_special_token_1|>",
|
| 29 |
+
"lstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"rstrip": false,
|
| 32 |
+
"single_word": false,
|
| 33 |
+
"special": true
|
| 34 |
+
},
|
| 35 |
+
"128004": {
|
| 36 |
+
"content": "<|reserved_special_token_2|>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false,
|
| 41 |
+
"special": true
|
| 42 |
+
},
|
| 43 |
+
"128005": {
|
| 44 |
+
"content": "<|reserved_special_token_3|>",
|
| 45 |
+
"lstrip": false,
|
| 46 |
+
"normalized": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"single_word": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
"128006": {
|
| 52 |
+
"content": "<|start_header_id|>",
|
| 53 |
+
"lstrip": false,
|
| 54 |
+
"normalized": false,
|
| 55 |
+
"rstrip": false,
|
| 56 |
+
"single_word": false,
|
| 57 |
+
"special": true
|
| 58 |
+
},
|
| 59 |
+
"128007": {
|
| 60 |
+
"content": "<|end_header_id|>",
|
| 61 |
+
"lstrip": false,
|
| 62 |
+
"normalized": false,
|
| 63 |
+
"rstrip": false,
|
| 64 |
+
"single_word": false,
|
| 65 |
+
"special": true
|
| 66 |
+
},
|
| 67 |
+
"128008": {
|
| 68 |
+
"content": "<|reserved_special_token_4|>",
|
| 69 |
+
"lstrip": false,
|
| 70 |
+
"normalized": false,
|
| 71 |
+
"rstrip": false,
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"special": true
|
| 74 |
+
},
|
| 75 |
+
"128009": {
|
| 76 |
+
"content": "<|eot_id|>",
|
| 77 |
+
"lstrip": false,
|
| 78 |
+
"normalized": false,
|
| 79 |
+
"rstrip": false,
|
| 80 |
+
"single_word": false,
|
| 81 |
+
"special": true
|
| 82 |
+
},
|
| 83 |
+
"128010": {
|
| 84 |
+
"content": "<|reserved_special_token_5|>",
|
| 85 |
+
"lstrip": false,
|
| 86 |
+
"normalized": false,
|
| 87 |
+
"rstrip": false,
|
| 88 |
+
"single_word": false,
|
| 89 |
+
"special": true
|
| 90 |
+
},
|
| 91 |
+
"128011": {
|
| 92 |
+
"content": "<|reserved_special_token_6|>",
|
| 93 |
+
"lstrip": false,
|
| 94 |
+
"normalized": false,
|
| 95 |
+
"rstrip": false,
|
| 96 |
+
"single_word": false,
|
| 97 |
+
"special": true
|
| 98 |
+
},
|
| 99 |
+
"128012": {
|
| 100 |
+
"content": "<|reserved_special_token_7|>",
|
| 101 |
+
"lstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"rstrip": false,
|
| 104 |
+
"single_word": false,
|
| 105 |
+
"special": true
|
| 106 |
+
},
|
| 107 |
+
"128013": {
|
| 108 |
+
"content": "<|reserved_special_token_8|>",
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"normalized": false,
|
| 111 |
+
"rstrip": false,
|
| 112 |
+
"single_word": false,
|
| 113 |
+
"special": true
|
| 114 |
+
},
|
| 115 |
+
"128014": {
|
| 116 |
+
"content": "<|reserved_special_token_9|>",
|
| 117 |
+
"lstrip": false,
|
| 118 |
+
"normalized": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"single_word": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
"128015": {
|
| 124 |
+
"content": "<|reserved_special_token_10|>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false,
|
| 129 |
+
"special": true
|
| 130 |
+
},
|
| 131 |
+
"128016": {
|
| 132 |
+
"content": "<|reserved_special_token_11|>",
|
| 133 |
+
"lstrip": false,
|
| 134 |
+
"normalized": false,
|
| 135 |
+
"rstrip": false,
|
| 136 |
+
"single_word": false,
|
| 137 |
+
"special": true
|
| 138 |
+
},
|
| 139 |
+
"128017": {
|
| 140 |
+
"content": "<|reserved_special_token_12|>",
|
| 141 |
+
"lstrip": false,
|
| 142 |
+
"normalized": false,
|
| 143 |
+
"rstrip": false,
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"special": true
|
| 146 |
+
},
|
| 147 |
+
"128018": {
|
| 148 |
+
"content": "<|reserved_special_token_13|>",
|
| 149 |
+
"lstrip": false,
|
| 150 |
+
"normalized": false,
|
| 151 |
+
"rstrip": false,
|
| 152 |
+
"single_word": false,
|
| 153 |
+
"special": true
|
| 154 |
+
},
|
| 155 |
+
"128019": {
|
| 156 |
+
"content": "<|reserved_special_token_14|>",
|
| 157 |
+
"lstrip": false,
|
| 158 |
+
"normalized": false,
|
| 159 |
+
"rstrip": false,
|
| 160 |
+
"single_word": false,
|
| 161 |
+
"special": true
|
| 162 |
+
},
|
| 163 |
+
"128020": {
|
| 164 |
+
"content": "<|reserved_special_token_15|>",
|
| 165 |
+
"lstrip": false,
|
| 166 |
+
"normalized": false,
|
| 167 |
+
"rstrip": false,
|
| 168 |
+
"single_word": false,
|
| 169 |
+
"special": true
|
| 170 |
+
},
|
| 171 |
+
"128021": {
|
| 172 |
+
"content": "<|reserved_special_token_16|>",
|
| 173 |
+
"lstrip": false,
|
| 174 |
+
"normalized": false,
|
| 175 |
+
"rstrip": false,
|
| 176 |
+
"single_word": false,
|
| 177 |
+
"special": true
|
| 178 |
+
},
|
| 179 |
+
"128022": {
|
| 180 |
+
"content": "<|reserved_special_token_17|>",
|
| 181 |
+
"lstrip": false,
|
| 182 |
+
"normalized": false,
|
| 183 |
+
"rstrip": false,
|
| 184 |
+
"single_word": false,
|
| 185 |
+
"special": true
|
| 186 |
+
},
|
| 187 |
+
"128023": {
|
| 188 |
+
"content": "<|reserved_special_token_18|>",
|
| 189 |
+
"lstrip": false,
|
| 190 |
+
"normalized": false,
|
| 191 |
+
"rstrip": false,
|
| 192 |
+
"single_word": false,
|
| 193 |
+
"special": true
|
| 194 |
+
},
|
| 195 |
+
"128024": {
|
| 196 |
+
"content": "<|reserved_special_token_19|>",
|
| 197 |
+
"lstrip": false,
|
| 198 |
+
"normalized": false,
|
| 199 |
+
"rstrip": false,
|
| 200 |
+
"single_word": false,
|
| 201 |
+
"special": true
|
| 202 |
+
},
|
| 203 |
+
"128025": {
|
| 204 |
+
"content": "<|reserved_special_token_20|>",
|
| 205 |
+
"lstrip": false,
|
| 206 |
+
"normalized": false,
|
| 207 |
+
"rstrip": false,
|
| 208 |
+
"single_word": false,
|
| 209 |
+
"special": true
|
| 210 |
+
},
|
| 211 |
+
"128026": {
|
| 212 |
+
"content": "<|reserved_special_token_21|>",
|
| 213 |
+
"lstrip": false,
|
| 214 |
+
"normalized": false,
|
| 215 |
+
"rstrip": false,
|
| 216 |
+
"single_word": false,
|
| 217 |
+
"special": true
|
| 218 |
+
},
|
| 219 |
+
"128027": {
|
| 220 |
+
"content": "<|reserved_special_token_22|>",
|
| 221 |
+
"lstrip": false,
|
| 222 |
+
"normalized": false,
|
| 223 |
+
"rstrip": false,
|
| 224 |
+
"single_word": false,
|
| 225 |
+
"special": true
|
| 226 |
+
},
|
| 227 |
+
"128028": {
|
| 228 |
+
"content": "<|reserved_special_token_23|>",
|
| 229 |
+
"lstrip": false,
|
| 230 |
+
"normalized": false,
|
| 231 |
+
"rstrip": false,
|
| 232 |
+
"single_word": false,
|
| 233 |
+
"special": true
|
| 234 |
+
},
|
| 235 |
+
"128029": {
|
| 236 |
+
"content": "<|reserved_special_token_24|>",
|
| 237 |
+
"lstrip": false,
|
| 238 |
+
"normalized": false,
|
| 239 |
+
"rstrip": false,
|
| 240 |
+
"single_word": false,
|
| 241 |
+
"special": true
|
| 242 |
+
},
|
| 243 |
+
"128030": {
|
| 244 |
+
"content": "<|reserved_special_token_25|>",
|
| 245 |
+
"lstrip": false,
|
| 246 |
+
"normalized": false,
|
| 247 |
+
"rstrip": false,
|
| 248 |
+
"single_word": false,
|
| 249 |
+
"special": true
|
| 250 |
+
},
|
| 251 |
+
"128031": {
|
| 252 |
+
"content": "<|reserved_special_token_26|>",
|
| 253 |
+
"lstrip": false,
|
| 254 |
+
"normalized": false,
|
| 255 |
+
"rstrip": false,
|
| 256 |
+
"single_word": false,
|
| 257 |
+
"special": true
|
| 258 |
+
},
|
| 259 |
+
"128032": {
|
| 260 |
+
"content": "<|reserved_special_token_27|>",
|
| 261 |
+
"lstrip": false,
|
| 262 |
+
"normalized": false,
|
| 263 |
+
"rstrip": false,
|
| 264 |
+
"single_word": false,
|
| 265 |
+
"special": true
|
| 266 |
+
},
|
| 267 |
+
"128033": {
|
| 268 |
+
"content": "<|reserved_special_token_28|>",
|
| 269 |
+
"lstrip": false,
|
| 270 |
+
"normalized": false,
|
| 271 |
+
"rstrip": false,
|
| 272 |
+
"single_word": false,
|
| 273 |
+
"special": true
|
| 274 |
+
},
|
| 275 |
+
"128034": {
|
| 276 |
+
"content": "<|reserved_special_token_29|>",
|
| 277 |
+
"lstrip": false,
|
| 278 |
+
"normalized": false,
|
| 279 |
+
"rstrip": false,
|
| 280 |
+
"single_word": false,
|
| 281 |
+
"special": true
|
| 282 |
+
},
|
| 283 |
+
"128035": {
|
| 284 |
+
"content": "<|reserved_special_token_30|>",
|
| 285 |
+
"lstrip": false,
|
| 286 |
+
"normalized": false,
|
| 287 |
+
"rstrip": false,
|
| 288 |
+
"single_word": false,
|
| 289 |
+
"special": true
|
| 290 |
+
},
|
| 291 |
+
"128036": {
|
| 292 |
+
"content": "<|reserved_special_token_31|>",
|
| 293 |
+
"lstrip": false,
|
| 294 |
+
"normalized": false,
|
| 295 |
+
"rstrip": false,
|
| 296 |
+
"single_word": false,
|
| 297 |
+
"special": true
|
| 298 |
+
},
|
| 299 |
+
"128037": {
|
| 300 |
+
"content": "<|reserved_special_token_32|>",
|
| 301 |
+
"lstrip": false,
|
| 302 |
+
"normalized": false,
|
| 303 |
+
"rstrip": false,
|
| 304 |
+
"single_word": false,
|
| 305 |
+
"special": true
|
| 306 |
+
},
|
| 307 |
+
"128038": {
|
| 308 |
+
"content": "<|reserved_special_token_33|>",
|
| 309 |
+
"lstrip": false,
|
| 310 |
+
"normalized": false,
|
| 311 |
+
"rstrip": false,
|
| 312 |
+
"single_word": false,
|
| 313 |
+
"special": true
|
| 314 |
+
},
|
| 315 |
+
"128039": {
|
| 316 |
+
"content": "<|reserved_special_token_34|>",
|
| 317 |
+
"lstrip": false,
|
| 318 |
+
"normalized": false,
|
| 319 |
+
"rstrip": false,
|
| 320 |
+
"single_word": false,
|
| 321 |
+
"special": true
|
| 322 |
+
},
|
| 323 |
+
"128040": {
|
| 324 |
+
"content": "<|reserved_special_token_35|>",
|
| 325 |
+
"lstrip": false,
|
| 326 |
+
"normalized": false,
|
| 327 |
+
"rstrip": false,
|
| 328 |
+
"single_word": false,
|
| 329 |
+
"special": true
|
| 330 |
+
},
|
| 331 |
+
"128041": {
|
| 332 |
+
"content": "<|reserved_special_token_36|>",
|
| 333 |
+
"lstrip": false,
|
| 334 |
+
"normalized": false,
|
| 335 |
+
"rstrip": false,
|
| 336 |
+
"single_word": false,
|
| 337 |
+
"special": true
|
| 338 |
+
},
|
| 339 |
+
"128042": {
|
| 340 |
+
"content": "<|reserved_special_token_37|>",
|
| 341 |
+
"lstrip": false,
|
| 342 |
+
"normalized": false,
|
| 343 |
+
"rstrip": false,
|
| 344 |
+
"single_word": false,
|
| 345 |
+
"special": true
|
| 346 |
+
},
|
| 347 |
+
"128043": {
|
| 348 |
+
"content": "<|reserved_special_token_38|>",
|
| 349 |
+
"lstrip": false,
|
| 350 |
+
"normalized": false,
|
| 351 |
+
"rstrip": false,
|
| 352 |
+
"single_word": false,
|
| 353 |
+
"special": true
|
| 354 |
+
},
|
| 355 |
+
"128044": {
|
| 356 |
+
"content": "<|reserved_special_token_39|>",
|
| 357 |
+
"lstrip": false,
|
| 358 |
+
"normalized": false,
|
| 359 |
+
"rstrip": false,
|
| 360 |
+
"single_word": false,
|
| 361 |
+
"special": true
|
| 362 |
+
},
|
| 363 |
+
"128045": {
|
| 364 |
+
"content": "<|reserved_special_token_40|>",
|
| 365 |
+
"lstrip": false,
|
| 366 |
+
"normalized": false,
|
| 367 |
+
"rstrip": false,
|
| 368 |
+
"single_word": false,
|
| 369 |
+
"special": true
|
| 370 |
+
},
|
| 371 |
+
"128046": {
|
| 372 |
+
"content": "<|reserved_special_token_41|>",
|
| 373 |
+
"lstrip": false,
|
| 374 |
+
"normalized": false,
|
| 375 |
+
"rstrip": false,
|
| 376 |
+
"single_word": false,
|
| 377 |
+
"special": true
|
| 378 |
+
},
|
| 379 |
+
"128047": {
|
| 380 |
+
"content": "<|reserved_special_token_42|>",
|
| 381 |
+
"lstrip": false,
|
| 382 |
+
"normalized": false,
|
| 383 |
+
"rstrip": false,
|
| 384 |
+
"single_word": false,
|
| 385 |
+
"special": true
|
| 386 |
+
},
|
| 387 |
+
"128048": {
|
| 388 |
+
"content": "<|reserved_special_token_43|>",
|
| 389 |
+
"lstrip": false,
|
| 390 |
+
"normalized": false,
|
| 391 |
+
"rstrip": false,
|
| 392 |
+
"single_word": false,
|
| 393 |
+
"special": true
|
| 394 |
+
},
|
| 395 |
+
"128049": {
|
| 396 |
+
"content": "<|reserved_special_token_44|>",
|
| 397 |
+
"lstrip": false,
|
| 398 |
+
"normalized": false,
|
| 399 |
+
"rstrip": false,
|
| 400 |
+
"single_word": false,
|
| 401 |
+
"special": true
|
| 402 |
+
},
|
| 403 |
+
"128050": {
|
| 404 |
+
"content": "<|reserved_special_token_45|>",
|
| 405 |
+
"lstrip": false,
|
| 406 |
+
"normalized": false,
|
| 407 |
+
"rstrip": false,
|
| 408 |
+
"single_word": false,
|
| 409 |
+
"special": true
|
| 410 |
+
},
|
| 411 |
+
"128051": {
|
| 412 |
+
"content": "<|reserved_special_token_46|>",
|
| 413 |
+
"lstrip": false,
|
| 414 |
+
"normalized": false,
|
| 415 |
+
"rstrip": false,
|
| 416 |
+
"single_word": false,
|
| 417 |
+
"special": true
|
| 418 |
+
},
|
| 419 |
+
"128052": {
|
| 420 |
+
"content": "<|reserved_special_token_47|>",
|
| 421 |
+
"lstrip": false,
|
| 422 |
+
"normalized": false,
|
| 423 |
+
"rstrip": false,
|
| 424 |
+
"single_word": false,
|
| 425 |
+
"special": true
|
| 426 |
+
},
|
| 427 |
+
"128053": {
|
| 428 |
+
"content": "<|reserved_special_token_48|>",
|
| 429 |
+
"lstrip": false,
|
| 430 |
+
"normalized": false,
|
| 431 |
+
"rstrip": false,
|
| 432 |
+
"single_word": false,
|
| 433 |
+
"special": true
|
| 434 |
+
},
|
| 435 |
+
"128054": {
|
| 436 |
+
"content": "<|reserved_special_token_49|>",
|
| 437 |
+
"lstrip": false,
|
| 438 |
+
"normalized": false,
|
| 439 |
+
"rstrip": false,
|
| 440 |
+
"single_word": false,
|
| 441 |
+
"special": true
|
| 442 |
+
},
|
| 443 |
+
"128055": {
|
| 444 |
+
"content": "<|reserved_special_token_50|>",
|
| 445 |
+
"lstrip": false,
|
| 446 |
+
"normalized": false,
|
| 447 |
+
"rstrip": false,
|
| 448 |
+
"single_word": false,
|
| 449 |
+
"special": true
|
| 450 |
+
},
|
| 451 |
+
"128056": {
|
| 452 |
+
"content": "<|reserved_special_token_51|>",
|
| 453 |
+
"lstrip": false,
|
| 454 |
+
"normalized": false,
|
| 455 |
+
"rstrip": false,
|
| 456 |
+
"single_word": false,
|
| 457 |
+
"special": true
|
| 458 |
+
},
|
| 459 |
+
"128057": {
|
| 460 |
+
"content": "<|reserved_special_token_52|>",
|
| 461 |
+
"lstrip": false,
|
| 462 |
+
"normalized": false,
|
| 463 |
+
"rstrip": false,
|
| 464 |
+
"single_word": false,
|
| 465 |
+
"special": true
|
| 466 |
+
},
|
| 467 |
+
"128058": {
|
| 468 |
+
"content": "<|reserved_special_token_53|>",
|
| 469 |
+
"lstrip": false,
|
| 470 |
+
"normalized": false,
|
| 471 |
+
"rstrip": false,
|
| 472 |
+
"single_word": false,
|
| 473 |
+
"special": true
|
| 474 |
+
},
|
| 475 |
+
"128059": {
|
| 476 |
+
"content": "<|reserved_special_token_54|>",
|
| 477 |
+
"lstrip": false,
|
| 478 |
+
"normalized": false,
|
| 479 |
+
"rstrip": false,
|
| 480 |
+
"single_word": false,
|
| 481 |
+
"special": true
|
| 482 |
+
},
|
| 483 |
+
"128060": {
|
| 484 |
+
"content": "<|reserved_special_token_55|>",
|
| 485 |
+
"lstrip": false,
|
| 486 |
+
"normalized": false,
|
| 487 |
+
"rstrip": false,
|
| 488 |
+
"single_word": false,
|
| 489 |
+
"special": true
|
| 490 |
+
},
|
| 491 |
+
"128061": {
|
| 492 |
+
"content": "<|reserved_special_token_56|>",
|
| 493 |
+
"lstrip": false,
|
| 494 |
+
"normalized": false,
|
| 495 |
+
"rstrip": false,
|
| 496 |
+
"single_word": false,
|
| 497 |
+
"special": true
|
| 498 |
+
},
|
| 499 |
+
"128062": {
|
| 500 |
+
"content": "<|reserved_special_token_57|>",
|
| 501 |
+
"lstrip": false,
|
| 502 |
+
"normalized": false,
|
| 503 |
+
"rstrip": false,
|
| 504 |
+
"single_word": false,
|
| 505 |
+
"special": true
|
| 506 |
+
},
|
| 507 |
+
"128063": {
|
| 508 |
+
"content": "<|reserved_special_token_58|>",
|
| 509 |
+
"lstrip": false,
|
| 510 |
+
"normalized": false,
|
| 511 |
+
"rstrip": false,
|
| 512 |
+
"single_word": false,
|
| 513 |
+
"special": true
|
| 514 |
+
},
|
| 515 |
+
"128064": {
|
| 516 |
+
"content": "<|reserved_special_token_59|>",
|
| 517 |
+
"lstrip": false,
|
| 518 |
+
"normalized": false,
|
| 519 |
+
"rstrip": false,
|
| 520 |
+
"single_word": false,
|
| 521 |
+
"special": true
|
| 522 |
+
},
|
| 523 |
+
"128065": {
|
| 524 |
+
"content": "<|reserved_special_token_60|>",
|
| 525 |
+
"lstrip": false,
|
| 526 |
+
"normalized": false,
|
| 527 |
+
"rstrip": false,
|
| 528 |
+
"single_word": false,
|
| 529 |
+
"special": true
|
| 530 |
+
},
|
| 531 |
+
"128066": {
|
| 532 |
+
"content": "<|reserved_special_token_61|>",
|
| 533 |
+
"lstrip": false,
|
| 534 |
+
"normalized": false,
|
| 535 |
+
"rstrip": false,
|
| 536 |
+
"single_word": false,
|
| 537 |
+
"special": true
|
| 538 |
+
},
|
| 539 |
+
"128067": {
|
| 540 |
+
"content": "<|reserved_special_token_62|>",
|
| 541 |
+
"lstrip": false,
|
| 542 |
+
"normalized": false,
|
| 543 |
+
"rstrip": false,
|
| 544 |
+
"single_word": false,
|
| 545 |
+
"special": true
|
| 546 |
+
},
|
| 547 |
+
"128068": {
|
| 548 |
+
"content": "<|reserved_special_token_63|>",
|
| 549 |
+
"lstrip": false,
|
| 550 |
+
"normalized": false,
|
| 551 |
+
"rstrip": false,
|
| 552 |
+
"single_word": false,
|
| 553 |
+
"special": true
|
| 554 |
+
},
|
| 555 |
+
"128069": {
|
| 556 |
+
"content": "<|reserved_special_token_64|>",
|
| 557 |
+
"lstrip": false,
|
| 558 |
+
"normalized": false,
|
| 559 |
+
"rstrip": false,
|
| 560 |
+
"single_word": false,
|
| 561 |
+
"special": true
|
| 562 |
+
},
|
| 563 |
+
"128070": {
|
| 564 |
+
"content": "<|reserved_special_token_65|>",
|
| 565 |
+
"lstrip": false,
|
| 566 |
+
"normalized": false,
|
| 567 |
+
"rstrip": false,
|
| 568 |
+
"single_word": false,
|
| 569 |
+
"special": true
|
| 570 |
+
},
|
| 571 |
+
"128071": {
|
| 572 |
+
"content": "<|reserved_special_token_66|>",
|
| 573 |
+
"lstrip": false,
|
| 574 |
+
"normalized": false,
|
| 575 |
+
"rstrip": false,
|
| 576 |
+
"single_word": false,
|
| 577 |
+
"special": true
|
| 578 |
+
},
|
| 579 |
+
"128072": {
|
| 580 |
+
"content": "<|reserved_special_token_67|>",
|
| 581 |
+
"lstrip": false,
|
| 582 |
+
"normalized": false,
|
| 583 |
+
"rstrip": false,
|
| 584 |
+
"single_word": false,
|
| 585 |
+
"special": true
|
| 586 |
+
},
|
| 587 |
+
"128073": {
|
| 588 |
+
"content": "<|reserved_special_token_68|>",
|
| 589 |
+
"lstrip": false,
|
| 590 |
+
"normalized": false,
|
| 591 |
+
"rstrip": false,
|
| 592 |
+
"single_word": false,
|
| 593 |
+
"special": true
|
| 594 |
+
},
|
| 595 |
+
"128074": {
|
| 596 |
+
"content": "<|reserved_special_token_69|>",
|
| 597 |
+
"lstrip": false,
|
| 598 |
+
"normalized": false,
|
| 599 |
+
"rstrip": false,
|
| 600 |
+
"single_word": false,
|
| 601 |
+
"special": true
|
| 602 |
+
},
|
| 603 |
+
"128075": {
|
| 604 |
+
"content": "<|reserved_special_token_70|>",
|
| 605 |
+
"lstrip": false,
|
| 606 |
+
"normalized": false,
|
| 607 |
+
"rstrip": false,
|
| 608 |
+
"single_word": false,
|
| 609 |
+
"special": true
|
| 610 |
+
},
|
| 611 |
+
"128076": {
|
| 612 |
+
"content": "<|reserved_special_token_71|>",
|
| 613 |
+
"lstrip": false,
|
| 614 |
+
"normalized": false,
|
| 615 |
+
"rstrip": false,
|
| 616 |
+
"single_word": false,
|
| 617 |
+
"special": true
|
| 618 |
+
},
|
| 619 |
+
"128077": {
|
| 620 |
+
"content": "<|reserved_special_token_72|>",
|
| 621 |
+
"lstrip": false,
|
| 622 |
+
"normalized": false,
|
| 623 |
+
"rstrip": false,
|
| 624 |
+
"single_word": false,
|
| 625 |
+
"special": true
|
| 626 |
+
},
|
| 627 |
+
"128078": {
|
| 628 |
+
"content": "<|reserved_special_token_73|>",
|
| 629 |
+
"lstrip": false,
|
| 630 |
+
"normalized": false,
|
| 631 |
+
"rstrip": false,
|
| 632 |
+
"single_word": false,
|
| 633 |
+
"special": true
|
| 634 |
+
},
|
| 635 |
+
"128079": {
|
| 636 |
+
"content": "<|reserved_special_token_74|>",
|
| 637 |
+
"lstrip": false,
|
| 638 |
+
"normalized": false,
|
| 639 |
+
"rstrip": false,
|
| 640 |
+
"single_word": false,
|
| 641 |
+
"special": true
|
| 642 |
+
},
|
| 643 |
+
"128080": {
|
| 644 |
+
"content": "<|reserved_special_token_75|>",
|
| 645 |
+
"lstrip": false,
|
| 646 |
+
"normalized": false,
|
| 647 |
+
"rstrip": false,
|
| 648 |
+
"single_word": false,
|
| 649 |
+
"special": true
|
| 650 |
+
},
|
| 651 |
+
"128081": {
|
| 652 |
+
"content": "<|reserved_special_token_76|>",
|
| 653 |
+
"lstrip": false,
|
| 654 |
+
"normalized": false,
|
| 655 |
+
"rstrip": false,
|
| 656 |
+
"single_word": false,
|
| 657 |
+
"special": true
|
| 658 |
+
},
|
| 659 |
+
"128082": {
|
| 660 |
+
"content": "<|reserved_special_token_77|>",
|
| 661 |
+
"lstrip": false,
|
| 662 |
+
"normalized": false,
|
| 663 |
+
"rstrip": false,
|
| 664 |
+
"single_word": false,
|
| 665 |
+
"special": true
|
| 666 |
+
},
|
| 667 |
+
"128083": {
|
| 668 |
+
"content": "<|reserved_special_token_78|>",
|
| 669 |
+
"lstrip": false,
|
| 670 |
+
"normalized": false,
|
| 671 |
+
"rstrip": false,
|
| 672 |
+
"single_word": false,
|
| 673 |
+
"special": true
|
| 674 |
+
},
|
| 675 |
+
"128084": {
|
| 676 |
+
"content": "<|reserved_special_token_79|>",
|
| 677 |
+
"lstrip": false,
|
| 678 |
+
"normalized": false,
|
| 679 |
+
"rstrip": false,
|
| 680 |
+
"single_word": false,
|
| 681 |
+
"special": true
|
| 682 |
+
},
|
| 683 |
+
"128085": {
|
| 684 |
+
"content": "<|reserved_special_token_80|>",
|
| 685 |
+
"lstrip": false,
|
| 686 |
+
"normalized": false,
|
| 687 |
+
"rstrip": false,
|
| 688 |
+
"single_word": false,
|
| 689 |
+
"special": true
|
| 690 |
+
},
|
| 691 |
+
"128086": {
|
| 692 |
+
"content": "<|reserved_special_token_81|>",
|
| 693 |
+
"lstrip": false,
|
| 694 |
+
"normalized": false,
|
| 695 |
+
"rstrip": false,
|
| 696 |
+
"single_word": false,
|
| 697 |
+
"special": true
|
| 698 |
+
},
|
| 699 |
+
"128087": {
|
| 700 |
+
"content": "<|reserved_special_token_82|>",
|
| 701 |
+
"lstrip": false,
|
| 702 |
+
"normalized": false,
|
| 703 |
+
"rstrip": false,
|
| 704 |
+
"single_word": false,
|
| 705 |
+
"special": true
|
| 706 |
+
},
|
| 707 |
+
"128088": {
|
| 708 |
+
"content": "<|reserved_special_token_83|>",
|
| 709 |
+
"lstrip": false,
|
| 710 |
+
"normalized": false,
|
| 711 |
+
"rstrip": false,
|
| 712 |
+
"single_word": false,
|
| 713 |
+
"special": true
|
| 714 |
+
},
|
| 715 |
+
"128089": {
|
| 716 |
+
"content": "<|reserved_special_token_84|>",
|
| 717 |
+
"lstrip": false,
|
| 718 |
+
"normalized": false,
|
| 719 |
+
"rstrip": false,
|
| 720 |
+
"single_word": false,
|
| 721 |
+
"special": true
|
| 722 |
+
},
|
| 723 |
+
"128090": {
|
| 724 |
+
"content": "<|reserved_special_token_85|>",
|
| 725 |
+
"lstrip": false,
|
| 726 |
+
"normalized": false,
|
| 727 |
+
"rstrip": false,
|
| 728 |
+
"single_word": false,
|
| 729 |
+
"special": true
|
| 730 |
+
},
|
| 731 |
+
"128091": {
|
| 732 |
+
"content": "<|reserved_special_token_86|>",
|
| 733 |
+
"lstrip": false,
|
| 734 |
+
"normalized": false,
|
| 735 |
+
"rstrip": false,
|
| 736 |
+
"single_word": false,
|
| 737 |
+
"special": true
|
| 738 |
+
},
|
| 739 |
+
"128092": {
|
| 740 |
+
"content": "<|reserved_special_token_87|>",
|
| 741 |
+
"lstrip": false,
|
| 742 |
+
"normalized": false,
|
| 743 |
+
"rstrip": false,
|
| 744 |
+
"single_word": false,
|
| 745 |
+
"special": true
|
| 746 |
+
},
|
| 747 |
+
"128093": {
|
| 748 |
+
"content": "<|reserved_special_token_88|>",
|
| 749 |
+
"lstrip": false,
|
| 750 |
+
"normalized": false,
|
| 751 |
+
"rstrip": false,
|
| 752 |
+
"single_word": false,
|
| 753 |
+
"special": true
|
| 754 |
+
},
|
| 755 |
+
"128094": {
|
| 756 |
+
"content": "<|reserved_special_token_89|>",
|
| 757 |
+
"lstrip": false,
|
| 758 |
+
"normalized": false,
|
| 759 |
+
"rstrip": false,
|
| 760 |
+
"single_word": false,
|
| 761 |
+
"special": true
|
| 762 |
+
},
|
| 763 |
+
"128095": {
|
| 764 |
+
"content": "<|reserved_special_token_90|>",
|
| 765 |
+
"lstrip": false,
|
| 766 |
+
"normalized": false,
|
| 767 |
+
"rstrip": false,
|
| 768 |
+
"single_word": false,
|
| 769 |
+
"special": true
|
| 770 |
+
},
|
| 771 |
+
"128096": {
|
| 772 |
+
"content": "<|reserved_special_token_91|>",
|
| 773 |
+
"lstrip": false,
|
| 774 |
+
"normalized": false,
|
| 775 |
+
"rstrip": false,
|
| 776 |
+
"single_word": false,
|
| 777 |
+
"special": true
|
| 778 |
+
},
|
| 779 |
+
"128097": {
|
| 780 |
+
"content": "<|reserved_special_token_92|>",
|
| 781 |
+
"lstrip": false,
|
| 782 |
+
"normalized": false,
|
| 783 |
+
"rstrip": false,
|
| 784 |
+
"single_word": false,
|
| 785 |
+
"special": true
|
| 786 |
+
},
|
| 787 |
+
"128098": {
|
| 788 |
+
"content": "<|reserved_special_token_93|>",
|
| 789 |
+
"lstrip": false,
|
| 790 |
+
"normalized": false,
|
| 791 |
+
"rstrip": false,
|
| 792 |
+
"single_word": false,
|
| 793 |
+
"special": true
|
| 794 |
+
},
|
| 795 |
+
"128099": {
|
| 796 |
+
"content": "<|reserved_special_token_94|>",
|
| 797 |
+
"lstrip": false,
|
| 798 |
+
"normalized": false,
|
| 799 |
+
"rstrip": false,
|
| 800 |
+
"single_word": false,
|
| 801 |
+
"special": true
|
| 802 |
+
},
|
| 803 |
+
"128100": {
|
| 804 |
+
"content": "<|reserved_special_token_95|>",
|
| 805 |
+
"lstrip": false,
|
| 806 |
+
"normalized": false,
|
| 807 |
+
"rstrip": false,
|
| 808 |
+
"single_word": false,
|
| 809 |
+
"special": true
|
| 810 |
+
},
|
| 811 |
+
"128101": {
|
| 812 |
+
"content": "<|reserved_special_token_96|>",
|
| 813 |
+
"lstrip": false,
|
| 814 |
+
"normalized": false,
|
| 815 |
+
"rstrip": false,
|
| 816 |
+
"single_word": false,
|
| 817 |
+
"special": true
|
| 818 |
+
},
|
| 819 |
+
"128102": {
|
| 820 |
+
"content": "<|reserved_special_token_97|>",
|
| 821 |
+
"lstrip": false,
|
| 822 |
+
"normalized": false,
|
| 823 |
+
"rstrip": false,
|
| 824 |
+
"single_word": false,
|
| 825 |
+
"special": true
|
| 826 |
+
},
|
| 827 |
+
"128103": {
|
| 828 |
+
"content": "<|reserved_special_token_98|>",
|
| 829 |
+
"lstrip": false,
|
| 830 |
+
"normalized": false,
|
| 831 |
+
"rstrip": false,
|
| 832 |
+
"single_word": false,
|
| 833 |
+
"special": true
|
| 834 |
+
},
|
| 835 |
+
"128104": {
|
| 836 |
+
"content": "<|reserved_special_token_99|>",
|
| 837 |
+
"lstrip": false,
|
| 838 |
+
"normalized": false,
|
| 839 |
+
"rstrip": false,
|
| 840 |
+
"single_word": false,
|
| 841 |
+
"special": true
|
| 842 |
+
},
|
| 843 |
+
"128105": {
|
| 844 |
+
"content": "<|reserved_special_token_100|>",
|
| 845 |
+
"lstrip": false,
|
| 846 |
+
"normalized": false,
|
| 847 |
+
"rstrip": false,
|
| 848 |
+
"single_word": false,
|
| 849 |
+
"special": true
|
| 850 |
+
},
|
| 851 |
+
"128106": {
|
| 852 |
+
"content": "<|reserved_special_token_101|>",
|
| 853 |
+
"lstrip": false,
|
| 854 |
+
"normalized": false,
|
| 855 |
+
"rstrip": false,
|
| 856 |
+
"single_word": false,
|
| 857 |
+
"special": true
|
| 858 |
+
},
|
| 859 |
+
"128107": {
|
| 860 |
+
"content": "<|reserved_special_token_102|>",
|
| 861 |
+
"lstrip": false,
|
| 862 |
+
"normalized": false,
|
| 863 |
+
"rstrip": false,
|
| 864 |
+
"single_word": false,
|
| 865 |
+
"special": true
|
| 866 |
+
},
|
| 867 |
+
"128108": {
|
| 868 |
+
"content": "<|reserved_special_token_103|>",
|
| 869 |
+
"lstrip": false,
|
| 870 |
+
"normalized": false,
|
| 871 |
+
"rstrip": false,
|
| 872 |
+
"single_word": false,
|
| 873 |
+
"special": true
|
| 874 |
+
},
|
| 875 |
+
"128109": {
|
| 876 |
+
"content": "<|reserved_special_token_104|>",
|
| 877 |
+
"lstrip": false,
|
| 878 |
+
"normalized": false,
|
| 879 |
+
"rstrip": false,
|
| 880 |
+
"single_word": false,
|
| 881 |
+
"special": true
|
| 882 |
+
},
|
| 883 |
+
"128110": {
|
| 884 |
+
"content": "<|reserved_special_token_105|>",
|
| 885 |
+
"lstrip": false,
|
| 886 |
+
"normalized": false,
|
| 887 |
+
"rstrip": false,
|
| 888 |
+
"single_word": false,
|
| 889 |
+
"special": true
|
| 890 |
+
},
|
| 891 |
+
"128111": {
|
| 892 |
+
"content": "<|reserved_special_token_106|>",
|
| 893 |
+
"lstrip": false,
|
| 894 |
+
"normalized": false,
|
| 895 |
+
"rstrip": false,
|
| 896 |
+
"single_word": false,
|
| 897 |
+
"special": true
|
| 898 |
+
},
|
| 899 |
+
"128112": {
|
| 900 |
+
"content": "<|reserved_special_token_107|>",
|
| 901 |
+
"lstrip": false,
|
| 902 |
+
"normalized": false,
|
| 903 |
+
"rstrip": false,
|
| 904 |
+
"single_word": false,
|
| 905 |
+
"special": true
|
| 906 |
+
},
|
| 907 |
+
"128113": {
|
| 908 |
+
"content": "<|reserved_special_token_108|>",
|
| 909 |
+
"lstrip": false,
|
| 910 |
+
"normalized": false,
|
| 911 |
+
"rstrip": false,
|
| 912 |
+
"single_word": false,
|
| 913 |
+
"special": true
|
| 914 |
+
},
|
| 915 |
+
"128114": {
|
| 916 |
+
"content": "<|reserved_special_token_109|>",
|
| 917 |
+
"lstrip": false,
|
| 918 |
+
"normalized": false,
|
| 919 |
+
"rstrip": false,
|
| 920 |
+
"single_word": false,
|
| 921 |
+
"special": true
|
| 922 |
+
},
|
| 923 |
+
"128115": {
|
| 924 |
+
"content": "<|reserved_special_token_110|>",
|
| 925 |
+
"lstrip": false,
|
| 926 |
+
"normalized": false,
|
| 927 |
+
"rstrip": false,
|
| 928 |
+
"single_word": false,
|
| 929 |
+
"special": true
|
| 930 |
+
},
|
| 931 |
+
"128116": {
|
| 932 |
+
"content": "<|reserved_special_token_111|>",
|
| 933 |
+
"lstrip": false,
|
| 934 |
+
"normalized": false,
|
| 935 |
+
"rstrip": false,
|
| 936 |
+
"single_word": false,
|
| 937 |
+
"special": true
|
| 938 |
+
},
|
| 939 |
+
"128117": {
|
| 940 |
+
"content": "<|reserved_special_token_112|>",
|
| 941 |
+
"lstrip": false,
|
| 942 |
+
"normalized": false,
|
| 943 |
+
"rstrip": false,
|
| 944 |
+
"single_word": false,
|
| 945 |
+
"special": true
|
| 946 |
+
},
|
| 947 |
+
"128118": {
|
| 948 |
+
"content": "<|reserved_special_token_113|>",
|
| 949 |
+
"lstrip": false,
|
| 950 |
+
"normalized": false,
|
| 951 |
+
"rstrip": false,
|
| 952 |
+
"single_word": false,
|
| 953 |
+
"special": true
|
| 954 |
+
},
|
| 955 |
+
"128119": {
|
| 956 |
+
"content": "<|reserved_special_token_114|>",
|
| 957 |
+
"lstrip": false,
|
| 958 |
+
"normalized": false,
|
| 959 |
+
"rstrip": false,
|
| 960 |
+
"single_word": false,
|
| 961 |
+
"special": true
|
| 962 |
+
},
|
| 963 |
+
"128120": {
|
| 964 |
+
"content": "<|reserved_special_token_115|>",
|
| 965 |
+
"lstrip": false,
|
| 966 |
+
"normalized": false,
|
| 967 |
+
"rstrip": false,
|
| 968 |
+
"single_word": false,
|
| 969 |
+
"special": true
|
| 970 |
+
},
|
| 971 |
+
"128121": {
|
| 972 |
+
"content": "<|reserved_special_token_116|>",
|
| 973 |
+
"lstrip": false,
|
| 974 |
+
"normalized": false,
|
| 975 |
+
"rstrip": false,
|
| 976 |
+
"single_word": false,
|
| 977 |
+
"special": true
|
| 978 |
+
},
|
| 979 |
+
"128122": {
|
| 980 |
+
"content": "<|reserved_special_token_117|>",
|
| 981 |
+
"lstrip": false,
|
| 982 |
+
"normalized": false,
|
| 983 |
+
"rstrip": false,
|
| 984 |
+
"single_word": false,
|
| 985 |
+
"special": true
|
| 986 |
+
},
|
| 987 |
+
"128123": {
|
| 988 |
+
"content": "<|reserved_special_token_118|>",
|
| 989 |
+
"lstrip": false,
|
| 990 |
+
"normalized": false,
|
| 991 |
+
"rstrip": false,
|
| 992 |
+
"single_word": false,
|
| 993 |
+
"special": true
|
| 994 |
+
},
|
| 995 |
+
"128124": {
|
| 996 |
+
"content": "<|reserved_special_token_119|>",
|
| 997 |
+
"lstrip": false,
|
| 998 |
+
"normalized": false,
|
| 999 |
+
"rstrip": false,
|
| 1000 |
+
"single_word": false,
|
| 1001 |
+
"special": true
|
| 1002 |
+
},
|
| 1003 |
+
"128125": {
|
| 1004 |
+
"content": "<|reserved_special_token_120|>",
|
| 1005 |
+
"lstrip": false,
|
| 1006 |
+
"normalized": false,
|
| 1007 |
+
"rstrip": false,
|
| 1008 |
+
"single_word": false,
|
| 1009 |
+
"special": true
|
| 1010 |
+
},
|
| 1011 |
+
"128126": {
|
| 1012 |
+
"content": "<|reserved_special_token_121|>",
|
| 1013 |
+
"lstrip": false,
|
| 1014 |
+
"normalized": false,
|
| 1015 |
+
"rstrip": false,
|
| 1016 |
+
"single_word": false,
|
| 1017 |
+
"special": true
|
| 1018 |
+
},
|
| 1019 |
+
"128127": {
|
| 1020 |
+
"content": "<|reserved_special_token_122|>",
|
| 1021 |
+
"lstrip": false,
|
| 1022 |
+
"normalized": false,
|
| 1023 |
+
"rstrip": false,
|
| 1024 |
+
"single_word": false,
|
| 1025 |
+
"special": true
|
| 1026 |
+
},
|
| 1027 |
+
"128128": {
|
| 1028 |
+
"content": "<|reserved_special_token_123|>",
|
| 1029 |
+
"lstrip": false,
|
| 1030 |
+
"normalized": false,
|
| 1031 |
+
"rstrip": false,
|
| 1032 |
+
"single_word": false,
|
| 1033 |
+
"special": true
|
| 1034 |
+
},
|
| 1035 |
+
"128129": {
|
| 1036 |
+
"content": "<|reserved_special_token_124|>",
|
| 1037 |
+
"lstrip": false,
|
| 1038 |
+
"normalized": false,
|
| 1039 |
+
"rstrip": false,
|
| 1040 |
+
"single_word": false,
|
| 1041 |
+
"special": true
|
| 1042 |
+
},
|
| 1043 |
+
"128130": {
|
| 1044 |
+
"content": "<|reserved_special_token_125|>",
|
| 1045 |
+
"lstrip": false,
|
| 1046 |
+
"normalized": false,
|
| 1047 |
+
"rstrip": false,
|
| 1048 |
+
"single_word": false,
|
| 1049 |
+
"special": true
|
| 1050 |
+
},
|
| 1051 |
+
"128131": {
|
| 1052 |
+
"content": "<|reserved_special_token_126|>",
|
| 1053 |
+
"lstrip": false,
|
| 1054 |
+
"normalized": false,
|
| 1055 |
+
"rstrip": false,
|
| 1056 |
+
"single_word": false,
|
| 1057 |
+
"special": true
|
| 1058 |
+
},
|
| 1059 |
+
"128132": {
|
| 1060 |
+
"content": "<|reserved_special_token_127|>",
|
| 1061 |
+
"lstrip": false,
|
| 1062 |
+
"normalized": false,
|
| 1063 |
+
"rstrip": false,
|
| 1064 |
+
"single_word": false,
|
| 1065 |
+
"special": true
|
| 1066 |
+
},
|
| 1067 |
+
"128133": {
|
| 1068 |
+
"content": "<|reserved_special_token_128|>",
|
| 1069 |
+
"lstrip": false,
|
| 1070 |
+
"normalized": false,
|
| 1071 |
+
"rstrip": false,
|
| 1072 |
+
"single_word": false,
|
| 1073 |
+
"special": true
|
| 1074 |
+
},
|
| 1075 |
+
"128134": {
|
| 1076 |
+
"content": "<|reserved_special_token_129|>",
|
| 1077 |
+
"lstrip": false,
|
| 1078 |
+
"normalized": false,
|
| 1079 |
+
"rstrip": false,
|
| 1080 |
+
"single_word": false,
|
| 1081 |
+
"special": true
|
| 1082 |
+
},
|
| 1083 |
+
"128135": {
|
| 1084 |
+
"content": "<|reserved_special_token_130|>",
|
| 1085 |
+
"lstrip": false,
|
| 1086 |
+
"normalized": false,
|
| 1087 |
+
"rstrip": false,
|
| 1088 |
+
"single_word": false,
|
| 1089 |
+
"special": true
|
| 1090 |
+
},
|
| 1091 |
+
"128136": {
|
| 1092 |
+
"content": "<|reserved_special_token_131|>",
|
| 1093 |
+
"lstrip": false,
|
| 1094 |
+
"normalized": false,
|
| 1095 |
+
"rstrip": false,
|
| 1096 |
+
"single_word": false,
|
| 1097 |
+
"special": true
|
| 1098 |
+
},
|
| 1099 |
+
"128137": {
|
| 1100 |
+
"content": "<|reserved_special_token_132|>",
|
| 1101 |
+
"lstrip": false,
|
| 1102 |
+
"normalized": false,
|
| 1103 |
+
"rstrip": false,
|
| 1104 |
+
"single_word": false,
|
| 1105 |
+
"special": true
|
| 1106 |
+
},
|
| 1107 |
+
"128138": {
|
| 1108 |
+
"content": "<|reserved_special_token_133|>",
|
| 1109 |
+
"lstrip": false,
|
| 1110 |
+
"normalized": false,
|
| 1111 |
+
"rstrip": false,
|
| 1112 |
+
"single_word": false,
|
| 1113 |
+
"special": true
|
| 1114 |
+
},
|
| 1115 |
+
"128139": {
|
| 1116 |
+
"content": "<|reserved_special_token_134|>",
|
| 1117 |
+
"lstrip": false,
|
| 1118 |
+
"normalized": false,
|
| 1119 |
+
"rstrip": false,
|
| 1120 |
+
"single_word": false,
|
| 1121 |
+
"special": true
|
| 1122 |
+
},
|
| 1123 |
+
"128140": {
|
| 1124 |
+
"content": "<|reserved_special_token_135|>",
|
| 1125 |
+
"lstrip": false,
|
| 1126 |
+
"normalized": false,
|
| 1127 |
+
"rstrip": false,
|
| 1128 |
+
"single_word": false,
|
| 1129 |
+
"special": true
|
| 1130 |
+
},
|
| 1131 |
+
"128141": {
|
| 1132 |
+
"content": "<|reserved_special_token_136|>",
|
| 1133 |
+
"lstrip": false,
|
| 1134 |
+
"normalized": false,
|
| 1135 |
+
"rstrip": false,
|
| 1136 |
+
"single_word": false,
|
| 1137 |
+
"special": true
|
| 1138 |
+
},
|
| 1139 |
+
"128142": {
|
| 1140 |
+
"content": "<|reserved_special_token_137|>",
|
| 1141 |
+
"lstrip": false,
|
| 1142 |
+
"normalized": false,
|
| 1143 |
+
"rstrip": false,
|
| 1144 |
+
"single_word": false,
|
| 1145 |
+
"special": true
|
| 1146 |
+
},
|
| 1147 |
+
"128143": {
|
| 1148 |
+
"content": "<|reserved_special_token_138|>",
|
| 1149 |
+
"lstrip": false,
|
| 1150 |
+
"normalized": false,
|
| 1151 |
+
"rstrip": false,
|
| 1152 |
+
"single_word": false,
|
| 1153 |
+
"special": true
|
| 1154 |
+
},
|
| 1155 |
+
"128144": {
|
| 1156 |
+
"content": "<|reserved_special_token_139|>",
|
| 1157 |
+
"lstrip": false,
|
| 1158 |
+
"normalized": false,
|
| 1159 |
+
"rstrip": false,
|
| 1160 |
+
"single_word": false,
|
| 1161 |
+
"special": true
|
| 1162 |
+
},
|
| 1163 |
+
"128145": {
|
| 1164 |
+
"content": "<|reserved_special_token_140|>",
|
| 1165 |
+
"lstrip": false,
|
| 1166 |
+
"normalized": false,
|
| 1167 |
+
"rstrip": false,
|
| 1168 |
+
"single_word": false,
|
| 1169 |
+
"special": true
|
| 1170 |
+
},
|
| 1171 |
+
"128146": {
|
| 1172 |
+
"content": "<|reserved_special_token_141|>",
|
| 1173 |
+
"lstrip": false,
|
| 1174 |
+
"normalized": false,
|
| 1175 |
+
"rstrip": false,
|
| 1176 |
+
"single_word": false,
|
| 1177 |
+
"special": true
|
| 1178 |
+
},
|
| 1179 |
+
"128147": {
|
| 1180 |
+
"content": "<|reserved_special_token_142|>",
|
| 1181 |
+
"lstrip": false,
|
| 1182 |
+
"normalized": false,
|
| 1183 |
+
"rstrip": false,
|
| 1184 |
+
"single_word": false,
|
| 1185 |
+
"special": true
|
| 1186 |
+
},
|
| 1187 |
+
"128148": {
|
| 1188 |
+
"content": "<|reserved_special_token_143|>",
|
| 1189 |
+
"lstrip": false,
|
| 1190 |
+
"normalized": false,
|
| 1191 |
+
"rstrip": false,
|
| 1192 |
+
"single_word": false,
|
| 1193 |
+
"special": true
|
| 1194 |
+
},
|
| 1195 |
+
"128149": {
|
| 1196 |
+
"content": "<|reserved_special_token_144|>",
|
| 1197 |
+
"lstrip": false,
|
| 1198 |
+
"normalized": false,
|
| 1199 |
+
"rstrip": false,
|
| 1200 |
+
"single_word": false,
|
| 1201 |
+
"special": true
|
| 1202 |
+
},
|
| 1203 |
+
"128150": {
|
| 1204 |
+
"content": "<|reserved_special_token_145|>",
|
| 1205 |
+
"lstrip": false,
|
| 1206 |
+
"normalized": false,
|
| 1207 |
+
"rstrip": false,
|
| 1208 |
+
"single_word": false,
|
| 1209 |
+
"special": true
|
| 1210 |
+
},
|
| 1211 |
+
"128151": {
|
| 1212 |
+
"content": "<|reserved_special_token_146|>",
|
| 1213 |
+
"lstrip": false,
|
| 1214 |
+
"normalized": false,
|
| 1215 |
+
"rstrip": false,
|
| 1216 |
+
"single_word": false,
|
| 1217 |
+
"special": true
|
| 1218 |
+
},
|
| 1219 |
+
"128152": {
|
| 1220 |
+
"content": "<|reserved_special_token_147|>",
|
| 1221 |
+
"lstrip": false,
|
| 1222 |
+
"normalized": false,
|
| 1223 |
+
"rstrip": false,
|
| 1224 |
+
"single_word": false,
|
| 1225 |
+
"special": true
|
| 1226 |
+
},
|
| 1227 |
+
"128153": {
|
| 1228 |
+
"content": "<|reserved_special_token_148|>",
|
| 1229 |
+
"lstrip": false,
|
| 1230 |
+
"normalized": false,
|
| 1231 |
+
"rstrip": false,
|
| 1232 |
+
"single_word": false,
|
| 1233 |
+
"special": true
|
| 1234 |
+
},
|
| 1235 |
+
"128154": {
|
| 1236 |
+
"content": "<|reserved_special_token_149|>",
|
| 1237 |
+
"lstrip": false,
|
| 1238 |
+
"normalized": false,
|
| 1239 |
+
"rstrip": false,
|
| 1240 |
+
"single_word": false,
|
| 1241 |
+
"special": true
|
| 1242 |
+
},
|
| 1243 |
+
"128155": {
|
| 1244 |
+
"content": "<|reserved_special_token_150|>",
|
| 1245 |
+
"lstrip": false,
|
| 1246 |
+
"normalized": false,
|
| 1247 |
+
"rstrip": false,
|
| 1248 |
+
"single_word": false,
|
| 1249 |
+
"special": true
|
| 1250 |
+
},
|
| 1251 |
+
"128156": {
|
| 1252 |
+
"content": "<|reserved_special_token_151|>",
|
| 1253 |
+
"lstrip": false,
|
| 1254 |
+
"normalized": false,
|
| 1255 |
+
"rstrip": false,
|
| 1256 |
+
"single_word": false,
|
| 1257 |
+
"special": true
|
| 1258 |
+
},
|
| 1259 |
+
"128157": {
|
| 1260 |
+
"content": "<|reserved_special_token_152|>",
|
| 1261 |
+
"lstrip": false,
|
| 1262 |
+
"normalized": false,
|
| 1263 |
+
"rstrip": false,
|
| 1264 |
+
"single_word": false,
|
| 1265 |
+
"special": true
|
| 1266 |
+
},
|
| 1267 |
+
"128158": {
|
| 1268 |
+
"content": "<|reserved_special_token_153|>",
|
| 1269 |
+
"lstrip": false,
|
| 1270 |
+
"normalized": false,
|
| 1271 |
+
"rstrip": false,
|
| 1272 |
+
"single_word": false,
|
| 1273 |
+
"special": true
|
| 1274 |
+
},
|
| 1275 |
+
"128159": {
|
| 1276 |
+
"content": "<|reserved_special_token_154|>",
|
| 1277 |
+
"lstrip": false,
|
| 1278 |
+
"normalized": false,
|
| 1279 |
+
"rstrip": false,
|
| 1280 |
+
"single_word": false,
|
| 1281 |
+
"special": true
|
| 1282 |
+
},
|
| 1283 |
+
"128160": {
|
| 1284 |
+
"content": "<|reserved_special_token_155|>",
|
| 1285 |
+
"lstrip": false,
|
| 1286 |
+
"normalized": false,
|
| 1287 |
+
"rstrip": false,
|
| 1288 |
+
"single_word": false,
|
| 1289 |
+
"special": true
|
| 1290 |
+
},
|
| 1291 |
+
"128161": {
|
| 1292 |
+
"content": "<|reserved_special_token_156|>",
|
| 1293 |
+
"lstrip": false,
|
| 1294 |
+
"normalized": false,
|
| 1295 |
+
"rstrip": false,
|
| 1296 |
+
"single_word": false,
|
| 1297 |
+
"special": true
|
| 1298 |
+
},
|
| 1299 |
+
"128162": {
|
| 1300 |
+
"content": "<|reserved_special_token_157|>",
|
| 1301 |
+
"lstrip": false,
|
| 1302 |
+
"normalized": false,
|
| 1303 |
+
"rstrip": false,
|
| 1304 |
+
"single_word": false,
|
| 1305 |
+
"special": true
|
| 1306 |
+
},
|
| 1307 |
+
"128163": {
|
| 1308 |
+
"content": "<|reserved_special_token_158|>",
|
| 1309 |
+
"lstrip": false,
|
| 1310 |
+
"normalized": false,
|
| 1311 |
+
"rstrip": false,
|
| 1312 |
+
"single_word": false,
|
| 1313 |
+
"special": true
|
| 1314 |
+
},
|
| 1315 |
+
"128164": {
|
| 1316 |
+
"content": "<|reserved_special_token_159|>",
|
| 1317 |
+
"lstrip": false,
|
| 1318 |
+
"normalized": false,
|
| 1319 |
+
"rstrip": false,
|
| 1320 |
+
"single_word": false,
|
| 1321 |
+
"special": true
|
| 1322 |
+
},
|
| 1323 |
+
"128165": {
|
| 1324 |
+
"content": "<|reserved_special_token_160|>",
|
| 1325 |
+
"lstrip": false,
|
| 1326 |
+
"normalized": false,
|
| 1327 |
+
"rstrip": false,
|
| 1328 |
+
"single_word": false,
|
| 1329 |
+
"special": true
|
| 1330 |
+
},
|
| 1331 |
+
"128166": {
|
| 1332 |
+
"content": "<|reserved_special_token_161|>",
|
| 1333 |
+
"lstrip": false,
|
| 1334 |
+
"normalized": false,
|
| 1335 |
+
"rstrip": false,
|
| 1336 |
+
"single_word": false,
|
| 1337 |
+
"special": true
|
| 1338 |
+
},
|
| 1339 |
+
"128167": {
|
| 1340 |
+
"content": "<|reserved_special_token_162|>",
|
| 1341 |
+
"lstrip": false,
|
| 1342 |
+
"normalized": false,
|
| 1343 |
+
"rstrip": false,
|
| 1344 |
+
"single_word": false,
|
| 1345 |
+
"special": true
|
| 1346 |
+
},
|
| 1347 |
+
"128168": {
|
| 1348 |
+
"content": "<|reserved_special_token_163|>",
|
| 1349 |
+
"lstrip": false,
|
| 1350 |
+
"normalized": false,
|
| 1351 |
+
"rstrip": false,
|
| 1352 |
+
"single_word": false,
|
| 1353 |
+
"special": true
|
| 1354 |
+
},
|
| 1355 |
+
"128169": {
|
| 1356 |
+
"content": "<|reserved_special_token_164|>",
|
| 1357 |
+
"lstrip": false,
|
| 1358 |
+
"normalized": false,
|
| 1359 |
+
"rstrip": false,
|
| 1360 |
+
"single_word": false,
|
| 1361 |
+
"special": true
|
| 1362 |
+
},
|
| 1363 |
+
"128170": {
|
| 1364 |
+
"content": "<|reserved_special_token_165|>",
|
| 1365 |
+
"lstrip": false,
|
| 1366 |
+
"normalized": false,
|
| 1367 |
+
"rstrip": false,
|
| 1368 |
+
"single_word": false,
|
| 1369 |
+
"special": true
|
| 1370 |
+
},
|
| 1371 |
+
"128171": {
|
| 1372 |
+
"content": "<|reserved_special_token_166|>",
|
| 1373 |
+
"lstrip": false,
|
| 1374 |
+
"normalized": false,
|
| 1375 |
+
"rstrip": false,
|
| 1376 |
+
"single_word": false,
|
| 1377 |
+
"special": true
|
| 1378 |
+
},
|
| 1379 |
+
"128172": {
|
| 1380 |
+
"content": "<|reserved_special_token_167|>",
|
| 1381 |
+
"lstrip": false,
|
| 1382 |
+
"normalized": false,
|
| 1383 |
+
"rstrip": false,
|
| 1384 |
+
"single_word": false,
|
| 1385 |
+
"special": true
|
| 1386 |
+
},
|
| 1387 |
+
"128173": {
|
| 1388 |
+
"content": "<|reserved_special_token_168|>",
|
| 1389 |
+
"lstrip": false,
|
| 1390 |
+
"normalized": false,
|
| 1391 |
+
"rstrip": false,
|
| 1392 |
+
"single_word": false,
|
| 1393 |
+
"special": true
|
| 1394 |
+
},
|
| 1395 |
+
"128174": {
|
| 1396 |
+
"content": "<|reserved_special_token_169|>",
|
| 1397 |
+
"lstrip": false,
|
| 1398 |
+
"normalized": false,
|
| 1399 |
+
"rstrip": false,
|
| 1400 |
+
"single_word": false,
|
| 1401 |
+
"special": true
|
| 1402 |
+
},
|
| 1403 |
+
"128175": {
|
| 1404 |
+
"content": "<|reserved_special_token_170|>",
|
| 1405 |
+
"lstrip": false,
|
| 1406 |
+
"normalized": false,
|
| 1407 |
+
"rstrip": false,
|
| 1408 |
+
"single_word": false,
|
| 1409 |
+
"special": true
|
| 1410 |
+
},
|
| 1411 |
+
"128176": {
|
| 1412 |
+
"content": "<|reserved_special_token_171|>",
|
| 1413 |
+
"lstrip": false,
|
| 1414 |
+
"normalized": false,
|
| 1415 |
+
"rstrip": false,
|
| 1416 |
+
"single_word": false,
|
| 1417 |
+
"special": true
|
| 1418 |
+
},
|
| 1419 |
+
"128177": {
|
| 1420 |
+
"content": "<|reserved_special_token_172|>",
|
| 1421 |
+
"lstrip": false,
|
| 1422 |
+
"normalized": false,
|
| 1423 |
+
"rstrip": false,
|
| 1424 |
+
"single_word": false,
|
| 1425 |
+
"special": true
|
| 1426 |
+
},
|
| 1427 |
+
"128178": {
|
| 1428 |
+
"content": "<|reserved_special_token_173|>",
|
| 1429 |
+
"lstrip": false,
|
| 1430 |
+
"normalized": false,
|
| 1431 |
+
"rstrip": false,
|
| 1432 |
+
"single_word": false,
|
| 1433 |
+
"special": true
|
| 1434 |
+
},
|
| 1435 |
+
"128179": {
|
| 1436 |
+
"content": "<|reserved_special_token_174|>",
|
| 1437 |
+
"lstrip": false,
|
| 1438 |
+
"normalized": false,
|
| 1439 |
+
"rstrip": false,
|
| 1440 |
+
"single_word": false,
|
| 1441 |
+
"special": true
|
| 1442 |
+
},
|
| 1443 |
+
"128180": {
|
| 1444 |
+
"content": "<|reserved_special_token_175|>",
|
| 1445 |
+
"lstrip": false,
|
| 1446 |
+
"normalized": false,
|
| 1447 |
+
"rstrip": false,
|
| 1448 |
+
"single_word": false,
|
| 1449 |
+
"special": true
|
| 1450 |
+
},
|
| 1451 |
+
"128181": {
|
| 1452 |
+
"content": "<|reserved_special_token_176|>",
|
| 1453 |
+
"lstrip": false,
|
| 1454 |
+
"normalized": false,
|
| 1455 |
+
"rstrip": false,
|
| 1456 |
+
"single_word": false,
|
| 1457 |
+
"special": true
|
| 1458 |
+
},
|
| 1459 |
+
"128182": {
|
| 1460 |
+
"content": "<|reserved_special_token_177|>",
|
| 1461 |
+
"lstrip": false,
|
| 1462 |
+
"normalized": false,
|
| 1463 |
+
"rstrip": false,
|
| 1464 |
+
"single_word": false,
|
| 1465 |
+
"special": true
|
| 1466 |
+
},
|
| 1467 |
+
"128183": {
|
| 1468 |
+
"content": "<|reserved_special_token_178|>",
|
| 1469 |
+
"lstrip": false,
|
| 1470 |
+
"normalized": false,
|
| 1471 |
+
"rstrip": false,
|
| 1472 |
+
"single_word": false,
|
| 1473 |
+
"special": true
|
| 1474 |
+
},
|
| 1475 |
+
"128184": {
|
| 1476 |
+
"content": "<|reserved_special_token_179|>",
|
| 1477 |
+
"lstrip": false,
|
| 1478 |
+
"normalized": false,
|
| 1479 |
+
"rstrip": false,
|
| 1480 |
+
"single_word": false,
|
| 1481 |
+
"special": true
|
| 1482 |
+
},
|
| 1483 |
+
"128185": {
|
| 1484 |
+
"content": "<|reserved_special_token_180|>",
|
| 1485 |
+
"lstrip": false,
|
| 1486 |
+
"normalized": false,
|
| 1487 |
+
"rstrip": false,
|
| 1488 |
+
"single_word": false,
|
| 1489 |
+
"special": true
|
| 1490 |
+
},
|
| 1491 |
+
"128186": {
|
| 1492 |
+
"content": "<|reserved_special_token_181|>",
|
| 1493 |
+
"lstrip": false,
|
| 1494 |
+
"normalized": false,
|
| 1495 |
+
"rstrip": false,
|
| 1496 |
+
"single_word": false,
|
| 1497 |
+
"special": true
|
| 1498 |
+
},
|
| 1499 |
+
"128187": {
|
| 1500 |
+
"content": "<|reserved_special_token_182|>",
|
| 1501 |
+
"lstrip": false,
|
| 1502 |
+
"normalized": false,
|
| 1503 |
+
"rstrip": false,
|
| 1504 |
+
"single_word": false,
|
| 1505 |
+
"special": true
|
| 1506 |
+
},
|
| 1507 |
+
"128188": {
|
| 1508 |
+
"content": "<|reserved_special_token_183|>",
|
| 1509 |
+
"lstrip": false,
|
| 1510 |
+
"normalized": false,
|
| 1511 |
+
"rstrip": false,
|
| 1512 |
+
"single_word": false,
|
| 1513 |
+
"special": true
|
| 1514 |
+
},
|
| 1515 |
+
"128189": {
|
| 1516 |
+
"content": "<|reserved_special_token_184|>",
|
| 1517 |
+
"lstrip": false,
|
| 1518 |
+
"normalized": false,
|
| 1519 |
+
"rstrip": false,
|
| 1520 |
+
"single_word": false,
|
| 1521 |
+
"special": true
|
| 1522 |
+
},
|
| 1523 |
+
"128190": {
|
| 1524 |
+
"content": "<|reserved_special_token_185|>",
|
| 1525 |
+
"lstrip": false,
|
| 1526 |
+
"normalized": false,
|
| 1527 |
+
"rstrip": false,
|
| 1528 |
+
"single_word": false,
|
| 1529 |
+
"special": true
|
| 1530 |
+
},
|
| 1531 |
+
"128191": {
|
| 1532 |
+
"content": "<|reserved_special_token_186|>",
|
| 1533 |
+
"lstrip": false,
|
| 1534 |
+
"normalized": false,
|
| 1535 |
+
"rstrip": false,
|
| 1536 |
+
"single_word": false,
|
| 1537 |
+
"special": true
|
| 1538 |
+
},
|
| 1539 |
+
"128192": {
|
| 1540 |
+
"content": "<|reserved_special_token_187|>",
|
| 1541 |
+
"lstrip": false,
|
| 1542 |
+
"normalized": false,
|
| 1543 |
+
"rstrip": false,
|
| 1544 |
+
"single_word": false,
|
| 1545 |
+
"special": true
|
| 1546 |
+
},
|
| 1547 |
+
"128193": {
|
| 1548 |
+
"content": "<|reserved_special_token_188|>",
|
| 1549 |
+
"lstrip": false,
|
| 1550 |
+
"normalized": false,
|
| 1551 |
+
"rstrip": false,
|
| 1552 |
+
"single_word": false,
|
| 1553 |
+
"special": true
|
| 1554 |
+
},
|
| 1555 |
+
"128194": {
|
| 1556 |
+
"content": "<|reserved_special_token_189|>",
|
| 1557 |
+
"lstrip": false,
|
| 1558 |
+
"normalized": false,
|
| 1559 |
+
"rstrip": false,
|
| 1560 |
+
"single_word": false,
|
| 1561 |
+
"special": true
|
| 1562 |
+
},
|
| 1563 |
+
"128195": {
|
| 1564 |
+
"content": "<|reserved_special_token_190|>",
|
| 1565 |
+
"lstrip": false,
|
| 1566 |
+
"normalized": false,
|
| 1567 |
+
"rstrip": false,
|
| 1568 |
+
"single_word": false,
|
| 1569 |
+
"special": true
|
| 1570 |
+
},
|
| 1571 |
+
"128196": {
|
| 1572 |
+
"content": "<|reserved_special_token_191|>",
|
| 1573 |
+
"lstrip": false,
|
| 1574 |
+
"normalized": false,
|
| 1575 |
+
"rstrip": false,
|
| 1576 |
+
"single_word": false,
|
| 1577 |
+
"special": true
|
| 1578 |
+
},
|
| 1579 |
+
"128197": {
|
| 1580 |
+
"content": "<|reserved_special_token_192|>",
|
| 1581 |
+
"lstrip": false,
|
| 1582 |
+
"normalized": false,
|
| 1583 |
+
"rstrip": false,
|
| 1584 |
+
"single_word": false,
|
| 1585 |
+
"special": true
|
| 1586 |
+
},
|
| 1587 |
+
"128198": {
|
| 1588 |
+
"content": "<|reserved_special_token_193|>",
|
| 1589 |
+
"lstrip": false,
|
| 1590 |
+
"normalized": false,
|
| 1591 |
+
"rstrip": false,
|
| 1592 |
+
"single_word": false,
|
| 1593 |
+
"special": true
|
| 1594 |
+
},
|
| 1595 |
+
"128199": {
|
| 1596 |
+
"content": "<|reserved_special_token_194|>",
|
| 1597 |
+
"lstrip": false,
|
| 1598 |
+
"normalized": false,
|
| 1599 |
+
"rstrip": false,
|
| 1600 |
+
"single_word": false,
|
| 1601 |
+
"special": true
|
| 1602 |
+
},
|
| 1603 |
+
"128200": {
|
| 1604 |
+
"content": "<|reserved_special_token_195|>",
|
| 1605 |
+
"lstrip": false,
|
| 1606 |
+
"normalized": false,
|
| 1607 |
+
"rstrip": false,
|
| 1608 |
+
"single_word": false,
|
| 1609 |
+
"special": true
|
| 1610 |
+
},
|
| 1611 |
+
"128201": {
|
| 1612 |
+
"content": "<|reserved_special_token_196|>",
|
| 1613 |
+
"lstrip": false,
|
| 1614 |
+
"normalized": false,
|
| 1615 |
+
"rstrip": false,
|
| 1616 |
+
"single_word": false,
|
| 1617 |
+
"special": true
|
| 1618 |
+
},
|
| 1619 |
+
"128202": {
|
| 1620 |
+
"content": "<|reserved_special_token_197|>",
|
| 1621 |
+
"lstrip": false,
|
| 1622 |
+
"normalized": false,
|
| 1623 |
+
"rstrip": false,
|
| 1624 |
+
"single_word": false,
|
| 1625 |
+
"special": true
|
| 1626 |
+
},
|
| 1627 |
+
"128203": {
|
| 1628 |
+
"content": "<|reserved_special_token_198|>",
|
| 1629 |
+
"lstrip": false,
|
| 1630 |
+
"normalized": false,
|
| 1631 |
+
"rstrip": false,
|
| 1632 |
+
"single_word": false,
|
| 1633 |
+
"special": true
|
| 1634 |
+
},
|
| 1635 |
+
"128204": {
|
| 1636 |
+
"content": "<|reserved_special_token_199|>",
|
| 1637 |
+
"lstrip": false,
|
| 1638 |
+
"normalized": false,
|
| 1639 |
+
"rstrip": false,
|
| 1640 |
+
"single_word": false,
|
| 1641 |
+
"special": true
|
| 1642 |
+
},
|
| 1643 |
+
"128205": {
|
| 1644 |
+
"content": "<|reserved_special_token_200|>",
|
| 1645 |
+
"lstrip": false,
|
| 1646 |
+
"normalized": false,
|
| 1647 |
+
"rstrip": false,
|
| 1648 |
+
"single_word": false,
|
| 1649 |
+
"special": true
|
| 1650 |
+
},
|
| 1651 |
+
"128206": {
|
| 1652 |
+
"content": "<|reserved_special_token_201|>",
|
| 1653 |
+
"lstrip": false,
|
| 1654 |
+
"normalized": false,
|
| 1655 |
+
"rstrip": false,
|
| 1656 |
+
"single_word": false,
|
| 1657 |
+
"special": true
|
| 1658 |
+
},
|
| 1659 |
+
"128207": {
|
| 1660 |
+
"content": "<|reserved_special_token_202|>",
|
| 1661 |
+
"lstrip": false,
|
| 1662 |
+
"normalized": false,
|
| 1663 |
+
"rstrip": false,
|
| 1664 |
+
"single_word": false,
|
| 1665 |
+
"special": true
|
| 1666 |
+
},
|
| 1667 |
+
"128208": {
|
| 1668 |
+
"content": "<|reserved_special_token_203|>",
|
| 1669 |
+
"lstrip": false,
|
| 1670 |
+
"normalized": false,
|
| 1671 |
+
"rstrip": false,
|
| 1672 |
+
"single_word": false,
|
| 1673 |
+
"special": true
|
| 1674 |
+
},
|
| 1675 |
+
"128209": {
|
| 1676 |
+
"content": "<|reserved_special_token_204|>",
|
| 1677 |
+
"lstrip": false,
|
| 1678 |
+
"normalized": false,
|
| 1679 |
+
"rstrip": false,
|
| 1680 |
+
"single_word": false,
|
| 1681 |
+
"special": true
|
| 1682 |
+
},
|
| 1683 |
+
"128210": {
|
| 1684 |
+
"content": "<|reserved_special_token_205|>",
|
| 1685 |
+
"lstrip": false,
|
| 1686 |
+
"normalized": false,
|
| 1687 |
+
"rstrip": false,
|
| 1688 |
+
"single_word": false,
|
| 1689 |
+
"special": true
|
| 1690 |
+
},
|
| 1691 |
+
"128211": {
|
| 1692 |
+
"content": "<|reserved_special_token_206|>",
|
| 1693 |
+
"lstrip": false,
|
| 1694 |
+
"normalized": false,
|
| 1695 |
+
"rstrip": false,
|
| 1696 |
+
"single_word": false,
|
| 1697 |
+
"special": true
|
| 1698 |
+
},
|
| 1699 |
+
"128212": {
|
| 1700 |
+
"content": "<|reserved_special_token_207|>",
|
| 1701 |
+
"lstrip": false,
|
| 1702 |
+
"normalized": false,
|
| 1703 |
+
"rstrip": false,
|
| 1704 |
+
"single_word": false,
|
| 1705 |
+
"special": true
|
| 1706 |
+
},
|
| 1707 |
+
"128213": {
|
| 1708 |
+
"content": "<|reserved_special_token_208|>",
|
| 1709 |
+
"lstrip": false,
|
| 1710 |
+
"normalized": false,
|
| 1711 |
+
"rstrip": false,
|
| 1712 |
+
"single_word": false,
|
| 1713 |
+
"special": true
|
| 1714 |
+
},
|
| 1715 |
+
"128214": {
|
| 1716 |
+
"content": "<|reserved_special_token_209|>",
|
| 1717 |
+
"lstrip": false,
|
| 1718 |
+
"normalized": false,
|
| 1719 |
+
"rstrip": false,
|
| 1720 |
+
"single_word": false,
|
| 1721 |
+
"special": true
|
| 1722 |
+
},
|
| 1723 |
+
"128215": {
|
| 1724 |
+
"content": "<|reserved_special_token_210|>",
|
| 1725 |
+
"lstrip": false,
|
| 1726 |
+
"normalized": false,
|
| 1727 |
+
"rstrip": false,
|
| 1728 |
+
"single_word": false,
|
| 1729 |
+
"special": true
|
| 1730 |
+
},
|
| 1731 |
+
"128216": {
|
| 1732 |
+
"content": "<|reserved_special_token_211|>",
|
| 1733 |
+
"lstrip": false,
|
| 1734 |
+
"normalized": false,
|
| 1735 |
+
"rstrip": false,
|
| 1736 |
+
"single_word": false,
|
| 1737 |
+
"special": true
|
| 1738 |
+
},
|
| 1739 |
+
"128217": {
|
| 1740 |
+
"content": "<|reserved_special_token_212|>",
|
| 1741 |
+
"lstrip": false,
|
| 1742 |
+
"normalized": false,
|
| 1743 |
+
"rstrip": false,
|
| 1744 |
+
"single_word": false,
|
| 1745 |
+
"special": true
|
| 1746 |
+
},
|
| 1747 |
+
"128218": {
|
| 1748 |
+
"content": "<|reserved_special_token_213|>",
|
| 1749 |
+
"lstrip": false,
|
| 1750 |
+
"normalized": false,
|
| 1751 |
+
"rstrip": false,
|
| 1752 |
+
"single_word": false,
|
| 1753 |
+
"special": true
|
| 1754 |
+
},
|
| 1755 |
+
"128219": {
|
| 1756 |
+
"content": "<|reserved_special_token_214|>",
|
| 1757 |
+
"lstrip": false,
|
| 1758 |
+
"normalized": false,
|
| 1759 |
+
"rstrip": false,
|
| 1760 |
+
"single_word": false,
|
| 1761 |
+
"special": true
|
| 1762 |
+
},
|
| 1763 |
+
"128220": {
|
| 1764 |
+
"content": "<|reserved_special_token_215|>",
|
| 1765 |
+
"lstrip": false,
|
| 1766 |
+
"normalized": false,
|
| 1767 |
+
"rstrip": false,
|
| 1768 |
+
"single_word": false,
|
| 1769 |
+
"special": true
|
| 1770 |
+
},
|
| 1771 |
+
"128221": {
|
| 1772 |
+
"content": "<|reserved_special_token_216|>",
|
| 1773 |
+
"lstrip": false,
|
| 1774 |
+
"normalized": false,
|
| 1775 |
+
"rstrip": false,
|
| 1776 |
+
"single_word": false,
|
| 1777 |
+
"special": true
|
| 1778 |
+
},
|
| 1779 |
+
"128222": {
|
| 1780 |
+
"content": "<|reserved_special_token_217|>",
|
| 1781 |
+
"lstrip": false,
|
| 1782 |
+
"normalized": false,
|
| 1783 |
+
"rstrip": false,
|
| 1784 |
+
"single_word": false,
|
| 1785 |
+
"special": true
|
| 1786 |
+
},
|
| 1787 |
+
"128223": {
|
| 1788 |
+
"content": "<|reserved_special_token_218|>",
|
| 1789 |
+
"lstrip": false,
|
| 1790 |
+
"normalized": false,
|
| 1791 |
+
"rstrip": false,
|
| 1792 |
+
"single_word": false,
|
| 1793 |
+
"special": true
|
| 1794 |
+
},
|
| 1795 |
+
"128224": {
|
| 1796 |
+
"content": "<|reserved_special_token_219|>",
|
| 1797 |
+
"lstrip": false,
|
| 1798 |
+
"normalized": false,
|
| 1799 |
+
"rstrip": false,
|
| 1800 |
+
"single_word": false,
|
| 1801 |
+
"special": true
|
| 1802 |
+
},
|
| 1803 |
+
"128225": {
|
| 1804 |
+
"content": "<|reserved_special_token_220|>",
|
| 1805 |
+
"lstrip": false,
|
| 1806 |
+
"normalized": false,
|
| 1807 |
+
"rstrip": false,
|
| 1808 |
+
"single_word": false,
|
| 1809 |
+
"special": true
|
| 1810 |
+
},
|
| 1811 |
+
"128226": {
|
| 1812 |
+
"content": "<|reserved_special_token_221|>",
|
| 1813 |
+
"lstrip": false,
|
| 1814 |
+
"normalized": false,
|
| 1815 |
+
"rstrip": false,
|
| 1816 |
+
"single_word": false,
|
| 1817 |
+
"special": true
|
| 1818 |
+
},
|
| 1819 |
+
"128227": {
|
| 1820 |
+
"content": "<|reserved_special_token_222|>",
|
| 1821 |
+
"lstrip": false,
|
| 1822 |
+
"normalized": false,
|
| 1823 |
+
"rstrip": false,
|
| 1824 |
+
"single_word": false,
|
| 1825 |
+
"special": true
|
| 1826 |
+
},
|
| 1827 |
+
"128228": {
|
| 1828 |
+
"content": "<|reserved_special_token_223|>",
|
| 1829 |
+
"lstrip": false,
|
| 1830 |
+
"normalized": false,
|
| 1831 |
+
"rstrip": false,
|
| 1832 |
+
"single_word": false,
|
| 1833 |
+
"special": true
|
| 1834 |
+
},
|
| 1835 |
+
"128229": {
|
| 1836 |
+
"content": "<|reserved_special_token_224|>",
|
| 1837 |
+
"lstrip": false,
|
| 1838 |
+
"normalized": false,
|
| 1839 |
+
"rstrip": false,
|
| 1840 |
+
"single_word": false,
|
| 1841 |
+
"special": true
|
| 1842 |
+
},
|
| 1843 |
+
"128230": {
|
| 1844 |
+
"content": "<|reserved_special_token_225|>",
|
| 1845 |
+
"lstrip": false,
|
| 1846 |
+
"normalized": false,
|
| 1847 |
+
"rstrip": false,
|
| 1848 |
+
"single_word": false,
|
| 1849 |
+
"special": true
|
| 1850 |
+
},
|
| 1851 |
+
"128231": {
|
| 1852 |
+
"content": "<|reserved_special_token_226|>",
|
| 1853 |
+
"lstrip": false,
|
| 1854 |
+
"normalized": false,
|
| 1855 |
+
"rstrip": false,
|
| 1856 |
+
"single_word": false,
|
| 1857 |
+
"special": true
|
| 1858 |
+
},
|
| 1859 |
+
"128232": {
|
| 1860 |
+
"content": "<|reserved_special_token_227|>",
|
| 1861 |
+
"lstrip": false,
|
| 1862 |
+
"normalized": false,
|
| 1863 |
+
"rstrip": false,
|
| 1864 |
+
"single_word": false,
|
| 1865 |
+
"special": true
|
| 1866 |
+
},
|
| 1867 |
+
"128233": {
|
| 1868 |
+
"content": "<|reserved_special_token_228|>",
|
| 1869 |
+
"lstrip": false,
|
| 1870 |
+
"normalized": false,
|
| 1871 |
+
"rstrip": false,
|
| 1872 |
+
"single_word": false,
|
| 1873 |
+
"special": true
|
| 1874 |
+
},
|
| 1875 |
+
"128234": {
|
| 1876 |
+
"content": "<|reserved_special_token_229|>",
|
| 1877 |
+
"lstrip": false,
|
| 1878 |
+
"normalized": false,
|
| 1879 |
+
"rstrip": false,
|
| 1880 |
+
"single_word": false,
|
| 1881 |
+
"special": true
|
| 1882 |
+
},
|
| 1883 |
+
"128235": {
|
| 1884 |
+
"content": "<|reserved_special_token_230|>",
|
| 1885 |
+
"lstrip": false,
|
| 1886 |
+
"normalized": false,
|
| 1887 |
+
"rstrip": false,
|
| 1888 |
+
"single_word": false,
|
| 1889 |
+
"special": true
|
| 1890 |
+
},
|
| 1891 |
+
"128236": {
|
| 1892 |
+
"content": "<|reserved_special_token_231|>",
|
| 1893 |
+
"lstrip": false,
|
| 1894 |
+
"normalized": false,
|
| 1895 |
+
"rstrip": false,
|
| 1896 |
+
"single_word": false,
|
| 1897 |
+
"special": true
|
| 1898 |
+
},
|
| 1899 |
+
"128237": {
|
| 1900 |
+
"content": "<|reserved_special_token_232|>",
|
| 1901 |
+
"lstrip": false,
|
| 1902 |
+
"normalized": false,
|
| 1903 |
+
"rstrip": false,
|
| 1904 |
+
"single_word": false,
|
| 1905 |
+
"special": true
|
| 1906 |
+
},
|
| 1907 |
+
"128238": {
|
| 1908 |
+
"content": "<|reserved_special_token_233|>",
|
| 1909 |
+
"lstrip": false,
|
| 1910 |
+
"normalized": false,
|
| 1911 |
+
"rstrip": false,
|
| 1912 |
+
"single_word": false,
|
| 1913 |
+
"special": true
|
| 1914 |
+
},
|
| 1915 |
+
"128239": {
|
| 1916 |
+
"content": "<|reserved_special_token_234|>",
|
| 1917 |
+
"lstrip": false,
|
| 1918 |
+
"normalized": false,
|
| 1919 |
+
"rstrip": false,
|
| 1920 |
+
"single_word": false,
|
| 1921 |
+
"special": true
|
| 1922 |
+
},
|
| 1923 |
+
"128240": {
|
| 1924 |
+
"content": "<|reserved_special_token_235|>",
|
| 1925 |
+
"lstrip": false,
|
| 1926 |
+
"normalized": false,
|
| 1927 |
+
"rstrip": false,
|
| 1928 |
+
"single_word": false,
|
| 1929 |
+
"special": true
|
| 1930 |
+
},
|
| 1931 |
+
"128241": {
|
| 1932 |
+
"content": "<|reserved_special_token_236|>",
|
| 1933 |
+
"lstrip": false,
|
| 1934 |
+
"normalized": false,
|
| 1935 |
+
"rstrip": false,
|
| 1936 |
+
"single_word": false,
|
| 1937 |
+
"special": true
|
| 1938 |
+
},
|
| 1939 |
+
"128242": {
|
| 1940 |
+
"content": "<|reserved_special_token_237|>",
|
| 1941 |
+
"lstrip": false,
|
| 1942 |
+
"normalized": false,
|
| 1943 |
+
"rstrip": false,
|
| 1944 |
+
"single_word": false,
|
| 1945 |
+
"special": true
|
| 1946 |
+
},
|
| 1947 |
+
"128243": {
|
| 1948 |
+
"content": "<|reserved_special_token_238|>",
|
| 1949 |
+
"lstrip": false,
|
| 1950 |
+
"normalized": false,
|
| 1951 |
+
"rstrip": false,
|
| 1952 |
+
"single_word": false,
|
| 1953 |
+
"special": true
|
| 1954 |
+
},
|
| 1955 |
+
"128244": {
|
| 1956 |
+
"content": "<|reserved_special_token_239|>",
|
| 1957 |
+
"lstrip": false,
|
| 1958 |
+
"normalized": false,
|
| 1959 |
+
"rstrip": false,
|
| 1960 |
+
"single_word": false,
|
| 1961 |
+
"special": true
|
| 1962 |
+
},
|
| 1963 |
+
"128245": {
|
| 1964 |
+
"content": "<|reserved_special_token_240|>",
|
| 1965 |
+
"lstrip": false,
|
| 1966 |
+
"normalized": false,
|
| 1967 |
+
"rstrip": false,
|
| 1968 |
+
"single_word": false,
|
| 1969 |
+
"special": true
|
| 1970 |
+
},
|
| 1971 |
+
"128246": {
|
| 1972 |
+
"content": "<|reserved_special_token_241|>",
|
| 1973 |
+
"lstrip": false,
|
| 1974 |
+
"normalized": false,
|
| 1975 |
+
"rstrip": false,
|
| 1976 |
+
"single_word": false,
|
| 1977 |
+
"special": true
|
| 1978 |
+
},
|
| 1979 |
+
"128247": {
|
| 1980 |
+
"content": "<|reserved_special_token_242|>",
|
| 1981 |
+
"lstrip": false,
|
| 1982 |
+
"normalized": false,
|
| 1983 |
+
"rstrip": false,
|
| 1984 |
+
"single_word": false,
|
| 1985 |
+
"special": true
|
| 1986 |
+
},
|
| 1987 |
+
"128248": {
|
| 1988 |
+
"content": "<|reserved_special_token_243|>",
|
| 1989 |
+
"lstrip": false,
|
| 1990 |
+
"normalized": false,
|
| 1991 |
+
"rstrip": false,
|
| 1992 |
+
"single_word": false,
|
| 1993 |
+
"special": true
|
| 1994 |
+
},
|
| 1995 |
+
"128249": {
|
| 1996 |
+
"content": "<|reserved_special_token_244|>",
|
| 1997 |
+
"lstrip": false,
|
| 1998 |
+
"normalized": false,
|
| 1999 |
+
"rstrip": false,
|
| 2000 |
+
"single_word": false,
|
| 2001 |
+
"special": true
|
| 2002 |
+
},
|
| 2003 |
+
"128250": {
|
| 2004 |
+
"content": "<|reserved_special_token_245|>",
|
| 2005 |
+
"lstrip": false,
|
| 2006 |
+
"normalized": false,
|
| 2007 |
+
"rstrip": false,
|
| 2008 |
+
"single_word": false,
|
| 2009 |
+
"special": true
|
| 2010 |
+
},
|
| 2011 |
+
"128251": {
|
| 2012 |
+
"content": "<|reserved_special_token_246|>",
|
| 2013 |
+
"lstrip": false,
|
| 2014 |
+
"normalized": false,
|
| 2015 |
+
"rstrip": false,
|
| 2016 |
+
"single_word": false,
|
| 2017 |
+
"special": true
|
| 2018 |
+
},
|
| 2019 |
+
"128252": {
|
| 2020 |
+
"content": "<|reserved_special_token_247|>",
|
| 2021 |
+
"lstrip": false,
|
| 2022 |
+
"normalized": false,
|
| 2023 |
+
"rstrip": false,
|
| 2024 |
+
"single_word": false,
|
| 2025 |
+
"special": true
|
| 2026 |
+
},
|
| 2027 |
+
"128253": {
|
| 2028 |
+
"content": "<|reserved_special_token_248|>",
|
| 2029 |
+
"lstrip": false,
|
| 2030 |
+
"normalized": false,
|
| 2031 |
+
"rstrip": false,
|
| 2032 |
+
"single_word": false,
|
| 2033 |
+
"special": true
|
| 2034 |
+
},
|
| 2035 |
+
"128254": {
|
| 2036 |
+
"content": "<|reserved_special_token_249|>",
|
| 2037 |
+
"lstrip": false,
|
| 2038 |
+
"normalized": false,
|
| 2039 |
+
"rstrip": false,
|
| 2040 |
+
"single_word": false,
|
| 2041 |
+
"special": true
|
| 2042 |
+
},
|
| 2043 |
+
"128255": {
|
| 2044 |
+
"content": "<|reserved_special_token_250|>",
|
| 2045 |
+
"lstrip": false,
|
| 2046 |
+
"normalized": false,
|
| 2047 |
+
"rstrip": false,
|
| 2048 |
+
"single_word": false,
|
| 2049 |
+
"special": true
|
| 2050 |
+
},
|
| 2051 |
+
"128256": {
|
| 2052 |
+
"content": "<|eom_id|>",
|
| 2053 |
+
"lstrip": false,
|
| 2054 |
+
"normalized": false,
|
| 2055 |
+
"rstrip": false,
|
| 2056 |
+
"single_word": false,
|
| 2057 |
+
"special": true
|
| 2058 |
+
}
|
| 2059 |
+
},
|
| 2060 |
+
"additional_special_tokens": [
|
| 2061 |
+
"<|eom_id|>"
|
| 2062 |
+
],
|
| 2063 |
+
"bos_token": "<|begin_of_text|>",
|
| 2064 |
+
"chat_template": "{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' }}{% endif %}",
|
| 2065 |
+
"clean_up_tokenization_spaces": true,
|
| 2066 |
+
"eos_token": "<|eot_id|>",
|
| 2067 |
+
"extra_special_tokens": {},
|
| 2068 |
+
"model_input_names": [
|
| 2069 |
+
"input_ids",
|
| 2070 |
+
"attention_mask"
|
| 2071 |
+
],
|
| 2072 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 2073 |
+
"pad_token": "<|eot_id|>",
|
| 2074 |
+
"padding_side": "right",
|
| 2075 |
+
"split_special_tokens": false,
|
| 2076 |
+
"tokenizer_class": "PreTrainedTokenizer"
|
| 2077 |
+
}
|
train.yaml
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
seed: 123
|
| 2 |
+
|
| 3 |
+
### model
|
| 4 |
+
model_name_or_path: meta-llama/Meta-Llama-3-8B-Instruct
|
| 5 |
+
trust_remote_code: true
|
| 6 |
+
flash_attn: auto
|
| 7 |
+
use_cache: false
|
| 8 |
+
|
| 9 |
+
### method
|
| 10 |
+
stage: sft
|
| 11 |
+
do_train: true
|
| 12 |
+
finetuning_type: lora
|
| 13 |
+
lora_rank: 16
|
| 14 |
+
lora_alpha: 16
|
| 15 |
+
lora_dropout: 0.05
|
| 16 |
+
lora_target: k_proj,v_proj,down_proj
|
| 17 |
+
|
| 18 |
+
### dataset
|
| 19 |
+
dataset: piqa
|
| 20 |
+
template: llama3
|
| 21 |
+
cutoff_len: 2048
|
| 22 |
+
overwrite_cache: true
|
| 23 |
+
preprocessing_num_workers: 16
|
| 24 |
+
dataloader_num_workers: 4
|
| 25 |
+
packing: false
|
| 26 |
+
|
| 27 |
+
### output
|
| 28 |
+
output_dir: saves/lora/llama-3-8b-instruct/train_piqa_1754507484
|
| 29 |
+
logging_steps: 5
|
| 30 |
+
save_steps: 0.05
|
| 31 |
+
overwrite_output_dir: true
|
| 32 |
+
save_only_model: false
|
| 33 |
+
plot_loss: true
|
| 34 |
+
include_num_input_tokens_seen: true
|
| 35 |
+
push_to_hub: true
|
| 36 |
+
push_to_hub_organization: rbelanec
|
| 37 |
+
load_best_model_at_end: true
|
| 38 |
+
save_total_limit: 1
|
| 39 |
+
|
| 40 |
+
### train
|
| 41 |
+
per_device_train_batch_size: 4
|
| 42 |
+
learning_rate: 5.0e-5
|
| 43 |
+
num_train_epochs: 10.0
|
| 44 |
+
weight_decay: 1.0e-5
|
| 45 |
+
lr_scheduler_type: cosine
|
| 46 |
+
bf16: true
|
| 47 |
+
ddp_timeout: 180000000
|
| 48 |
+
resume_from_checkpoint: null
|
| 49 |
+
warmup_ratio: 0.1
|
| 50 |
+
optim: adamw_torch
|
| 51 |
+
report_to:
|
| 52 |
+
- wandb
|
| 53 |
+
|
| 54 |
+
### eval
|
| 55 |
+
per_device_eval_batch_size: 4
|
| 56 |
+
eval_strategy: steps
|
| 57 |
+
eval_steps: 0.05
|
| 58 |
+
val_size: 0.1
|
trainer_log.jsonl
ADDED
|
@@ -0,0 +1,368 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"current_steps": 5, "total_steps": 36260, "loss": 1.0028, "lr": 5.5157198014340876e-08, "epoch": 0.0013789299503585218, "percentage": 0.01, "elapsed_time": "0:00:01", "remaining_time": "3:27:49", "throughput": 1656.09, "total_tokens": 2848}
|
| 2 |
+
{"current_steps": 10, "total_steps": 36260, "loss": 0.9575, "lr": 1.2410369553226697e-07, "epoch": 0.0027578599007170436, "percentage": 0.03, "elapsed_time": "0:00:02", "remaining_time": "2:57:29", "throughput": 1960.39, "total_tokens": 5760}
|
| 3 |
+
{"current_steps": 15, "total_steps": 36260, "loss": 1.0904, "lr": 1.9305019305019306e-07, "epoch": 0.004136789851075565, "percentage": 0.04, "elapsed_time": "0:00:03", "remaining_time": "2:40:32", "throughput": 2014.9, "total_tokens": 8032}
|
| 4 |
+
{"current_steps": 20, "total_steps": 36260, "loss": 0.9729, "lr": 2.619966905681192e-07, "epoch": 0.005515719801434087, "percentage": 0.06, "elapsed_time": "0:00:05", "remaining_time": "2:44:18", "throughput": 2152.59, "total_tokens": 11712}
|
| 5 |
+
{"current_steps": 25, "total_steps": 36260, "loss": 0.985, "lr": 3.309431880860452e-07, "epoch": 0.006894649751792609, "percentage": 0.07, "elapsed_time": "0:00:06", "remaining_time": "2:36:32", "throughput": 2177.57, "total_tokens": 14112}
|
| 6 |
+
{"current_steps": 30, "total_steps": 36260, "loss": 1.0233, "lr": 3.998896856039713e-07, "epoch": 0.00827357970215113, "percentage": 0.08, "elapsed_time": "0:00:07", "remaining_time": "2:40:56", "throughput": 2253.08, "total_tokens": 18016}
|
| 7 |
+
{"current_steps": 35, "total_steps": 36260, "loss": 1.0284, "lr": 4.6883618312189744e-07, "epoch": 0.009652509652509652, "percentage": 0.1, "elapsed_time": "0:00:09", "remaining_time": "2:41:41", "throughput": 2317.96, "total_tokens": 21728}
|
| 8 |
+
{"current_steps": 40, "total_steps": 36260, "loss": 0.9388, "lr": 5.377826806398235e-07, "epoch": 0.011031439602868174, "percentage": 0.11, "elapsed_time": "0:00:10", "remaining_time": "2:38:09", "throughput": 2311.49, "total_tokens": 24224}
|
| 9 |
+
{"current_steps": 45, "total_steps": 36260, "loss": 1.0727, "lr": 6.067291781577496e-07, "epoch": 0.012410369553226696, "percentage": 0.12, "elapsed_time": "0:00:11", "remaining_time": "2:35:30", "throughput": 2318.34, "total_tokens": 26880}
|
| 10 |
+
{"current_steps": 50, "total_steps": 36260, "loss": 0.8292, "lr": 6.756756756756758e-07, "epoch": 0.013789299503585218, "percentage": 0.14, "elapsed_time": "0:00:12", "remaining_time": "2:32:07", "throughput": 2305.36, "total_tokens": 29056}
|
| 11 |
+
{"current_steps": 55, "total_steps": 36260, "loss": 1.0232, "lr": 7.446221731936018e-07, "epoch": 0.01516822945394374, "percentage": 0.15, "elapsed_time": "0:00:13", "remaining_time": "2:29:08", "throughput": 2297.46, "total_tokens": 31232}
|
| 12 |
+
{"current_steps": 60, "total_steps": 36260, "loss": 0.6936, "lr": 8.13568670711528e-07, "epoch": 0.01654715940430226, "percentage": 0.17, "elapsed_time": "0:00:14", "remaining_time": "2:28:10", "throughput": 2312.76, "total_tokens": 34080}
|
| 13 |
+
{"current_steps": 65, "total_steps": 36260, "loss": 0.8574, "lr": 8.82515168229454e-07, "epoch": 0.017926089354660783, "percentage": 0.18, "elapsed_time": "0:00:16", "remaining_time": "2:28:39", "throughput": 2331.49, "total_tokens": 37344}
|
| 14 |
+
{"current_steps": 70, "total_steps": 36260, "loss": 0.709, "lr": 9.514616657473801e-07, "epoch": 0.019305019305019305, "percentage": 0.19, "elapsed_time": "0:00:17", "remaining_time": "2:26:51", "throughput": 2330.15, "total_tokens": 39712}
|
| 15 |
+
{"current_steps": 75, "total_steps": 36260, "loss": 1.0253, "lr": 1.020408163265306e-06, "epoch": 0.020683949255377827, "percentage": 0.21, "elapsed_time": "0:00:18", "remaining_time": "2:26:04", "throughput": 2334.03, "total_tokens": 42400}
|
| 16 |
+
{"current_steps": 80, "total_steps": 36260, "loss": 0.8172, "lr": 1.0893546607832323e-06, "epoch": 0.02206287920573635, "percentage": 0.22, "elapsed_time": "0:00:19", "remaining_time": "2:26:01", "throughput": 2340.63, "total_tokens": 45344}
|
| 17 |
+
{"current_steps": 85, "total_steps": 36260, "loss": 1.0014, "lr": 1.1583011583011583e-06, "epoch": 0.02344180915609487, "percentage": 0.23, "elapsed_time": "0:00:20", "remaining_time": "2:25:20", "throughput": 2334.84, "total_tokens": 47840}
|
| 18 |
+
{"current_steps": 90, "total_steps": 36260, "loss": 0.4216, "lr": 1.2272476558190843e-06, "epoch": 0.024820739106453393, "percentage": 0.25, "elapsed_time": "0:00:22", "remaining_time": "2:28:15", "throughput": 2365.15, "total_tokens": 52352}
|
| 19 |
+
{"current_steps": 95, "total_steps": 36260, "loss": 0.878, "lr": 1.2961941533370105e-06, "epoch": 0.026199669056811915, "percentage": 0.26, "elapsed_time": "0:00:23", "remaining_time": "2:27:48", "throughput": 2372.34, "total_tokens": 55264}
|
| 20 |
+
{"current_steps": 100, "total_steps": 36260, "loss": 0.6017, "lr": 1.3651406508549365e-06, "epoch": 0.027578599007170437, "percentage": 0.28, "elapsed_time": "0:00:24", "remaining_time": "2:30:15", "throughput": 2382.22, "total_tokens": 59392}
|
| 21 |
+
{"current_steps": 105, "total_steps": 36260, "loss": 0.8679, "lr": 1.4340871483728628e-06, "epoch": 0.02895752895752896, "percentage": 0.29, "elapsed_time": "0:00:26", "remaining_time": "2:30:10", "throughput": 2390.77, "total_tokens": 62560}
|
| 22 |
+
{"current_steps": 110, "total_steps": 36260, "loss": 0.5288, "lr": 1.5030336458907888e-06, "epoch": 0.03033645890788748, "percentage": 0.3, "elapsed_time": "0:00:27", "remaining_time": "2:29:30", "throughput": 2391.42, "total_tokens": 65280}
|
| 23 |
+
{"current_steps": 115, "total_steps": 36260, "loss": 0.4933, "lr": 1.5719801434087148e-06, "epoch": 0.031715388858246, "percentage": 0.32, "elapsed_time": "0:00:28", "remaining_time": "2:28:26", "throughput": 2390.65, "total_tokens": 67744}
|
| 24 |
+
{"current_steps": 120, "total_steps": 36260, "loss": 0.6139, "lr": 1.6409266409266408e-06, "epoch": 0.03309431880860452, "percentage": 0.33, "elapsed_time": "0:00:29", "remaining_time": "2:29:50", "throughput": 2404.3, "total_tokens": 71776}
|
| 25 |
+
{"current_steps": 125, "total_steps": 36260, "loss": 0.2704, "lr": 1.709873138444567e-06, "epoch": 0.03447324875896304, "percentage": 0.34, "elapsed_time": "0:00:31", "remaining_time": "2:29:53", "throughput": 2408.82, "total_tokens": 74944}
|
| 26 |
+
{"current_steps": 130, "total_steps": 36260, "loss": 0.447, "lr": 1.778819635962493e-06, "epoch": 0.035852178709321565, "percentage": 0.36, "elapsed_time": "0:00:32", "remaining_time": "2:29:40", "throughput": 2409.33, "total_tokens": 77856}
|
| 27 |
+
{"current_steps": 135, "total_steps": 36260, "loss": 0.1624, "lr": 1.847766133480419e-06, "epoch": 0.03723110865968009, "percentage": 0.37, "elapsed_time": "0:00:33", "remaining_time": "2:30:20", "throughput": 2416.91, "total_tokens": 81472}
|
| 28 |
+
{"current_steps": 140, "total_steps": 36260, "loss": 0.2461, "lr": 1.9167126309983453e-06, "epoch": 0.03861003861003861, "percentage": 0.39, "elapsed_time": "0:00:34", "remaining_time": "2:29:30", "throughput": 2414.92, "total_tokens": 83968}
|
| 29 |
+
{"current_steps": 145, "total_steps": 36260, "loss": 0.1736, "lr": 1.9856591285162715e-06, "epoch": 0.03998896856039713, "percentage": 0.4, "elapsed_time": "0:00:35", "remaining_time": "2:28:46", "throughput": 2414.34, "total_tokens": 86528}
|
| 30 |
+
{"current_steps": 150, "total_steps": 36260, "loss": 0.3462, "lr": 2.0546056260341973e-06, "epoch": 0.04136789851075565, "percentage": 0.41, "elapsed_time": "0:00:37", "remaining_time": "2:30:09", "throughput": 2428.25, "total_tokens": 90880}
|
| 31 |
+
{"current_steps": 155, "total_steps": 36260, "loss": 0.2281, "lr": 2.1235521235521236e-06, "epoch": 0.042746828461114175, "percentage": 0.43, "elapsed_time": "0:00:38", "remaining_time": "2:29:38", "throughput": 2426.74, "total_tokens": 93536}
|
| 32 |
+
{"current_steps": 160, "total_steps": 36260, "loss": 0.414, "lr": 2.1924986210700498e-06, "epoch": 0.0441257584114727, "percentage": 0.44, "elapsed_time": "0:00:39", "remaining_time": "2:30:17", "throughput": 2437.19, "total_tokens": 97408}
|
| 33 |
+
{"current_steps": 165, "total_steps": 36260, "loss": 0.1749, "lr": 2.2614451185879756e-06, "epoch": 0.04550468836183122, "percentage": 0.46, "elapsed_time": "0:00:41", "remaining_time": "2:30:16", "throughput": 2437.74, "total_tokens": 100480}
|
| 34 |
+
{"current_steps": 170, "total_steps": 36260, "loss": 0.1878, "lr": 2.330391616105902e-06, "epoch": 0.04688361831218974, "percentage": 0.47, "elapsed_time": "0:00:42", "remaining_time": "2:31:12", "throughput": 2450.03, "total_tokens": 104704}
|
| 35 |
+
{"current_steps": 175, "total_steps": 36260, "loss": 0.025, "lr": 2.399338113623828e-06, "epoch": 0.04826254826254826, "percentage": 0.48, "elapsed_time": "0:00:43", "remaining_time": "2:30:28", "throughput": 2443.29, "total_tokens": 106976}
|
| 36 |
+
{"current_steps": 180, "total_steps": 36260, "loss": 0.2351, "lr": 2.4682846111417543e-06, "epoch": 0.049641478212906785, "percentage": 0.5, "elapsed_time": "0:00:44", "remaining_time": "2:29:45", "throughput": 2439.28, "total_tokens": 109344}
|
| 37 |
+
{"current_steps": 185, "total_steps": 36260, "loss": 0.3986, "lr": 2.53723110865968e-06, "epoch": 0.05102040816326531, "percentage": 0.51, "elapsed_time": "0:00:46", "remaining_time": "2:29:30", "throughput": 2436.12, "total_tokens": 112064}
|
| 38 |
+
{"current_steps": 190, "total_steps": 36260, "loss": 0.231, "lr": 2.6061776061776063e-06, "epoch": 0.05239933811362383, "percentage": 0.52, "elapsed_time": "0:00:47", "remaining_time": "2:28:52", "throughput": 2433.99, "total_tokens": 114528}
|
| 39 |
+
{"current_steps": 195, "total_steps": 36260, "loss": 0.3256, "lr": 2.6751241036955325e-06, "epoch": 0.05377826806398235, "percentage": 0.54, "elapsed_time": "0:00:48", "remaining_time": "2:29:17", "throughput": 2438.14, "total_tokens": 118080}
|
| 40 |
+
{"current_steps": 200, "total_steps": 36260, "loss": 0.357, "lr": 2.7440706012134583e-06, "epoch": 0.05515719801434087, "percentage": 0.55, "elapsed_time": "0:00:49", "remaining_time": "2:28:31", "throughput": 2434.34, "total_tokens": 120320}
|
| 41 |
+
{"current_steps": 205, "total_steps": 36260, "loss": 0.2071, "lr": 2.8130170987313846e-06, "epoch": 0.056536127964699395, "percentage": 0.57, "elapsed_time": "0:00:50", "remaining_time": "2:28:05", "throughput": 2434.04, "total_tokens": 122976}
|
| 42 |
+
{"current_steps": 210, "total_steps": 36260, "loss": 0.2674, "lr": 2.8819635962493108e-06, "epoch": 0.05791505791505792, "percentage": 0.58, "elapsed_time": "0:00:51", "remaining_time": "2:27:28", "throughput": 2431.12, "total_tokens": 125312}
|
| 43 |
+
{"current_steps": 215, "total_steps": 36260, "loss": 0.0931, "lr": 2.950910093767237e-06, "epoch": 0.05929398786541644, "percentage": 0.59, "elapsed_time": "0:00:52", "remaining_time": "2:27:51", "throughput": 2438.26, "total_tokens": 129024}
|
| 44 |
+
{"current_steps": 220, "total_steps": 36260, "loss": 0.3677, "lr": 3.019856591285163e-06, "epoch": 0.06067291781577496, "percentage": 0.61, "elapsed_time": "0:00:54", "remaining_time": "2:27:48", "throughput": 2440.56, "total_tokens": 132128}
|
| 45 |
+
{"current_steps": 225, "total_steps": 36260, "loss": 0.1927, "lr": 3.088803088803089e-06, "epoch": 0.06205184776613348, "percentage": 0.62, "elapsed_time": "0:00:55", "remaining_time": "2:27:29", "throughput": 2442.21, "total_tokens": 134944}
|
| 46 |
+
{"current_steps": 230, "total_steps": 36260, "loss": 0.2736, "lr": 3.157749586321015e-06, "epoch": 0.063430777716492, "percentage": 0.63, "elapsed_time": "0:00:56", "remaining_time": "2:27:49", "throughput": 2444.49, "total_tokens": 138400}
|
| 47 |
+
{"current_steps": 235, "total_steps": 36260, "loss": 0.1733, "lr": 3.226696083838941e-06, "epoch": 0.06480970766685053, "percentage": 0.65, "elapsed_time": "0:00:57", "remaining_time": "2:27:26", "throughput": 2443.73, "total_tokens": 141024}
|
| 48 |
+
{"current_steps": 240, "total_steps": 36260, "loss": 0.1692, "lr": 3.295642581356867e-06, "epoch": 0.06618863761720904, "percentage": 0.66, "elapsed_time": "0:00:58", "remaining_time": "2:27:05", "throughput": 2442.33, "total_tokens": 143616}
|
| 49 |
+
{"current_steps": 245, "total_steps": 36260, "loss": 0.2171, "lr": 3.3645890788747935e-06, "epoch": 0.06756756756756757, "percentage": 0.68, "elapsed_time": "0:01:00", "remaining_time": "2:27:39", "throughput": 2445.5, "total_tokens": 147392}
|
| 50 |
+
{"current_steps": 250, "total_steps": 36260, "loss": 0.1329, "lr": 3.4335355763927193e-06, "epoch": 0.06894649751792609, "percentage": 0.69, "elapsed_time": "0:01:01", "remaining_time": "2:27:37", "throughput": 2446.35, "total_tokens": 150432}
|
| 51 |
+
{"current_steps": 255, "total_steps": 36260, "loss": 0.2505, "lr": 3.5024820739106456e-06, "epoch": 0.07032542746828462, "percentage": 0.7, "elapsed_time": "0:01:02", "remaining_time": "2:27:44", "throughput": 2447.2, "total_tokens": 153632}
|
| 52 |
+
{"current_steps": 260, "total_steps": 36260, "loss": 0.1999, "lr": 3.5714285714285714e-06, "epoch": 0.07170435741864313, "percentage": 0.72, "elapsed_time": "0:01:03", "remaining_time": "2:27:21", "throughput": 2446.0, "total_tokens": 156192}
|
| 53 |
+
{"current_steps": 265, "total_steps": 36260, "loss": 0.2638, "lr": 3.640375068946498e-06, "epoch": 0.07308328736900166, "percentage": 0.73, "elapsed_time": "0:01:05", "remaining_time": "2:28:01", "throughput": 2452.48, "total_tokens": 160352}
|
| 54 |
+
{"current_steps": 270, "total_steps": 36260, "loss": 0.0676, "lr": 3.709321566464424e-06, "epoch": 0.07446221731936017, "percentage": 0.74, "elapsed_time": "0:01:06", "remaining_time": "2:28:12", "throughput": 2455.09, "total_tokens": 163776}
|
| 55 |
+
{"current_steps": 275, "total_steps": 36260, "loss": 0.1888, "lr": 3.77826806398235e-06, "epoch": 0.0758411472697187, "percentage": 0.76, "elapsed_time": "0:01:08", "remaining_time": "2:28:36", "throughput": 2455.59, "total_tokens": 167328}
|
| 56 |
+
{"current_steps": 280, "total_steps": 36260, "loss": 0.3264, "lr": 3.847214561500275e-06, "epoch": 0.07722007722007722, "percentage": 0.77, "elapsed_time": "0:01:09", "remaining_time": "2:28:30", "throughput": 2456.54, "total_tokens": 170336}
|
| 57 |
+
{"current_steps": 285, "total_steps": 36260, "loss": 0.1758, "lr": 3.916161059018202e-06, "epoch": 0.07859900717043575, "percentage": 0.79, "elapsed_time": "0:01:10", "remaining_time": "2:28:11", "throughput": 2457.33, "total_tokens": 173088}
|
| 58 |
+
{"current_steps": 290, "total_steps": 36260, "loss": 0.3236, "lr": 3.985107556536128e-06, "epoch": 0.07997793712079426, "percentage": 0.8, "elapsed_time": "0:01:11", "remaining_time": "2:28:39", "throughput": 2461.21, "total_tokens": 176992}
|
| 59 |
+
{"current_steps": 295, "total_steps": 36260, "loss": 0.0426, "lr": 4.0540540540540545e-06, "epoch": 0.08135686707115279, "percentage": 0.81, "elapsed_time": "0:01:13", "remaining_time": "2:28:27", "throughput": 2463.3, "total_tokens": 179968}
|
| 60 |
+
{"current_steps": 300, "total_steps": 36260, "loss": 0.3515, "lr": 4.12300055157198e-06, "epoch": 0.0827357970215113, "percentage": 0.83, "elapsed_time": "0:01:14", "remaining_time": "2:28:44", "throughput": 2466.2, "total_tokens": 183616}
|
| 61 |
+
{"current_steps": 305, "total_steps": 36260, "loss": 0.2225, "lr": 4.191947049089907e-06, "epoch": 0.08411472697186984, "percentage": 0.84, "elapsed_time": "0:01:15", "remaining_time": "2:28:35", "throughput": 2463.82, "total_tokens": 186336}
|
| 62 |
+
{"current_steps": 310, "total_steps": 36260, "loss": 0.0901, "lr": 4.260893546607833e-06, "epoch": 0.08549365692222835, "percentage": 0.85, "elapsed_time": "0:01:16", "remaining_time": "2:28:34", "throughput": 2465.16, "total_tokens": 189504}
|
| 63 |
+
{"current_steps": 315, "total_steps": 36260, "loss": 0.1338, "lr": 4.329840044125759e-06, "epoch": 0.08687258687258688, "percentage": 0.87, "elapsed_time": "0:01:17", "remaining_time": "2:28:14", "throughput": 2462.42, "total_tokens": 191936}
|
| 64 |
+
{"current_steps": 320, "total_steps": 36260, "loss": 0.3522, "lr": 4.398786541643684e-06, "epoch": 0.0882515168229454, "percentage": 0.88, "elapsed_time": "0:01:19", "remaining_time": "2:28:06", "throughput": 2463.45, "total_tokens": 194912}
|
| 65 |
+
{"current_steps": 325, "total_steps": 36260, "loss": 0.1393, "lr": 4.467733039161611e-06, "epoch": 0.08963044677330391, "percentage": 0.9, "elapsed_time": "0:01:20", "remaining_time": "2:27:58", "throughput": 2463.74, "total_tokens": 197824}
|
| 66 |
+
{"current_steps": 330, "total_steps": 36260, "loss": 0.1981, "lr": 4.536679536679537e-06, "epoch": 0.09100937672366244, "percentage": 0.91, "elapsed_time": "0:01:21", "remaining_time": "2:28:08", "throughput": 2466.26, "total_tokens": 201344}
|
| 67 |
+
{"current_steps": 335, "total_steps": 36260, "loss": 0.1377, "lr": 4.6056260341974635e-06, "epoch": 0.09238830667402095, "percentage": 0.92, "elapsed_time": "0:01:22", "remaining_time": "2:28:13", "throughput": 2466.87, "total_tokens": 204576}
|
| 68 |
+
{"current_steps": 340, "total_steps": 36260, "loss": 0.1207, "lr": 4.674572531715389e-06, "epoch": 0.09376723662437948, "percentage": 0.94, "elapsed_time": "0:01:24", "remaining_time": "2:27:58", "throughput": 2465.91, "total_tokens": 207232}
|
| 69 |
+
{"current_steps": 345, "total_steps": 36260, "loss": 0.2269, "lr": 4.743519029233315e-06, "epoch": 0.095146166574738, "percentage": 0.95, "elapsed_time": "0:01:25", "remaining_time": "2:28:02", "throughput": 2467.45, "total_tokens": 210528}
|
| 70 |
+
{"current_steps": 350, "total_steps": 36260, "loss": 0.0605, "lr": 4.812465526751241e-06, "epoch": 0.09652509652509653, "percentage": 0.97, "elapsed_time": "0:01:26", "remaining_time": "2:27:35", "throughput": 2464.49, "total_tokens": 212704}
|
| 71 |
+
{"current_steps": 355, "total_steps": 36260, "loss": 0.0962, "lr": 4.881412024269167e-06, "epoch": 0.09790402647545504, "percentage": 0.98, "elapsed_time": "0:01:27", "remaining_time": "2:27:32", "throughput": 2465.18, "total_tokens": 215776}
|
| 72 |
+
{"current_steps": 360, "total_steps": 36260, "loss": 0.088, "lr": 4.950358521787093e-06, "epoch": 0.09928295642581357, "percentage": 0.99, "elapsed_time": "0:01:28", "remaining_time": "2:27:18", "throughput": 2465.24, "total_tokens": 218496}
|
| 73 |
+
{"current_steps": 365, "total_steps": 36260, "loss": 0.1856, "lr": 5.019305019305019e-06, "epoch": 0.10066188637617209, "percentage": 1.01, "elapsed_time": "0:01:30", "remaining_time": "2:27:37", "throughput": 2467.37, "total_tokens": 222240}
|
| 74 |
+
{"current_steps": 370, "total_steps": 36260, "loss": 0.0668, "lr": 5.088251516822946e-06, "epoch": 0.10204081632653061, "percentage": 1.02, "elapsed_time": "0:01:31", "remaining_time": "2:27:32", "throughput": 2468.05, "total_tokens": 225248}
|
| 75 |
+
{"current_steps": 375, "total_steps": 36260, "loss": 0.0359, "lr": 5.157198014340872e-06, "epoch": 0.10341974627688913, "percentage": 1.03, "elapsed_time": "0:01:32", "remaining_time": "2:27:18", "throughput": 2467.17, "total_tokens": 227872}
|
| 76 |
+
{"current_steps": 380, "total_steps": 36260, "loss": 0.1299, "lr": 5.226144511858798e-06, "epoch": 0.10479867622724766, "percentage": 1.05, "elapsed_time": "0:01:33", "remaining_time": "2:27:06", "throughput": 2466.03, "total_tokens": 230528}
|
| 77 |
+
{"current_steps": 385, "total_steps": 36260, "loss": 0.2488, "lr": 5.295091009376723e-06, "epoch": 0.10617760617760617, "percentage": 1.06, "elapsed_time": "0:01:34", "remaining_time": "2:27:01", "throughput": 2465.84, "total_tokens": 233440}
|
| 78 |
+
{"current_steps": 390, "total_steps": 36260, "loss": 0.2388, "lr": 5.36403750689465e-06, "epoch": 0.1075565361279647, "percentage": 1.08, "elapsed_time": "0:01:36", "remaining_time": "2:27:22", "throughput": 2467.49, "total_tokens": 237216}
|
| 79 |
+
{"current_steps": 395, "total_steps": 36260, "loss": 0.1085, "lr": 5.432984004412576e-06, "epoch": 0.10893546607832322, "percentage": 1.09, "elapsed_time": "0:01:37", "remaining_time": "2:27:00", "throughput": 2463.65, "total_tokens": 239328}
|
| 80 |
+
{"current_steps": 400, "total_steps": 36260, "loss": 0.0505, "lr": 5.501930501930502e-06, "epoch": 0.11031439602868175, "percentage": 1.1, "elapsed_time": "0:01:38", "remaining_time": "2:26:43", "throughput": 2462.85, "total_tokens": 241856}
|
| 81 |
+
{"current_steps": 405, "total_steps": 36260, "loss": 0.0662, "lr": 5.570876999448428e-06, "epoch": 0.11169332597904026, "percentage": 1.12, "elapsed_time": "0:01:39", "remaining_time": "2:26:30", "throughput": 2461.7, "total_tokens": 244416}
|
| 82 |
+
{"current_steps": 410, "total_steps": 36260, "loss": 0.0659, "lr": 5.639823496966355e-06, "epoch": 0.11307225592939879, "percentage": 1.13, "elapsed_time": "0:01:40", "remaining_time": "2:26:22", "throughput": 2460.95, "total_tokens": 247168}
|
| 83 |
+
{"current_steps": 415, "total_steps": 36260, "loss": 0.2146, "lr": 5.708769994484281e-06, "epoch": 0.1144511858797573, "percentage": 1.14, "elapsed_time": "0:01:41", "remaining_time": "2:26:27", "throughput": 2462.87, "total_tokens": 250560}
|
| 84 |
+
{"current_steps": 420, "total_steps": 36260, "loss": 0.1969, "lr": 5.777716492002206e-06, "epoch": 0.11583011583011583, "percentage": 1.16, "elapsed_time": "0:01:42", "remaining_time": "2:26:24", "throughput": 2462.01, "total_tokens": 253440}
|
| 85 |
+
{"current_steps": 425, "total_steps": 36260, "loss": 0.079, "lr": 5.846662989520132e-06, "epoch": 0.11720904578047435, "percentage": 1.17, "elapsed_time": "0:01:44", "remaining_time": "2:26:13", "throughput": 2460.58, "total_tokens": 256032}
|
| 86 |
+
{"current_steps": 430, "total_steps": 36260, "loss": 0.1566, "lr": 5.915609487038059e-06, "epoch": 0.11858797573083288, "percentage": 1.19, "elapsed_time": "0:01:45", "remaining_time": "2:26:19", "throughput": 2462.1, "total_tokens": 259424}
|
| 87 |
+
{"current_steps": 435, "total_steps": 36260, "loss": 0.1678, "lr": 5.984555984555985e-06, "epoch": 0.1199669056811914, "percentage": 1.2, "elapsed_time": "0:01:46", "remaining_time": "2:26:27", "throughput": 2462.24, "total_tokens": 262720}
|
| 88 |
+
{"current_steps": 440, "total_steps": 36260, "loss": 0.1697, "lr": 6.053502482073911e-06, "epoch": 0.12134583563154992, "percentage": 1.21, "elapsed_time": "0:01:47", "remaining_time": "2:26:16", "throughput": 2460.05, "total_tokens": 265216}
|
| 89 |
+
{"current_steps": 445, "total_steps": 36260, "loss": 0.0977, "lr": 6.122448979591837e-06, "epoch": 0.12272476558190844, "percentage": 1.23, "elapsed_time": "0:01:48", "remaining_time": "2:26:07", "throughput": 2458.48, "total_tokens": 267808}
|
| 90 |
+
{"current_steps": 450, "total_steps": 36260, "loss": 0.2573, "lr": 6.191395477109764e-06, "epoch": 0.12410369553226697, "percentage": 1.24, "elapsed_time": "0:01:50", "remaining_time": "2:26:09", "throughput": 2457.71, "total_tokens": 270848}
|
| 91 |
+
{"current_steps": 455, "total_steps": 36260, "loss": 0.1549, "lr": 6.2603419746276896e-06, "epoch": 0.12548262548262548, "percentage": 1.25, "elapsed_time": "0:01:51", "remaining_time": "2:26:05", "throughput": 2457.66, "total_tokens": 273760}
|
| 92 |
+
{"current_steps": 460, "total_steps": 36260, "loss": 0.3127, "lr": 6.329288472145615e-06, "epoch": 0.126861555432984, "percentage": 1.27, "elapsed_time": "0:01:52", "remaining_time": "2:25:59", "throughput": 2456.89, "total_tokens": 276544}
|
| 93 |
+
{"current_steps": 465, "total_steps": 36260, "loss": 0.1809, "lr": 6.398234969663541e-06, "epoch": 0.12824048538334254, "percentage": 1.28, "elapsed_time": "0:01:53", "remaining_time": "2:25:47", "throughput": 2455.98, "total_tokens": 279072}
|
| 94 |
+
{"current_steps": 470, "total_steps": 36260, "loss": 0.1863, "lr": 6.467181467181467e-06, "epoch": 0.12961941533370105, "percentage": 1.3, "elapsed_time": "0:01:55", "remaining_time": "2:26:26", "throughput": 2458.32, "total_tokens": 283648}
|
| 95 |
+
{"current_steps": 475, "total_steps": 36260, "loss": 0.0864, "lr": 6.5361279646993945e-06, "epoch": 0.13099834528405957, "percentage": 1.31, "elapsed_time": "0:01:56", "remaining_time": "2:26:22", "throughput": 2458.98, "total_tokens": 286656}
|
| 96 |
+
{"current_steps": 480, "total_steps": 36260, "loss": 0.1479, "lr": 6.60507446221732e-06, "epoch": 0.13237727523441808, "percentage": 1.32, "elapsed_time": "0:01:57", "remaining_time": "2:26:14", "throughput": 2457.46, "total_tokens": 289280}
|
| 97 |
+
{"current_steps": 485, "total_steps": 36260, "loss": 0.2347, "lr": 6.674020959735246e-06, "epoch": 0.1337562051847766, "percentage": 1.34, "elapsed_time": "0:01:58", "remaining_time": "2:25:59", "throughput": 2456.91, "total_tokens": 291776}
|
| 98 |
+
{"current_steps": 490, "total_steps": 36260, "loss": 0.0784, "lr": 6.742967457253172e-06, "epoch": 0.13513513513513514, "percentage": 1.35, "elapsed_time": "0:01:59", "remaining_time": "2:25:42", "throughput": 2455.14, "total_tokens": 294016}
|
| 99 |
+
{"current_steps": 495, "total_steps": 36260, "loss": 0.1207, "lr": 6.8119139547710985e-06, "epoch": 0.13651406508549366, "percentage": 1.37, "elapsed_time": "0:02:00", "remaining_time": "2:25:28", "throughput": 2453.63, "total_tokens": 296416}
|
| 100 |
+
{"current_steps": 500, "total_steps": 36260, "loss": 0.1375, "lr": 6.880860452289024e-06, "epoch": 0.13789299503585217, "percentage": 1.38, "elapsed_time": "0:02:02", "remaining_time": "2:25:36", "throughput": 2456.55, "total_tokens": 300096}
|
| 101 |
+
{"current_steps": 505, "total_steps": 36260, "loss": 0.1348, "lr": 6.94980694980695e-06, "epoch": 0.1392719249862107, "percentage": 1.39, "elapsed_time": "0:02:03", "remaining_time": "2:25:36", "throughput": 2455.91, "total_tokens": 303040}
|
| 102 |
+
{"current_steps": 510, "total_steps": 36260, "loss": 0.3134, "lr": 7.018753447324876e-06, "epoch": 0.14065085493656923, "percentage": 1.41, "elapsed_time": "0:02:04", "remaining_time": "2:25:45", "throughput": 2456.47, "total_tokens": 306464}
|
| 103 |
+
{"current_steps": 515, "total_steps": 36260, "loss": 0.1024, "lr": 7.087699944842802e-06, "epoch": 0.14202978488692775, "percentage": 1.42, "elapsed_time": "0:02:06", "remaining_time": "2:25:46", "throughput": 2455.94, "total_tokens": 309472}
|
| 104 |
+
{"current_steps": 520, "total_steps": 36260, "loss": 0.0612, "lr": 7.156646442360728e-06, "epoch": 0.14340871483728626, "percentage": 1.43, "elapsed_time": "0:02:07", "remaining_time": "2:25:55", "throughput": 2457.28, "total_tokens": 313024}
|
| 105 |
+
{"current_steps": 525, "total_steps": 36260, "loss": 0.1524, "lr": 7.225592939878654e-06, "epoch": 0.14478764478764478, "percentage": 1.45, "elapsed_time": "0:02:08", "remaining_time": "2:25:52", "throughput": 2457.13, "total_tokens": 315968}
|
| 106 |
+
{"current_steps": 530, "total_steps": 36260, "loss": 0.0898, "lr": 7.29453943739658e-06, "epoch": 0.14616657473800332, "percentage": 1.46, "elapsed_time": "0:02:09", "remaining_time": "2:25:53", "throughput": 2457.76, "total_tokens": 319136}
|
| 107 |
+
{"current_steps": 535, "total_steps": 36260, "loss": 0.3482, "lr": 7.363485934914506e-06, "epoch": 0.14754550468836183, "percentage": 1.48, "elapsed_time": "0:02:11", "remaining_time": "2:26:02", "throughput": 2459.92, "total_tokens": 322816}
|
| 108 |
+
{"current_steps": 540, "total_steps": 36260, "loss": 0.1018, "lr": 7.432432432432433e-06, "epoch": 0.14892443463872035, "percentage": 1.49, "elapsed_time": "0:02:12", "remaining_time": "2:25:56", "throughput": 2459.06, "total_tokens": 325536}
|
| 109 |
+
{"current_steps": 545, "total_steps": 36260, "loss": 0.1982, "lr": 7.501378929950359e-06, "epoch": 0.15030336458907886, "percentage": 1.5, "elapsed_time": "0:02:13", "remaining_time": "2:25:53", "throughput": 2458.32, "total_tokens": 328384}
|
| 110 |
+
{"current_steps": 550, "total_steps": 36260, "loss": 0.0413, "lr": 7.570325427468285e-06, "epoch": 0.1516822945394374, "percentage": 1.52, "elapsed_time": "0:02:14", "remaining_time": "2:26:01", "throughput": 2460.2, "total_tokens": 332000}
|
| 111 |
+
{"current_steps": 555, "total_steps": 36260, "loss": 0.0576, "lr": 7.63927192498621e-06, "epoch": 0.15306122448979592, "percentage": 1.53, "elapsed_time": "0:02:16", "remaining_time": "2:25:54", "throughput": 2460.1, "total_tokens": 334752}
|
| 112 |
+
{"current_steps": 560, "total_steps": 36260, "loss": 0.2015, "lr": 7.708218422504138e-06, "epoch": 0.15444015444015444, "percentage": 1.54, "elapsed_time": "0:02:17", "remaining_time": "2:25:51", "throughput": 2460.73, "total_tokens": 337792}
|
| 113 |
+
{"current_steps": 565, "total_steps": 36260, "loss": 0.1955, "lr": 7.777164920022063e-06, "epoch": 0.15581908439051295, "percentage": 1.56, "elapsed_time": "0:02:18", "remaining_time": "2:25:38", "throughput": 2459.14, "total_tokens": 340128}
|
| 114 |
+
{"current_steps": 570, "total_steps": 36260, "loss": 0.1704, "lr": 7.84611141753999e-06, "epoch": 0.1571980143408715, "percentage": 1.57, "elapsed_time": "0:02:19", "remaining_time": "2:25:31", "throughput": 2458.69, "total_tokens": 342880}
|
| 115 |
+
{"current_steps": 575, "total_steps": 36260, "loss": 0.1103, "lr": 7.915057915057915e-06, "epoch": 0.15857694429123, "percentage": 1.59, "elapsed_time": "0:02:20", "remaining_time": "2:25:30", "throughput": 2458.33, "total_tokens": 345824}
|
| 116 |
+
{"current_steps": 580, "total_steps": 36260, "loss": 0.1035, "lr": 7.984004412575841e-06, "epoch": 0.15995587424158852, "percentage": 1.6, "elapsed_time": "0:02:21", "remaining_time": "2:25:16", "throughput": 2456.9, "total_tokens": 348128}
|
| 117 |
+
{"current_steps": 585, "total_steps": 36260, "loss": 0.1242, "lr": 8.052950910093768e-06, "epoch": 0.16133480419194704, "percentage": 1.61, "elapsed_time": "0:02:22", "remaining_time": "2:25:12", "throughput": 2456.72, "total_tokens": 350976}
|
| 118 |
+
{"current_steps": 590, "total_steps": 36260, "loss": 0.0733, "lr": 8.121897407611693e-06, "epoch": 0.16271373414230558, "percentage": 1.63, "elapsed_time": "0:02:24", "remaining_time": "2:25:12", "throughput": 2456.47, "total_tokens": 353984}
|
| 119 |
+
{"current_steps": 595, "total_steps": 36260, "loss": 0.2745, "lr": 8.19084390512962e-06, "epoch": 0.1640926640926641, "percentage": 1.64, "elapsed_time": "0:02:25", "remaining_time": "2:25:02", "throughput": 2456.26, "total_tokens": 356608}
|
| 120 |
+
{"current_steps": 600, "total_steps": 36260, "loss": 0.1379, "lr": 8.259790402647546e-06, "epoch": 0.1654715940430226, "percentage": 1.65, "elapsed_time": "0:02:26", "remaining_time": "2:24:55", "throughput": 2456.19, "total_tokens": 359360}
|
| 121 |
+
{"current_steps": 605, "total_steps": 36260, "loss": 0.0612, "lr": 8.328736900165473e-06, "epoch": 0.16685052399338113, "percentage": 1.67, "elapsed_time": "0:02:27", "remaining_time": "2:24:46", "throughput": 2453.95, "total_tokens": 361696}
|
| 122 |
+
{"current_steps": 610, "total_steps": 36260, "loss": 0.3031, "lr": 8.397683397683398e-06, "epoch": 0.16822945394373967, "percentage": 1.68, "elapsed_time": "0:02:28", "remaining_time": "2:24:45", "throughput": 2453.48, "total_tokens": 364640}
|
| 123 |
+
{"current_steps": 615, "total_steps": 36260, "loss": 0.2168, "lr": 8.466629895201323e-06, "epoch": 0.16960838389409819, "percentage": 1.7, "elapsed_time": "0:02:29", "remaining_time": "2:24:43", "throughput": 2452.52, "total_tokens": 367424}
|
| 124 |
+
{"current_steps": 620, "total_steps": 36260, "loss": 0.1513, "lr": 8.535576392719251e-06, "epoch": 0.1709873138444567, "percentage": 1.71, "elapsed_time": "0:02:30", "remaining_time": "2:24:37", "throughput": 2451.96, "total_tokens": 370144}
|
| 125 |
+
{"current_steps": 625, "total_steps": 36260, "loss": 0.1476, "lr": 8.604522890237176e-06, "epoch": 0.17236624379481522, "percentage": 1.72, "elapsed_time": "0:02:32", "remaining_time": "2:24:31", "throughput": 2452.26, "total_tokens": 372960}
|
| 126 |
+
{"current_steps": 630, "total_steps": 36260, "loss": 0.0805, "lr": 8.673469387755103e-06, "epoch": 0.17374517374517376, "percentage": 1.74, "elapsed_time": "0:02:33", "remaining_time": "2:24:23", "throughput": 2451.84, "total_tokens": 375584}
|
| 127 |
+
{"current_steps": 635, "total_steps": 36260, "loss": 0.0878, "lr": 8.742415885273028e-06, "epoch": 0.17512410369553227, "percentage": 1.75, "elapsed_time": "0:02:34", "remaining_time": "2:24:17", "throughput": 2451.76, "total_tokens": 378368}
|
| 128 |
+
{"current_steps": 640, "total_steps": 36260, "loss": 0.2009, "lr": 8.811362382790954e-06, "epoch": 0.1765030336458908, "percentage": 1.77, "elapsed_time": "0:02:35", "remaining_time": "2:24:17", "throughput": 2451.82, "total_tokens": 381408}
|
| 129 |
+
{"current_steps": 645, "total_steps": 36260, "loss": 0.2805, "lr": 8.880308880308881e-06, "epoch": 0.1778819635962493, "percentage": 1.78, "elapsed_time": "0:02:36", "remaining_time": "2:24:25", "throughput": 2454.0, "total_tokens": 385120}
|
| 130 |
+
{"current_steps": 650, "total_steps": 36260, "loss": 0.077, "lr": 8.949255377826806e-06, "epoch": 0.17926089354660782, "percentage": 1.79, "elapsed_time": "0:02:38", "remaining_time": "2:24:35", "throughput": 2454.69, "total_tokens": 388736}
|
| 131 |
+
{"current_steps": 655, "total_steps": 36260, "loss": 0.0423, "lr": 9.018201875344733e-06, "epoch": 0.18063982349696636, "percentage": 1.81, "elapsed_time": "0:02:39", "remaining_time": "2:24:28", "throughput": 2453.66, "total_tokens": 391296}
|
| 132 |
+
{"current_steps": 660, "total_steps": 36260, "loss": 0.1452, "lr": 9.08714837286266e-06, "epoch": 0.18201875344732488, "percentage": 1.82, "elapsed_time": "0:02:40", "remaining_time": "2:24:31", "throughput": 2453.69, "total_tokens": 394464}
|
| 133 |
+
{"current_steps": 665, "total_steps": 36260, "loss": 0.1126, "lr": 9.156094870380586e-06, "epoch": 0.1833976833976834, "percentage": 1.83, "elapsed_time": "0:02:42", "remaining_time": "2:24:34", "throughput": 2454.3, "total_tokens": 397728}
|
| 134 |
+
{"current_steps": 670, "total_steps": 36260, "loss": 0.1552, "lr": 9.225041367898511e-06, "epoch": 0.1847766133480419, "percentage": 1.85, "elapsed_time": "0:02:43", "remaining_time": "2:24:26", "throughput": 2453.58, "total_tokens": 400288}
|
| 135 |
+
{"current_steps": 675, "total_steps": 36260, "loss": 0.1061, "lr": 9.293987865416438e-06, "epoch": 0.18615554329840045, "percentage": 1.86, "elapsed_time": "0:02:44", "remaining_time": "2:24:28", "throughput": 2454.32, "total_tokens": 403552}
|
| 136 |
+
{"current_steps": 680, "total_steps": 36260, "loss": 0.1482, "lr": 9.362934362934363e-06, "epoch": 0.18753447324875896, "percentage": 1.88, "elapsed_time": "0:02:45", "remaining_time": "2:24:22", "throughput": 2454.4, "total_tokens": 406336}
|
| 137 |
+
{"current_steps": 685, "total_steps": 36260, "loss": 0.1531, "lr": 9.43188086045229e-06, "epoch": 0.18891340319911748, "percentage": 1.89, "elapsed_time": "0:02:46", "remaining_time": "2:24:22", "throughput": 2454.19, "total_tokens": 409376}
|
| 138 |
+
{"current_steps": 690, "total_steps": 36260, "loss": 0.0885, "lr": 9.500827357970216e-06, "epoch": 0.190292333149476, "percentage": 1.9, "elapsed_time": "0:02:47", "remaining_time": "2:24:19", "throughput": 2454.47, "total_tokens": 412288}
|
| 139 |
+
{"current_steps": 695, "total_steps": 36260, "loss": 0.0576, "lr": 9.56977385548814e-06, "epoch": 0.19167126309983454, "percentage": 1.92, "elapsed_time": "0:02:49", "remaining_time": "2:24:34", "throughput": 2455.64, "total_tokens": 416256}
|
| 140 |
+
{"current_steps": 700, "total_steps": 36260, "loss": 0.2956, "lr": 9.638720353006067e-06, "epoch": 0.19305019305019305, "percentage": 1.93, "elapsed_time": "0:02:50", "remaining_time": "2:24:26", "throughput": 2455.56, "total_tokens": 418912}
|
| 141 |
+
{"current_steps": 705, "total_steps": 36260, "loss": 0.1216, "lr": 9.707666850523994e-06, "epoch": 0.19442912300055157, "percentage": 1.94, "elapsed_time": "0:02:51", "remaining_time": "2:24:21", "throughput": 2456.58, "total_tokens": 421920}
|
| 142 |
+
{"current_steps": 710, "total_steps": 36260, "loss": 0.0975, "lr": 9.77661334804192e-06, "epoch": 0.19580805295091008, "percentage": 1.96, "elapsed_time": "0:02:52", "remaining_time": "2:24:08", "throughput": 2454.72, "total_tokens": 424000}
|
| 143 |
+
{"current_steps": 715, "total_steps": 36260, "loss": 0.2162, "lr": 9.845559845559846e-06, "epoch": 0.19718698290126863, "percentage": 1.97, "elapsed_time": "0:02:53", "remaining_time": "2:24:03", "throughput": 2454.25, "total_tokens": 426720}
|
| 144 |
+
{"current_steps": 720, "total_steps": 36260, "loss": 0.0845, "lr": 9.914506343077772e-06, "epoch": 0.19856591285162714, "percentage": 1.99, "elapsed_time": "0:02:55", "remaining_time": "2:24:03", "throughput": 2454.94, "total_tokens": 429856}
|
| 145 |
+
{"current_steps": 725, "total_steps": 36260, "loss": 0.1461, "lr": 9.983452840595699e-06, "epoch": 0.19994484280198566, "percentage": 2.0, "elapsed_time": "0:02:56", "remaining_time": "2:24:06", "throughput": 2455.49, "total_tokens": 433184}
|
| 146 |
+
{"current_steps": 730, "total_steps": 36260, "loss": 0.2545, "lr": 1.0052399338113624e-05, "epoch": 0.20132377275234417, "percentage": 2.01, "elapsed_time": "0:02:57", "remaining_time": "2:24:12", "throughput": 2456.28, "total_tokens": 436640}
|
| 147 |
+
{"current_steps": 735, "total_steps": 36260, "loss": 0.1301, "lr": 1.012134583563155e-05, "epoch": 0.20270270270270271, "percentage": 2.03, "elapsed_time": "0:02:59", "remaining_time": "2:24:21", "throughput": 2458.05, "total_tokens": 440512}
|
| 148 |
+
{"current_steps": 740, "total_steps": 36260, "loss": 0.1534, "lr": 1.0190292333149476e-05, "epoch": 0.20408163265306123, "percentage": 2.04, "elapsed_time": "0:03:00", "remaining_time": "2:24:27", "throughput": 2459.14, "total_tokens": 444032}
|
| 149 |
+
{"current_steps": 745, "total_steps": 36260, "loss": 0.1086, "lr": 1.0259238830667404e-05, "epoch": 0.20546056260341974, "percentage": 2.05, "elapsed_time": "0:03:01", "remaining_time": "2:24:28", "throughput": 2459.07, "total_tokens": 447136}
|
| 150 |
+
{"current_steps": 750, "total_steps": 36260, "loss": 0.1734, "lr": 1.0328185328185329e-05, "epoch": 0.20683949255377826, "percentage": 2.07, "elapsed_time": "0:03:02", "remaining_time": "2:24:21", "throughput": 2458.24, "total_tokens": 449728}
|
| 151 |
+
{"current_steps": 755, "total_steps": 36260, "loss": 0.1162, "lr": 1.0397131825703254e-05, "epoch": 0.2082184225041368, "percentage": 2.08, "elapsed_time": "0:03:04", "remaining_time": "2:24:25", "throughput": 2459.57, "total_tokens": 453216}
|
| 152 |
+
{"current_steps": 760, "total_steps": 36260, "loss": 0.1742, "lr": 1.046607832322118e-05, "epoch": 0.20959735245449532, "percentage": 2.1, "elapsed_time": "0:03:05", "remaining_time": "2:24:18", "throughput": 2459.72, "total_tokens": 455968}
|
| 153 |
+
{"current_steps": 765, "total_steps": 36260, "loss": 0.0803, "lr": 1.0535024820739107e-05, "epoch": 0.21097628240485383, "percentage": 2.11, "elapsed_time": "0:03:06", "remaining_time": "2:24:08", "throughput": 2458.14, "total_tokens": 458176}
|
| 154 |
+
{"current_steps": 770, "total_steps": 36260, "loss": 0.11, "lr": 1.0603971318257034e-05, "epoch": 0.21235521235521235, "percentage": 2.12, "elapsed_time": "0:03:07", "remaining_time": "2:24:05", "throughput": 2459.26, "total_tokens": 461280}
|
| 155 |
+
{"current_steps": 775, "total_steps": 36260, "loss": 0.1382, "lr": 1.0672917815774959e-05, "epoch": 0.2137341423055709, "percentage": 2.14, "elapsed_time": "0:03:09", "remaining_time": "2:24:20", "throughput": 2459.98, "total_tokens": 465312}
|
| 156 |
+
{"current_steps": 780, "total_steps": 36260, "loss": 0.2158, "lr": 1.0741864313292885e-05, "epoch": 0.2151130722559294, "percentage": 2.15, "elapsed_time": "0:03:10", "remaining_time": "2:24:29", "throughput": 2461.35, "total_tokens": 469088}
|
| 157 |
+
{"current_steps": 785, "total_steps": 36260, "loss": 0.0473, "lr": 1.0810810810810812e-05, "epoch": 0.21649200220628792, "percentage": 2.16, "elapsed_time": "0:03:11", "remaining_time": "2:24:30", "throughput": 2461.75, "total_tokens": 472320}
|
| 158 |
+
{"current_steps": 790, "total_steps": 36260, "loss": 0.0865, "lr": 1.0879757308328737e-05, "epoch": 0.21787093215664644, "percentage": 2.18, "elapsed_time": "0:03:12", "remaining_time": "2:24:24", "throughput": 2461.55, "total_tokens": 475040}
|
| 159 |
+
{"current_steps": 795, "total_steps": 36260, "loss": 0.0691, "lr": 1.0948703805846664e-05, "epoch": 0.21924986210700498, "percentage": 2.19, "elapsed_time": "0:03:14", "remaining_time": "2:24:16", "throughput": 2460.51, "total_tokens": 477440}
|
| 160 |
+
{"current_steps": 800, "total_steps": 36260, "loss": 0.1587, "lr": 1.1017650303364589e-05, "epoch": 0.2206287920573635, "percentage": 2.21, "elapsed_time": "0:03:15", "remaining_time": "2:24:25", "throughput": 2461.42, "total_tokens": 481216}
|
| 161 |
+
{"current_steps": 805, "total_steps": 36260, "loss": 0.0477, "lr": 1.1086596800882517e-05, "epoch": 0.222007722007722, "percentage": 2.22, "elapsed_time": "0:03:16", "remaining_time": "2:24:30", "throughput": 2461.64, "total_tokens": 484608}
|
| 162 |
+
{"current_steps": 810, "total_steps": 36260, "loss": 0.0163, "lr": 1.1155543298400442e-05, "epoch": 0.22338665195808052, "percentage": 2.23, "elapsed_time": "0:03:18", "remaining_time": "2:24:28", "throughput": 2462.48, "total_tokens": 487712}
|
| 163 |
+
{"current_steps": 815, "total_steps": 36260, "loss": 0.1218, "lr": 1.1224489795918369e-05, "epoch": 0.22476558190843904, "percentage": 2.25, "elapsed_time": "0:03:19", "remaining_time": "2:24:29", "throughput": 2462.03, "total_tokens": 490784}
|
| 164 |
+
{"current_steps": 820, "total_steps": 36260, "loss": 0.2492, "lr": 1.1293436293436294e-05, "epoch": 0.22614451185879758, "percentage": 2.26, "elapsed_time": "0:03:20", "remaining_time": "2:24:22", "throughput": 2461.93, "total_tokens": 493472}
|
| 165 |
+
{"current_steps": 825, "total_steps": 36260, "loss": 0.0771, "lr": 1.136238279095422e-05, "epoch": 0.2275234418091561, "percentage": 2.28, "elapsed_time": "0:03:21", "remaining_time": "2:24:26", "throughput": 2461.92, "total_tokens": 496768}
|
| 166 |
+
{"current_steps": 830, "total_steps": 36260, "loss": 0.2474, "lr": 1.1431329288472147e-05, "epoch": 0.2289023717595146, "percentage": 2.29, "elapsed_time": "0:03:22", "remaining_time": "2:24:23", "throughput": 2461.67, "total_tokens": 499616}
|
| 167 |
+
{"current_steps": 835, "total_steps": 36260, "loss": 0.1169, "lr": 1.1500275785990072e-05, "epoch": 0.23028130170987313, "percentage": 2.3, "elapsed_time": "0:03:24", "remaining_time": "2:24:16", "throughput": 2460.91, "total_tokens": 502144}
|
| 168 |
+
{"current_steps": 840, "total_steps": 36260, "loss": 0.0383, "lr": 1.1569222283507998e-05, "epoch": 0.23166023166023167, "percentage": 2.32, "elapsed_time": "0:03:25", "remaining_time": "2:24:14", "throughput": 2461.46, "total_tokens": 505216}
|
| 169 |
+
{"current_steps": 845, "total_steps": 36260, "loss": 0.0655, "lr": 1.1638168781025923e-05, "epoch": 0.23303916161059018, "percentage": 2.33, "elapsed_time": "0:03:26", "remaining_time": "2:24:12", "throughput": 2460.86, "total_tokens": 508032}
|
| 170 |
+
{"current_steps": 850, "total_steps": 36260, "loss": 0.0876, "lr": 1.1707115278543852e-05, "epoch": 0.2344180915609487, "percentage": 2.34, "elapsed_time": "0:03:27", "remaining_time": "2:24:13", "throughput": 2461.42, "total_tokens": 511264}
|
| 171 |
+
{"current_steps": 855, "total_steps": 36260, "loss": 0.0729, "lr": 1.1776061776061777e-05, "epoch": 0.23579702151130721, "percentage": 2.36, "elapsed_time": "0:03:29", "remaining_time": "2:24:38", "throughput": 2463.99, "total_tokens": 516384}
|
| 172 |
+
{"current_steps": 860, "total_steps": 36260, "loss": 0.037, "lr": 1.1845008273579702e-05, "epoch": 0.23717595146166576, "percentage": 2.37, "elapsed_time": "0:03:30", "remaining_time": "2:24:42", "throughput": 2464.72, "total_tokens": 519872}
|
| 173 |
+
{"current_steps": 865, "total_steps": 36260, "loss": 0.0903, "lr": 1.1913954771097628e-05, "epoch": 0.23855488141202427, "percentage": 2.39, "elapsed_time": "0:03:32", "remaining_time": "2:24:41", "throughput": 2464.11, "total_tokens": 522816}
|
| 174 |
+
{"current_steps": 870, "total_steps": 36260, "loss": 0.2302, "lr": 1.1982901268615555e-05, "epoch": 0.2399338113623828, "percentage": 2.4, "elapsed_time": "0:03:33", "remaining_time": "2:24:45", "throughput": 2464.59, "total_tokens": 526240}
|
| 175 |
+
{"current_steps": 875, "total_steps": 36260, "loss": 0.3389, "lr": 1.2051847766133482e-05, "epoch": 0.2413127413127413, "percentage": 2.41, "elapsed_time": "0:03:34", "remaining_time": "2:24:39", "throughput": 2464.59, "total_tokens": 528960}
|
| 176 |
+
{"current_steps": 880, "total_steps": 36260, "loss": 0.0851, "lr": 1.2120794263651407e-05, "epoch": 0.24269167126309985, "percentage": 2.43, "elapsed_time": "0:03:35", "remaining_time": "2:24:44", "throughput": 2465.52, "total_tokens": 532544}
|
| 177 |
+
{"current_steps": 885, "total_steps": 36260, "loss": 0.0875, "lr": 1.2189740761169333e-05, "epoch": 0.24407060121345836, "percentage": 2.44, "elapsed_time": "0:03:37", "remaining_time": "2:24:40", "throughput": 2465.13, "total_tokens": 535328}
|
| 178 |
+
{"current_steps": 890, "total_steps": 36260, "loss": 0.1118, "lr": 1.225868725868726e-05, "epoch": 0.24544953116381688, "percentage": 2.45, "elapsed_time": "0:03:38", "remaining_time": "2:24:36", "throughput": 2464.59, "total_tokens": 538048}
|
| 179 |
+
{"current_steps": 895, "total_steps": 36260, "loss": 0.0619, "lr": 1.2327633756205185e-05, "epoch": 0.2468284611141754, "percentage": 2.47, "elapsed_time": "0:03:39", "remaining_time": "2:24:31", "throughput": 2464.32, "total_tokens": 540832}
|
| 180 |
+
{"current_steps": 900, "total_steps": 36260, "loss": 0.0613, "lr": 1.2396580253723111e-05, "epoch": 0.24820739106453393, "percentage": 2.48, "elapsed_time": "0:03:41", "remaining_time": "2:24:50", "throughput": 2466.77, "total_tokens": 545632}
|
| 181 |
+
{"current_steps": 905, "total_steps": 36260, "loss": 0.1849, "lr": 1.2465526751241036e-05, "epoch": 0.24958632101489245, "percentage": 2.5, "elapsed_time": "0:03:42", "remaining_time": "2:24:41", "throughput": 2465.28, "total_tokens": 547840}
|
| 182 |
+
{"current_steps": 910, "total_steps": 36260, "loss": 0.2089, "lr": 1.2534473248758963e-05, "epoch": 0.25096525096525096, "percentage": 2.51, "elapsed_time": "0:03:43", "remaining_time": "2:24:30", "throughput": 2463.94, "total_tokens": 549952}
|
| 183 |
+
{"current_steps": 915, "total_steps": 36260, "loss": 0.1107, "lr": 1.260341974627689e-05, "epoch": 0.2523441809156095, "percentage": 2.52, "elapsed_time": "0:03:44", "remaining_time": "2:24:25", "throughput": 2464.21, "total_tokens": 552800}
|
| 184 |
+
{"current_steps": 920, "total_steps": 36260, "loss": 0.148, "lr": 1.2672366243794816e-05, "epoch": 0.253723110865968, "percentage": 2.54, "elapsed_time": "0:03:45", "remaining_time": "2:24:37", "throughput": 2465.24, "total_tokens": 556928}
|
| 185 |
+
{"current_steps": 925, "total_steps": 36260, "loss": 0.0527, "lr": 1.2741312741312741e-05, "epoch": 0.25510204081632654, "percentage": 2.55, "elapsed_time": "0:03:47", "remaining_time": "2:24:34", "throughput": 2464.97, "total_tokens": 559744}
|
| 186 |
+
{"current_steps": 930, "total_steps": 36260, "loss": 0.1174, "lr": 1.2810259238830668e-05, "epoch": 0.2564809707666851, "percentage": 2.56, "elapsed_time": "0:03:48", "remaining_time": "2:24:28", "throughput": 2464.06, "total_tokens": 562272}
|
| 187 |
+
{"current_steps": 935, "total_steps": 36260, "loss": 0.0961, "lr": 1.2879205736348593e-05, "epoch": 0.25785990071704357, "percentage": 2.58, "elapsed_time": "0:03:49", "remaining_time": "2:24:18", "throughput": 2463.17, "total_tokens": 564512}
|
| 188 |
+
{"current_steps": 940, "total_steps": 36260, "loss": 0.0335, "lr": 1.294815223386652e-05, "epoch": 0.2592388306674021, "percentage": 2.59, "elapsed_time": "0:03:50", "remaining_time": "2:24:21", "throughput": 2463.91, "total_tokens": 568000}
|
| 189 |
+
{"current_steps": 945, "total_steps": 36260, "loss": 0.0943, "lr": 1.3017098731384448e-05, "epoch": 0.2606177606177606, "percentage": 2.61, "elapsed_time": "0:03:53", "remaining_time": "2:25:11", "throughput": 2468.76, "total_tokens": 575520}
|
| 190 |
+
{"current_steps": 950, "total_steps": 36260, "loss": 0.0553, "lr": 1.3086045228902371e-05, "epoch": 0.26199669056811914, "percentage": 2.62, "elapsed_time": "0:03:54", "remaining_time": "2:25:13", "throughput": 2469.5, "total_tokens": 578944}
|
| 191 |
+
{"current_steps": 955, "total_steps": 36260, "loss": 0.0884, "lr": 1.31549917264203e-05, "epoch": 0.2633756205184777, "percentage": 2.63, "elapsed_time": "0:03:55", "remaining_time": "2:25:10", "throughput": 2469.64, "total_tokens": 581920}
|
| 192 |
+
{"current_steps": 960, "total_steps": 36260, "loss": 0.3079, "lr": 1.3223938223938226e-05, "epoch": 0.26475455046883617, "percentage": 2.65, "elapsed_time": "0:03:56", "remaining_time": "2:25:03", "throughput": 2468.66, "total_tokens": 584288}
|
| 193 |
+
{"current_steps": 965, "total_steps": 36260, "loss": 0.2113, "lr": 1.329288472145615e-05, "epoch": 0.2661334804191947, "percentage": 2.66, "elapsed_time": "0:03:58", "remaining_time": "2:25:11", "throughput": 2469.77, "total_tokens": 588256}
|
| 194 |
+
{"current_steps": 970, "total_steps": 36260, "loss": 0.0899, "lr": 1.3361831218974078e-05, "epoch": 0.2675124103695532, "percentage": 2.68, "elapsed_time": "0:03:59", "remaining_time": "2:25:07", "throughput": 2468.96, "total_tokens": 590912}
|
| 195 |
+
{"current_steps": 975, "total_steps": 36260, "loss": 0.0264, "lr": 1.3430777716492001e-05, "epoch": 0.26889134031991174, "percentage": 2.69, "elapsed_time": "0:04:00", "remaining_time": "2:25:05", "throughput": 2469.29, "total_tokens": 594016}
|
| 196 |
+
{"current_steps": 980, "total_steps": 36260, "loss": 0.0369, "lr": 1.349972421400993e-05, "epoch": 0.2702702702702703, "percentage": 2.7, "elapsed_time": "0:04:02", "remaining_time": "2:25:20", "throughput": 2471.02, "total_tokens": 598592}
|
| 197 |
+
{"current_steps": 985, "total_steps": 36260, "loss": 0.0794, "lr": 1.3568670711527856e-05, "epoch": 0.2716492002206288, "percentage": 2.72, "elapsed_time": "0:04:03", "remaining_time": "2:25:16", "throughput": 2470.46, "total_tokens": 601280}
|
| 198 |
+
{"current_steps": 990, "total_steps": 36260, "loss": 0.2106, "lr": 1.3637617209045781e-05, "epoch": 0.2730281301709873, "percentage": 2.73, "elapsed_time": "0:04:04", "remaining_time": "2:25:08", "throughput": 2469.84, "total_tokens": 603712}
|
| 199 |
+
{"current_steps": 995, "total_steps": 36260, "loss": 0.3632, "lr": 1.3706563706563708e-05, "epoch": 0.27440706012134586, "percentage": 2.74, "elapsed_time": "0:04:05", "remaining_time": "2:25:08", "throughput": 2470.93, "total_tokens": 607136}
|
| 200 |
+
{"current_steps": 1000, "total_steps": 36260, "loss": 0.104, "lr": 1.3775510204081633e-05, "epoch": 0.27578599007170435, "percentage": 2.76, "elapsed_time": "0:04:07", "remaining_time": "2:25:23", "throughput": 2472.22, "total_tokens": 611648}
|
| 201 |
+
{"current_steps": 1005, "total_steps": 36260, "loss": 0.1017, "lr": 1.384445670159956e-05, "epoch": 0.2771649200220629, "percentage": 2.77, "elapsed_time": "0:04:09", "remaining_time": "2:25:34", "throughput": 2473.37, "total_tokens": 615872}
|
| 202 |
+
{"current_steps": 1010, "total_steps": 36260, "loss": 0.0645, "lr": 1.3913403199117486e-05, "epoch": 0.2785438499724214, "percentage": 2.79, "elapsed_time": "0:04:10", "remaining_time": "2:25:31", "throughput": 2473.76, "total_tokens": 618880}
|
| 203 |
+
{"current_steps": 1015, "total_steps": 36260, "loss": 0.0939, "lr": 1.3982349696635411e-05, "epoch": 0.2799227799227799, "percentage": 2.8, "elapsed_time": "0:04:11", "remaining_time": "2:25:26", "throughput": 2473.37, "total_tokens": 621600}
|
| 204 |
+
{"current_steps": 1020, "total_steps": 36260, "loss": 0.0655, "lr": 1.4051296194153338e-05, "epoch": 0.28130170987313846, "percentage": 2.81, "elapsed_time": "0:04:12", "remaining_time": "2:25:24", "throughput": 2473.55, "total_tokens": 624640}
|
| 205 |
+
{"current_steps": 1025, "total_steps": 36260, "loss": 0.0496, "lr": 1.4120242691671264e-05, "epoch": 0.28268063982349695, "percentage": 2.83, "elapsed_time": "0:04:13", "remaining_time": "2:25:25", "throughput": 2473.52, "total_tokens": 627872}
|
| 206 |
+
{"current_steps": 1030, "total_steps": 36260, "loss": 0.1605, "lr": 1.4189189189189189e-05, "epoch": 0.2840595697738555, "percentage": 2.84, "elapsed_time": "0:04:14", "remaining_time": "2:25:21", "throughput": 2473.76, "total_tokens": 630752}
|
| 207 |
+
{"current_steps": 1035, "total_steps": 36260, "loss": 0.0605, "lr": 1.4258135686707116e-05, "epoch": 0.28543849972421403, "percentage": 2.85, "elapsed_time": "0:04:16", "remaining_time": "2:25:22", "throughput": 2474.41, "total_tokens": 634176}
|
| 208 |
+
{"current_steps": 1040, "total_steps": 36260, "loss": 0.3454, "lr": 1.432708218422504e-05, "epoch": 0.2868174296745725, "percentage": 2.87, "elapsed_time": "0:04:17", "remaining_time": "2:25:19", "throughput": 2474.26, "total_tokens": 637056}
|
| 209 |
+
{"current_steps": 1045, "total_steps": 36260, "loss": 0.1984, "lr": 1.4396028681742967e-05, "epoch": 0.28819635962493106, "percentage": 2.88, "elapsed_time": "0:04:18", "remaining_time": "2:25:15", "throughput": 2474.42, "total_tokens": 639936}
|
| 210 |
+
{"current_steps": 1050, "total_steps": 36260, "loss": 0.1364, "lr": 1.4464975179260896e-05, "epoch": 0.28957528957528955, "percentage": 2.9, "elapsed_time": "0:04:19", "remaining_time": "2:25:07", "throughput": 2474.04, "total_tokens": 642464}
|
| 211 |
+
{"current_steps": 1055, "total_steps": 36260, "loss": 0.1217, "lr": 1.4533921676778819e-05, "epoch": 0.2909542195256481, "percentage": 2.91, "elapsed_time": "0:04:20", "remaining_time": "2:25:04", "throughput": 2473.38, "total_tokens": 645184}
|
| 212 |
+
{"current_steps": 1060, "total_steps": 36260, "loss": 0.0617, "lr": 1.4602868174296747e-05, "epoch": 0.29233314947600664, "percentage": 2.92, "elapsed_time": "0:04:22", "remaining_time": "2:25:06", "throughput": 2473.4, "total_tokens": 648480}
|
| 213 |
+
{"current_steps": 1065, "total_steps": 36260, "loss": 0.1155, "lr": 1.4671814671814674e-05, "epoch": 0.2937120794263651, "percentage": 2.94, "elapsed_time": "0:04:23", "remaining_time": "2:25:06", "throughput": 2473.55, "total_tokens": 651680}
|
| 214 |
+
{"current_steps": 1070, "total_steps": 36260, "loss": 0.0829, "lr": 1.4740761169332597e-05, "epoch": 0.29509100937672367, "percentage": 2.95, "elapsed_time": "0:04:24", "remaining_time": "2:25:04", "throughput": 2473.8, "total_tokens": 654752}
|
| 215 |
+
{"current_steps": 1075, "total_steps": 36260, "loss": 0.1554, "lr": 1.4809707666850526e-05, "epoch": 0.2964699393270822, "percentage": 2.96, "elapsed_time": "0:04:25", "remaining_time": "2:25:03", "throughput": 2474.23, "total_tokens": 657952}
|
| 216 |
+
{"current_steps": 1080, "total_steps": 36260, "loss": 0.0438, "lr": 1.4878654164368449e-05, "epoch": 0.2978488692774407, "percentage": 2.98, "elapsed_time": "0:04:27", "remaining_time": "2:24:59", "throughput": 2474.2, "total_tokens": 660800}
|
| 217 |
+
{"current_steps": 1085, "total_steps": 36260, "loss": 0.1605, "lr": 1.4947600661886377e-05, "epoch": 0.29922779922779924, "percentage": 2.99, "elapsed_time": "0:04:28", "remaining_time": "2:25:08", "throughput": 2475.12, "total_tokens": 664896}
|
| 218 |
+
{"current_steps": 1090, "total_steps": 36260, "loss": 0.0205, "lr": 1.5016547159404304e-05, "epoch": 0.3006067291781577, "percentage": 3.01, "elapsed_time": "0:04:29", "remaining_time": "2:25:09", "throughput": 2474.9, "total_tokens": 668064}
|
| 219 |
+
{"current_steps": 1095, "total_steps": 36260, "loss": 0.0436, "lr": 1.5085493656922229e-05, "epoch": 0.30198565912851627, "percentage": 3.02, "elapsed_time": "0:04:31", "remaining_time": "2:25:12", "throughput": 2475.45, "total_tokens": 671552}
|
| 220 |
+
{"current_steps": 1100, "total_steps": 36260, "loss": 0.0727, "lr": 1.5154440154440155e-05, "epoch": 0.3033645890788748, "percentage": 3.03, "elapsed_time": "0:04:32", "remaining_time": "2:25:05", "throughput": 2474.68, "total_tokens": 674016}
|
| 221 |
+
{"current_steps": 1105, "total_steps": 36260, "loss": 0.0926, "lr": 1.5223386651958082e-05, "epoch": 0.3047435190292333, "percentage": 3.05, "elapsed_time": "0:04:33", "remaining_time": "2:25:01", "throughput": 2473.82, "total_tokens": 676576}
|
| 222 |
+
{"current_steps": 1110, "total_steps": 36260, "loss": 0.1329, "lr": 1.5292333149476005e-05, "epoch": 0.30612244897959184, "percentage": 3.06, "elapsed_time": "0:04:34", "remaining_time": "2:24:54", "throughput": 2473.64, "total_tokens": 679168}
|
| 223 |
+
{"current_steps": 1115, "total_steps": 36260, "loss": 0.3203, "lr": 1.5361279646993934e-05, "epoch": 0.30750137892995033, "percentage": 3.08, "elapsed_time": "0:04:35", "remaining_time": "2:24:58", "throughput": 2474.4, "total_tokens": 682816}
|
| 224 |
+
{"current_steps": 1120, "total_steps": 36260, "loss": 0.111, "lr": 1.543022614451186e-05, "epoch": 0.3088803088803089, "percentage": 3.09, "elapsed_time": "0:04:37", "remaining_time": "2:24:57", "throughput": 2474.81, "total_tokens": 686016}
|
| 225 |
+
{"current_steps": 1125, "total_steps": 36260, "loss": 0.049, "lr": 1.5499172642029787e-05, "epoch": 0.3102592388306674, "percentage": 3.1, "elapsed_time": "0:04:38", "remaining_time": "2:24:50", "throughput": 2474.34, "total_tokens": 688480}
|
| 226 |
+
{"current_steps": 1130, "total_steps": 36260, "loss": 0.0164, "lr": 1.5568119139547712e-05, "epoch": 0.3116381687810259, "percentage": 3.12, "elapsed_time": "0:04:39", "remaining_time": "2:24:48", "throughput": 2474.1, "total_tokens": 691488}
|
| 227 |
+
{"current_steps": 1135, "total_steps": 36260, "loss": 0.0789, "lr": 1.5637065637065637e-05, "epoch": 0.31301709873138445, "percentage": 3.13, "elapsed_time": "0:04:40", "remaining_time": "2:24:42", "throughput": 2473.64, "total_tokens": 693984}
|
| 228 |
+
{"current_steps": 1140, "total_steps": 36260, "loss": 0.212, "lr": 1.5706012134583565e-05, "epoch": 0.314396028681743, "percentage": 3.14, "elapsed_time": "0:04:41", "remaining_time": "2:24:39", "throughput": 2473.76, "total_tokens": 696960}
|
| 229 |
+
{"current_steps": 1145, "total_steps": 36260, "loss": 0.0622, "lr": 1.577495863210149e-05, "epoch": 0.3157749586321015, "percentage": 3.16, "elapsed_time": "0:04:42", "remaining_time": "2:24:35", "throughput": 2473.84, "total_tokens": 699776}
|
| 230 |
+
{"current_steps": 1150, "total_steps": 36260, "loss": 0.1457, "lr": 1.5843905129619415e-05, "epoch": 0.31715388858246, "percentage": 3.17, "elapsed_time": "0:04:43", "remaining_time": "2:24:28", "throughput": 2473.68, "total_tokens": 702368}
|
| 231 |
+
{"current_steps": 1155, "total_steps": 36260, "loss": 0.1343, "lr": 1.5912851627137344e-05, "epoch": 0.3185328185328185, "percentage": 3.19, "elapsed_time": "0:04:45", "remaining_time": "2:24:24", "throughput": 2473.4, "total_tokens": 705120}
|
| 232 |
+
{"current_steps": 1160, "total_steps": 36260, "loss": 0.1003, "lr": 1.598179812465527e-05, "epoch": 0.31991174848317705, "percentage": 3.2, "elapsed_time": "0:04:46", "remaining_time": "2:24:22", "throughput": 2473.13, "total_tokens": 708032}
|
| 233 |
+
{"current_steps": 1165, "total_steps": 36260, "loss": 0.034, "lr": 1.6050744622173193e-05, "epoch": 0.3212906784335356, "percentage": 3.21, "elapsed_time": "0:04:47", "remaining_time": "2:24:19", "throughput": 2473.35, "total_tokens": 710976}
|
| 234 |
+
{"current_steps": 1170, "total_steps": 36260, "loss": 0.086, "lr": 1.6119691119691122e-05, "epoch": 0.3226696083838941, "percentage": 3.23, "elapsed_time": "0:04:48", "remaining_time": "2:24:19", "throughput": 2473.69, "total_tokens": 714240}
|
| 235 |
+
{"current_steps": 1175, "total_steps": 36260, "loss": 0.17, "lr": 1.6188637617209047e-05, "epoch": 0.3240485383342526, "percentage": 3.24, "elapsed_time": "0:04:49", "remaining_time": "2:24:13", "throughput": 2473.2, "total_tokens": 716736}
|
| 236 |
+
{"current_steps": 1180, "total_steps": 36260, "loss": 0.14, "lr": 1.6257584114726972e-05, "epoch": 0.32542746828461117, "percentage": 3.25, "elapsed_time": "0:04:51", "remaining_time": "2:24:13", "throughput": 2473.09, "total_tokens": 719904}
|
| 237 |
+
{"current_steps": 1185, "total_steps": 36260, "loss": 0.0547, "lr": 1.6326530612244897e-05, "epoch": 0.32680639823496965, "percentage": 3.27, "elapsed_time": "0:04:52", "remaining_time": "2:24:18", "throughput": 2473.66, "total_tokens": 723584}
|
| 238 |
+
{"current_steps": 1190, "total_steps": 36260, "loss": 0.0943, "lr": 1.6395477109762825e-05, "epoch": 0.3281853281853282, "percentage": 3.28, "elapsed_time": "0:04:53", "remaining_time": "2:24:15", "throughput": 2473.84, "total_tokens": 726528}
|
| 239 |
+
{"current_steps": 1195, "total_steps": 36260, "loss": 0.1174, "lr": 1.6464423607280753e-05, "epoch": 0.3295642581356867, "percentage": 3.3, "elapsed_time": "0:04:54", "remaining_time": "2:24:08", "throughput": 2473.02, "total_tokens": 728864}
|
| 240 |
+
{"current_steps": 1200, "total_steps": 36260, "loss": 0.169, "lr": 1.6533370104798675e-05, "epoch": 0.3309431880860452, "percentage": 3.31, "elapsed_time": "0:04:55", "remaining_time": "2:24:00", "throughput": 2472.42, "total_tokens": 731232}
|
| 241 |
+
{"current_steps": 1205, "total_steps": 36260, "loss": 0.089, "lr": 1.6602316602316603e-05, "epoch": 0.33232211803640377, "percentage": 3.32, "elapsed_time": "0:04:57", "remaining_time": "2:24:04", "throughput": 2473.0, "total_tokens": 734816}
|
| 242 |
+
{"current_steps": 1210, "total_steps": 36260, "loss": 0.2132, "lr": 1.667126309983453e-05, "epoch": 0.33370104798676226, "percentage": 3.34, "elapsed_time": "0:04:58", "remaining_time": "2:24:03", "throughput": 2472.89, "total_tokens": 737920}
|
| 243 |
+
{"current_steps": 1215, "total_steps": 36260, "loss": 0.0774, "lr": 1.6740209597352453e-05, "epoch": 0.3350799779371208, "percentage": 3.35, "elapsed_time": "0:04:59", "remaining_time": "2:23:56", "throughput": 2472.17, "total_tokens": 740224}
|
| 244 |
+
{"current_steps": 1220, "total_steps": 36260, "loss": 0.1372, "lr": 1.680915609487038e-05, "epoch": 0.33645890788747934, "percentage": 3.36, "elapsed_time": "0:05:00", "remaining_time": "2:23:50", "throughput": 2471.82, "total_tokens": 742752}
|
| 245 |
+
{"current_steps": 1225, "total_steps": 36260, "loss": 0.2211, "lr": 1.6878102592388306e-05, "epoch": 0.33783783783783783, "percentage": 3.38, "elapsed_time": "0:05:01", "remaining_time": "2:23:45", "throughput": 2471.75, "total_tokens": 745472}
|
| 246 |
+
{"current_steps": 1230, "total_steps": 36260, "loss": 0.1056, "lr": 1.6947049089906235e-05, "epoch": 0.33921676778819637, "percentage": 3.39, "elapsed_time": "0:05:02", "remaining_time": "2:23:46", "throughput": 2471.63, "total_tokens": 748640}
|
| 247 |
+
{"current_steps": 1235, "total_steps": 36260, "loss": 0.0477, "lr": 1.701599558742416e-05, "epoch": 0.34059569773855486, "percentage": 3.41, "elapsed_time": "0:05:03", "remaining_time": "2:23:39", "throughput": 2471.0, "total_tokens": 751040}
|
| 248 |
+
{"current_steps": 1240, "total_steps": 36260, "loss": 0.2482, "lr": 1.7084942084942085e-05, "epoch": 0.3419746276889134, "percentage": 3.42, "elapsed_time": "0:05:05", "remaining_time": "2:23:44", "throughput": 2471.74, "total_tokens": 754784}
|
| 249 |
+
{"current_steps": 1245, "total_steps": 36260, "loss": 0.048, "lr": 1.7153888582460013e-05, "epoch": 0.34335355763927194, "percentage": 3.43, "elapsed_time": "0:05:06", "remaining_time": "2:23:39", "throughput": 2471.28, "total_tokens": 757408}
|
| 250 |
+
{"current_steps": 1250, "total_steps": 36260, "loss": 0.0652, "lr": 1.7222835079977938e-05, "epoch": 0.34473248758963043, "percentage": 3.45, "elapsed_time": "0:05:07", "remaining_time": "2:23:45", "throughput": 2471.51, "total_tokens": 761152}
|
| 251 |
+
{"current_steps": 1255, "total_steps": 36260, "loss": 0.0411, "lr": 1.7291781577495863e-05, "epoch": 0.346111417539989, "percentage": 3.46, "elapsed_time": "0:05:09", "remaining_time": "2:23:44", "throughput": 2471.64, "total_tokens": 764288}
|
| 252 |
+
{"current_steps": 1260, "total_steps": 36260, "loss": 0.1879, "lr": 1.736072807501379e-05, "epoch": 0.3474903474903475, "percentage": 3.47, "elapsed_time": "0:05:10", "remaining_time": "2:23:42", "throughput": 2471.34, "total_tokens": 767104}
|
| 253 |
+
{"current_steps": 1265, "total_steps": 36260, "loss": 0.0523, "lr": 1.7429674572531716e-05, "epoch": 0.348869277440706, "percentage": 3.49, "elapsed_time": "0:05:11", "remaining_time": "2:23:46", "throughput": 2471.79, "total_tokens": 770752}
|
| 254 |
+
{"current_steps": 1270, "total_steps": 36260, "loss": 0.099, "lr": 1.749862107004964e-05, "epoch": 0.35024820739106455, "percentage": 3.5, "elapsed_time": "0:05:13", "remaining_time": "2:23:55", "throughput": 2472.88, "total_tokens": 775072}
|
| 255 |
+
{"current_steps": 1275, "total_steps": 36260, "loss": 0.0634, "lr": 1.756756756756757e-05, "epoch": 0.35162713734142304, "percentage": 3.52, "elapsed_time": "0:05:16", "remaining_time": "2:24:38", "throughput": 2474.29, "total_tokens": 782592}
|
| 256 |
+
{"current_steps": 1280, "total_steps": 36260, "loss": 0.0453, "lr": 1.7636514065085495e-05, "epoch": 0.3530060672917816, "percentage": 3.53, "elapsed_time": "0:05:17", "remaining_time": "2:24:32", "throughput": 2474.19, "total_tokens": 785216}
|
| 257 |
+
{"current_steps": 1285, "total_steps": 36260, "loss": 0.0389, "lr": 1.770546056260342e-05, "epoch": 0.3543849972421401, "percentage": 3.54, "elapsed_time": "0:05:18", "remaining_time": "2:24:33", "throughput": 2474.5, "total_tokens": 788512}
|
| 258 |
+
{"current_steps": 1290, "total_steps": 36260, "loss": 0.2205, "lr": 1.7774407060121348e-05, "epoch": 0.3557639271924986, "percentage": 3.56, "elapsed_time": "0:05:19", "remaining_time": "2:24:33", "throughput": 2474.57, "total_tokens": 791712}
|
| 259 |
+
{"current_steps": 1295, "total_steps": 36260, "loss": 0.0313, "lr": 1.7843353557639273e-05, "epoch": 0.35714285714285715, "percentage": 3.57, "elapsed_time": "0:05:20", "remaining_time": "2:24:26", "throughput": 2473.67, "total_tokens": 794048}
|
| 260 |
+
{"current_steps": 1300, "total_steps": 36260, "loss": 0.0477, "lr": 1.79123000551572e-05, "epoch": 0.35852178709321564, "percentage": 3.59, "elapsed_time": "0:05:22", "remaining_time": "2:24:25", "throughput": 2473.5, "total_tokens": 796992}
|
| 261 |
+
{"current_steps": 1305, "total_steps": 36260, "loss": 0.3161, "lr": 1.7981246552675123e-05, "epoch": 0.3599007170435742, "percentage": 3.6, "elapsed_time": "0:05:23", "remaining_time": "2:24:30", "throughput": 2473.45, "total_tokens": 800672}
|
| 262 |
+
{"current_steps": 1310, "total_steps": 36260, "loss": 0.1256, "lr": 1.805019305019305e-05, "epoch": 0.3612796469939327, "percentage": 3.61, "elapsed_time": "0:05:25", "remaining_time": "2:24:31", "throughput": 2473.66, "total_tokens": 804032}
|
| 263 |
+
{"current_steps": 1315, "total_steps": 36260, "loss": 0.1027, "lr": 1.811913954771098e-05, "epoch": 0.3626585769442912, "percentage": 3.63, "elapsed_time": "0:05:26", "remaining_time": "2:24:33", "throughput": 2474.15, "total_tokens": 807552}
|
| 264 |
+
{"current_steps": 1320, "total_steps": 36260, "loss": 0.0386, "lr": 1.81880860452289e-05, "epoch": 0.36403750689464975, "percentage": 3.64, "elapsed_time": "0:05:27", "remaining_time": "2:24:35", "throughput": 2474.32, "total_tokens": 810976}
|
| 265 |
+
{"current_steps": 1325, "total_steps": 36260, "loss": 0.2094, "lr": 1.825703254274683e-05, "epoch": 0.3654164368450083, "percentage": 3.65, "elapsed_time": "0:05:28", "remaining_time": "2:24:29", "throughput": 2473.35, "total_tokens": 813248}
|
| 266 |
+
{"current_steps": 1330, "total_steps": 36260, "loss": 0.0563, "lr": 1.8325979040264754e-05, "epoch": 0.3667953667953668, "percentage": 3.67, "elapsed_time": "0:05:30", "remaining_time": "2:24:42", "throughput": 2474.88, "total_tokens": 818144}
|
| 267 |
+
{"current_steps": 1335, "total_steps": 36260, "loss": 0.0854, "lr": 1.8394925537782683e-05, "epoch": 0.3681742967457253, "percentage": 3.68, "elapsed_time": "0:05:31", "remaining_time": "2:24:41", "throughput": 2474.98, "total_tokens": 821280}
|
| 268 |
+
{"current_steps": 1340, "total_steps": 36260, "loss": 0.1671, "lr": 1.8463872035300608e-05, "epoch": 0.3695532266960838, "percentage": 3.7, "elapsed_time": "0:05:33", "remaining_time": "2:24:47", "throughput": 2475.78, "total_tokens": 825312}
|
| 269 |
+
{"current_steps": 1345, "total_steps": 36260, "loss": 0.0915, "lr": 1.8532818532818533e-05, "epoch": 0.37093215664644236, "percentage": 3.71, "elapsed_time": "0:05:35", "remaining_time": "2:24:57", "throughput": 2476.84, "total_tokens": 829856}
|
| 270 |
+
{"current_steps": 1350, "total_steps": 36260, "loss": 0.1025, "lr": 1.860176503033646e-05, "epoch": 0.3723110865968009, "percentage": 3.72, "elapsed_time": "0:05:36", "remaining_time": "2:24:54", "throughput": 2476.69, "total_tokens": 832736}
|
| 271 |
+
{"current_steps": 1355, "total_steps": 36260, "loss": 0.127, "lr": 1.8670711527854386e-05, "epoch": 0.3736900165471594, "percentage": 3.74, "elapsed_time": "0:05:37", "remaining_time": "2:24:54", "throughput": 2476.63, "total_tokens": 835904}
|
| 272 |
+
{"current_steps": 1360, "total_steps": 36260, "loss": 0.068, "lr": 1.873965802537231e-05, "epoch": 0.37506894649751793, "percentage": 3.75, "elapsed_time": "0:05:39", "remaining_time": "2:25:06", "throughput": 2477.45, "total_tokens": 840512}
|
| 273 |
+
{"current_steps": 1365, "total_steps": 36260, "loss": 0.1928, "lr": 1.880860452289024e-05, "epoch": 0.3764478764478765, "percentage": 3.76, "elapsed_time": "0:05:40", "remaining_time": "2:25:03", "throughput": 2477.36, "total_tokens": 843456}
|
| 274 |
+
{"current_steps": 1370, "total_steps": 36260, "loss": 0.0686, "lr": 1.8877551020408164e-05, "epoch": 0.37782680639823496, "percentage": 3.78, "elapsed_time": "0:05:41", "remaining_time": "2:25:01", "throughput": 2477.4, "total_tokens": 846464}
|
| 275 |
+
{"current_steps": 1375, "total_steps": 36260, "loss": 0.1055, "lr": 1.894649751792609e-05, "epoch": 0.3792057363485935, "percentage": 3.79, "elapsed_time": "0:05:43", "remaining_time": "2:25:08", "throughput": 2478.09, "total_tokens": 850592}
|
| 276 |
+
{"current_steps": 1380, "total_steps": 36260, "loss": 0.1617, "lr": 1.9015444015444017e-05, "epoch": 0.380584666298952, "percentage": 3.81, "elapsed_time": "0:05:44", "remaining_time": "2:25:01", "throughput": 2477.14, "total_tokens": 852768}
|
| 277 |
+
{"current_steps": 1385, "total_steps": 36260, "loss": 0.1458, "lr": 1.9084390512961942e-05, "epoch": 0.38196359624931053, "percentage": 3.82, "elapsed_time": "0:05:45", "remaining_time": "2:25:03", "throughput": 2477.31, "total_tokens": 856224}
|
| 278 |
+
{"current_steps": 1390, "total_steps": 36260, "loss": 0.1465, "lr": 1.9153337010479867e-05, "epoch": 0.3833425261996691, "percentage": 3.83, "elapsed_time": "0:05:46", "remaining_time": "2:24:57", "throughput": 2476.8, "total_tokens": 858688}
|
| 279 |
+
{"current_steps": 1395, "total_steps": 36260, "loss": 0.0437, "lr": 1.9222283507997796e-05, "epoch": 0.38472145615002756, "percentage": 3.85, "elapsed_time": "0:05:47", "remaining_time": "2:24:54", "throughput": 2476.28, "total_tokens": 861440}
|
| 280 |
+
{"current_steps": 1400, "total_steps": 36260, "loss": 0.0893, "lr": 1.929123000551572e-05, "epoch": 0.3861003861003861, "percentage": 3.86, "elapsed_time": "0:05:48", "remaining_time": "2:24:49", "throughput": 2475.72, "total_tokens": 863936}
|
| 281 |
+
{"current_steps": 1405, "total_steps": 36260, "loss": 0.2189, "lr": 1.936017650303365e-05, "epoch": 0.38747931605074465, "percentage": 3.87, "elapsed_time": "0:05:50", "remaining_time": "2:24:56", "throughput": 2476.18, "total_tokens": 868032}
|
| 282 |
+
{"current_steps": 1410, "total_steps": 36260, "loss": 0.1524, "lr": 1.942912300055157e-05, "epoch": 0.38885824600110314, "percentage": 3.89, "elapsed_time": "0:05:52", "remaining_time": "2:25:02", "throughput": 2476.7, "total_tokens": 872000}
|
| 283 |
+
{"current_steps": 1415, "total_steps": 36260, "loss": 0.1867, "lr": 1.94980694980695e-05, "epoch": 0.3902371759514617, "percentage": 3.9, "elapsed_time": "0:05:53", "remaining_time": "2:25:04", "throughput": 2477.21, "total_tokens": 875616}
|
| 284 |
+
{"current_steps": 1420, "total_steps": 36260, "loss": 0.0809, "lr": 1.9567015995587427e-05, "epoch": 0.39161610590182017, "percentage": 3.92, "elapsed_time": "0:05:54", "remaining_time": "2:25:05", "throughput": 2477.52, "total_tokens": 879072}
|
| 285 |
+
{"current_steps": 1425, "total_steps": 36260, "loss": 0.3356, "lr": 1.963596249310535e-05, "epoch": 0.3929950358521787, "percentage": 3.93, "elapsed_time": "0:05:56", "remaining_time": "2:25:05", "throughput": 2477.78, "total_tokens": 882368}
|
| 286 |
+
{"current_steps": 1430, "total_steps": 36260, "loss": 0.0261, "lr": 1.9704908990623277e-05, "epoch": 0.39437396580253725, "percentage": 3.94, "elapsed_time": "0:05:57", "remaining_time": "2:25:04", "throughput": 2477.85, "total_tokens": 885536}
|
| 287 |
+
{"current_steps": 1435, "total_steps": 36260, "loss": 0.0582, "lr": 1.9773855488141205e-05, "epoch": 0.39575289575289574, "percentage": 3.96, "elapsed_time": "0:05:59", "remaining_time": "2:25:16", "throughput": 2478.63, "total_tokens": 890272}
|
| 288 |
+
{"current_steps": 1440, "total_steps": 36260, "loss": 0.0781, "lr": 1.984280198565913e-05, "epoch": 0.3971318257032543, "percentage": 3.97, "elapsed_time": "0:06:00", "remaining_time": "2:25:15", "throughput": 2478.55, "total_tokens": 893376}
|
| 289 |
+
{"current_steps": 1445, "total_steps": 36260, "loss": 0.0845, "lr": 1.9911748483177055e-05, "epoch": 0.39851075565361277, "percentage": 3.99, "elapsed_time": "0:06:02", "remaining_time": "2:25:30", "throughput": 2479.74, "total_tokens": 898528}
|
| 290 |
+
{"current_steps": 1450, "total_steps": 36260, "loss": 0.2178, "lr": 1.998069498069498e-05, "epoch": 0.3998896856039713, "percentage": 4.0, "elapsed_time": "0:06:03", "remaining_time": "2:25:33", "throughput": 2480.15, "total_tokens": 902272}
|
| 291 |
+
{"current_steps": 1455, "total_steps": 36260, "loss": 0.0957, "lr": 2.004964147821291e-05, "epoch": 0.40126861555432985, "percentage": 4.01, "elapsed_time": "0:06:05", "remaining_time": "2:25:37", "throughput": 2480.68, "total_tokens": 906112}
|
| 292 |
+
{"current_steps": 1460, "total_steps": 36260, "loss": 0.0838, "lr": 2.0118587975730834e-05, "epoch": 0.40264754550468834, "percentage": 4.03, "elapsed_time": "0:06:06", "remaining_time": "2:25:30", "throughput": 2479.98, "total_tokens": 908384}
|
| 293 |
+
{"current_steps": 1465, "total_steps": 36260, "loss": 0.1298, "lr": 2.018753447324876e-05, "epoch": 0.4040264754550469, "percentage": 4.04, "elapsed_time": "0:06:07", "remaining_time": "2:25:32", "throughput": 2480.24, "total_tokens": 911936}
|
| 294 |
+
{"current_steps": 1470, "total_steps": 36260, "loss": 0.1378, "lr": 2.0256480970766687e-05, "epoch": 0.40540540540540543, "percentage": 4.05, "elapsed_time": "0:06:08", "remaining_time": "2:25:29", "throughput": 2480.33, "total_tokens": 914912}
|
| 295 |
+
{"current_steps": 1475, "total_steps": 36260, "loss": 0.0387, "lr": 2.0325427468284612e-05, "epoch": 0.4067843353557639, "percentage": 4.07, "elapsed_time": "0:06:10", "remaining_time": "2:25:29", "throughput": 2480.26, "total_tokens": 918112}
|
| 296 |
+
{"current_steps": 1480, "total_steps": 36260, "loss": 0.1245, "lr": 2.0394373965802537e-05, "epoch": 0.40816326530612246, "percentage": 4.08, "elapsed_time": "0:06:11", "remaining_time": "2:25:29", "throughput": 2480.43, "total_tokens": 921440}
|
| 297 |
+
{"current_steps": 1485, "total_steps": 36260, "loss": 0.0727, "lr": 2.0463320463320465e-05, "epoch": 0.40954219525648095, "percentage": 4.1, "elapsed_time": "0:06:12", "remaining_time": "2:25:25", "throughput": 2479.87, "total_tokens": 923968}
|
| 298 |
+
{"current_steps": 1490, "total_steps": 36260, "loss": 0.1256, "lr": 2.053226696083839e-05, "epoch": 0.4109211252068395, "percentage": 4.11, "elapsed_time": "0:06:13", "remaining_time": "2:25:22", "throughput": 2479.79, "total_tokens": 926880}
|
| 299 |
+
{"current_steps": 1495, "total_steps": 36260, "loss": 0.074, "lr": 2.0601213458356315e-05, "epoch": 0.41230005515719803, "percentage": 4.12, "elapsed_time": "0:06:14", "remaining_time": "2:25:16", "throughput": 2479.57, "total_tokens": 929408}
|
| 300 |
+
{"current_steps": 1500, "total_steps": 36260, "loss": 0.1072, "lr": 2.0670159955874243e-05, "epoch": 0.4136789851075565, "percentage": 4.14, "elapsed_time": "0:06:15", "remaining_time": "2:25:11", "throughput": 2479.49, "total_tokens": 932160}
|
| 301 |
+
{"current_steps": 1505, "total_steps": 36260, "loss": 0.1157, "lr": 2.073910645339217e-05, "epoch": 0.41505791505791506, "percentage": 4.15, "elapsed_time": "0:06:17", "remaining_time": "2:25:07", "throughput": 2479.16, "total_tokens": 934816}
|
| 302 |
+
{"current_steps": 1510, "total_steps": 36260, "loss": 0.0287, "lr": 2.0808052950910097e-05, "epoch": 0.4164368450082736, "percentage": 4.16, "elapsed_time": "0:06:18", "remaining_time": "2:25:08", "throughput": 2479.81, "total_tokens": 938368}
|
| 303 |
+
{"current_steps": 1515, "total_steps": 36260, "loss": 0.0598, "lr": 2.087699944842802e-05, "epoch": 0.4178157749586321, "percentage": 4.18, "elapsed_time": "0:06:19", "remaining_time": "2:25:02", "throughput": 2479.1, "total_tokens": 940704}
|
| 304 |
+
{"current_steps": 1520, "total_steps": 36260, "loss": 0.2306, "lr": 2.0945945945945947e-05, "epoch": 0.41919470490899063, "percentage": 4.19, "elapsed_time": "0:06:20", "remaining_time": "2:24:57", "throughput": 2478.73, "total_tokens": 943264}
|
| 305 |
+
{"current_steps": 1525, "total_steps": 36260, "loss": 0.0371, "lr": 2.1014892443463875e-05, "epoch": 0.4205736348593491, "percentage": 4.21, "elapsed_time": "0:06:21", "remaining_time": "2:24:55", "throughput": 2478.47, "total_tokens": 946144}
|
| 306 |
+
{"current_steps": 1530, "total_steps": 36260, "loss": 0.2095, "lr": 2.1083838940981797e-05, "epoch": 0.42195256480970766, "percentage": 4.22, "elapsed_time": "0:06:23", "remaining_time": "2:24:58", "throughput": 2479.16, "total_tokens": 950016}
|
| 307 |
+
{"current_steps": 1535, "total_steps": 36260, "loss": 0.1734, "lr": 2.1152785438499725e-05, "epoch": 0.4233314947600662, "percentage": 4.23, "elapsed_time": "0:06:24", "remaining_time": "2:25:00", "throughput": 2479.65, "total_tokens": 953728}
|
| 308 |
+
{"current_steps": 1540, "total_steps": 36260, "loss": 0.1515, "lr": 2.1221731936017653e-05, "epoch": 0.4247104247104247, "percentage": 4.25, "elapsed_time": "0:06:25", "remaining_time": "2:24:56", "throughput": 2479.2, "total_tokens": 956288}
|
| 309 |
+
{"current_steps": 1545, "total_steps": 36260, "loss": 0.0931, "lr": 2.1290678433535578e-05, "epoch": 0.42608935466078324, "percentage": 4.26, "elapsed_time": "0:06:26", "remaining_time": "2:24:51", "throughput": 2478.65, "total_tokens": 958752}
|
| 310 |
+
{"current_steps": 1550, "total_steps": 36260, "loss": 0.1013, "lr": 2.1359624931053503e-05, "epoch": 0.4274682846111418, "percentage": 4.27, "elapsed_time": "0:06:27", "remaining_time": "2:24:44", "throughput": 2477.9, "total_tokens": 960960}
|
| 311 |
+
{"current_steps": 1555, "total_steps": 36260, "loss": 0.1027, "lr": 2.1428571428571428e-05, "epoch": 0.42884721456150027, "percentage": 4.29, "elapsed_time": "0:06:29", "remaining_time": "2:24:45", "throughput": 2478.21, "total_tokens": 964480}
|
| 312 |
+
{"current_steps": 1560, "total_steps": 36260, "loss": 0.0457, "lr": 2.1497517926089356e-05, "epoch": 0.4302261445118588, "percentage": 4.3, "elapsed_time": "0:06:30", "remaining_time": "2:24:49", "throughput": 2478.74, "total_tokens": 968320}
|
| 313 |
+
{"current_steps": 1565, "total_steps": 36260, "loss": 0.0381, "lr": 2.156646442360728e-05, "epoch": 0.4316050744622173, "percentage": 4.32, "elapsed_time": "0:06:32", "remaining_time": "2:24:50", "throughput": 2479.05, "total_tokens": 971808}
|
| 314 |
+
{"current_steps": 1570, "total_steps": 36260, "loss": 0.1548, "lr": 2.1635410921125206e-05, "epoch": 0.43298400441257584, "percentage": 4.33, "elapsed_time": "0:06:33", "remaining_time": "2:24:48", "throughput": 2479.23, "total_tokens": 974944}
|
| 315 |
+
{"current_steps": 1575, "total_steps": 36260, "loss": 0.1647, "lr": 2.1704357418643135e-05, "epoch": 0.4343629343629344, "percentage": 4.34, "elapsed_time": "0:06:34", "remaining_time": "2:24:54", "throughput": 2479.69, "total_tokens": 979040}
|
| 316 |
+
{"current_steps": 1580, "total_steps": 36260, "loss": 0.1813, "lr": 2.177330391616106e-05, "epoch": 0.43574186431329287, "percentage": 4.36, "elapsed_time": "0:06:35", "remaining_time": "2:24:50", "throughput": 2479.13, "total_tokens": 981536}
|
| 317 |
+
{"current_steps": 1585, "total_steps": 36260, "loss": 0.0513, "lr": 2.1842250413678985e-05, "epoch": 0.4371207942636514, "percentage": 4.37, "elapsed_time": "0:06:37", "remaining_time": "2:24:47", "throughput": 2479.11, "total_tokens": 984448}
|
| 318 |
+
{"current_steps": 1590, "total_steps": 36260, "loss": 0.0778, "lr": 2.1911196911196913e-05, "epoch": 0.43849972421400996, "percentage": 4.38, "elapsed_time": "0:06:38", "remaining_time": "2:24:43", "throughput": 2479.09, "total_tokens": 987264}
|
| 319 |
+
{"current_steps": 1595, "total_steps": 36260, "loss": 0.1787, "lr": 2.1980143408714838e-05, "epoch": 0.43987865416436844, "percentage": 4.4, "elapsed_time": "0:06:39", "remaining_time": "2:24:44", "throughput": 2479.34, "total_tokens": 990752}
|
| 320 |
+
{"current_steps": 1600, "total_steps": 36260, "loss": 0.1242, "lr": 2.2049089906232763e-05, "epoch": 0.441257584114727, "percentage": 4.41, "elapsed_time": "0:06:40", "remaining_time": "2:24:39", "throughput": 2478.95, "total_tokens": 993184}
|
| 321 |
+
{"current_steps": 1605, "total_steps": 36260, "loss": 0.0137, "lr": 2.211803640375069e-05, "epoch": 0.4426365140650855, "percentage": 4.43, "elapsed_time": "0:06:42", "remaining_time": "2:24:40", "throughput": 2479.13, "total_tokens": 996640}
|
| 322 |
+
{"current_steps": 1610, "total_steps": 36260, "loss": 0.0736, "lr": 2.2186982901268616e-05, "epoch": 0.444015444015444, "percentage": 4.44, "elapsed_time": "0:06:42", "remaining_time": "2:24:32", "throughput": 2478.09, "total_tokens": 998624}
|
| 323 |
+
{"current_steps": 1615, "total_steps": 36260, "loss": 0.1704, "lr": 2.2255929398786545e-05, "epoch": 0.44539437396580256, "percentage": 4.45, "elapsed_time": "0:06:44", "remaining_time": "2:24:34", "throughput": 2478.3, "total_tokens": 1002176}
|
| 324 |
+
{"current_steps": 1620, "total_steps": 36260, "loss": 0.249, "lr": 2.232487589630447e-05, "epoch": 0.44677330391616105, "percentage": 4.47, "elapsed_time": "0:06:45", "remaining_time": "2:24:31", "throughput": 2478.15, "total_tokens": 1005024}
|
| 325 |
+
{"current_steps": 1625, "total_steps": 36260, "loss": 0.1029, "lr": 2.2393822393822394e-05, "epoch": 0.4481522338665196, "percentage": 4.48, "elapsed_time": "0:06:46", "remaining_time": "2:24:29", "throughput": 2477.95, "total_tokens": 1007904}
|
| 326 |
+
{"current_steps": 1630, "total_steps": 36260, "loss": 0.1166, "lr": 2.2462768891340323e-05, "epoch": 0.4495311638168781, "percentage": 4.5, "elapsed_time": "0:06:47", "remaining_time": "2:24:23", "throughput": 2477.63, "total_tokens": 1010336}
|
| 327 |
+
{"current_steps": 1635, "total_steps": 36260, "loss": 0.0395, "lr": 2.2531715388858244e-05, "epoch": 0.4509100937672366, "percentage": 4.51, "elapsed_time": "0:06:49", "remaining_time": "2:24:21", "throughput": 2477.5, "total_tokens": 1013312}
|
| 328 |
+
{"current_steps": 1640, "total_steps": 36260, "loss": 0.1431, "lr": 2.2600661886376173e-05, "epoch": 0.45228902371759516, "percentage": 4.52, "elapsed_time": "0:06:50", "remaining_time": "2:24:21", "throughput": 2477.66, "total_tokens": 1016640}
|
| 329 |
+
{"current_steps": 1645, "total_steps": 36260, "loss": 0.0781, "lr": 2.26696083838941e-05, "epoch": 0.45366795366795365, "percentage": 4.54, "elapsed_time": "0:06:51", "remaining_time": "2:24:16", "throughput": 2477.27, "total_tokens": 1019136}
|
| 330 |
+
{"current_steps": 1650, "total_steps": 36260, "loss": 0.1515, "lr": 2.2738554881412026e-05, "epoch": 0.4550468836183122, "percentage": 4.55, "elapsed_time": "0:06:52", "remaining_time": "2:24:10", "throughput": 2476.87, "total_tokens": 1021504}
|
| 331 |
+
{"current_steps": 1655, "total_steps": 36260, "loss": 0.006, "lr": 2.280750137892995e-05, "epoch": 0.45642581356867074, "percentage": 4.56, "elapsed_time": "0:06:53", "remaining_time": "2:24:08", "throughput": 2476.92, "total_tokens": 1024544}
|
| 332 |
+
{"current_steps": 1660, "total_steps": 36260, "loss": 0.1076, "lr": 2.2876447876447876e-05, "epoch": 0.4578047435190292, "percentage": 4.58, "elapsed_time": "0:06:54", "remaining_time": "2:24:05", "throughput": 2476.73, "total_tokens": 1027360}
|
| 333 |
+
{"current_steps": 1665, "total_steps": 36260, "loss": 0.1448, "lr": 2.2945394373965804e-05, "epoch": 0.45918367346938777, "percentage": 4.59, "elapsed_time": "0:06:56", "remaining_time": "2:24:06", "throughput": 2476.77, "total_tokens": 1030656}
|
| 334 |
+
{"current_steps": 1670, "total_steps": 36260, "loss": 0.2095, "lr": 2.301434087148373e-05, "epoch": 0.46056260341974625, "percentage": 4.61, "elapsed_time": "0:06:57", "remaining_time": "2:24:00", "throughput": 2476.21, "total_tokens": 1033024}
|
| 335 |
+
{"current_steps": 1675, "total_steps": 36260, "loss": 0.2896, "lr": 2.3083287369001654e-05, "epoch": 0.4619415333701048, "percentage": 4.62, "elapsed_time": "0:06:58", "remaining_time": "2:23:55", "throughput": 2475.73, "total_tokens": 1035424}
|
| 336 |
+
{"current_steps": 1680, "total_steps": 36260, "loss": 0.0414, "lr": 2.3152233866519583e-05, "epoch": 0.46332046332046334, "percentage": 4.63, "elapsed_time": "0:06:59", "remaining_time": "2:23:51", "throughput": 2475.54, "total_tokens": 1038112}
|
| 337 |
+
{"current_steps": 1685, "total_steps": 36260, "loss": 0.1063, "lr": 2.3221180364037508e-05, "epoch": 0.4646993932708218, "percentage": 4.65, "elapsed_time": "0:07:00", "remaining_time": "2:23:53", "throughput": 2476.09, "total_tokens": 1041856}
|
| 338 |
+
{"current_steps": 1690, "total_steps": 36260, "loss": 0.0757, "lr": 2.3290126861555432e-05, "epoch": 0.46607832322118037, "percentage": 4.66, "elapsed_time": "0:07:01", "remaining_time": "2:23:47", "throughput": 2475.6, "total_tokens": 1044128}
|
| 339 |
+
{"current_steps": 1695, "total_steps": 36260, "loss": 0.0896, "lr": 2.335907335907336e-05, "epoch": 0.4674572531715389, "percentage": 4.67, "elapsed_time": "0:07:03", "remaining_time": "2:23:46", "throughput": 2475.6, "total_tokens": 1047264}
|
| 340 |
+
{"current_steps": 1700, "total_steps": 36260, "loss": 0.071, "lr": 2.3428019856591286e-05, "epoch": 0.4688361831218974, "percentage": 4.69, "elapsed_time": "0:07:04", "remaining_time": "2:23:49", "throughput": 2476.12, "total_tokens": 1051072}
|
| 341 |
+
{"current_steps": 1705, "total_steps": 36260, "loss": 0.0073, "lr": 2.349696635410921e-05, "epoch": 0.47021511307225594, "percentage": 4.7, "elapsed_time": "0:07:05", "remaining_time": "2:23:46", "throughput": 2476.03, "total_tokens": 1053920}
|
| 342 |
+
{"current_steps": 1710, "total_steps": 36260, "loss": 0.2374, "lr": 2.356591285162714e-05, "epoch": 0.47159404302261443, "percentage": 4.72, "elapsed_time": "0:07:06", "remaining_time": "2:23:46", "throughput": 2475.91, "total_tokens": 1057056}
|
| 343 |
+
{"current_steps": 1715, "total_steps": 36260, "loss": 0.1277, "lr": 2.3634859349145064e-05, "epoch": 0.47297297297297297, "percentage": 4.73, "elapsed_time": "0:07:08", "remaining_time": "2:23:44", "throughput": 2476.11, "total_tokens": 1060128}
|
| 344 |
+
{"current_steps": 1720, "total_steps": 36260, "loss": 0.083, "lr": 2.3703805846662992e-05, "epoch": 0.4743519029233315, "percentage": 4.74, "elapsed_time": "0:07:09", "remaining_time": "2:23:38", "throughput": 2475.76, "total_tokens": 1062528}
|
| 345 |
+
{"current_steps": 1725, "total_steps": 36260, "loss": 0.07, "lr": 2.3772752344180917e-05, "epoch": 0.47573083287369, "percentage": 4.76, "elapsed_time": "0:07:10", "remaining_time": "2:23:35", "throughput": 2475.63, "total_tokens": 1065344}
|
| 346 |
+
{"current_steps": 1730, "total_steps": 36260, "loss": 0.0535, "lr": 2.3841698841698842e-05, "epoch": 0.47710976282404854, "percentage": 4.77, "elapsed_time": "0:07:11", "remaining_time": "2:23:34", "throughput": 2475.48, "total_tokens": 1068352}
|
| 347 |
+
{"current_steps": 1735, "total_steps": 36260, "loss": 0.012, "lr": 2.391064533921677e-05, "epoch": 0.4784886927744071, "percentage": 4.78, "elapsed_time": "0:07:12", "remaining_time": "2:23:36", "throughput": 2475.54, "total_tokens": 1071872}
|
| 348 |
+
{"current_steps": 1740, "total_steps": 36260, "loss": 0.1598, "lr": 2.3979591836734696e-05, "epoch": 0.4798676227247656, "percentage": 4.8, "elapsed_time": "0:07:14", "remaining_time": "2:23:34", "throughput": 2475.5, "total_tokens": 1074848}
|
| 349 |
+
{"current_steps": 1745, "total_steps": 36260, "loss": 0.1561, "lr": 2.404853833425262e-05, "epoch": 0.4812465526751241, "percentage": 4.81, "elapsed_time": "0:07:15", "remaining_time": "2:23:30", "throughput": 2475.45, "total_tokens": 1077600}
|
| 350 |
+
{"current_steps": 1750, "total_steps": 36260, "loss": 0.1743, "lr": 2.411748483177055e-05, "epoch": 0.4826254826254826, "percentage": 4.83, "elapsed_time": "0:07:16", "remaining_time": "2:23:29", "throughput": 2475.5, "total_tokens": 1080768}
|
| 351 |
+
{"current_steps": 1755, "total_steps": 36260, "loss": 0.1345, "lr": 2.4186431329288474e-05, "epoch": 0.48400441257584115, "percentage": 4.84, "elapsed_time": "0:07:17", "remaining_time": "2:23:26", "throughput": 2475.57, "total_tokens": 1083680}
|
| 352 |
+
{"current_steps": 1760, "total_steps": 36260, "loss": 0.1239, "lr": 2.42553778268064e-05, "epoch": 0.4853833425261997, "percentage": 4.85, "elapsed_time": "0:07:18", "remaining_time": "2:23:22", "throughput": 2475.07, "total_tokens": 1086240}
|
| 353 |
+
{"current_steps": 1765, "total_steps": 36260, "loss": 0.192, "lr": 2.4324324324324327e-05, "epoch": 0.4867622724765582, "percentage": 4.87, "elapsed_time": "0:07:19", "remaining_time": "2:23:19", "throughput": 2474.75, "total_tokens": 1088864}
|
| 354 |
+
{"current_steps": 1770, "total_steps": 36260, "loss": 0.1495, "lr": 2.4393270821842252e-05, "epoch": 0.4881412024269167, "percentage": 4.88, "elapsed_time": "0:07:21", "remaining_time": "2:23:17", "throughput": 2474.81, "total_tokens": 1091968}
|
| 355 |
+
{"current_steps": 1775, "total_steps": 36260, "loss": 0.136, "lr": 2.4462217319360177e-05, "epoch": 0.4895201323772752, "percentage": 4.9, "elapsed_time": "0:07:22", "remaining_time": "2:23:15", "throughput": 2474.96, "total_tokens": 1095040}
|
| 356 |
+
{"current_steps": 1780, "total_steps": 36260, "loss": 0.1546, "lr": 2.4531163816878102e-05, "epoch": 0.49089906232763375, "percentage": 4.91, "elapsed_time": "0:07:23", "remaining_time": "2:23:15", "throughput": 2475.07, "total_tokens": 1098240}
|
| 357 |
+
{"current_steps": 1785, "total_steps": 36260, "loss": 0.2136, "lr": 2.460011031439603e-05, "epoch": 0.4922779922779923, "percentage": 4.92, "elapsed_time": "0:07:24", "remaining_time": "2:23:11", "throughput": 2474.54, "total_tokens": 1100768}
|
| 358 |
+
{"current_steps": 1790, "total_steps": 36260, "loss": 0.0961, "lr": 2.466905681191396e-05, "epoch": 0.4936569222283508, "percentage": 4.94, "elapsed_time": "0:07:25", "remaining_time": "2:23:06", "throughput": 2474.31, "total_tokens": 1103264}
|
| 359 |
+
{"current_steps": 1795, "total_steps": 36260, "loss": 0.054, "lr": 2.473800330943188e-05, "epoch": 0.4950358521787093, "percentage": 4.95, "elapsed_time": "0:07:27", "remaining_time": "2:23:09", "throughput": 2474.55, "total_tokens": 1107008}
|
| 360 |
+
{"current_steps": 1800, "total_steps": 36260, "loss": 0.1891, "lr": 2.480694980694981e-05, "epoch": 0.49641478212906787, "percentage": 4.96, "elapsed_time": "0:07:28", "remaining_time": "2:23:05", "throughput": 2474.49, "total_tokens": 1109696}
|
| 361 |
+
{"current_steps": 1805, "total_steps": 36260, "loss": 0.0502, "lr": 2.4875896304467734e-05, "epoch": 0.49779371207942635, "percentage": 4.98, "elapsed_time": "0:07:29", "remaining_time": "2:23:05", "throughput": 2474.74, "total_tokens": 1113120}
|
| 362 |
+
{"current_steps": 1810, "total_steps": 36260, "loss": 0.1198, "lr": 2.494484280198566e-05, "epoch": 0.4991726420297849, "percentage": 4.99, "elapsed_time": "0:07:31", "remaining_time": "2:23:06", "throughput": 2475.34, "total_tokens": 1116768}
|
| 363 |
+
{"current_steps": 1813, "total_steps": 36260, "eval_loss": 0.10147319734096527, "epoch": 0.5, "percentage": 5.0, "elapsed_time": "0:08:00", "remaining_time": "2:32:06", "throughput": 2328.26, "total_tokens": 1118368}
|
| 364 |
+
{"current_steps": 1815, "total_steps": 36260, "loss": 0.009, "lr": 2.5013789299503587e-05, "epoch": 0.5005515719801434, "percentage": 5.01, "elapsed_time": "0:08:02", "remaining_time": "2:32:29", "throughput": 2322.77, "total_tokens": 1119808}
|
| 365 |
+
{"current_steps": 1820, "total_steps": 36260, "loss": 0.1332, "lr": 2.5082735797021512e-05, "epoch": 0.5019305019305019, "percentage": 5.02, "elapsed_time": "0:08:03", "remaining_time": "2:32:27", "throughput": 2323.5, "total_tokens": 1123232}
|
| 366 |
+
{"current_steps": 1825, "total_steps": 36260, "loss": 0.0622, "lr": 2.5151682294539437e-05, "epoch": 0.5033094318808604, "percentage": 5.03, "elapsed_time": "0:08:04", "remaining_time": "2:32:25", "throughput": 2324.32, "total_tokens": 1126560}
|
| 367 |
+
{"current_steps": 1830, "total_steps": 36260, "loss": 0.0559, "lr": 2.5220628792057365e-05, "epoch": 0.504688361831219, "percentage": 5.05, "elapsed_time": "0:08:05", "remaining_time": "2:32:20", "throughput": 2324.51, "total_tokens": 1129280}
|
| 368 |
+
{"current_steps": 1835, "total_steps": 36260, "loss": 0.0881, "lr": 2.528957528957529e-05, "epoch": 0.5060672917815775, "percentage": 5.06, "elapsed_time": "0:08:06", "remaining_time": "2:32:15", "throughput": 2324.7, "total_tokens": 1132000}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ebfd06295ea5a7d48aaa7186ec8728b6d3bfa76d39a8ad4d9a5e66dd98dff98
|
| 3 |
+
size 6225
|