Training in progress, step 1908
Browse files- .gitattributes +1 -0
- adapter_config.json +17 -0
- adapter_model.safetensors +3 -0
- special_tokens_map.json +26 -0
- tokenizer.json +3 -0
- tokenizer_config.json +2077 -0
- train.yaml +60 -0
- trainer_log.jsonl +388 -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,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"auto_mapping": null,
|
| 3 |
+
"base_model_name_or_path": "meta-llama/Meta-Llama-3-8B-Instruct",
|
| 4 |
+
"encoder_dropout": 0.1,
|
| 5 |
+
"encoder_hidden_size": 768,
|
| 6 |
+
"encoder_num_layers": 2,
|
| 7 |
+
"encoder_reparameterization_type": "MLP",
|
| 8 |
+
"inference_mode": true,
|
| 9 |
+
"num_attention_heads": 32,
|
| 10 |
+
"num_layers": 32,
|
| 11 |
+
"num_transformer_submodules": 1,
|
| 12 |
+
"num_virtual_tokens": 100,
|
| 13 |
+
"peft_type": "P_TUNING",
|
| 14 |
+
"revision": null,
|
| 15 |
+
"task_type": "CAUSAL_LM",
|
| 16 |
+
"token_dim": 4096
|
| 17 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b325886cca5e494139aa845feac2caeffc5df55a82bdbf161d9723cb651a148
|
| 3 |
+
size 1638528
|
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,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
seed: 42
|
| 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: p-tuning
|
| 13 |
+
task_type: CAUSAL_LM
|
| 14 |
+
num_virtual_tokens: 100
|
| 15 |
+
encoder_reparameterization_type: MLP
|
| 16 |
+
encoder_hidden_size: 768
|
| 17 |
+
encoder_dropout: 0.1
|
| 18 |
+
|
| 19 |
+
### dataset
|
| 20 |
+
dataset: codealpacapy
|
| 21 |
+
template: llama3
|
| 22 |
+
cutoff_len: 2048
|
| 23 |
+
overwrite_cache: true
|
| 24 |
+
preprocessing_num_workers: 8
|
| 25 |
+
dataloader_num_workers: 2
|
| 26 |
+
packing: false
|
| 27 |
+
|
| 28 |
+
### output
|
| 29 |
+
output_dir: saves_multiple/p-tuning/llama-3-8b-instruct/train_codealpacapy_42_1760664611
|
| 30 |
+
logging_steps: 5
|
| 31 |
+
save_steps: 0.05
|
| 32 |
+
overwrite_output_dir: true
|
| 33 |
+
save_only_model: false
|
| 34 |
+
plot_loss: true
|
| 35 |
+
include_num_input_tokens_seen: true
|
| 36 |
+
push_to_hub: true
|
| 37 |
+
push_to_hub_organization: rbelanec
|
| 38 |
+
load_best_model_at_end: true
|
| 39 |
+
save_total_limit: 1
|
| 40 |
+
|
| 41 |
+
### train
|
| 42 |
+
per_device_train_batch_size: 4
|
| 43 |
+
learning_rate: 1.0e-3
|
| 44 |
+
num_train_epochs: 20
|
| 45 |
+
weight_decay: 1.0e-5
|
| 46 |
+
lr_scheduler_type: cosine
|
| 47 |
+
bf16: true
|
| 48 |
+
ddp_timeout: 180000000
|
| 49 |
+
resume_from_checkpoint: null
|
| 50 |
+
warmup_ratio: 0.1
|
| 51 |
+
optim: adamw_torch
|
| 52 |
+
report_to:
|
| 53 |
+
- wandb
|
| 54 |
+
run_name: p-tuning_llama-3-8b-instruct_train_codealpacapy_42_1760664611
|
| 55 |
+
|
| 56 |
+
### eval
|
| 57 |
+
per_device_eval_batch_size: 4
|
| 58 |
+
eval_strategy: steps
|
| 59 |
+
eval_steps: 0.05
|
| 60 |
+
val_size: 0.1
|
trainer_log.jsonl
ADDED
|
@@ -0,0 +1,388 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"current_steps": 5, "total_steps": 38160, "loss": 4.3366, "lr": 1.0482180293501048e-06, "epoch": 0.002620545073375262, "percentage": 0.01, "elapsed_time": "0:00:01", "remaining_time": "3:07:18", "throughput": 2216.28, "total_tokens": 3264}
|
| 2 |
+
{"current_steps": 10, "total_steps": 38160, "loss": 4.3961, "lr": 2.358490566037736e-06, "epoch": 0.005241090146750524, "percentage": 0.03, "elapsed_time": "0:00:02", "remaining_time": "2:14:55", "throughput": 2774.8, "total_tokens": 5888}
|
| 3 |
+
{"current_steps": 15, "total_steps": 38160, "loss": 4.3377, "lr": 3.668763102725367e-06, "epoch": 0.007861635220125786, "percentage": 0.04, "elapsed_time": "0:00:02", "remaining_time": "1:57:10", "throughput": 3067.47, "total_tokens": 8480}
|
| 4 |
+
{"current_steps": 20, "total_steps": 38160, "loss": 3.2407, "lr": 4.979035639412998e-06, "epoch": 0.010482180293501049, "percentage": 0.05, "elapsed_time": "0:00:03", "remaining_time": "1:49:54", "throughput": 3322.21, "total_tokens": 11488}
|
| 5 |
+
{"current_steps": 25, "total_steps": 38160, "loss": 2.08, "lr": 6.289308176100629e-06, "epoch": 0.01310272536687631, "percentage": 0.07, "elapsed_time": "0:00:04", "remaining_time": "1:46:51", "throughput": 3540.33, "total_tokens": 14880}
|
| 6 |
+
{"current_steps": 30, "total_steps": 38160, "loss": 1.0257, "lr": 7.59958071278826e-06, "epoch": 0.015723270440251572, "percentage": 0.08, "elapsed_time": "0:00:04", "remaining_time": "1:45:36", "throughput": 3728.97, "total_tokens": 18592}
|
| 7 |
+
{"current_steps": 35, "total_steps": 38160, "loss": 0.8789, "lr": 8.90985324947589e-06, "epoch": 0.018343815513626835, "percentage": 0.09, "elapsed_time": "0:00:05", "remaining_time": "1:42:52", "throughput": 3806.28, "total_tokens": 21568}
|
| 8 |
+
{"current_steps": 40, "total_steps": 38160, "loss": 0.7281, "lr": 1.0220125786163522e-05, "epoch": 0.020964360587002098, "percentage": 0.1, "elapsed_time": "0:00:06", "remaining_time": "1:40:17", "throughput": 3826.35, "total_tokens": 24160}
|
| 9 |
+
{"current_steps": 45, "total_steps": 38160, "loss": 0.7915, "lr": 1.1530398322851153e-05, "epoch": 0.02358490566037736, "percentage": 0.12, "elapsed_time": "0:00:07", "remaining_time": "1:38:53", "throughput": 3878.35, "total_tokens": 27168}
|
| 10 |
+
{"current_steps": 50, "total_steps": 38160, "loss": 0.6498, "lr": 1.2840670859538784e-05, "epoch": 0.02620545073375262, "percentage": 0.13, "elapsed_time": "0:00:07", "remaining_time": "1:37:41", "throughput": 3911.3, "total_tokens": 30080}
|
| 11 |
+
{"current_steps": 55, "total_steps": 38160, "loss": 0.7485, "lr": 1.4150943396226415e-05, "epoch": 0.028825995807127882, "percentage": 0.14, "elapsed_time": "0:00:08", "remaining_time": "1:36:10", "throughput": 3915.27, "total_tokens": 32608}
|
| 12 |
+
{"current_steps": 60, "total_steps": 38160, "loss": 0.7152, "lr": 1.5461215932914046e-05, "epoch": 0.031446540880503145, "percentage": 0.16, "elapsed_time": "0:00:09", "remaining_time": "1:36:42", "throughput": 3988.73, "total_tokens": 36448}
|
| 13 |
+
{"current_steps": 65, "total_steps": 38160, "loss": 0.4345, "lr": 1.6771488469601677e-05, "epoch": 0.034067085953878404, "percentage": 0.17, "elapsed_time": "0:00:09", "remaining_time": "1:35:21", "throughput": 3989.06, "total_tokens": 38944}
|
| 14 |
+
{"current_steps": 70, "total_steps": 38160, "loss": 0.5775, "lr": 1.8081761006289308e-05, "epoch": 0.03668763102725367, "percentage": 0.18, "elapsed_time": "0:00:10", "remaining_time": "1:34:54", "throughput": 3996.32, "total_tokens": 41824}
|
| 15 |
+
{"current_steps": 75, "total_steps": 38160, "loss": 0.5619, "lr": 1.9392033542976942e-05, "epoch": 0.03930817610062893, "percentage": 0.2, "elapsed_time": "0:00:11", "remaining_time": "1:34:30", "throughput": 4020.44, "total_tokens": 44896}
|
| 16 |
+
{"current_steps": 80, "total_steps": 38160, "loss": 0.5432, "lr": 2.070230607966457e-05, "epoch": 0.041928721174004195, "percentage": 0.21, "elapsed_time": "0:00:11", "remaining_time": "1:33:44", "throughput": 4030.0, "total_tokens": 47616}
|
| 17 |
+
{"current_steps": 85, "total_steps": 38160, "loss": 0.6556, "lr": 2.20125786163522e-05, "epoch": 0.044549266247379454, "percentage": 0.22, "elapsed_time": "0:00:12", "remaining_time": "1:33:08", "throughput": 4037.26, "total_tokens": 50368}
|
| 18 |
+
{"current_steps": 90, "total_steps": 38160, "loss": 0.6779, "lr": 2.3322851153039832e-05, "epoch": 0.04716981132075472, "percentage": 0.24, "elapsed_time": "0:00:13", "remaining_time": "1:33:28", "throughput": 4073.76, "total_tokens": 54016}
|
| 19 |
+
{"current_steps": 95, "total_steps": 38160, "loss": 0.4229, "lr": 2.4633123689727463e-05, "epoch": 0.04979035639412998, "percentage": 0.25, "elapsed_time": "0:00:14", "remaining_time": "1:33:52", "throughput": 4118.36, "total_tokens": 57888}
|
| 20 |
+
{"current_steps": 100, "total_steps": 38160, "loss": 0.5745, "lr": 2.5943396226415097e-05, "epoch": 0.05241090146750524, "percentage": 0.26, "elapsed_time": "0:00:14", "remaining_time": "1:33:34", "throughput": 4136.39, "total_tokens": 61024}
|
| 21 |
+
{"current_steps": 105, "total_steps": 38160, "loss": 0.5809, "lr": 2.7253668763102725e-05, "epoch": 0.055031446540880505, "percentage": 0.28, "elapsed_time": "0:00:15", "remaining_time": "1:33:42", "throughput": 4168.55, "total_tokens": 64672}
|
| 22 |
+
{"current_steps": 110, "total_steps": 38160, "loss": 0.5085, "lr": 2.8563941299790356e-05, "epoch": 0.057651991614255764, "percentage": 0.29, "elapsed_time": "0:00:16", "remaining_time": "1:33:22", "throughput": 4174.8, "total_tokens": 67616}
|
| 23 |
+
{"current_steps": 115, "total_steps": 38160, "loss": 0.521, "lr": 2.987421383647799e-05, "epoch": 0.06027253668763103, "percentage": 0.3, "elapsed_time": "0:00:16", "remaining_time": "1:33:30", "throughput": 4200.05, "total_tokens": 71232}
|
| 24 |
+
{"current_steps": 120, "total_steps": 38160, "loss": 0.4112, "lr": 3.118448637316562e-05, "epoch": 0.06289308176100629, "percentage": 0.31, "elapsed_time": "0:00:17", "remaining_time": "1:33:41", "throughput": 4222.73, "total_tokens": 74880}
|
| 25 |
+
{"current_steps": 125, "total_steps": 38160, "loss": 0.5647, "lr": 3.2494758909853245e-05, "epoch": 0.06551362683438156, "percentage": 0.33, "elapsed_time": "0:00:18", "remaining_time": "1:33:46", "throughput": 4241.63, "total_tokens": 78432}
|
| 26 |
+
{"current_steps": 130, "total_steps": 38160, "loss": 0.4921, "lr": 3.380503144654088e-05, "epoch": 0.06813417190775681, "percentage": 0.34, "elapsed_time": "0:00:19", "remaining_time": "1:33:17", "throughput": 4237.51, "total_tokens": 81088}
|
| 27 |
+
{"current_steps": 135, "total_steps": 38160, "loss": 0.5339, "lr": 3.5115303983228514e-05, "epoch": 0.07075471698113207, "percentage": 0.35, "elapsed_time": "0:00:19", "remaining_time": "1:33:29", "throughput": 4262.7, "total_tokens": 84896}
|
| 28 |
+
{"current_steps": 140, "total_steps": 38160, "loss": 0.5942, "lr": 3.642557651991614e-05, "epoch": 0.07337526205450734, "percentage": 0.37, "elapsed_time": "0:00:20", "remaining_time": "1:33:50", "throughput": 4279.87, "total_tokens": 88736}
|
| 29 |
+
{"current_steps": 145, "total_steps": 38160, "loss": 0.8808, "lr": 3.7735849056603776e-05, "epoch": 0.0759958071278826, "percentage": 0.38, "elapsed_time": "0:00:21", "remaining_time": "1:33:52", "throughput": 4292.92, "total_tokens": 92224}
|
| 30 |
+
{"current_steps": 150, "total_steps": 38160, "loss": 0.5362, "lr": 3.90461215932914e-05, "epoch": 0.07861635220125786, "percentage": 0.39, "elapsed_time": "0:00:22", "remaining_time": "1:33:37", "throughput": 4293.23, "total_tokens": 95168}
|
| 31 |
+
{"current_steps": 155, "total_steps": 38160, "loss": 0.5562, "lr": 4.035639412997904e-05, "epoch": 0.08123689727463312, "percentage": 0.41, "elapsed_time": "0:00:22", "remaining_time": "1:33:50", "throughput": 4310.07, "total_tokens": 98976}
|
| 32 |
+
{"current_steps": 160, "total_steps": 38160, "loss": 0.469, "lr": 4.1666666666666665e-05, "epoch": 0.08385744234800839, "percentage": 0.42, "elapsed_time": "0:00:23", "remaining_time": "1:33:44", "throughput": 4314.39, "total_tokens": 102176}
|
| 33 |
+
{"current_steps": 165, "total_steps": 38160, "loss": 0.464, "lr": 4.29769392033543e-05, "epoch": 0.08647798742138364, "percentage": 0.43, "elapsed_time": "0:00:24", "remaining_time": "1:33:52", "throughput": 4326.48, "total_tokens": 105824}
|
| 34 |
+
{"current_steps": 170, "total_steps": 38160, "loss": 0.5105, "lr": 4.4287211740041934e-05, "epoch": 0.08909853249475891, "percentage": 0.45, "elapsed_time": "0:00:25", "remaining_time": "1:33:31", "throughput": 4321.19, "total_tokens": 108512}
|
| 35 |
+
{"current_steps": 175, "total_steps": 38160, "loss": 0.523, "lr": 4.5597484276729555e-05, "epoch": 0.09171907756813417, "percentage": 0.46, "elapsed_time": "0:00:25", "remaining_time": "1:33:31", "throughput": 4327.47, "total_tokens": 111872}
|
| 36 |
+
{"current_steps": 180, "total_steps": 38160, "loss": 0.4721, "lr": 4.690775681341719e-05, "epoch": 0.09433962264150944, "percentage": 0.47, "elapsed_time": "0:00:26", "remaining_time": "1:33:35", "throughput": 4341.91, "total_tokens": 115552}
|
| 37 |
+
{"current_steps": 185, "total_steps": 38160, "loss": 0.6313, "lr": 4.8218029350104823e-05, "epoch": 0.09696016771488469, "percentage": 0.48, "elapsed_time": "0:00:27", "remaining_time": "1:33:31", "throughput": 4345.34, "total_tokens": 118784}
|
| 38 |
+
{"current_steps": 190, "total_steps": 38160, "loss": 0.4303, "lr": 4.952830188679246e-05, "epoch": 0.09958071278825996, "percentage": 0.5, "elapsed_time": "0:00:28", "remaining_time": "1:33:39", "throughput": 4357.49, "total_tokens": 122528}
|
| 39 |
+
{"current_steps": 195, "total_steps": 38160, "loss": 0.5259, "lr": 5.0838574423480085e-05, "epoch": 0.10220125786163523, "percentage": 0.51, "elapsed_time": "0:00:28", "remaining_time": "1:33:16", "throughput": 4349.25, "total_tokens": 125024}
|
| 40 |
+
{"current_steps": 200, "total_steps": 38160, "loss": 0.5996, "lr": 5.214884696016771e-05, "epoch": 0.10482180293501048, "percentage": 0.52, "elapsed_time": "0:00:29", "remaining_time": "1:33:09", "throughput": 4349.31, "total_tokens": 128096}
|
| 41 |
+
{"current_steps": 205, "total_steps": 38160, "loss": 0.6745, "lr": 5.345911949685535e-05, "epoch": 0.10744234800838574, "percentage": 0.54, "elapsed_time": "0:00:30", "remaining_time": "1:32:46", "throughput": 4340.7, "total_tokens": 130496}
|
| 42 |
+
{"current_steps": 210, "total_steps": 38160, "loss": 0.5892, "lr": 5.4769392033542975e-05, "epoch": 0.11006289308176101, "percentage": 0.55, "elapsed_time": "0:00:30", "remaining_time": "1:32:29", "throughput": 4335.98, "total_tokens": 133152}
|
| 43 |
+
{"current_steps": 215, "total_steps": 38160, "loss": 0.6939, "lr": 5.607966457023061e-05, "epoch": 0.11268343815513626, "percentage": 0.56, "elapsed_time": "0:00:31", "remaining_time": "1:32:26", "throughput": 4339.45, "total_tokens": 136384}
|
| 44 |
+
{"current_steps": 220, "total_steps": 38160, "loss": 0.6202, "lr": 5.7389937106918244e-05, "epoch": 0.11530398322851153, "percentage": 0.58, "elapsed_time": "0:00:32", "remaining_time": "1:32:19", "throughput": 4341.18, "total_tokens": 139456}
|
| 45 |
+
{"current_steps": 225, "total_steps": 38160, "loss": 0.626, "lr": 5.870020964360587e-05, "epoch": 0.1179245283018868, "percentage": 0.59, "elapsed_time": "0:00:32", "remaining_time": "1:32:19", "throughput": 4346.4, "total_tokens": 142816}
|
| 46 |
+
{"current_steps": 230, "total_steps": 38160, "loss": 0.5322, "lr": 6.00104821802935e-05, "epoch": 0.12054507337526206, "percentage": 0.6, "elapsed_time": "0:00:33", "remaining_time": "1:32:09", "throughput": 4345.53, "total_tokens": 145696}
|
| 47 |
+
{"current_steps": 235, "total_steps": 38160, "loss": 0.6419, "lr": 6.132075471698113e-05, "epoch": 0.12316561844863731, "percentage": 0.62, "elapsed_time": "0:00:34", "remaining_time": "1:32:08", "throughput": 4350.41, "total_tokens": 149024}
|
| 48 |
+
{"current_steps": 240, "total_steps": 38160, "loss": 0.5641, "lr": 6.263102725366875e-05, "epoch": 0.12578616352201258, "percentage": 0.63, "elapsed_time": "0:00:34", "remaining_time": "1:31:58", "throughput": 4347.37, "total_tokens": 151840}
|
| 49 |
+
{"current_steps": 245, "total_steps": 38160, "loss": 0.6886, "lr": 6.39412997903564e-05, "epoch": 0.12840670859538783, "percentage": 0.64, "elapsed_time": "0:00:35", "remaining_time": "1:32:04", "throughput": 4354.86, "total_tokens": 155456}
|
| 50 |
+
{"current_steps": 250, "total_steps": 38160, "loss": 0.5696, "lr": 6.525157232704402e-05, "epoch": 0.1310272536687631, "percentage": 0.66, "elapsed_time": "0:00:36", "remaining_time": "1:31:59", "throughput": 4355.42, "total_tokens": 158528}
|
| 51 |
+
{"current_steps": 255, "total_steps": 38160, "loss": 0.5468, "lr": 6.656184486373166e-05, "epoch": 0.13364779874213836, "percentage": 0.67, "elapsed_time": "0:00:37", "remaining_time": "1:33:36", "throughput": 4406.81, "total_tokens": 166496}
|
| 52 |
+
{"current_steps": 260, "total_steps": 38160, "loss": 0.5205, "lr": 6.787211740041929e-05, "epoch": 0.13626834381551362, "percentage": 0.68, "elapsed_time": "0:00:38", "remaining_time": "1:33:29", "throughput": 4406.65, "total_tokens": 169568}
|
| 53 |
+
{"current_steps": 265, "total_steps": 38160, "loss": 0.6078, "lr": 6.918238993710691e-05, "epoch": 0.1388888888888889, "percentage": 0.69, "elapsed_time": "0:00:39", "remaining_time": "1:33:24", "throughput": 4406.91, "total_tokens": 172704}
|
| 54 |
+
{"current_steps": 270, "total_steps": 38160, "loss": 0.7384, "lr": 7.049266247379455e-05, "epoch": 0.14150943396226415, "percentage": 0.71, "elapsed_time": "0:00:39", "remaining_time": "1:33:30", "throughput": 4414.05, "total_tokens": 176480}
|
| 55 |
+
{"current_steps": 275, "total_steps": 38160, "loss": 0.5469, "lr": 7.180293501048218e-05, "epoch": 0.1441299790356394, "percentage": 0.72, "elapsed_time": "0:00:40", "remaining_time": "1:33:57", "throughput": 4433.35, "total_tokens": 181408}
|
| 56 |
+
{"current_steps": 280, "total_steps": 38160, "loss": 0.5923, "lr": 7.311320754716982e-05, "epoch": 0.14675052410901468, "percentage": 0.73, "elapsed_time": "0:00:41", "remaining_time": "1:33:54", "throughput": 4435.18, "total_tokens": 184736}
|
| 57 |
+
{"current_steps": 285, "total_steps": 38160, "loss": 0.5122, "lr": 7.442348008385745e-05, "epoch": 0.14937106918238993, "percentage": 0.75, "elapsed_time": "0:00:42", "remaining_time": "1:33:56", "throughput": 4440.69, "total_tokens": 188352}
|
| 58 |
+
{"current_steps": 290, "total_steps": 38160, "loss": 0.4922, "lr": 7.573375262054507e-05, "epoch": 0.1519916142557652, "percentage": 0.76, "elapsed_time": "0:00:43", "remaining_time": "1:34:26", "throughput": 4457.2, "total_tokens": 193408}
|
| 59 |
+
{"current_steps": 295, "total_steps": 38160, "loss": 0.4207, "lr": 7.70440251572327e-05, "epoch": 0.15461215932914046, "percentage": 0.77, "elapsed_time": "0:00:44", "remaining_time": "1:34:17", "throughput": 4455.63, "total_tokens": 196384}
|
| 60 |
+
{"current_steps": 300, "total_steps": 38160, "loss": 0.6115, "lr": 7.835429769392034e-05, "epoch": 0.15723270440251572, "percentage": 0.79, "elapsed_time": "0:00:44", "remaining_time": "1:34:09", "throughput": 4453.36, "total_tokens": 199360}
|
| 61 |
+
{"current_steps": 305, "total_steps": 38160, "loss": 0.5228, "lr": 7.966457023060797e-05, "epoch": 0.159853249475891, "percentage": 0.8, "elapsed_time": "0:00:45", "remaining_time": "1:34:10", "throughput": 4455.43, "total_tokens": 202848}
|
| 62 |
+
{"current_steps": 310, "total_steps": 38160, "loss": 0.4791, "lr": 8.09748427672956e-05, "epoch": 0.16247379454926625, "percentage": 0.81, "elapsed_time": "0:00:46", "remaining_time": "1:34:25", "throughput": 4463.62, "total_tokens": 207104}
|
| 63 |
+
{"current_steps": 315, "total_steps": 38160, "loss": 0.637, "lr": 8.228511530398323e-05, "epoch": 0.1650943396226415, "percentage": 0.83, "elapsed_time": "0:00:47", "remaining_time": "1:34:09", "throughput": 4457.23, "total_tokens": 209600}
|
| 64 |
+
{"current_steps": 320, "total_steps": 38160, "loss": 0.611, "lr": 8.359538784067086e-05, "epoch": 0.16771488469601678, "percentage": 0.84, "elapsed_time": "0:00:47", "remaining_time": "1:34:11", "throughput": 4459.71, "total_tokens": 213152}
|
| 65 |
+
{"current_steps": 325, "total_steps": 38160, "loss": 0.7027, "lr": 8.490566037735848e-05, "epoch": 0.17033542976939203, "percentage": 0.85, "elapsed_time": "0:00:48", "remaining_time": "1:33:56", "throughput": 4453.48, "total_tokens": 215616}
|
| 66 |
+
{"current_steps": 330, "total_steps": 38160, "loss": 0.6089, "lr": 8.621593291404613e-05, "epoch": 0.17295597484276728, "percentage": 0.86, "elapsed_time": "0:00:49", "remaining_time": "1:33:48", "throughput": 4451.0, "total_tokens": 218528}
|
| 67 |
+
{"current_steps": 335, "total_steps": 38160, "loss": 0.4405, "lr": 8.752620545073375e-05, "epoch": 0.17557651991614256, "percentage": 0.88, "elapsed_time": "0:00:49", "remaining_time": "1:33:46", "throughput": 4451.53, "total_tokens": 221824}
|
| 68 |
+
{"current_steps": 340, "total_steps": 38160, "loss": 0.5055, "lr": 8.883647798742137e-05, "epoch": 0.17819706498951782, "percentage": 0.89, "elapsed_time": "0:00:50", "remaining_time": "1:33:46", "throughput": 4453.62, "total_tokens": 225280}
|
| 69 |
+
{"current_steps": 345, "total_steps": 38160, "loss": 0.4572, "lr": 9.014675052410902e-05, "epoch": 0.18081761006289307, "percentage": 0.9, "elapsed_time": "0:00:51", "remaining_time": "1:34:20", "throughput": 4471.0, "total_tokens": 230912}
|
| 70 |
+
{"current_steps": 350, "total_steps": 38160, "loss": 0.5646, "lr": 9.145702306079664e-05, "epoch": 0.18343815513626835, "percentage": 0.92, "elapsed_time": "0:00:52", "remaining_time": "1:34:22", "throughput": 4475.13, "total_tokens": 234592}
|
| 71 |
+
{"current_steps": 355, "total_steps": 38160, "loss": 0.493, "lr": 9.276729559748428e-05, "epoch": 0.1860587002096436, "percentage": 0.93, "elapsed_time": "0:00:53", "remaining_time": "1:34:16", "throughput": 4473.31, "total_tokens": 237600}
|
| 72 |
+
{"current_steps": 360, "total_steps": 38160, "loss": 0.6188, "lr": 9.407756813417191e-05, "epoch": 0.18867924528301888, "percentage": 0.94, "elapsed_time": "0:00:53", "remaining_time": "1:34:16", "throughput": 4475.5, "total_tokens": 241088}
|
| 73 |
+
{"current_steps": 365, "total_steps": 38160, "loss": 0.5569, "lr": 9.538784067085953e-05, "epoch": 0.19129979035639413, "percentage": 0.96, "elapsed_time": "0:00:54", "remaining_time": "1:34:01", "throughput": 4469.52, "total_tokens": 243520}
|
| 74 |
+
{"current_steps": 370, "total_steps": 38160, "loss": 0.742, "lr": 9.669811320754718e-05, "epoch": 0.19392033542976939, "percentage": 0.97, "elapsed_time": "0:00:55", "remaining_time": "1:34:07", "throughput": 4474.94, "total_tokens": 247456}
|
| 75 |
+
{"current_steps": 375, "total_steps": 38160, "loss": 0.4974, "lr": 9.80083857442348e-05, "epoch": 0.19654088050314467, "percentage": 0.98, "elapsed_time": "0:00:56", "remaining_time": "1:34:05", "throughput": 4476.09, "total_tokens": 250784}
|
| 76 |
+
{"current_steps": 380, "total_steps": 38160, "loss": 0.542, "lr": 9.931865828092243e-05, "epoch": 0.19916142557651992, "percentage": 1.0, "elapsed_time": "0:00:56", "remaining_time": "1:34:15", "throughput": 4483.88, "total_tokens": 255040}
|
| 77 |
+
{"current_steps": 385, "total_steps": 38160, "loss": 0.6188, "lr": 0.00010062893081761007, "epoch": 0.20178197064989517, "percentage": 1.01, "elapsed_time": "0:00:57", "remaining_time": "1:34:11", "throughput": 4483.57, "total_tokens": 258240}
|
| 78 |
+
{"current_steps": 390, "total_steps": 38160, "loss": 0.4524, "lr": 0.0001019392033542977, "epoch": 0.20440251572327045, "percentage": 1.02, "elapsed_time": "0:00:58", "remaining_time": "1:34:04", "throughput": 4480.67, "total_tokens": 261152}
|
| 79 |
+
{"current_steps": 395, "total_steps": 38160, "loss": 0.5425, "lr": 0.00010324947589098532, "epoch": 0.2070230607966457, "percentage": 1.04, "elapsed_time": "0:00:59", "remaining_time": "1:34:02", "throughput": 4482.12, "total_tokens": 264544}
|
| 80 |
+
{"current_steps": 400, "total_steps": 38160, "loss": 0.6098, "lr": 0.00010455974842767296, "epoch": 0.20964360587002095, "percentage": 1.05, "elapsed_time": "0:00:59", "remaining_time": "1:33:52", "throughput": 4477.24, "total_tokens": 267136}
|
| 81 |
+
{"current_steps": 405, "total_steps": 38160, "loss": 0.4776, "lr": 0.00010587002096436059, "epoch": 0.21226415094339623, "percentage": 1.06, "elapsed_time": "0:01:00", "remaining_time": "1:33:50", "throughput": 4477.83, "total_tokens": 270464}
|
| 82 |
+
{"current_steps": 410, "total_steps": 38160, "loss": 0.5049, "lr": 0.00010718029350104821, "epoch": 0.2148846960167715, "percentage": 1.07, "elapsed_time": "0:01:01", "remaining_time": "1:33:57", "throughput": 4483.44, "total_tokens": 274528}
|
| 83 |
+
{"current_steps": 415, "total_steps": 38160, "loss": 0.4909, "lr": 0.00010849056603773586, "epoch": 0.21750524109014674, "percentage": 1.09, "elapsed_time": "0:01:01", "remaining_time": "1:33:51", "throughput": 4479.8, "total_tokens": 277376}
|
| 84 |
+
{"current_steps": 420, "total_steps": 38160, "loss": 0.395, "lr": 0.00010980083857442348, "epoch": 0.22012578616352202, "percentage": 1.1, "elapsed_time": "0:01:02", "remaining_time": "1:33:38", "throughput": 4472.27, "total_tokens": 279616}
|
| 85 |
+
{"current_steps": 425, "total_steps": 38160, "loss": 0.4555, "lr": 0.0001111111111111111, "epoch": 0.22274633123689727, "percentage": 1.11, "elapsed_time": "0:01:03", "remaining_time": "1:33:33", "throughput": 4470.51, "total_tokens": 282656}
|
| 86 |
+
{"current_steps": 430, "total_steps": 38160, "loss": 0.5687, "lr": 0.00011242138364779875, "epoch": 0.22536687631027252, "percentage": 1.13, "elapsed_time": "0:01:03", "remaining_time": "1:33:27", "throughput": 4469.01, "total_tokens": 285600}
|
| 87 |
+
{"current_steps": 435, "total_steps": 38160, "loss": 0.395, "lr": 0.00011373165618448637, "epoch": 0.2279874213836478, "percentage": 1.14, "elapsed_time": "0:01:04", "remaining_time": "1:33:32", "throughput": 4474.17, "total_tokens": 289568}
|
| 88 |
+
{"current_steps": 440, "total_steps": 38160, "loss": 0.592, "lr": 0.00011504192872117402, "epoch": 0.23060796645702306, "percentage": 1.15, "elapsed_time": "0:01:05", "remaining_time": "1:33:30", "throughput": 4473.79, "total_tokens": 292768}
|
| 89 |
+
{"current_steps": 445, "total_steps": 38160, "loss": 0.6336, "lr": 0.00011635220125786164, "epoch": 0.23322851153039834, "percentage": 1.17, "elapsed_time": "0:01:06", "remaining_time": "1:33:21", "throughput": 4470.61, "total_tokens": 295456}
|
| 90 |
+
{"current_steps": 450, "total_steps": 38160, "loss": 0.5672, "lr": 0.00011766247379454926, "epoch": 0.2358490566037736, "percentage": 1.18, "elapsed_time": "0:01:06", "remaining_time": "1:33:27", "throughput": 4475.96, "total_tokens": 299488}
|
| 91 |
+
{"current_steps": 455, "total_steps": 38160, "loss": 0.4676, "lr": 0.00011897274633123691, "epoch": 0.23846960167714884, "percentage": 1.19, "elapsed_time": "0:01:07", "remaining_time": "1:33:28", "throughput": 4476.61, "total_tokens": 302976}
|
| 92 |
+
{"current_steps": 460, "total_steps": 38160, "loss": 0.5342, "lr": 0.00012028301886792453, "epoch": 0.24109014675052412, "percentage": 1.21, "elapsed_time": "0:01:08", "remaining_time": "1:33:28", "throughput": 4479.35, "total_tokens": 306560}
|
| 93 |
+
{"current_steps": 465, "total_steps": 38160, "loss": 0.4462, "lr": 0.00012159329140461216, "epoch": 0.24371069182389937, "percentage": 1.22, "elapsed_time": "0:01:09", "remaining_time": "1:33:23", "throughput": 4477.61, "total_tokens": 309536}
|
| 94 |
+
{"current_steps": 470, "total_steps": 38160, "loss": 0.5008, "lr": 0.0001229035639412998, "epoch": 0.24633123689727462, "percentage": 1.23, "elapsed_time": "0:01:09", "remaining_time": "1:33:18", "throughput": 4477.11, "total_tokens": 312576}
|
| 95 |
+
{"current_steps": 475, "total_steps": 38160, "loss": 0.4987, "lr": 0.00012421383647798743, "epoch": 0.2489517819706499, "percentage": 1.24, "elapsed_time": "0:01:10", "remaining_time": "1:33:13", "throughput": 4476.34, "total_tokens": 315616}
|
| 96 |
+
{"current_steps": 480, "total_steps": 38160, "loss": 0.5167, "lr": 0.00012552410901467507, "epoch": 0.25157232704402516, "percentage": 1.26, "elapsed_time": "0:01:11", "remaining_time": "1:33:13", "throughput": 4478.42, "total_tokens": 319136}
|
| 97 |
+
{"current_steps": 485, "total_steps": 38160, "loss": 0.6978, "lr": 0.00012683438155136267, "epoch": 0.25419287211740044, "percentage": 1.27, "elapsed_time": "0:01:11", "remaining_time": "1:33:02", "throughput": 4471.92, "total_tokens": 321376}
|
| 98 |
+
{"current_steps": 490, "total_steps": 38160, "loss": 0.5501, "lr": 0.0001281446540880503, "epoch": 0.25681341719077566, "percentage": 1.28, "elapsed_time": "0:01:12", "remaining_time": "1:33:02", "throughput": 4474.76, "total_tokens": 324928}
|
| 99 |
+
{"current_steps": 495, "total_steps": 38160, "loss": 0.6535, "lr": 0.00012945492662473794, "epoch": 0.25943396226415094, "percentage": 1.3, "elapsed_time": "0:01:13", "remaining_time": "1:33:11", "throughput": 4480.87, "total_tokens": 329248}
|
| 100 |
+
{"current_steps": 500, "total_steps": 38160, "loss": 0.6412, "lr": 0.00013076519916142558, "epoch": 0.2620545073375262, "percentage": 1.31, "elapsed_time": "0:01:14", "remaining_time": "1:33:06", "throughput": 4480.1, "total_tokens": 332288}
|
| 101 |
+
{"current_steps": 505, "total_steps": 38160, "loss": 0.5217, "lr": 0.0001320754716981132, "epoch": 0.26467505241090145, "percentage": 1.32, "elapsed_time": "0:01:14", "remaining_time": "1:32:56", "throughput": 4476.05, "total_tokens": 334752}
|
| 102 |
+
{"current_steps": 510, "total_steps": 38160, "loss": 0.5572, "lr": 0.00013338574423480085, "epoch": 0.2672955974842767, "percentage": 1.34, "elapsed_time": "0:01:15", "remaining_time": "1:32:53", "throughput": 4475.13, "total_tokens": 337856}
|
| 103 |
+
{"current_steps": 515, "total_steps": 38160, "loss": 0.6406, "lr": 0.00013469601677148845, "epoch": 0.269916142557652, "percentage": 1.35, "elapsed_time": "0:01:16", "remaining_time": "1:32:57", "throughput": 4479.04, "total_tokens": 341792}
|
| 104 |
+
{"current_steps": 520, "total_steps": 38160, "loss": 0.6394, "lr": 0.0001360062893081761, "epoch": 0.27253668763102723, "percentage": 1.36, "elapsed_time": "0:01:16", "remaining_time": "1:32:53", "throughput": 4477.69, "total_tokens": 344768}
|
| 105 |
+
{"current_steps": 525, "total_steps": 38160, "loss": 0.4626, "lr": 0.00013731656184486375, "epoch": 0.2751572327044025, "percentage": 1.38, "elapsed_time": "0:01:17", "remaining_time": "1:32:45", "throughput": 4474.22, "total_tokens": 347360}
|
| 106 |
+
{"current_steps": 530, "total_steps": 38160, "loss": 0.4874, "lr": 0.00013862683438155136, "epoch": 0.2777777777777778, "percentage": 1.39, "elapsed_time": "0:01:18", "remaining_time": "1:32:43", "throughput": 4474.55, "total_tokens": 350592}
|
| 107 |
+
{"current_steps": 535, "total_steps": 38160, "loss": 0.491, "lr": 0.000139937106918239, "epoch": 0.280398322851153, "percentage": 1.4, "elapsed_time": "0:01:19", "remaining_time": "1:32:39", "throughput": 4472.75, "total_tokens": 353568}
|
| 108 |
+
{"current_steps": 540, "total_steps": 38160, "loss": 0.6103, "lr": 0.00014124737945492663, "epoch": 0.2830188679245283, "percentage": 1.42, "elapsed_time": "0:01:19", "remaining_time": "1:32:32", "throughput": 4470.57, "total_tokens": 356320}
|
| 109 |
+
{"current_steps": 545, "total_steps": 38160, "loss": 0.5264, "lr": 0.00014255765199161423, "epoch": 0.2856394129979036, "percentage": 1.43, "elapsed_time": "0:01:20", "remaining_time": "1:32:33", "throughput": 4473.59, "total_tokens": 359968}
|
| 110 |
+
{"current_steps": 550, "total_steps": 38160, "loss": 0.4495, "lr": 0.0001438679245283019, "epoch": 0.2882599580712788, "percentage": 1.44, "elapsed_time": "0:01:21", "remaining_time": "1:32:27", "throughput": 4471.39, "total_tokens": 362752}
|
| 111 |
+
{"current_steps": 555, "total_steps": 38160, "loss": 0.5891, "lr": 0.00014517819706498953, "epoch": 0.2908805031446541, "percentage": 1.45, "elapsed_time": "0:01:21", "remaining_time": "1:32:19", "throughput": 4468.24, "total_tokens": 365312}
|
| 112 |
+
{"current_steps": 560, "total_steps": 38160, "loss": 0.4835, "lr": 0.00014648846960167716, "epoch": 0.29350104821802936, "percentage": 1.47, "elapsed_time": "0:01:22", "remaining_time": "1:32:20", "throughput": 4470.41, "total_tokens": 368896}
|
| 113 |
+
{"current_steps": 565, "total_steps": 38160, "loss": 0.5361, "lr": 0.00014779874213836477, "epoch": 0.29612159329140464, "percentage": 1.48, "elapsed_time": "0:01:23", "remaining_time": "1:32:14", "throughput": 4468.48, "total_tokens": 371648}
|
| 114 |
+
{"current_steps": 570, "total_steps": 38160, "loss": 0.5799, "lr": 0.00014910901467505243, "epoch": 0.29874213836477986, "percentage": 1.49, "elapsed_time": "0:01:23", "remaining_time": "1:32:12", "throughput": 4468.2, "total_tokens": 374848}
|
| 115 |
+
{"current_steps": 575, "total_steps": 38160, "loss": 0.5398, "lr": 0.00015041928721174007, "epoch": 0.30136268343815514, "percentage": 1.51, "elapsed_time": "0:01:24", "remaining_time": "1:32:03", "throughput": 4463.68, "total_tokens": 377184}
|
| 116 |
+
{"current_steps": 580, "total_steps": 38160, "loss": 0.6253, "lr": 0.00015172955974842767, "epoch": 0.3039832285115304, "percentage": 1.52, "elapsed_time": "0:01:25", "remaining_time": "1:32:10", "throughput": 4469.9, "total_tokens": 381504}
|
| 117 |
+
{"current_steps": 585, "total_steps": 38160, "loss": 0.5353, "lr": 0.0001530398322851153, "epoch": 0.30660377358490565, "percentage": 1.53, "elapsed_time": "0:01:26", "remaining_time": "1:32:07", "throughput": 4469.61, "total_tokens": 384672}
|
| 118 |
+
{"current_steps": 590, "total_steps": 38160, "loss": 0.5229, "lr": 0.00015435010482180294, "epoch": 0.30922431865828093, "percentage": 1.55, "elapsed_time": "0:01:26", "remaining_time": "1:32:19", "throughput": 4476.18, "total_tokens": 389376}
|
| 119 |
+
{"current_steps": 595, "total_steps": 38160, "loss": 0.589, "lr": 0.00015566037735849058, "epoch": 0.3118448637316562, "percentage": 1.56, "elapsed_time": "0:01:27", "remaining_time": "1:32:17", "throughput": 4475.4, "total_tokens": 392512}
|
| 120 |
+
{"current_steps": 600, "total_steps": 38160, "loss": 0.5162, "lr": 0.0001569706498951782, "epoch": 0.31446540880503143, "percentage": 1.57, "elapsed_time": "0:01:28", "remaining_time": "1:32:23", "throughput": 4481.71, "total_tokens": 396864}
|
| 121 |
+
{"current_steps": 605, "total_steps": 38160, "loss": 0.4766, "lr": 0.00015828092243186584, "epoch": 0.3170859538784067, "percentage": 1.59, "elapsed_time": "0:01:29", "remaining_time": "1:32:16", "throughput": 4479.38, "total_tokens": 399520}
|
| 122 |
+
{"current_steps": 610, "total_steps": 38160, "loss": 0.4859, "lr": 0.00015959119496855345, "epoch": 0.319706498951782, "percentage": 1.6, "elapsed_time": "0:01:29", "remaining_time": "1:32:12", "throughput": 4478.77, "total_tokens": 402560}
|
| 123 |
+
{"current_steps": 615, "total_steps": 38160, "loss": 0.6413, "lr": 0.00016090146750524109, "epoch": 0.3223270440251572, "percentage": 1.61, "elapsed_time": "0:01:30", "remaining_time": "1:32:14", "throughput": 4480.71, "total_tokens": 406240}
|
| 124 |
+
{"current_steps": 620, "total_steps": 38160, "loss": 0.5483, "lr": 0.00016221174004192875, "epoch": 0.3249475890985325, "percentage": 1.62, "elapsed_time": "0:01:31", "remaining_time": "1:32:08", "throughput": 4478.58, "total_tokens": 408960}
|
| 125 |
+
{"current_steps": 625, "total_steps": 38160, "loss": 0.6812, "lr": 0.00016352201257861635, "epoch": 0.3275681341719078, "percentage": 1.64, "elapsed_time": "0:01:32", "remaining_time": "1:32:07", "throughput": 4479.0, "total_tokens": 412224}
|
| 126 |
+
{"current_steps": 630, "total_steps": 38160, "loss": 0.4919, "lr": 0.000164832285115304, "epoch": 0.330188679245283, "percentage": 1.65, "elapsed_time": "0:01:32", "remaining_time": "1:32:04", "throughput": 4478.0, "total_tokens": 415296}
|
| 127 |
+
{"current_steps": 635, "total_steps": 38160, "loss": 0.4547, "lr": 0.00016614255765199162, "epoch": 0.3328092243186583, "percentage": 1.66, "elapsed_time": "0:01:33", "remaining_time": "1:31:55", "throughput": 4473.36, "total_tokens": 417504}
|
| 128 |
+
{"current_steps": 640, "total_steps": 38160, "loss": 0.5495, "lr": 0.00016745283018867923, "epoch": 0.33542976939203356, "percentage": 1.68, "elapsed_time": "0:01:33", "remaining_time": "1:31:50", "throughput": 4471.4, "total_tokens": 420288}
|
| 129 |
+
{"current_steps": 645, "total_steps": 38160, "loss": 0.6852, "lr": 0.0001687631027253669, "epoch": 0.3380503144654088, "percentage": 1.69, "elapsed_time": "0:01:34", "remaining_time": "1:31:41", "throughput": 4466.98, "total_tokens": 422560}
|
| 130 |
+
{"current_steps": 650, "total_steps": 38160, "loss": 0.6101, "lr": 0.00017007337526205453, "epoch": 0.34067085953878407, "percentage": 1.7, "elapsed_time": "0:01:35", "remaining_time": "1:31:38", "throughput": 4465.8, "total_tokens": 425472}
|
| 131 |
+
{"current_steps": 655, "total_steps": 38160, "loss": 0.5264, "lr": 0.00017138364779874213, "epoch": 0.34329140461215935, "percentage": 1.72, "elapsed_time": "0:01:36", "remaining_time": "1:31:38", "throughput": 4467.79, "total_tokens": 429056}
|
| 132 |
+
{"current_steps": 660, "total_steps": 38160, "loss": 0.492, "lr": 0.00017269392033542977, "epoch": 0.34591194968553457, "percentage": 1.73, "elapsed_time": "0:01:36", "remaining_time": "1:31:42", "throughput": 4471.28, "total_tokens": 433024}
|
| 133 |
+
{"current_steps": 665, "total_steps": 38160, "loss": 0.5435, "lr": 0.0001740041928721174, "epoch": 0.34853249475890985, "percentage": 1.74, "elapsed_time": "0:01:37", "remaining_time": "1:31:37", "throughput": 4469.45, "total_tokens": 435776}
|
| 134 |
+
{"current_steps": 670, "total_steps": 38160, "loss": 0.5188, "lr": 0.00017531446540880504, "epoch": 0.35115303983228513, "percentage": 1.76, "elapsed_time": "0:01:38", "remaining_time": "1:31:31", "throughput": 4467.1, "total_tokens": 438432}
|
| 135 |
+
{"current_steps": 675, "total_steps": 38160, "loss": 0.5188, "lr": 0.00017662473794549267, "epoch": 0.35377358490566035, "percentage": 1.77, "elapsed_time": "0:01:38", "remaining_time": "1:31:35", "throughput": 4470.71, "total_tokens": 442400}
|
| 136 |
+
{"current_steps": 680, "total_steps": 38160, "loss": 0.6068, "lr": 0.0001779350104821803, "epoch": 0.35639412997903563, "percentage": 1.78, "elapsed_time": "0:01:39", "remaining_time": "1:31:35", "throughput": 4472.14, "total_tokens": 445888}
|
| 137 |
+
{"current_steps": 685, "total_steps": 38160, "loss": 0.4774, "lr": 0.0001792452830188679, "epoch": 0.3590146750524109, "percentage": 1.8, "elapsed_time": "0:01:40", "remaining_time": "1:31:31", "throughput": 4471.35, "total_tokens": 448864}
|
| 138 |
+
{"current_steps": 690, "total_steps": 38160, "loss": 0.6968, "lr": 0.00018055555555555555, "epoch": 0.36163522012578614, "percentage": 1.81, "elapsed_time": "0:01:41", "remaining_time": "1:31:34", "throughput": 4473.86, "total_tokens": 452640}
|
| 139 |
+
{"current_steps": 695, "total_steps": 38160, "loss": 0.6116, "lr": 0.0001818658280922432, "epoch": 0.3642557651991614, "percentage": 1.82, "elapsed_time": "0:01:41", "remaining_time": "1:31:28", "throughput": 4471.43, "total_tokens": 455296}
|
| 140 |
+
{"current_steps": 700, "total_steps": 38160, "loss": 0.5421, "lr": 0.00018317610062893082, "epoch": 0.3668763102725367, "percentage": 1.83, "elapsed_time": "0:01:42", "remaining_time": "1:31:23", "throughput": 4468.57, "total_tokens": 457888}
|
| 141 |
+
{"current_steps": 705, "total_steps": 38160, "loss": 0.6139, "lr": 0.00018448637316561845, "epoch": 0.3694968553459119, "percentage": 1.85, "elapsed_time": "0:01:43", "remaining_time": "1:31:25", "throughput": 4470.91, "total_tokens": 461664}
|
| 142 |
+
{"current_steps": 710, "total_steps": 38160, "loss": 0.6136, "lr": 0.00018579664570230608, "epoch": 0.3721174004192872, "percentage": 1.86, "elapsed_time": "0:01:43", "remaining_time": "1:31:20", "throughput": 4468.87, "total_tokens": 464352}
|
| 143 |
+
{"current_steps": 715, "total_steps": 38160, "loss": 0.6077, "lr": 0.0001871069182389937, "epoch": 0.3747379454926625, "percentage": 1.87, "elapsed_time": "0:01:44", "remaining_time": "1:31:24", "throughput": 4471.21, "total_tokens": 468256}
|
| 144 |
+
{"current_steps": 720, "total_steps": 38160, "loss": 0.5133, "lr": 0.00018841719077568135, "epoch": 0.37735849056603776, "percentage": 1.89, "elapsed_time": "0:01:45", "remaining_time": "1:31:20", "throughput": 4469.71, "total_tokens": 471104}
|
| 145 |
+
{"current_steps": 725, "total_steps": 38160, "loss": 0.6115, "lr": 0.000189727463312369, "epoch": 0.379979035639413, "percentage": 1.9, "elapsed_time": "0:01:46", "remaining_time": "1:31:15", "throughput": 4466.88, "total_tokens": 473696}
|
| 146 |
+
{"current_steps": 730, "total_steps": 38160, "loss": 0.5122, "lr": 0.00019103773584905662, "epoch": 0.38259958071278827, "percentage": 1.91, "elapsed_time": "0:01:46", "remaining_time": "1:31:11", "throughput": 4465.2, "total_tokens": 476512}
|
| 147 |
+
{"current_steps": 735, "total_steps": 38160, "loss": 0.5904, "lr": 0.00019234800838574423, "epoch": 0.38522012578616355, "percentage": 1.93, "elapsed_time": "0:01:47", "remaining_time": "1:31:12", "throughput": 4466.92, "total_tokens": 480128}
|
| 148 |
+
{"current_steps": 740, "total_steps": 38160, "loss": 0.6301, "lr": 0.00019365828092243186, "epoch": 0.38784067085953877, "percentage": 1.94, "elapsed_time": "0:01:48", "remaining_time": "1:31:14", "throughput": 4468.92, "total_tokens": 483808}
|
| 149 |
+
{"current_steps": 745, "total_steps": 38160, "loss": 0.5939, "lr": 0.00019496855345911953, "epoch": 0.39046121593291405, "percentage": 1.95, "elapsed_time": "0:01:48", "remaining_time": "1:31:08", "throughput": 4465.7, "total_tokens": 486240}
|
| 150 |
+
{"current_steps": 750, "total_steps": 38160, "loss": 0.4792, "lr": 0.00019627882599580713, "epoch": 0.39308176100628933, "percentage": 1.97, "elapsed_time": "0:01:49", "remaining_time": "1:31:00", "throughput": 4461.74, "total_tokens": 488448}
|
| 151 |
+
{"current_steps": 755, "total_steps": 38160, "loss": 0.5778, "lr": 0.00019758909853249477, "epoch": 0.39570230607966456, "percentage": 1.98, "elapsed_time": "0:01:50", "remaining_time": "1:30:57", "throughput": 4460.65, "total_tokens": 491392}
|
| 152 |
+
{"current_steps": 760, "total_steps": 38160, "loss": 0.5299, "lr": 0.0001988993710691824, "epoch": 0.39832285115303984, "percentage": 1.99, "elapsed_time": "0:01:50", "remaining_time": "1:31:00", "throughput": 4463.19, "total_tokens": 495232}
|
| 153 |
+
{"current_steps": 765, "total_steps": 38160, "loss": 0.4787, "lr": 0.00020020964360587, "epoch": 0.4009433962264151, "percentage": 2.0, "elapsed_time": "0:01:51", "remaining_time": "1:30:56", "throughput": 4461.82, "total_tokens": 498016}
|
| 154 |
+
{"current_steps": 770, "total_steps": 38160, "loss": 0.5109, "lr": 0.00020151991614255767, "epoch": 0.40356394129979034, "percentage": 2.02, "elapsed_time": "0:01:52", "remaining_time": "1:30:54", "throughput": 4461.63, "total_tokens": 501152}
|
| 155 |
+
{"current_steps": 775, "total_steps": 38160, "loss": 0.496, "lr": 0.0002028301886792453, "epoch": 0.4061844863731656, "percentage": 2.03, "elapsed_time": "0:01:52", "remaining_time": "1:30:50", "throughput": 4459.66, "total_tokens": 503872}
|
| 156 |
+
{"current_steps": 780, "total_steps": 38160, "loss": 0.5207, "lr": 0.0002041404612159329, "epoch": 0.4088050314465409, "percentage": 2.04, "elapsed_time": "0:01:53", "remaining_time": "1:30:50", "throughput": 4460.84, "total_tokens": 507328}
|
| 157 |
+
{"current_steps": 785, "total_steps": 38160, "loss": 0.4149, "lr": 0.00020545073375262055, "epoch": 0.4114255765199161, "percentage": 2.06, "elapsed_time": "0:01:54", "remaining_time": "1:30:51", "throughput": 4462.02, "total_tokens": 510912}
|
| 158 |
+
{"current_steps": 790, "total_steps": 38160, "loss": 0.5954, "lr": 0.00020676100628930818, "epoch": 0.4140461215932914, "percentage": 2.07, "elapsed_time": "0:01:55", "remaining_time": "1:30:51", "throughput": 4462.65, "total_tokens": 514304}
|
| 159 |
+
{"current_steps": 795, "total_steps": 38160, "loss": 0.4442, "lr": 0.00020807127882599581, "epoch": 0.4166666666666667, "percentage": 2.08, "elapsed_time": "0:01:55", "remaining_time": "1:30:49", "throughput": 4462.44, "total_tokens": 517440}
|
| 160 |
+
{"current_steps": 800, "total_steps": 38160, "loss": 0.6763, "lr": 0.00020938155136268345, "epoch": 0.4192872117400419, "percentage": 2.1, "elapsed_time": "0:01:56", "remaining_time": "1:30:47", "throughput": 4461.66, "total_tokens": 520416}
|
| 161 |
+
{"current_steps": 805, "total_steps": 38160, "loss": 0.6537, "lr": 0.00021069182389937108, "epoch": 0.4219077568134172, "percentage": 2.11, "elapsed_time": "0:01:57", "remaining_time": "1:30:44", "throughput": 4461.23, "total_tokens": 523456}
|
| 162 |
+
{"current_steps": 810, "total_steps": 38160, "loss": 0.5032, "lr": 0.0002120020964360587, "epoch": 0.42452830188679247, "percentage": 2.12, "elapsed_time": "0:01:58", "remaining_time": "1:30:43", "throughput": 4461.74, "total_tokens": 526720}
|
| 163 |
+
{"current_steps": 815, "total_steps": 38160, "loss": 0.4356, "lr": 0.00021331236897274632, "epoch": 0.4271488469601677, "percentage": 2.14, "elapsed_time": "0:01:58", "remaining_time": "1:30:44", "throughput": 4463.29, "total_tokens": 530272}
|
| 164 |
+
{"current_steps": 820, "total_steps": 38160, "loss": 0.6282, "lr": 0.00021462264150943399, "epoch": 0.429769392033543, "percentage": 2.15, "elapsed_time": "0:01:59", "remaining_time": "1:30:42", "throughput": 4463.14, "total_tokens": 533408}
|
| 165 |
+
{"current_steps": 825, "total_steps": 38160, "loss": 0.6366, "lr": 0.0002159329140461216, "epoch": 0.43238993710691825, "percentage": 2.16, "elapsed_time": "0:02:00", "remaining_time": "1:30:42", "throughput": 4463.43, "total_tokens": 536768}
|
| 166 |
+
{"current_steps": 830, "total_steps": 38160, "loss": 0.6108, "lr": 0.00021724318658280923, "epoch": 0.4350104821802935, "percentage": 2.18, "elapsed_time": "0:02:01", "remaining_time": "1:30:47", "throughput": 4467.78, "total_tokens": 541184}
|
| 167 |
+
{"current_steps": 835, "total_steps": 38160, "loss": 0.4637, "lr": 0.00021855345911949686, "epoch": 0.43763102725366876, "percentage": 2.19, "elapsed_time": "0:02:01", "remaining_time": "1:30:48", "throughput": 4468.06, "total_tokens": 544576}
|
| 168 |
+
{"current_steps": 840, "total_steps": 38160, "loss": 0.5865, "lr": 0.00021986373165618447, "epoch": 0.44025157232704404, "percentage": 2.2, "elapsed_time": "0:02:02", "remaining_time": "1:30:56", "throughput": 4473.09, "total_tokens": 549408}
|
| 169 |
+
{"current_steps": 845, "total_steps": 38160, "loss": 0.468, "lr": 0.00022117400419287213, "epoch": 0.44287211740041926, "percentage": 2.21, "elapsed_time": "0:02:03", "remaining_time": "1:30:51", "throughput": 4471.4, "total_tokens": 552032}
|
| 170 |
+
{"current_steps": 850, "total_steps": 38160, "loss": 0.5104, "lr": 0.00022248427672955977, "epoch": 0.44549266247379454, "percentage": 2.23, "elapsed_time": "0:02:04", "remaining_time": "1:30:53", "throughput": 4473.88, "total_tokens": 555872}
|
| 171 |
+
{"current_steps": 855, "total_steps": 38160, "loss": 0.6376, "lr": 0.00022379454926624737, "epoch": 0.4481132075471698, "percentage": 2.24, "elapsed_time": "0:02:04", "remaining_time": "1:30:52", "throughput": 4474.18, "total_tokens": 559136}
|
| 172 |
+
{"current_steps": 860, "total_steps": 38160, "loss": 0.5296, "lr": 0.000225104821802935, "epoch": 0.45073375262054505, "percentage": 2.25, "elapsed_time": "0:02:05", "remaining_time": "1:30:49", "throughput": 4472.88, "total_tokens": 561984}
|
| 173 |
+
{"current_steps": 865, "total_steps": 38160, "loss": 0.4832, "lr": 0.00022641509433962264, "epoch": 0.4533542976939203, "percentage": 2.27, "elapsed_time": "0:02:06", "remaining_time": "1:30:44", "throughput": 4470.03, "total_tokens": 564448}
|
| 174 |
+
{"current_steps": 870, "total_steps": 38160, "loss": 0.5687, "lr": 0.00022772536687631028, "epoch": 0.4559748427672956, "percentage": 2.28, "elapsed_time": "0:02:06", "remaining_time": "1:30:38", "throughput": 4466.79, "total_tokens": 566752}
|
| 175 |
+
{"current_steps": 875, "total_steps": 38160, "loss": 0.5288, "lr": 0.0002290356394129979, "epoch": 0.4585953878406709, "percentage": 2.29, "elapsed_time": "0:02:07", "remaining_time": "1:30:36", "throughput": 4466.63, "total_tokens": 569856}
|
| 176 |
+
{"current_steps": 880, "total_steps": 38160, "loss": 0.5104, "lr": 0.00023034591194968554, "epoch": 0.4612159329140461, "percentage": 2.31, "elapsed_time": "0:02:08", "remaining_time": "1:30:35", "throughput": 4466.67, "total_tokens": 573056}
|
| 177 |
+
{"current_steps": 885, "total_steps": 38160, "loss": 0.5814, "lr": 0.00023165618448637318, "epoch": 0.4638364779874214, "percentage": 2.32, "elapsed_time": "0:02:08", "remaining_time": "1:30:30", "throughput": 4465.02, "total_tokens": 575712}
|
| 178 |
+
{"current_steps": 890, "total_steps": 38160, "loss": 0.4417, "lr": 0.00023296645702306079, "epoch": 0.46645702306079667, "percentage": 2.33, "elapsed_time": "0:02:09", "remaining_time": "1:30:29", "throughput": 4465.16, "total_tokens": 578880}
|
| 179 |
+
{"current_steps": 895, "total_steps": 38160, "loss": 0.4844, "lr": 0.00023427672955974845, "epoch": 0.4690775681341719, "percentage": 2.35, "elapsed_time": "0:02:10", "remaining_time": "1:30:27", "throughput": 4464.31, "total_tokens": 581920}
|
| 180 |
+
{"current_steps": 900, "total_steps": 38160, "loss": 0.5446, "lr": 0.00023558700209643608, "epoch": 0.4716981132075472, "percentage": 2.36, "elapsed_time": "0:02:11", "remaining_time": "1:30:23", "throughput": 4462.95, "total_tokens": 584672}
|
| 181 |
+
{"current_steps": 905, "total_steps": 38160, "loss": 0.4763, "lr": 0.0002368972746331237, "epoch": 0.47431865828092246, "percentage": 2.37, "elapsed_time": "0:02:11", "remaining_time": "1:30:26", "throughput": 4465.65, "total_tokens": 588704}
|
| 182 |
+
{"current_steps": 910, "total_steps": 38160, "loss": 0.5383, "lr": 0.00023820754716981132, "epoch": 0.4769392033542977, "percentage": 2.38, "elapsed_time": "0:02:12", "remaining_time": "1:30:24", "throughput": 4465.08, "total_tokens": 591712}
|
| 183 |
+
{"current_steps": 915, "total_steps": 38160, "loss": 0.5598, "lr": 0.00023951781970649896, "epoch": 0.47955974842767296, "percentage": 2.4, "elapsed_time": "0:02:13", "remaining_time": "1:30:23", "throughput": 4466.19, "total_tokens": 595104}
|
| 184 |
+
{"current_steps": 920, "total_steps": 38160, "loss": 0.494, "lr": 0.0002408280922431866, "epoch": 0.48218029350104824, "percentage": 2.41, "elapsed_time": "0:02:14", "remaining_time": "1:30:30", "throughput": 4470.86, "total_tokens": 599808}
|
| 185 |
+
{"current_steps": 925, "total_steps": 38160, "loss": 0.4524, "lr": 0.00024213836477987423, "epoch": 0.48480083857442346, "percentage": 2.42, "elapsed_time": "0:02:14", "remaining_time": "1:30:27", "throughput": 4470.1, "total_tokens": 602720}
|
| 186 |
+
{"current_steps": 930, "total_steps": 38160, "loss": 0.4922, "lr": 0.00024344863731656186, "epoch": 0.48742138364779874, "percentage": 2.44, "elapsed_time": "0:02:15", "remaining_time": "1:30:27", "throughput": 4470.91, "total_tokens": 606176}
|
| 187 |
+
{"current_steps": 935, "total_steps": 38160, "loss": 0.4674, "lr": 0.00024475890985324947, "epoch": 0.490041928721174, "percentage": 2.45, "elapsed_time": "0:02:16", "remaining_time": "1:30:23", "throughput": 4469.18, "total_tokens": 608864}
|
| 188 |
+
{"current_steps": 940, "total_steps": 38160, "loss": 0.5117, "lr": 0.0002460691823899371, "epoch": 0.49266247379454925, "percentage": 2.46, "elapsed_time": "0:02:16", "remaining_time": "1:30:22", "throughput": 4468.79, "total_tokens": 611968}
|
| 189 |
+
{"current_steps": 945, "total_steps": 38160, "loss": 0.6172, "lr": 0.00024737945492662474, "epoch": 0.49528301886792453, "percentage": 2.48, "elapsed_time": "0:02:17", "remaining_time": "1:30:19", "throughput": 4468.12, "total_tokens": 614848}
|
| 190 |
+
{"current_steps": 950, "total_steps": 38160, "loss": 0.665, "lr": 0.00024868972746331237, "epoch": 0.4979035639412998, "percentage": 2.49, "elapsed_time": "0:02:18", "remaining_time": "1:30:18", "throughput": 4468.02, "total_tokens": 618080}
|
| 191 |
+
{"current_steps": 955, "total_steps": 38160, "loss": 0.3781, "lr": 0.00025, "epoch": 0.500524109014675, "percentage": 2.5, "elapsed_time": "0:02:18", "remaining_time": "1:30:14", "throughput": 4465.99, "total_tokens": 620736}
|
| 192 |
+
{"current_steps": 960, "total_steps": 38160, "loss": 0.4699, "lr": 0.00025131027253668764, "epoch": 0.5031446540880503, "percentage": 2.52, "elapsed_time": "0:02:19", "remaining_time": "1:30:16", "throughput": 4467.9, "total_tokens": 624480}
|
| 193 |
+
{"current_steps": 965, "total_steps": 38160, "loss": 0.4593, "lr": 0.0002526205450733753, "epoch": 0.5057651991614256, "percentage": 2.53, "elapsed_time": "0:02:20", "remaining_time": "1:30:18", "throughput": 4470.45, "total_tokens": 628448}
|
| 194 |
+
{"current_steps": 970, "total_steps": 38160, "loss": 0.6066, "lr": 0.0002539308176100629, "epoch": 0.5083857442348009, "percentage": 2.54, "elapsed_time": "0:02:21", "remaining_time": "1:30:18", "throughput": 4471.55, "total_tokens": 632000}
|
| 195 |
+
{"current_steps": 975, "total_steps": 38160, "loss": 0.6094, "lr": 0.0002552410901467505, "epoch": 0.5110062893081762, "percentage": 2.56, "elapsed_time": "0:02:22", "remaining_time": "1:30:20", "throughput": 4472.73, "total_tokens": 635680}
|
| 196 |
+
{"current_steps": 980, "total_steps": 38160, "loss": 0.7542, "lr": 0.0002565513626834381, "epoch": 0.5136268343815513, "percentage": 2.57, "elapsed_time": "0:02:22", "remaining_time": "1:30:16", "throughput": 4471.82, "total_tokens": 638496}
|
| 197 |
+
{"current_steps": 985, "total_steps": 38160, "loss": 0.4697, "lr": 0.0002578616352201258, "epoch": 0.5162473794549266, "percentage": 2.58, "elapsed_time": "0:02:23", "remaining_time": "1:30:18", "throughput": 4473.41, "total_tokens": 642272}
|
| 198 |
+
{"current_steps": 990, "total_steps": 38160, "loss": 0.5283, "lr": 0.00025917190775681345, "epoch": 0.5188679245283019, "percentage": 2.59, "elapsed_time": "0:02:24", "remaining_time": "1:30:19", "throughput": 4474.5, "total_tokens": 645888}
|
| 199 |
+
{"current_steps": 995, "total_steps": 38160, "loss": 0.3726, "lr": 0.0002604821802935011, "epoch": 0.5214884696016772, "percentage": 2.61, "elapsed_time": "0:02:25", "remaining_time": "1:30:33", "throughput": 4481.07, "total_tokens": 651808}
|
| 200 |
+
{"current_steps": 1000, "total_steps": 38160, "loss": 0.5356, "lr": 0.0002617924528301887, "epoch": 0.5241090146750524, "percentage": 2.62, "elapsed_time": "0:02:26", "remaining_time": "1:30:34", "throughput": 4482.18, "total_tokens": 655488}
|
| 201 |
+
{"current_steps": 1005, "total_steps": 38160, "loss": 0.4621, "lr": 0.0002631027253668763, "epoch": 0.5267295597484277, "percentage": 2.63, "elapsed_time": "0:02:26", "remaining_time": "1:30:34", "throughput": 4482.92, "total_tokens": 658976}
|
| 202 |
+
{"current_steps": 1010, "total_steps": 38160, "loss": 0.4489, "lr": 0.00026441299790356393, "epoch": 0.5293501048218029, "percentage": 2.65, "elapsed_time": "0:02:27", "remaining_time": "1:30:32", "throughput": 4482.63, "total_tokens": 662048}
|
| 203 |
+
{"current_steps": 1015, "total_steps": 38160, "loss": 0.5845, "lr": 0.00026572327044025156, "epoch": 0.5319706498951782, "percentage": 2.66, "elapsed_time": "0:02:28", "remaining_time": "1:30:28", "throughput": 4480.97, "total_tokens": 664640}
|
| 204 |
+
{"current_steps": 1020, "total_steps": 38160, "loss": 0.489, "lr": 0.0002670335429769392, "epoch": 0.5345911949685535, "percentage": 2.67, "elapsed_time": "0:02:29", "remaining_time": "1:30:32", "throughput": 4484.34, "total_tokens": 669056}
|
| 205 |
+
{"current_steps": 1025, "total_steps": 38160, "loss": 0.5195, "lr": 0.00026834381551362683, "epoch": 0.5372117400419287, "percentage": 2.69, "elapsed_time": "0:02:29", "remaining_time": "1:30:30", "throughput": 4483.78, "total_tokens": 672128}
|
| 206 |
+
{"current_steps": 1030, "total_steps": 38160, "loss": 0.4863, "lr": 0.0002696540880503145, "epoch": 0.539832285115304, "percentage": 2.7, "elapsed_time": "0:02:30", "remaining_time": "1:30:28", "throughput": 4483.18, "total_tokens": 675136}
|
| 207 |
+
{"current_steps": 1035, "total_steps": 38160, "loss": 0.6039, "lr": 0.0002709643605870021, "epoch": 0.5424528301886793, "percentage": 2.71, "elapsed_time": "0:02:31", "remaining_time": "1:30:30", "throughput": 4485.1, "total_tokens": 678976}
|
| 208 |
+
{"current_steps": 1040, "total_steps": 38160, "loss": 0.6647, "lr": 0.00027227463312368973, "epoch": 0.5450733752620545, "percentage": 2.73, "elapsed_time": "0:02:32", "remaining_time": "1:30:28", "throughput": 4485.1, "total_tokens": 682176}
|
| 209 |
+
{"current_steps": 1045, "total_steps": 38160, "loss": 0.5717, "lr": 0.00027358490566037737, "epoch": 0.5476939203354297, "percentage": 2.74, "elapsed_time": "0:02:32", "remaining_time": "1:30:24", "throughput": 4483.44, "total_tokens": 684768}
|
| 210 |
+
{"current_steps": 1050, "total_steps": 38160, "loss": 0.5619, "lr": 0.000274895178197065, "epoch": 0.550314465408805, "percentage": 2.75, "elapsed_time": "0:02:33", "remaining_time": "1:30:21", "throughput": 4481.49, "total_tokens": 687392}
|
| 211 |
+
{"current_steps": 1055, "total_steps": 38160, "loss": 0.4905, "lr": 0.00027620545073375264, "epoch": 0.5529350104821803, "percentage": 2.76, "elapsed_time": "0:02:34", "remaining_time": "1:30:19", "throughput": 4481.31, "total_tokens": 690496}
|
| 212 |
+
{"current_steps": 1060, "total_steps": 38160, "loss": 0.6701, "lr": 0.00027751572327044027, "epoch": 0.5555555555555556, "percentage": 2.78, "elapsed_time": "0:02:34", "remaining_time": "1:30:16", "throughput": 4480.38, "total_tokens": 693376}
|
| 213 |
+
{"current_steps": 1065, "total_steps": 38160, "loss": 0.4841, "lr": 0.00027882599580712785, "epoch": 0.5581761006289309, "percentage": 2.79, "elapsed_time": "0:02:35", "remaining_time": "1:30:12", "throughput": 4478.11, "total_tokens": 695808}
|
| 214 |
+
{"current_steps": 1070, "total_steps": 38160, "loss": 0.491, "lr": 0.0002801362683438155, "epoch": 0.560796645702306, "percentage": 2.8, "elapsed_time": "0:02:36", "remaining_time": "1:30:12", "throughput": 4479.54, "total_tokens": 699424}
|
| 215 |
+
{"current_steps": 1075, "total_steps": 38160, "loss": 0.5349, "lr": 0.0002814465408805031, "epoch": 0.5634171907756813, "percentage": 2.82, "elapsed_time": "0:02:36", "remaining_time": "1:30:14", "throughput": 4482.58, "total_tokens": 703584}
|
| 216 |
+
{"current_steps": 1080, "total_steps": 38160, "loss": 0.5218, "lr": 0.0002827568134171908, "epoch": 0.5660377358490566, "percentage": 2.83, "elapsed_time": "0:02:37", "remaining_time": "1:30:10", "throughput": 4480.87, "total_tokens": 706144}
|
| 217 |
+
{"current_steps": 1085, "total_steps": 38160, "loss": 0.5281, "lr": 0.00028406708595387844, "epoch": 0.5686582809224319, "percentage": 2.84, "elapsed_time": "0:02:38", "remaining_time": "1:30:07", "throughput": 4479.65, "total_tokens": 708864}
|
| 218 |
+
{"current_steps": 1090, "total_steps": 38160, "loss": 0.5503, "lr": 0.0002853773584905661, "epoch": 0.5712788259958071, "percentage": 2.86, "elapsed_time": "0:02:38", "remaining_time": "1:30:07", "throughput": 4480.43, "total_tokens": 712352}
|
| 219 |
+
{"current_steps": 1095, "total_steps": 38160, "loss": 0.7352, "lr": 0.00028668763102725366, "epoch": 0.5738993710691824, "percentage": 2.87, "elapsed_time": "0:02:39", "remaining_time": "1:30:04", "throughput": 4479.64, "total_tokens": 715296}
|
| 220 |
+
{"current_steps": 1100, "total_steps": 38160, "loss": 0.4537, "lr": 0.0002879979035639413, "epoch": 0.5765199161425576, "percentage": 2.88, "elapsed_time": "0:02:40", "remaining_time": "1:30:03", "throughput": 4479.9, "total_tokens": 718528}
|
| 221 |
+
{"current_steps": 1105, "total_steps": 38160, "loss": 0.4627, "lr": 0.00028930817610062893, "epoch": 0.5791404612159329, "percentage": 2.9, "elapsed_time": "0:02:42", "remaining_time": "1:30:43", "throughput": 4452.51, "total_tokens": 722752}
|
| 222 |
+
{"current_steps": 1110, "total_steps": 38160, "loss": 0.4673, "lr": 0.00029061844863731656, "epoch": 0.5817610062893082, "percentage": 2.91, "elapsed_time": "0:02:43", "remaining_time": "1:30:42", "throughput": 4451.78, "total_tokens": 725824}
|
| 223 |
+
{"current_steps": 1115, "total_steps": 38160, "loss": 0.5829, "lr": 0.0002919287211740042, "epoch": 0.5843815513626834, "percentage": 2.92, "elapsed_time": "0:02:43", "remaining_time": "1:30:44", "throughput": 4454.85, "total_tokens": 730080}
|
| 224 |
+
{"current_steps": 1120, "total_steps": 38160, "loss": 0.5032, "lr": 0.00029323899371069183, "epoch": 0.5870020964360587, "percentage": 2.94, "elapsed_time": "0:02:44", "remaining_time": "1:30:43", "throughput": 4454.7, "total_tokens": 733216}
|
| 225 |
+
{"current_steps": 1125, "total_steps": 38160, "loss": 0.6646, "lr": 0.00029454926624737946, "epoch": 0.589622641509434, "percentage": 2.95, "elapsed_time": "0:02:45", "remaining_time": "1:30:41", "throughput": 4454.78, "total_tokens": 736416}
|
| 226 |
+
{"current_steps": 1130, "total_steps": 38160, "loss": 0.4559, "lr": 0.0002958595387840671, "epoch": 0.5922431865828093, "percentage": 2.96, "elapsed_time": "0:02:46", "remaining_time": "1:30:41", "throughput": 4455.13, "total_tokens": 739808}
|
| 227 |
+
{"current_steps": 1135, "total_steps": 38160, "loss": 0.5518, "lr": 0.00029716981132075473, "epoch": 0.5948637316561844, "percentage": 2.97, "elapsed_time": "0:02:46", "remaining_time": "1:30:37", "throughput": 4453.64, "total_tokens": 742400}
|
| 228 |
+
{"current_steps": 1140, "total_steps": 38160, "loss": 0.4005, "lr": 0.00029848008385744237, "epoch": 0.5974842767295597, "percentage": 2.99, "elapsed_time": "0:02:47", "remaining_time": "1:30:37", "throughput": 4454.14, "total_tokens": 745760}
|
| 229 |
+
{"current_steps": 1145, "total_steps": 38160, "loss": 0.5925, "lr": 0.00029979035639413, "epoch": 0.600104821802935, "percentage": 3.0, "elapsed_time": "0:02:48", "remaining_time": "1:30:34", "throughput": 4453.74, "total_tokens": 748736}
|
| 230 |
+
{"current_steps": 1150, "total_steps": 38160, "loss": 0.5357, "lr": 0.00030110062893081764, "epoch": 0.6027253668763103, "percentage": 3.01, "elapsed_time": "0:02:48", "remaining_time": "1:30:33", "throughput": 4454.07, "total_tokens": 752032}
|
| 231 |
+
{"current_steps": 1155, "total_steps": 38160, "loss": 0.491, "lr": 0.00030241090146750527, "epoch": 0.6053459119496856, "percentage": 3.03, "elapsed_time": "0:02:49", "remaining_time": "1:30:38", "throughput": 4457.88, "total_tokens": 756736}
|
| 232 |
+
{"current_steps": 1160, "total_steps": 38160, "loss": 0.4877, "lr": 0.00030372117400419285, "epoch": 0.6079664570230608, "percentage": 3.04, "elapsed_time": "0:02:50", "remaining_time": "1:30:36", "throughput": 4457.18, "total_tokens": 759680}
|
| 233 |
+
{"current_steps": 1165, "total_steps": 38160, "loss": 0.5316, "lr": 0.0003050314465408805, "epoch": 0.610587002096436, "percentage": 3.05, "elapsed_time": "0:02:51", "remaining_time": "1:30:33", "throughput": 4456.38, "total_tokens": 762560}
|
| 234 |
+
{"current_steps": 1170, "total_steps": 38160, "loss": 0.4494, "lr": 0.0003063417190775681, "epoch": 0.6132075471698113, "percentage": 3.07, "elapsed_time": "0:02:51", "remaining_time": "1:30:31", "throughput": 4456.07, "total_tokens": 765600}
|
| 235 |
+
{"current_steps": 1175, "total_steps": 38160, "loss": 0.4, "lr": 0.00030765199161425575, "epoch": 0.6158280922431866, "percentage": 3.08, "elapsed_time": "0:02:52", "remaining_time": "1:30:30", "throughput": 4456.09, "total_tokens": 768736}
|
| 236 |
+
{"current_steps": 1180, "total_steps": 38160, "loss": 0.6684, "lr": 0.00030896226415094344, "epoch": 0.6184486373165619, "percentage": 3.09, "elapsed_time": "0:02:53", "remaining_time": "1:30:28", "throughput": 4455.83, "total_tokens": 771872}
|
| 237 |
+
{"current_steps": 1185, "total_steps": 38160, "loss": 0.619, "lr": 0.0003102725366876311, "epoch": 0.6210691823899371, "percentage": 3.11, "elapsed_time": "0:02:53", "remaining_time": "1:30:27", "throughput": 4455.58, "total_tokens": 775008}
|
| 238 |
+
{"current_steps": 1190, "total_steps": 38160, "loss": 0.4269, "lr": 0.00031158280922431866, "epoch": 0.6236897274633124, "percentage": 3.12, "elapsed_time": "0:02:54", "remaining_time": "1:30:25", "throughput": 4454.89, "total_tokens": 777920}
|
| 239 |
+
{"current_steps": 1195, "total_steps": 38160, "loss": 0.5171, "lr": 0.0003128930817610063, "epoch": 0.6263102725366876, "percentage": 3.13, "elapsed_time": "0:02:55", "remaining_time": "1:30:23", "throughput": 4455.15, "total_tokens": 781056}
|
| 240 |
+
{"current_steps": 1200, "total_steps": 38160, "loss": 0.5798, "lr": 0.0003142033542976939, "epoch": 0.6289308176100629, "percentage": 3.14, "elapsed_time": "0:02:56", "remaining_time": "1:30:21", "throughput": 4455.03, "total_tokens": 784128}
|
| 241 |
+
{"current_steps": 1205, "total_steps": 38160, "loss": 0.5388, "lr": 0.00031551362683438156, "epoch": 0.6315513626834381, "percentage": 3.16, "elapsed_time": "0:02:56", "remaining_time": "1:30:17", "throughput": 4453.28, "total_tokens": 786624}
|
| 242 |
+
{"current_steps": 1210, "total_steps": 38160, "loss": 0.5321, "lr": 0.0003168238993710692, "epoch": 0.6341719077568134, "percentage": 3.17, "elapsed_time": "0:02:57", "remaining_time": "1:30:15", "throughput": 4452.83, "total_tokens": 789664}
|
| 243 |
+
{"current_steps": 1215, "total_steps": 38160, "loss": 0.4326, "lr": 0.00031813417190775683, "epoch": 0.6367924528301887, "percentage": 3.18, "elapsed_time": "0:02:58", "remaining_time": "1:30:18", "throughput": 4455.05, "total_tokens": 793824}
|
| 244 |
+
{"current_steps": 1220, "total_steps": 38160, "loss": 0.6322, "lr": 0.0003194444444444444, "epoch": 0.639412997903564, "percentage": 3.2, "elapsed_time": "0:02:58", "remaining_time": "1:30:15", "throughput": 4453.98, "total_tokens": 796544}
|
| 245 |
+
{"current_steps": 1225, "total_steps": 38160, "loss": 0.4127, "lr": 0.00032075471698113204, "epoch": 0.6420335429769392, "percentage": 3.21, "elapsed_time": "0:02:59", "remaining_time": "1:30:12", "throughput": 4453.66, "total_tokens": 799520}
|
| 246 |
+
{"current_steps": 1230, "total_steps": 38160, "loss": 0.3456, "lr": 0.00032206498951781973, "epoch": 0.6446540880503144, "percentage": 3.22, "elapsed_time": "0:03:00", "remaining_time": "1:30:10", "throughput": 4452.98, "total_tokens": 802464}
|
| 247 |
+
{"current_steps": 1235, "total_steps": 38160, "loss": 0.5828, "lr": 0.00032337526205450737, "epoch": 0.6472746331236897, "percentage": 3.24, "elapsed_time": "0:03:00", "remaining_time": "1:30:08", "throughput": 4452.71, "total_tokens": 805536}
|
| 248 |
+
{"current_steps": 1240, "total_steps": 38160, "loss": 0.3669, "lr": 0.000324685534591195, "epoch": 0.649895178197065, "percentage": 3.25, "elapsed_time": "0:03:01", "remaining_time": "1:30:06", "throughput": 4452.15, "total_tokens": 808448}
|
| 249 |
+
{"current_steps": 1245, "total_steps": 38160, "loss": 0.4455, "lr": 0.00032599580712788263, "epoch": 0.6525157232704403, "percentage": 3.26, "elapsed_time": "0:03:02", "remaining_time": "1:30:07", "throughput": 4453.45, "total_tokens": 812160}
|
| 250 |
+
{"current_steps": 1250, "total_steps": 38160, "loss": 0.637, "lr": 0.0003273060796645702, "epoch": 0.6551362683438156, "percentage": 3.28, "elapsed_time": "0:03:03", "remaining_time": "1:30:03", "throughput": 4452.16, "total_tokens": 814752}
|
| 251 |
+
{"current_steps": 1255, "total_steps": 38160, "loss": 0.4277, "lr": 0.00032861635220125785, "epoch": 0.6577568134171907, "percentage": 3.29, "elapsed_time": "0:03:03", "remaining_time": "1:30:01", "throughput": 4451.26, "total_tokens": 817568}
|
| 252 |
+
{"current_steps": 1260, "total_steps": 38160, "loss": 0.5027, "lr": 0.0003299266247379455, "epoch": 0.660377358490566, "percentage": 3.3, "elapsed_time": "0:03:04", "remaining_time": "1:29:58", "throughput": 4450.57, "total_tokens": 820384}
|
| 253 |
+
{"current_steps": 1265, "total_steps": 38160, "loss": 0.3046, "lr": 0.0003312368972746331, "epoch": 0.6629979035639413, "percentage": 3.31, "elapsed_time": "0:03:04", "remaining_time": "1:29:55", "throughput": 4449.32, "total_tokens": 823040}
|
| 254 |
+
{"current_steps": 1270, "total_steps": 38160, "loss": 0.5936, "lr": 0.00033254716981132075, "epoch": 0.6656184486373166, "percentage": 3.33, "elapsed_time": "0:03:05", "remaining_time": "1:29:51", "throughput": 4447.62, "total_tokens": 825600}
|
| 255 |
+
{"current_steps": 1275, "total_steps": 38160, "loss": 0.5951, "lr": 0.0003338574423480084, "epoch": 0.6682389937106918, "percentage": 3.34, "elapsed_time": "0:03:06", "remaining_time": "1:29:48", "throughput": 4445.83, "total_tokens": 828032}
|
| 256 |
+
{"current_steps": 1280, "total_steps": 38160, "loss": 0.4522, "lr": 0.0003351677148846961, "epoch": 0.6708595387840671, "percentage": 3.35, "elapsed_time": "0:03:06", "remaining_time": "1:29:47", "throughput": 4445.96, "total_tokens": 831296}
|
| 257 |
+
{"current_steps": 1285, "total_steps": 38160, "loss": 0.6076, "lr": 0.00033647798742138366, "epoch": 0.6734800838574424, "percentage": 3.37, "elapsed_time": "0:03:07", "remaining_time": "1:29:45", "throughput": 4445.25, "total_tokens": 834208}
|
| 258 |
+
{"current_steps": 1290, "total_steps": 38160, "loss": 0.4781, "lr": 0.0003377882599580713, "epoch": 0.6761006289308176, "percentage": 3.38, "elapsed_time": "0:03:08", "remaining_time": "1:29:46", "throughput": 4447.04, "total_tokens": 838048}
|
| 259 |
+
{"current_steps": 1295, "total_steps": 38160, "loss": 0.5903, "lr": 0.0003390985324947589, "epoch": 0.6787211740041929, "percentage": 3.39, "elapsed_time": "0:03:09", "remaining_time": "1:29:45", "throughput": 4447.97, "total_tokens": 841536}
|
| 260 |
+
{"current_steps": 1300, "total_steps": 38160, "loss": 0.4476, "lr": 0.00034040880503144656, "epoch": 0.6813417190775681, "percentage": 3.41, "elapsed_time": "0:03:09", "remaining_time": "1:29:46", "throughput": 4448.92, "total_tokens": 845184}
|
| 261 |
+
{"current_steps": 1305, "total_steps": 38160, "loss": 0.442, "lr": 0.0003417190775681342, "epoch": 0.6839622641509434, "percentage": 3.42, "elapsed_time": "0:03:10", "remaining_time": "1:29:43", "throughput": 4448.21, "total_tokens": 848000}
|
| 262 |
+
{"current_steps": 1310, "total_steps": 38160, "loss": 0.5777, "lr": 0.00034302935010482183, "epoch": 0.6865828092243187, "percentage": 3.43, "elapsed_time": "0:03:11", "remaining_time": "1:29:42", "throughput": 4447.86, "total_tokens": 851040}
|
| 263 |
+
{"current_steps": 1315, "total_steps": 38160, "loss": 0.5948, "lr": 0.0003443396226415094, "epoch": 0.689203354297694, "percentage": 3.45, "elapsed_time": "0:03:12", "remaining_time": "1:29:39", "throughput": 4447.38, "total_tokens": 853920}
|
| 264 |
+
{"current_steps": 1320, "total_steps": 38160, "loss": 0.513, "lr": 0.00034564989517819704, "epoch": 0.6918238993710691, "percentage": 3.46, "elapsed_time": "0:03:12", "remaining_time": "1:29:38", "throughput": 4448.2, "total_tokens": 857312}
|
| 265 |
+
{"current_steps": 1325, "total_steps": 38160, "loss": 0.4137, "lr": 0.0003469601677148847, "epoch": 0.6944444444444444, "percentage": 3.47, "elapsed_time": "0:03:13", "remaining_time": "1:29:35", "throughput": 4446.87, "total_tokens": 859904}
|
| 266 |
+
{"current_steps": 1330, "total_steps": 38160, "loss": 0.5575, "lr": 0.00034827044025157236, "epoch": 0.6970649895178197, "percentage": 3.49, "elapsed_time": "0:03:14", "remaining_time": "1:29:36", "throughput": 4448.57, "total_tokens": 863680}
|
| 267 |
+
{"current_steps": 1335, "total_steps": 38160, "loss": 0.5729, "lr": 0.00034958071278826, "epoch": 0.699685534591195, "percentage": 3.5, "elapsed_time": "0:03:14", "remaining_time": "1:29:35", "throughput": 4448.67, "total_tokens": 866880}
|
| 268 |
+
{"current_steps": 1340, "total_steps": 38160, "loss": 0.4186, "lr": 0.00035089098532494763, "epoch": 0.7023060796645703, "percentage": 3.51, "elapsed_time": "0:03:15", "remaining_time": "1:29:33", "throughput": 4448.24, "total_tokens": 869856}
|
| 269 |
+
{"current_steps": 1345, "total_steps": 38160, "loss": 0.5439, "lr": 0.0003522012578616352, "epoch": 0.7049266247379455, "percentage": 3.52, "elapsed_time": "0:03:16", "remaining_time": "1:29:33", "throughput": 4449.2, "total_tokens": 873472}
|
| 270 |
+
{"current_steps": 1350, "total_steps": 38160, "loss": 0.4465, "lr": 0.00035351153039832285, "epoch": 0.7075471698113207, "percentage": 3.54, "elapsed_time": "0:03:17", "remaining_time": "1:29:32", "throughput": 4449.41, "total_tokens": 876704}
|
| 271 |
+
{"current_steps": 1355, "total_steps": 38160, "loss": 0.4769, "lr": 0.0003548218029350105, "epoch": 0.710167714884696, "percentage": 3.55, "elapsed_time": "0:03:17", "remaining_time": "1:29:33", "throughput": 4450.96, "total_tokens": 880576}
|
| 272 |
+
{"current_steps": 1360, "total_steps": 38160, "loss": 0.4906, "lr": 0.0003561320754716981, "epoch": 0.7127882599580713, "percentage": 3.56, "elapsed_time": "0:03:18", "remaining_time": "1:29:32", "throughput": 4450.95, "total_tokens": 883680}
|
| 273 |
+
{"current_steps": 1365, "total_steps": 38160, "loss": 0.5653, "lr": 0.00035744234800838575, "epoch": 0.7154088050314465, "percentage": 3.58, "elapsed_time": "0:03:19", "remaining_time": "1:29:29", "throughput": 4450.03, "total_tokens": 886464}
|
| 274 |
+
{"current_steps": 1370, "total_steps": 38160, "loss": 0.5247, "lr": 0.0003587526205450734, "epoch": 0.7180293501048218, "percentage": 3.59, "elapsed_time": "0:03:19", "remaining_time": "1:29:28", "throughput": 4449.7, "total_tokens": 889536}
|
| 275 |
+
{"current_steps": 1375, "total_steps": 38160, "loss": 0.507, "lr": 0.00036006289308176097, "epoch": 0.7206498951781971, "percentage": 3.6, "elapsed_time": "0:03:20", "remaining_time": "1:29:32", "throughput": 4452.79, "total_tokens": 894272}
|
| 276 |
+
{"current_steps": 1380, "total_steps": 38160, "loss": 0.4721, "lr": 0.00036137316561844865, "epoch": 0.7232704402515723, "percentage": 3.62, "elapsed_time": "0:03:21", "remaining_time": "1:29:30", "throughput": 4452.09, "total_tokens": 897120}
|
| 277 |
+
{"current_steps": 1385, "total_steps": 38160, "loss": 0.4942, "lr": 0.0003626834381551363, "epoch": 0.7258909853249476, "percentage": 3.63, "elapsed_time": "0:03:22", "remaining_time": "1:29:27", "throughput": 4451.18, "total_tokens": 899808}
|
| 278 |
+
{"current_steps": 1390, "total_steps": 38160, "loss": 0.4896, "lr": 0.0003639937106918239, "epoch": 0.7285115303983228, "percentage": 3.64, "elapsed_time": "0:03:22", "remaining_time": "1:29:28", "throughput": 4452.43, "total_tokens": 903520}
|
| 279 |
+
{"current_steps": 1395, "total_steps": 38160, "loss": 0.5451, "lr": 0.00036530398322851156, "epoch": 0.7311320754716981, "percentage": 3.66, "elapsed_time": "0:03:23", "remaining_time": "1:29:28", "throughput": 4453.51, "total_tokens": 907200}
|
| 280 |
+
{"current_steps": 1400, "total_steps": 38160, "loss": 0.4845, "lr": 0.0003666142557651992, "epoch": 0.7337526205450734, "percentage": 3.67, "elapsed_time": "0:03:24", "remaining_time": "1:29:30", "throughput": 4455.68, "total_tokens": 911392}
|
| 281 |
+
{"current_steps": 1405, "total_steps": 38160, "loss": 0.5145, "lr": 0.00036792452830188677, "epoch": 0.7363731656184487, "percentage": 3.68, "elapsed_time": "0:03:25", "remaining_time": "1:29:26", "throughput": 4453.09, "total_tokens": 913440}
|
| 282 |
+
{"current_steps": 1410, "total_steps": 38160, "loss": 0.4958, "lr": 0.0003692348008385744, "epoch": 0.7389937106918238, "percentage": 3.69, "elapsed_time": "0:03:26", "remaining_time": "1:29:29", "throughput": 4455.5, "total_tokens": 917888}
|
| 283 |
+
{"current_steps": 1415, "total_steps": 38160, "loss": 0.5504, "lr": 0.00037054507337526204, "epoch": 0.7416142557651991, "percentage": 3.71, "elapsed_time": "0:03:26", "remaining_time": "1:29:29", "throughput": 4456.12, "total_tokens": 921376}
|
| 284 |
+
{"current_steps": 1420, "total_steps": 38160, "loss": 0.5504, "lr": 0.0003718553459119497, "epoch": 0.7442348008385744, "percentage": 3.72, "elapsed_time": "0:03:27", "remaining_time": "1:29:28", "throughput": 4456.66, "total_tokens": 924800}
|
| 285 |
+
{"current_steps": 1425, "total_steps": 38160, "loss": 0.64, "lr": 0.0003731656184486373, "epoch": 0.7468553459119497, "percentage": 3.73, "elapsed_time": "0:03:28", "remaining_time": "1:29:26", "throughput": 4455.72, "total_tokens": 927648}
|
| 286 |
+
{"current_steps": 1430, "total_steps": 38160, "loss": 0.4149, "lr": 0.000374475890985325, "epoch": 0.749475890985325, "percentage": 3.75, "elapsed_time": "0:03:28", "remaining_time": "1:29:23", "throughput": 4454.31, "total_tokens": 930144}
|
| 287 |
+
{"current_steps": 1435, "total_steps": 38160, "loss": 0.413, "lr": 0.00037578616352201263, "epoch": 0.7520964360587002, "percentage": 3.76, "elapsed_time": "0:03:29", "remaining_time": "1:29:22", "throughput": 4453.92, "total_tokens": 933184}
|
| 288 |
+
{"current_steps": 1440, "total_steps": 38160, "loss": 0.5526, "lr": 0.0003770964360587002, "epoch": 0.7547169811320755, "percentage": 3.77, "elapsed_time": "0:03:30", "remaining_time": "1:29:24", "throughput": 4455.84, "total_tokens": 937376}
|
| 289 |
+
{"current_steps": 1445, "total_steps": 38160, "loss": 0.4662, "lr": 0.00037840670859538785, "epoch": 0.7573375262054507, "percentage": 3.79, "elapsed_time": "0:03:31", "remaining_time": "1:29:22", "throughput": 4454.83, "total_tokens": 940160}
|
| 290 |
+
{"current_steps": 1450, "total_steps": 38160, "loss": 0.5484, "lr": 0.0003797169811320755, "epoch": 0.759958071278826, "percentage": 3.8, "elapsed_time": "0:03:31", "remaining_time": "1:29:19", "throughput": 4453.68, "total_tokens": 942816}
|
| 291 |
+
{"current_steps": 1455, "total_steps": 38160, "loss": 0.5784, "lr": 0.0003810272536687631, "epoch": 0.7625786163522013, "percentage": 3.81, "elapsed_time": "0:03:32", "remaining_time": "1:29:18", "throughput": 4453.63, "total_tokens": 945952}
|
| 292 |
+
{"current_steps": 1460, "total_steps": 38160, "loss": 0.3904, "lr": 0.00038233752620545075, "epoch": 0.7651991614255765, "percentage": 3.83, "elapsed_time": "0:03:33", "remaining_time": "1:29:18", "throughput": 4454.24, "total_tokens": 949472}
|
| 293 |
+
{"current_steps": 1465, "total_steps": 38160, "loss": 0.5353, "lr": 0.0003836477987421384, "epoch": 0.7678197064989518, "percentage": 3.84, "elapsed_time": "0:03:33", "remaining_time": "1:29:17", "throughput": 4454.27, "total_tokens": 952672}
|
| 294 |
+
{"current_steps": 1470, "total_steps": 38160, "loss": 0.5603, "lr": 0.00038495807127882596, "epoch": 0.7704402515723271, "percentage": 3.85, "elapsed_time": "0:03:34", "remaining_time": "1:29:14", "throughput": 4453.67, "total_tokens": 955520}
|
| 295 |
+
{"current_steps": 1475, "total_steps": 38160, "loss": 0.5678, "lr": 0.0003862683438155136, "epoch": 0.7730607966457023, "percentage": 3.87, "elapsed_time": "0:03:35", "remaining_time": "1:29:13", "throughput": 4453.2, "total_tokens": 958464}
|
| 296 |
+
{"current_steps": 1480, "total_steps": 38160, "loss": 0.4988, "lr": 0.0003875786163522013, "epoch": 0.7756813417190775, "percentage": 3.88, "elapsed_time": "0:03:35", "remaining_time": "1:29:09", "throughput": 4451.38, "total_tokens": 960768}
|
| 297 |
+
{"current_steps": 1485, "total_steps": 38160, "loss": 0.6904, "lr": 0.0003888888888888889, "epoch": 0.7783018867924528, "percentage": 3.89, "elapsed_time": "0:03:36", "remaining_time": "1:29:06", "throughput": 4450.86, "total_tokens": 963616}
|
| 298 |
+
{"current_steps": 1490, "total_steps": 38160, "loss": 0.7019, "lr": 0.00039019916142557656, "epoch": 0.7809224318658281, "percentage": 3.9, "elapsed_time": "0:03:37", "remaining_time": "1:29:09", "throughput": 4453.32, "total_tokens": 967936}
|
| 299 |
+
{"current_steps": 1495, "total_steps": 38160, "loss": 0.481, "lr": 0.0003915094339622642, "epoch": 0.7835429769392034, "percentage": 3.92, "elapsed_time": "0:03:38", "remaining_time": "1:29:10", "throughput": 4454.56, "total_tokens": 971744}
|
| 300 |
+
{"current_steps": 1500, "total_steps": 38160, "loss": 0.5369, "lr": 0.00039281970649895177, "epoch": 0.7861635220125787, "percentage": 3.93, "elapsed_time": "0:03:38", "remaining_time": "1:29:06", "throughput": 4452.85, "total_tokens": 974080}
|
| 301 |
+
{"current_steps": 1505, "total_steps": 38160, "loss": 0.4812, "lr": 0.0003941299790356394, "epoch": 0.7887840670859538, "percentage": 3.94, "elapsed_time": "0:03:39", "remaining_time": "1:29:04", "throughput": 4452.33, "total_tokens": 976992}
|
| 302 |
+
{"current_steps": 1510, "total_steps": 38160, "loss": 0.5068, "lr": 0.00039544025157232704, "epoch": 0.7914046121593291, "percentage": 3.96, "elapsed_time": "0:03:40", "remaining_time": "1:29:01", "throughput": 4451.25, "total_tokens": 979648}
|
| 303 |
+
{"current_steps": 1515, "total_steps": 38160, "loss": 0.5554, "lr": 0.0003967505241090147, "epoch": 0.7940251572327044, "percentage": 3.97, "elapsed_time": "0:03:40", "remaining_time": "1:29:01", "throughput": 4451.88, "total_tokens": 983136}
|
| 304 |
+
{"current_steps": 1520, "total_steps": 38160, "loss": 0.4946, "lr": 0.0003980607966457023, "epoch": 0.7966457023060797, "percentage": 3.98, "elapsed_time": "0:03:41", "remaining_time": "1:29:02", "throughput": 4453.29, "total_tokens": 986976}
|
| 305 |
+
{"current_steps": 1525, "total_steps": 38160, "loss": 0.4699, "lr": 0.00039937106918238994, "epoch": 0.799266247379455, "percentage": 4.0, "elapsed_time": "0:03:42", "remaining_time": "1:29:01", "throughput": 4453.47, "total_tokens": 990272}
|
| 306 |
+
{"current_steps": 1530, "total_steps": 38160, "loss": 0.4808, "lr": 0.0004006813417190776, "epoch": 0.8018867924528302, "percentage": 4.01, "elapsed_time": "0:03:43", "remaining_time": "1:29:03", "throughput": 4455.29, "total_tokens": 994368}
|
| 307 |
+
{"current_steps": 1535, "total_steps": 38160, "loss": 0.4407, "lr": 0.0004019916142557652, "epoch": 0.8045073375262054, "percentage": 4.02, "elapsed_time": "0:03:43", "remaining_time": "1:29:02", "throughput": 4455.27, "total_tokens": 997504}
|
| 308 |
+
{"current_steps": 1540, "total_steps": 38160, "loss": 0.568, "lr": 0.00040330188679245284, "epoch": 0.8071278825995807, "percentage": 4.04, "elapsed_time": "0:03:44", "remaining_time": "1:28:59", "throughput": 4454.63, "total_tokens": 1000352}
|
| 309 |
+
{"current_steps": 1545, "total_steps": 38160, "loss": 0.58, "lr": 0.0004046121593291405, "epoch": 0.809748427672956, "percentage": 4.05, "elapsed_time": "0:03:45", "remaining_time": "1:28:58", "throughput": 4454.91, "total_tokens": 1003616}
|
| 310 |
+
{"current_steps": 1550, "total_steps": 38160, "loss": 0.5682, "lr": 0.0004059224318658281, "epoch": 0.8123689727463312, "percentage": 4.06, "elapsed_time": "0:03:45", "remaining_time": "1:28:56", "throughput": 4454.03, "total_tokens": 1006240}
|
| 311 |
+
{"current_steps": 1555, "total_steps": 38160, "loss": 0.5371, "lr": 0.00040723270440251575, "epoch": 0.8149895178197065, "percentage": 4.07, "elapsed_time": "0:03:46", "remaining_time": "1:28:55", "throughput": 4454.0, "total_tokens": 1009440}
|
| 312 |
+
{"current_steps": 1560, "total_steps": 38160, "loss": 0.5506, "lr": 0.00040854297693920333, "epoch": 0.8176100628930818, "percentage": 4.09, "elapsed_time": "0:03:47", "remaining_time": "1:28:51", "throughput": 4452.75, "total_tokens": 1011936}
|
| 313 |
+
{"current_steps": 1565, "total_steps": 38160, "loss": 0.4716, "lr": 0.00040985324947589096, "epoch": 0.820230607966457, "percentage": 4.1, "elapsed_time": "0:03:47", "remaining_time": "1:28:50", "throughput": 4452.69, "total_tokens": 1015040}
|
| 314 |
+
{"current_steps": 1570, "total_steps": 38160, "loss": 0.5998, "lr": 0.0004111635220125786, "epoch": 0.8228511530398323, "percentage": 4.11, "elapsed_time": "0:03:48", "remaining_time": "1:28:49", "throughput": 4452.66, "total_tokens": 1018240}
|
| 315 |
+
{"current_steps": 1575, "total_steps": 38160, "loss": 0.503, "lr": 0.00041247379454926623, "epoch": 0.8254716981132075, "percentage": 4.13, "elapsed_time": "0:03:49", "remaining_time": "1:28:50", "throughput": 4454.63, "total_tokens": 1022336}
|
| 316 |
+
{"current_steps": 1580, "total_steps": 38160, "loss": 0.5135, "lr": 0.0004137840670859539, "epoch": 0.8280922431865828, "percentage": 4.14, "elapsed_time": "0:03:50", "remaining_time": "1:28:48", "throughput": 4454.0, "total_tokens": 1025184}
|
| 317 |
+
{"current_steps": 1585, "total_steps": 38160, "loss": 0.5793, "lr": 0.00041509433962264155, "epoch": 0.8307127882599581, "percentage": 4.15, "elapsed_time": "0:03:50", "remaining_time": "1:28:48", "throughput": 4454.21, "total_tokens": 1028448}
|
| 318 |
+
{"current_steps": 1590, "total_steps": 38160, "loss": 0.5545, "lr": 0.00041640461215932913, "epoch": 0.8333333333333334, "percentage": 4.17, "elapsed_time": "0:03:51", "remaining_time": "1:28:45", "throughput": 4453.04, "total_tokens": 1031072}
|
| 319 |
+
{"current_steps": 1595, "total_steps": 38160, "loss": 0.476, "lr": 0.00041771488469601677, "epoch": 0.8359538784067087, "percentage": 4.18, "elapsed_time": "0:03:52", "remaining_time": "1:28:44", "throughput": 4453.05, "total_tokens": 1034208}
|
| 320 |
+
{"current_steps": 1600, "total_steps": 38160, "loss": 0.4526, "lr": 0.0004190251572327044, "epoch": 0.8385744234800838, "percentage": 4.19, "elapsed_time": "0:03:53", "remaining_time": "1:28:46", "throughput": 4455.19, "total_tokens": 1038624}
|
| 321 |
+
{"current_steps": 1605, "total_steps": 38160, "loss": 0.5629, "lr": 0.00042033542976939204, "epoch": 0.8411949685534591, "percentage": 4.21, "elapsed_time": "0:03:53", "remaining_time": "1:28:44", "throughput": 4453.91, "total_tokens": 1041152}
|
| 322 |
+
{"current_steps": 1610, "total_steps": 38160, "loss": 0.4165, "lr": 0.00042164570230607967, "epoch": 0.8438155136268344, "percentage": 4.22, "elapsed_time": "0:03:54", "remaining_time": "1:28:41", "throughput": 4453.21, "total_tokens": 1043904}
|
| 323 |
+
{"current_steps": 1615, "total_steps": 38160, "loss": 0.5203, "lr": 0.0004229559748427673, "epoch": 0.8464360587002097, "percentage": 4.23, "elapsed_time": "0:03:55", "remaining_time": "1:28:41", "throughput": 4453.86, "total_tokens": 1047456}
|
| 324 |
+
{"current_steps": 1620, "total_steps": 38160, "loss": 0.5663, "lr": 0.00042426624737945494, "epoch": 0.8490566037735849, "percentage": 4.25, "elapsed_time": "0:03:55", "remaining_time": "1:28:39", "throughput": 4453.07, "total_tokens": 1050304}
|
| 325 |
+
{"current_steps": 1625, "total_steps": 38160, "loss": 0.5146, "lr": 0.0004255765199161425, "epoch": 0.8516771488469602, "percentage": 4.26, "elapsed_time": "0:03:56", "remaining_time": "1:28:39", "throughput": 4453.15, "total_tokens": 1053600}
|
| 326 |
+
{"current_steps": 1630, "total_steps": 38160, "loss": 0.3679, "lr": 0.0004268867924528302, "epoch": 0.8542976939203354, "percentage": 4.27, "elapsed_time": "0:03:57", "remaining_time": "1:28:38", "throughput": 4452.98, "total_tokens": 1056672}
|
| 327 |
+
{"current_steps": 1635, "total_steps": 38160, "loss": 0.3992, "lr": 0.00042819706498951784, "epoch": 0.8569182389937107, "percentage": 4.28, "elapsed_time": "0:03:58", "remaining_time": "1:28:37", "throughput": 4452.86, "total_tokens": 1059904}
|
| 328 |
+
{"current_steps": 1640, "total_steps": 38160, "loss": 0.5048, "lr": 0.0004295073375262055, "epoch": 0.859538784067086, "percentage": 4.3, "elapsed_time": "0:03:58", "remaining_time": "1:28:36", "throughput": 4453.5, "total_tokens": 1063360}
|
| 329 |
+
{"current_steps": 1645, "total_steps": 38160, "loss": 0.508, "lr": 0.0004308176100628931, "epoch": 0.8621593291404612, "percentage": 4.31, "elapsed_time": "0:03:59", "remaining_time": "1:28:33", "throughput": 4452.06, "total_tokens": 1065728}
|
| 330 |
+
{"current_steps": 1650, "total_steps": 38160, "loss": 0.481, "lr": 0.00043212788259958075, "epoch": 0.8647798742138365, "percentage": 4.32, "elapsed_time": "0:04:00", "remaining_time": "1:28:31", "throughput": 4451.19, "total_tokens": 1068448}
|
| 331 |
+
{"current_steps": 1655, "total_steps": 38160, "loss": 0.5102, "lr": 0.0004334381551362683, "epoch": 0.8674004192872118, "percentage": 4.34, "elapsed_time": "0:04:00", "remaining_time": "1:28:28", "throughput": 4450.29, "total_tokens": 1071104}
|
| 332 |
+
{"current_steps": 1660, "total_steps": 38160, "loss": 0.4178, "lr": 0.00043474842767295596, "epoch": 0.870020964360587, "percentage": 4.35, "elapsed_time": "0:04:01", "remaining_time": "1:28:30", "throughput": 4451.6, "total_tokens": 1075072}
|
| 333 |
+
{"current_steps": 1665, "total_steps": 38160, "loss": 0.5128, "lr": 0.0004360587002096436, "epoch": 0.8726415094339622, "percentage": 4.36, "elapsed_time": "0:04:02", "remaining_time": "1:28:27", "throughput": 4450.98, "total_tokens": 1077824}
|
| 334 |
+
{"current_steps": 1670, "total_steps": 38160, "loss": 0.4771, "lr": 0.00043736897274633123, "epoch": 0.8752620545073375, "percentage": 4.38, "elapsed_time": "0:04:02", "remaining_time": "1:28:26", "throughput": 4450.73, "total_tokens": 1080832}
|
| 335 |
+
{"current_steps": 1675, "total_steps": 38160, "loss": 0.543, "lr": 0.00043867924528301886, "epoch": 0.8778825995807128, "percentage": 4.39, "elapsed_time": "0:04:03", "remaining_time": "1:28:25", "throughput": 4450.83, "total_tokens": 1084096}
|
| 336 |
+
{"current_steps": 1680, "total_steps": 38160, "loss": 0.5159, "lr": 0.00043998951781970655, "epoch": 0.8805031446540881, "percentage": 4.4, "elapsed_time": "0:04:04", "remaining_time": "1:28:24", "throughput": 4450.39, "total_tokens": 1087104}
|
| 337 |
+
{"current_steps": 1685, "total_steps": 38160, "loss": 0.5715, "lr": 0.00044129979035639413, "epoch": 0.8831236897274634, "percentage": 4.42, "elapsed_time": "0:04:04", "remaining_time": "1:28:22", "throughput": 4450.63, "total_tokens": 1090304}
|
| 338 |
+
{"current_steps": 1690, "total_steps": 38160, "loss": 0.7883, "lr": 0.00044261006289308177, "epoch": 0.8857442348008385, "percentage": 4.43, "elapsed_time": "0:04:05", "remaining_time": "1:28:23", "throughput": 4451.75, "total_tokens": 1094112}
|
| 339 |
+
{"current_steps": 1695, "total_steps": 38160, "loss": 0.5333, "lr": 0.0004439203354297694, "epoch": 0.8883647798742138, "percentage": 4.44, "elapsed_time": "0:04:06", "remaining_time": "1:28:26", "throughput": 4453.65, "total_tokens": 1098496}
|
| 340 |
+
{"current_steps": 1700, "total_steps": 38160, "loss": 0.4503, "lr": 0.00044523060796645704, "epoch": 0.8909853249475891, "percentage": 4.45, "elapsed_time": "0:04:07", "remaining_time": "1:28:23", "throughput": 4452.38, "total_tokens": 1100992}
|
| 341 |
+
{"current_steps": 1705, "total_steps": 38160, "loss": 0.5451, "lr": 0.00044654088050314467, "epoch": 0.8936058700209644, "percentage": 4.47, "elapsed_time": "0:04:07", "remaining_time": "1:28:21", "throughput": 4451.74, "total_tokens": 1103776}
|
| 342 |
+
{"current_steps": 1710, "total_steps": 38160, "loss": 0.452, "lr": 0.0004478511530398323, "epoch": 0.8962264150943396, "percentage": 4.48, "elapsed_time": "0:04:08", "remaining_time": "1:28:18", "throughput": 4450.71, "total_tokens": 1106368}
|
| 343 |
+
{"current_steps": 1715, "total_steps": 38160, "loss": 0.4424, "lr": 0.0004491614255765199, "epoch": 0.8988469601677149, "percentage": 4.49, "elapsed_time": "0:04:09", "remaining_time": "1:28:17", "throughput": 4450.3, "total_tokens": 1109376}
|
| 344 |
+
{"current_steps": 1720, "total_steps": 38160, "loss": 0.4653, "lr": 0.0004504716981132075, "epoch": 0.9014675052410901, "percentage": 4.51, "elapsed_time": "0:04:09", "remaining_time": "1:28:16", "throughput": 4449.96, "total_tokens": 1112448}
|
| 345 |
+
{"current_steps": 1725, "total_steps": 38160, "loss": 0.4825, "lr": 0.00045178197064989515, "epoch": 0.9040880503144654, "percentage": 4.52, "elapsed_time": "0:04:10", "remaining_time": "1:28:15", "throughput": 4449.67, "total_tokens": 1115520}
|
| 346 |
+
{"current_steps": 1730, "total_steps": 38160, "loss": 0.6451, "lr": 0.00045309224318658284, "epoch": 0.9067085953878407, "percentage": 4.53, "elapsed_time": "0:04:11", "remaining_time": "1:28:14", "throughput": 4450.01, "total_tokens": 1118784}
|
| 347 |
+
{"current_steps": 1735, "total_steps": 38160, "loss": 0.7135, "lr": 0.0004544025157232705, "epoch": 0.9093291404612159, "percentage": 4.55, "elapsed_time": "0:04:12", "remaining_time": "1:28:13", "throughput": 4450.44, "total_tokens": 1122112}
|
| 348 |
+
{"current_steps": 1740, "total_steps": 38160, "loss": 0.4702, "lr": 0.0004557127882599581, "epoch": 0.9119496855345912, "percentage": 4.56, "elapsed_time": "0:04:12", "remaining_time": "1:28:13", "throughput": 4451.72, "total_tokens": 1125952}
|
| 349 |
+
{"current_steps": 1745, "total_steps": 38160, "loss": 0.657, "lr": 0.0004570230607966457, "epoch": 0.9145702306079665, "percentage": 4.57, "elapsed_time": "0:04:13", "remaining_time": "1:28:12", "throughput": 4451.66, "total_tokens": 1129024}
|
| 350 |
+
{"current_steps": 1750, "total_steps": 38160, "loss": 0.4666, "lr": 0.0004583333333333333, "epoch": 0.9171907756813418, "percentage": 4.59, "elapsed_time": "0:04:14", "remaining_time": "1:28:09", "throughput": 4450.34, "total_tokens": 1131488}
|
| 351 |
+
{"current_steps": 1755, "total_steps": 38160, "loss": 0.4721, "lr": 0.00045964360587002096, "epoch": 0.9198113207547169, "percentage": 4.6, "elapsed_time": "0:04:14", "remaining_time": "1:28:07", "throughput": 4449.54, "total_tokens": 1134176}
|
| 352 |
+
{"current_steps": 1760, "total_steps": 38160, "loss": 0.5269, "lr": 0.0004609538784067086, "epoch": 0.9224318658280922, "percentage": 4.61, "elapsed_time": "0:04:15", "remaining_time": "1:28:07", "throughput": 4450.54, "total_tokens": 1137888}
|
| 353 |
+
{"current_steps": 1765, "total_steps": 38160, "loss": 0.615, "lr": 0.00046226415094339623, "epoch": 0.9250524109014675, "percentage": 4.63, "elapsed_time": "0:04:16", "remaining_time": "1:28:06", "throughput": 4450.92, "total_tokens": 1141184}
|
| 354 |
+
{"current_steps": 1770, "total_steps": 38160, "loss": 0.5396, "lr": 0.00046357442348008386, "epoch": 0.9276729559748428, "percentage": 4.64, "elapsed_time": "0:04:17", "remaining_time": "1:28:04", "throughput": 4450.55, "total_tokens": 1144064}
|
| 355 |
+
{"current_steps": 1775, "total_steps": 38160, "loss": 0.5017, "lr": 0.00046488469601677155, "epoch": 0.9302935010482181, "percentage": 4.65, "elapsed_time": "0:04:17", "remaining_time": "1:28:04", "throughput": 4451.24, "total_tokens": 1147584}
|
| 356 |
+
{"current_steps": 1780, "total_steps": 38160, "loss": 0.4822, "lr": 0.00046619496855345913, "epoch": 0.9329140461215933, "percentage": 4.66, "elapsed_time": "0:04:19", "remaining_time": "1:28:15", "throughput": 4457.0, "total_tokens": 1154784}
|
| 357 |
+
{"current_steps": 1785, "total_steps": 38160, "loss": 0.4725, "lr": 0.00046750524109014677, "epoch": 0.9355345911949685, "percentage": 4.68, "elapsed_time": "0:04:19", "remaining_time": "1:28:12", "throughput": 4456.25, "total_tokens": 1157440}
|
| 358 |
+
{"current_steps": 1790, "total_steps": 38160, "loss": 0.6405, "lr": 0.0004688155136268344, "epoch": 0.9381551362683438, "percentage": 4.69, "elapsed_time": "0:04:20", "remaining_time": "1:28:10", "throughput": 4455.5, "total_tokens": 1160224}
|
| 359 |
+
{"current_steps": 1795, "total_steps": 38160, "loss": 0.5172, "lr": 0.00047012578616352203, "epoch": 0.9407756813417191, "percentage": 4.7, "elapsed_time": "0:04:21", "remaining_time": "1:28:12", "throughput": 4457.44, "total_tokens": 1164480}
|
| 360 |
+
{"current_steps": 1800, "total_steps": 38160, "loss": 0.3977, "lr": 0.00047143605870020967, "epoch": 0.9433962264150944, "percentage": 4.72, "elapsed_time": "0:04:22", "remaining_time": "1:28:13", "throughput": 4459.39, "total_tokens": 1168704}
|
| 361 |
+
{"current_steps": 1805, "total_steps": 38160, "loss": 0.4354, "lr": 0.0004727463312368973, "epoch": 0.9460167714884696, "percentage": 4.73, "elapsed_time": "0:04:22", "remaining_time": "1:28:14", "throughput": 4460.25, "total_tokens": 1172384}
|
| 362 |
+
{"current_steps": 1810, "total_steps": 38160, "loss": 0.4943, "lr": 0.0004740566037735849, "epoch": 0.9486373165618449, "percentage": 4.74, "elapsed_time": "0:04:23", "remaining_time": "1:28:12", "throughput": 4460.03, "total_tokens": 1175392}
|
| 363 |
+
{"current_steps": 1815, "total_steps": 38160, "loss": 0.4631, "lr": 0.0004753668763102725, "epoch": 0.9512578616352201, "percentage": 4.76, "elapsed_time": "0:04:24", "remaining_time": "1:28:11", "throughput": 4459.73, "total_tokens": 1178368}
|
| 364 |
+
{"current_steps": 1820, "total_steps": 38160, "loss": 0.4071, "lr": 0.00047667714884696015, "epoch": 0.9538784067085954, "percentage": 4.77, "elapsed_time": "0:04:25", "remaining_time": "1:28:11", "throughput": 4460.77, "total_tokens": 1182240}
|
| 365 |
+
{"current_steps": 1825, "total_steps": 38160, "loss": 0.4638, "lr": 0.00047798742138364784, "epoch": 0.9564989517819706, "percentage": 4.78, "elapsed_time": "0:04:25", "remaining_time": "1:28:11", "throughput": 4460.83, "total_tokens": 1185504}
|
| 366 |
+
{"current_steps": 1830, "total_steps": 38160, "loss": 0.4824, "lr": 0.0004792976939203355, "epoch": 0.9591194968553459, "percentage": 4.8, "elapsed_time": "0:04:26", "remaining_time": "1:28:09", "throughput": 4460.21, "total_tokens": 1188288}
|
| 367 |
+
{"current_steps": 1835, "total_steps": 38160, "loss": 0.457, "lr": 0.0004806079664570231, "epoch": 0.9617400419287212, "percentage": 4.81, "elapsed_time": "0:04:27", "remaining_time": "1:28:09", "throughput": 4460.92, "total_tokens": 1192064}
|
| 368 |
+
{"current_steps": 1840, "total_steps": 38160, "loss": 0.461, "lr": 0.0004819182389937107, "epoch": 0.9643605870020965, "percentage": 4.82, "elapsed_time": "0:04:27", "remaining_time": "1:28:08", "throughput": 4460.82, "total_tokens": 1195104}
|
| 369 |
+
{"current_steps": 1845, "total_steps": 38160, "loss": 0.6006, "lr": 0.0004832285115303983, "epoch": 0.9669811320754716, "percentage": 4.83, "elapsed_time": "0:04:28", "remaining_time": "1:28:06", "throughput": 4460.17, "total_tokens": 1197920}
|
| 370 |
+
{"current_steps": 1850, "total_steps": 38160, "loss": 0.4591, "lr": 0.00048453878406708596, "epoch": 0.9696016771488469, "percentage": 4.85, "elapsed_time": "0:04:29", "remaining_time": "1:28:04", "throughput": 4459.81, "total_tokens": 1200896}
|
| 371 |
+
{"current_steps": 1855, "total_steps": 38160, "loss": 0.4771, "lr": 0.0004858490566037736, "epoch": 0.9722222222222222, "percentage": 4.86, "elapsed_time": "0:04:29", "remaining_time": "1:28:03", "throughput": 4459.74, "total_tokens": 1204032}
|
| 372 |
+
{"current_steps": 1860, "total_steps": 38160, "loss": 0.4047, "lr": 0.0004871593291404612, "epoch": 0.9748427672955975, "percentage": 4.87, "elapsed_time": "0:04:30", "remaining_time": "1:28:02", "throughput": 4459.83, "total_tokens": 1207264}
|
| 373 |
+
{"current_steps": 1865, "total_steps": 38160, "loss": 0.5478, "lr": 0.0004884696016771489, "epoch": 0.9774633123689728, "percentage": 4.89, "elapsed_time": "0:04:31", "remaining_time": "1:28:00", "throughput": 4459.16, "total_tokens": 1209984}
|
| 374 |
+
{"current_steps": 1870, "total_steps": 38160, "loss": 0.4362, "lr": 0.0004897798742138365, "epoch": 0.980083857442348, "percentage": 4.9, "elapsed_time": "0:04:32", "remaining_time": "1:28:01", "throughput": 4460.16, "total_tokens": 1213856}
|
| 375 |
+
{"current_steps": 1875, "total_steps": 38160, "loss": 0.4379, "lr": 0.0004910901467505241, "epoch": 0.9827044025157232, "percentage": 4.91, "elapsed_time": "0:04:32", "remaining_time": "1:28:01", "throughput": 4460.61, "total_tokens": 1217408}
|
| 376 |
+
{"current_steps": 1880, "total_steps": 38160, "loss": 0.5103, "lr": 0.0004924004192872118, "epoch": 0.9853249475890985, "percentage": 4.93, "elapsed_time": "0:04:33", "remaining_time": "1:28:01", "throughput": 4461.24, "total_tokens": 1221024}
|
| 377 |
+
{"current_steps": 1885, "total_steps": 38160, "loss": 0.4078, "lr": 0.0004937106918238993, "epoch": 0.9879454926624738, "percentage": 4.94, "elapsed_time": "0:04:34", "remaining_time": "1:28:01", "throughput": 4461.37, "total_tokens": 1224320}
|
| 378 |
+
{"current_steps": 1890, "total_steps": 38160, "loss": 0.3956, "lr": 0.000495020964360587, "epoch": 0.9905660377358491, "percentage": 4.95, "elapsed_time": "0:04:35", "remaining_time": "1:28:01", "throughput": 4462.27, "total_tokens": 1228000}
|
| 379 |
+
{"current_steps": 1895, "total_steps": 38160, "loss": 0.4922, "lr": 0.0004963312368972746, "epoch": 0.9931865828092243, "percentage": 4.97, "elapsed_time": "0:04:36", "remaining_time": "1:28:02", "throughput": 4464.22, "total_tokens": 1232320}
|
| 380 |
+
{"current_steps": 1900, "total_steps": 38160, "loss": 0.5838, "lr": 0.0004976415094339623, "epoch": 0.9958071278825996, "percentage": 4.98, "elapsed_time": "0:04:37", "remaining_time": "1:28:09", "throughput": 4467.79, "total_tokens": 1238272}
|
| 381 |
+
{"current_steps": 1905, "total_steps": 38160, "loss": 0.4991, "lr": 0.0004989517819706499, "epoch": 0.9984276729559748, "percentage": 4.99, "elapsed_time": "0:04:37", "remaining_time": "1:28:07", "throughput": 4467.65, "total_tokens": 1241344}
|
| 382 |
+
{"current_steps": 1908, "total_steps": 38160, "eval_loss": 0.47990021109580994, "epoch": 1.0, "percentage": 5.0, "elapsed_time": "0:04:51", "remaining_time": "1:32:25", "throughput": 4258.72, "total_tokens": 1243048}
|
| 383 |
+
{"current_steps": 1910, "total_steps": 38160, "loss": 0.4387, "lr": 0.0005002620545073376, "epoch": 1.00104821802935, "percentage": 5.01, "elapsed_time": "0:04:54", "remaining_time": "1:33:02", "throughput": 4231.21, "total_tokens": 1244520}
|
| 384 |
+
{"current_steps": 1915, "total_steps": 38160, "loss": 0.4998, "lr": 0.0005015723270440253, "epoch": 1.0036687631027255, "percentage": 5.02, "elapsed_time": "0:04:54", "remaining_time": "1:33:00", "throughput": 4231.48, "total_tokens": 1247528}
|
| 385 |
+
{"current_steps": 1920, "total_steps": 38160, "loss": 0.5969, "lr": 0.0005028825995807128, "epoch": 1.0062893081761006, "percentage": 5.03, "elapsed_time": "0:04:55", "remaining_time": "1:32:58", "throughput": 4232.05, "total_tokens": 1250824}
|
| 386 |
+
{"current_steps": 1925, "total_steps": 38160, "loss": 0.5149, "lr": 0.0005041928721174004, "epoch": 1.0089098532494758, "percentage": 5.04, "elapsed_time": "0:04:56", "remaining_time": "1:32:57", "throughput": 4232.52, "total_tokens": 1254024}
|
| 387 |
+
{"current_steps": 1930, "total_steps": 38160, "loss": 0.4696, "lr": 0.0005055031446540881, "epoch": 1.0115303983228512, "percentage": 5.06, "elapsed_time": "0:04:57", "remaining_time": "1:33:03", "throughput": 4237.56, "total_tokens": 1260328}
|
| 388 |
+
{"current_steps": 1935, "total_steps": 38160, "loss": 0.6895, "lr": 0.0005068134171907757, "epoch": 1.0141509433962264, "percentage": 5.07, "elapsed_time": "0:04:58", "remaining_time": "1:33:01", "throughput": 4238.34, "total_tokens": 1263656}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc90822302257416ab9eff3ad5cb4107ec07c36dd65012367a7f19c07e6e64f1
|
| 3 |
+
size 6353
|