gitcat404 commited on
Commit
c2c1a57
·
verified ·
1 Parent(s): 6c00387

Upload 22 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
chat_template.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
3
+ }
config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "eos_token_id": 151645,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 3584,
10
+ "image_token_id": 151655,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 18944,
13
+ "max_position_embeddings": 128000,
14
+ "max_window_layers": 28,
15
+ "model_type": "qwen2_5_vl",
16
+ "num_attention_heads": 28,
17
+ "num_hidden_layers": 28,
18
+ "num_key_value_heads": 4,
19
+ "rms_norm_eps": 1e-06,
20
+ "rope_scaling": {
21
+ "mrope_section": [
22
+ 16,
23
+ 24,
24
+ 24
25
+ ],
26
+ "rope_type": "default",
27
+ "type": "default"
28
+ },
29
+ "rope_theta": 1000000.0,
30
+ "sliding_window": 32768,
31
+ "tie_word_embeddings": false,
32
+ "torch_dtype": "bfloat16",
33
+ "transformers_version": "4.50.0",
34
+ "use_cache": false,
35
+ "use_sliding_window": false,
36
+ "video_token_id": 151656,
37
+ "vision_config": {
38
+ "depth": 32,
39
+ "fullatt_block_indexes": [
40
+ 7,
41
+ 15,
42
+ 23,
43
+ 31
44
+ ],
45
+ "hidden_act": "silu",
46
+ "hidden_size": 1280,
47
+ "in_channels": 3,
48
+ "in_chans": 3,
49
+ "intermediate_size": 3420,
50
+ "model_type": "qwen2_5_vl",
51
+ "num_heads": 16,
52
+ "out_hidden_size": 3584,
53
+ "patch_size": 14,
54
+ "spatial_merge_size": 2,
55
+ "spatial_patch_size": 14,
56
+ "temporal_patch_size": 2,
57
+ "tokens_per_second": 2,
58
+ "torch_dtype": "float32",
59
+ "window_size": 112
60
+ },
61
+ "vision_end_token_id": 151653,
62
+ "vision_start_token_id": 151652,
63
+ "vision_token_id": 151654,
64
+ "vocab_size": 152064
65
+ }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "repetition_penalty": 1.05,
10
+ "temperature": 1e-06,
11
+ "transformers_version": "4.50.0"
12
+ }
llamaboard_config.yaml ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ top.booster: auto
2
+ top.checkpoint_path: null
3
+ top.finetuning_type: full
4
+ top.model_name: Qwen2.5-VL-7B-Instruct
5
+ top.quantization_bit: none
6
+ top.quantization_method: bitsandbytes
7
+ top.rope_scaling: none
8
+ top.template: qwen2_vl
9
+ train.additional_target: ''
10
+ train.apollo_rank: 16
11
+ train.apollo_scale: 32
12
+ train.apollo_target: all
13
+ train.apollo_update_interval: 200
14
+ train.badam_mode: layer
15
+ train.badam_switch_interval: 50
16
+ train.badam_switch_mode: ascending
17
+ train.badam_update_ratio: 0.05
18
+ train.batch_size: 2
19
+ train.compute_type: bf16
20
+ train.create_new_adapter: false
21
+ train.cutoff_len: 6000
22
+ train.dataset:
23
+ - critic_training_data
24
+ - refined
25
+ - omnisvg
26
+ - svgen
27
+ - llm4svg
28
+ train.dataset_dir: data
29
+ train.ds_offload: false
30
+ train.ds_stage: '3'
31
+ train.extra_args: '{"optim": "adamw_torch"}'
32
+ train.freeze_extra_modules: ''
33
+ train.freeze_trainable_layers: 2
34
+ train.freeze_trainable_modules: all
35
+ train.galore_rank: 16
36
+ train.galore_scale: 2
37
+ train.galore_target: all
38
+ train.galore_update_interval: 200
39
+ train.gradient_accumulation_steps: 8
40
+ train.learning_rate: 1e-4
41
+ train.logging_steps: 21
42
+ train.lora_alpha: 16
43
+ train.lora_dropout: 0
44
+ train.lora_rank: 8
45
+ train.lora_target: ''
46
+ train.loraplus_lr_ratio: 0
47
+ train.lr_scheduler_type: cosine
48
+ train.mask_history: false
49
+ train.max_grad_norm: '1.0'
50
+ train.max_samples: '1000000'
51
+ train.neat_packing: false
52
+ train.neftune_alpha: 0
53
+ train.num_train_epochs: '3.0'
54
+ train.packing: false
55
+ train.ppo_score_norm: false
56
+ train.ppo_whiten_rewards: false
57
+ train.pref_beta: 0.1
58
+ train.pref_ftx: 0
59
+ train.pref_loss: sigmoid
60
+ train.report_to:
61
+ - none
62
+ train.resize_vocab: false
63
+ train.reward_model: []
64
+ train.save_steps: 5000
65
+ train.swanlab_api_key: ''
66
+ train.swanlab_mode: cloud
67
+ train.swanlab_project: llamafactory
68
+ train.swanlab_run_name: ''
69
+ train.swanlab_workspace: ''
70
+ train.train_on_prompt: false
71
+ train.training_stage: Supervised Fine-Tuning
72
+ train.use_apollo: false
73
+ train.use_badam: false
74
+ train.use_dora: false
75
+ train.use_galore: false
76
+ train.use_llama_pro: false
77
+ train.use_pissa: false
78
+ train.use_rslora: false
79
+ train.use_swanlab: false
80
+ train.val_size: 0.03
81
+ train.warmup_steps: 0
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b7e68f40aa1b9e213ead8c4e71e042c8eee60b1ac43807f6e91a3bd7b01a347
3
+ size 4968243304
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2aa1bfd6c37a412e18b75fbcaea4c4dc67784d5df119ffdeff77ddb12bef1312
3
+ size 4991495816
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14617c4434c1bbb749f552d889ae68aa7ae947a38e939938e3518d460f0e2b39
3
+ size 4932751040
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3eaac5aed72c32abcb07dcc0c2d2e68bda8eae4b653f6f1a557483b2090fde15
3
+ size 1691924384
model.safetensors.index.json ADDED
@@ -0,0 +1,736 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 16584333312
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00004-of-00004.safetensors",
7
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
17
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
18
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
25
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
26
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
27
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
28
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
29
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
30
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
31
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
32
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
33
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
34
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
35
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
36
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
37
+ "model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
38
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
39
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
40
+ "model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
41
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
42
+ "model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
43
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
44
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
45
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
46
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
47
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
48
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
49
+ "model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
50
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
51
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
52
+ "model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
53
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
54
+ "model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
55
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
56
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
57
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
58
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
59
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
60
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
61
+ "model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
62
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
63
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
64
+ "model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
65
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
66
+ "model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
67
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
68
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
69
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
70
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
71
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
72
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
73
+ "model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
74
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
75
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
76
+ "model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
77
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
78
+ "model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
79
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
80
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
81
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
82
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
83
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
84
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
85
+ "model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
86
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
87
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
88
+ "model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
89
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
90
+ "model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
91
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
92
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
93
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
94
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
95
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
96
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
97
+ "model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
98
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
99
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
100
+ "model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
101
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
102
+ "model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
103
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
104
+ "model.layers.16.input_layernorm.weight": "model-00003-of-00004.safetensors",
105
+ "model.layers.16.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
106
+ "model.layers.16.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
107
+ "model.layers.16.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
108
+ "model.layers.16.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
109
+ "model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
110
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
111
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
112
+ "model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
113
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
114
+ "model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
115
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
116
+ "model.layers.17.input_layernorm.weight": "model-00003-of-00004.safetensors",
117
+ "model.layers.17.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
118
+ "model.layers.17.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
119
+ "model.layers.17.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
120
+ "model.layers.17.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
121
+ "model.layers.17.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
122
+ "model.layers.17.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
123
+ "model.layers.17.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
124
+ "model.layers.17.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
125
+ "model.layers.17.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
126
+ "model.layers.17.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
127
+ "model.layers.17.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
128
+ "model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
129
+ "model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
130
+ "model.layers.18.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
131
+ "model.layers.18.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
132
+ "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
133
+ "model.layers.18.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
134
+ "model.layers.18.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
135
+ "model.layers.18.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
136
+ "model.layers.18.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
137
+ "model.layers.18.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
138
+ "model.layers.18.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
139
+ "model.layers.18.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
140
+ "model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
141
+ "model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
142
+ "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
143
+ "model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
144
+ "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
145
+ "model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
146
+ "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
147
+ "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
148
+ "model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
149
+ "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
150
+ "model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
151
+ "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
152
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
153
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
154
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
155
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
156
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
157
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
158
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
159
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
160
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
161
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
162
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
163
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
164
+ "model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
165
+ "model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
166
+ "model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
167
+ "model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
168
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
169
+ "model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
170
+ "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
171
+ "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
172
+ "model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
173
+ "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
174
+ "model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
175
+ "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
176
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
177
+ "model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
178
+ "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
179
+ "model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
180
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
181
+ "model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
182
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
183
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
184
+ "model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
185
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
186
+ "model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
187
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
188
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
189
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
190
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
191
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
192
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
193
+ "model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
194
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
195
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
196
+ "model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
197
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
198
+ "model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
199
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
200
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
201
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
202
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
203
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
204
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
205
+ "model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
206
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
207
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
208
+ "model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
209
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
210
+ "model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
211
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
212
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
213
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
214
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
215
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
216
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
217
+ "model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
218
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
219
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
220
+ "model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
221
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
222
+ "model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
223
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
224
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
225
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
226
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
227
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
228
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
229
+ "model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
230
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
231
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
232
+ "model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
233
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
234
+ "model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
235
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
236
+ "model.layers.26.input_layernorm.weight": "model-00004-of-00004.safetensors",
237
+ "model.layers.26.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
238
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
239
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
240
+ "model.layers.26.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
241
+ "model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
242
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
243
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
244
+ "model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
245
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
246
+ "model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
247
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
248
+ "model.layers.27.input_layernorm.weight": "model-00004-of-00004.safetensors",
249
+ "model.layers.27.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
250
+ "model.layers.27.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
251
+ "model.layers.27.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
252
+ "model.layers.27.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
253
+ "model.layers.27.self_attn.k_proj.bias": "model-00004-of-00004.safetensors",
254
+ "model.layers.27.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
255
+ "model.layers.27.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
256
+ "model.layers.27.self_attn.q_proj.bias": "model-00004-of-00004.safetensors",
257
+ "model.layers.27.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
258
+ "model.layers.27.self_attn.v_proj.bias": "model-00004-of-00004.safetensors",
259
+ "model.layers.27.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
260
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
261
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
262
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
263
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
264
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
265
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
266
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
267
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
268
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
269
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
270
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
271
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
272
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
273
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
274
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
275
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
276
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
277
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
278
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
279
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
280
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
281
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
282
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
283
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
284
+ "model.layers.5.input_layernorm.weight": "model-00002-of-00004.safetensors",
285
+ "model.layers.5.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
286
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
287
+ "model.layers.5.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
288
+ "model.layers.5.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
289
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
290
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
291
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
292
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
293
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
294
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
295
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
296
+ "model.layers.6.input_layernorm.weight": "model-00002-of-00004.safetensors",
297
+ "model.layers.6.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
298
+ "model.layers.6.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
299
+ "model.layers.6.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
300
+ "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
301
+ "model.layers.6.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
302
+ "model.layers.6.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
303
+ "model.layers.6.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
304
+ "model.layers.6.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
305
+ "model.layers.6.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
306
+ "model.layers.6.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
307
+ "model.layers.6.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
308
+ "model.layers.7.input_layernorm.weight": "model-00002-of-00004.safetensors",
309
+ "model.layers.7.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
310
+ "model.layers.7.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
311
+ "model.layers.7.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
312
+ "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
313
+ "model.layers.7.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
314
+ "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
315
+ "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
316
+ "model.layers.7.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
317
+ "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
318
+ "model.layers.7.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
319
+ "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
320
+ "model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
321
+ "model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
322
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
323
+ "model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
324
+ "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
325
+ "model.layers.8.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
326
+ "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
327
+ "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
328
+ "model.layers.8.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
329
+ "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
330
+ "model.layers.8.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
331
+ "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
332
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
333
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
334
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
335
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
336
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
337
+ "model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
338
+ "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
339
+ "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
340
+ "model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
341
+ "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
342
+ "model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
343
+ "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
344
+ "model.norm.weight": "model-00004-of-00004.safetensors",
345
+ "visual.blocks.0.attn.proj.bias": "model-00001-of-00004.safetensors",
346
+ "visual.blocks.0.attn.proj.weight": "model-00001-of-00004.safetensors",
347
+ "visual.blocks.0.attn.qkv.bias": "model-00001-of-00004.safetensors",
348
+ "visual.blocks.0.attn.qkv.weight": "model-00001-of-00004.safetensors",
349
+ "visual.blocks.0.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
350
+ "visual.blocks.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
351
+ "visual.blocks.0.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
352
+ "visual.blocks.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
353
+ "visual.blocks.0.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
354
+ "visual.blocks.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
355
+ "visual.blocks.0.norm1.weight": "model-00001-of-00004.safetensors",
356
+ "visual.blocks.0.norm2.weight": "model-00001-of-00004.safetensors",
357
+ "visual.blocks.1.attn.proj.bias": "model-00001-of-00004.safetensors",
358
+ "visual.blocks.1.attn.proj.weight": "model-00001-of-00004.safetensors",
359
+ "visual.blocks.1.attn.qkv.bias": "model-00001-of-00004.safetensors",
360
+ "visual.blocks.1.attn.qkv.weight": "model-00001-of-00004.safetensors",
361
+ "visual.blocks.1.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
362
+ "visual.blocks.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
363
+ "visual.blocks.1.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
364
+ "visual.blocks.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
365
+ "visual.blocks.1.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
366
+ "visual.blocks.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
367
+ "visual.blocks.1.norm1.weight": "model-00001-of-00004.safetensors",
368
+ "visual.blocks.1.norm2.weight": "model-00001-of-00004.safetensors",
369
+ "visual.blocks.10.attn.proj.bias": "model-00001-of-00004.safetensors",
370
+ "visual.blocks.10.attn.proj.weight": "model-00001-of-00004.safetensors",
371
+ "visual.blocks.10.attn.qkv.bias": "model-00001-of-00004.safetensors",
372
+ "visual.blocks.10.attn.qkv.weight": "model-00001-of-00004.safetensors",
373
+ "visual.blocks.10.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
374
+ "visual.blocks.10.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
375
+ "visual.blocks.10.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
376
+ "visual.blocks.10.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
377
+ "visual.blocks.10.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
378
+ "visual.blocks.10.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
379
+ "visual.blocks.10.norm1.weight": "model-00001-of-00004.safetensors",
380
+ "visual.blocks.10.norm2.weight": "model-00001-of-00004.safetensors",
381
+ "visual.blocks.11.attn.proj.bias": "model-00001-of-00004.safetensors",
382
+ "visual.blocks.11.attn.proj.weight": "model-00001-of-00004.safetensors",
383
+ "visual.blocks.11.attn.qkv.bias": "model-00001-of-00004.safetensors",
384
+ "visual.blocks.11.attn.qkv.weight": "model-00001-of-00004.safetensors",
385
+ "visual.blocks.11.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
386
+ "visual.blocks.11.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
387
+ "visual.blocks.11.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
388
+ "visual.blocks.11.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
389
+ "visual.blocks.11.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
390
+ "visual.blocks.11.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
391
+ "visual.blocks.11.norm1.weight": "model-00001-of-00004.safetensors",
392
+ "visual.blocks.11.norm2.weight": "model-00001-of-00004.safetensors",
393
+ "visual.blocks.12.attn.proj.bias": "model-00001-of-00004.safetensors",
394
+ "visual.blocks.12.attn.proj.weight": "model-00001-of-00004.safetensors",
395
+ "visual.blocks.12.attn.qkv.bias": "model-00001-of-00004.safetensors",
396
+ "visual.blocks.12.attn.qkv.weight": "model-00001-of-00004.safetensors",
397
+ "visual.blocks.12.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
398
+ "visual.blocks.12.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
399
+ "visual.blocks.12.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
400
+ "visual.blocks.12.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
401
+ "visual.blocks.12.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
402
+ "visual.blocks.12.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
403
+ "visual.blocks.12.norm1.weight": "model-00001-of-00004.safetensors",
404
+ "visual.blocks.12.norm2.weight": "model-00001-of-00004.safetensors",
405
+ "visual.blocks.13.attn.proj.bias": "model-00001-of-00004.safetensors",
406
+ "visual.blocks.13.attn.proj.weight": "model-00001-of-00004.safetensors",
407
+ "visual.blocks.13.attn.qkv.bias": "model-00001-of-00004.safetensors",
408
+ "visual.blocks.13.attn.qkv.weight": "model-00001-of-00004.safetensors",
409
+ "visual.blocks.13.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
410
+ "visual.blocks.13.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
411
+ "visual.blocks.13.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
412
+ "visual.blocks.13.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
413
+ "visual.blocks.13.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
414
+ "visual.blocks.13.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
415
+ "visual.blocks.13.norm1.weight": "model-00001-of-00004.safetensors",
416
+ "visual.blocks.13.norm2.weight": "model-00001-of-00004.safetensors",
417
+ "visual.blocks.14.attn.proj.bias": "model-00001-of-00004.safetensors",
418
+ "visual.blocks.14.attn.proj.weight": "model-00001-of-00004.safetensors",
419
+ "visual.blocks.14.attn.qkv.bias": "model-00001-of-00004.safetensors",
420
+ "visual.blocks.14.attn.qkv.weight": "model-00001-of-00004.safetensors",
421
+ "visual.blocks.14.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
422
+ "visual.blocks.14.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
423
+ "visual.blocks.14.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
424
+ "visual.blocks.14.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
425
+ "visual.blocks.14.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
426
+ "visual.blocks.14.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
427
+ "visual.blocks.14.norm1.weight": "model-00001-of-00004.safetensors",
428
+ "visual.blocks.14.norm2.weight": "model-00001-of-00004.safetensors",
429
+ "visual.blocks.15.attn.proj.bias": "model-00001-of-00004.safetensors",
430
+ "visual.blocks.15.attn.proj.weight": "model-00001-of-00004.safetensors",
431
+ "visual.blocks.15.attn.qkv.bias": "model-00001-of-00004.safetensors",
432
+ "visual.blocks.15.attn.qkv.weight": "model-00001-of-00004.safetensors",
433
+ "visual.blocks.15.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
434
+ "visual.blocks.15.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
435
+ "visual.blocks.15.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
436
+ "visual.blocks.15.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
437
+ "visual.blocks.15.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
438
+ "visual.blocks.15.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
439
+ "visual.blocks.15.norm1.weight": "model-00001-of-00004.safetensors",
440
+ "visual.blocks.15.norm2.weight": "model-00001-of-00004.safetensors",
441
+ "visual.blocks.16.attn.proj.bias": "model-00001-of-00004.safetensors",
442
+ "visual.blocks.16.attn.proj.weight": "model-00001-of-00004.safetensors",
443
+ "visual.blocks.16.attn.qkv.bias": "model-00001-of-00004.safetensors",
444
+ "visual.blocks.16.attn.qkv.weight": "model-00001-of-00004.safetensors",
445
+ "visual.blocks.16.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
446
+ "visual.blocks.16.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
447
+ "visual.blocks.16.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
448
+ "visual.blocks.16.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
449
+ "visual.blocks.16.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
450
+ "visual.blocks.16.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
451
+ "visual.blocks.16.norm1.weight": "model-00001-of-00004.safetensors",
452
+ "visual.blocks.16.norm2.weight": "model-00001-of-00004.safetensors",
453
+ "visual.blocks.17.attn.proj.bias": "model-00001-of-00004.safetensors",
454
+ "visual.blocks.17.attn.proj.weight": "model-00001-of-00004.safetensors",
455
+ "visual.blocks.17.attn.qkv.bias": "model-00001-of-00004.safetensors",
456
+ "visual.blocks.17.attn.qkv.weight": "model-00001-of-00004.safetensors",
457
+ "visual.blocks.17.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
458
+ "visual.blocks.17.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
459
+ "visual.blocks.17.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
460
+ "visual.blocks.17.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
461
+ "visual.blocks.17.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
462
+ "visual.blocks.17.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
463
+ "visual.blocks.17.norm1.weight": "model-00001-of-00004.safetensors",
464
+ "visual.blocks.17.norm2.weight": "model-00001-of-00004.safetensors",
465
+ "visual.blocks.18.attn.proj.bias": "model-00001-of-00004.safetensors",
466
+ "visual.blocks.18.attn.proj.weight": "model-00001-of-00004.safetensors",
467
+ "visual.blocks.18.attn.qkv.bias": "model-00001-of-00004.safetensors",
468
+ "visual.blocks.18.attn.qkv.weight": "model-00001-of-00004.safetensors",
469
+ "visual.blocks.18.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
470
+ "visual.blocks.18.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
471
+ "visual.blocks.18.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
472
+ "visual.blocks.18.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
473
+ "visual.blocks.18.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
474
+ "visual.blocks.18.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
475
+ "visual.blocks.18.norm1.weight": "model-00001-of-00004.safetensors",
476
+ "visual.blocks.18.norm2.weight": "model-00001-of-00004.safetensors",
477
+ "visual.blocks.19.attn.proj.bias": "model-00001-of-00004.safetensors",
478
+ "visual.blocks.19.attn.proj.weight": "model-00001-of-00004.safetensors",
479
+ "visual.blocks.19.attn.qkv.bias": "model-00001-of-00004.safetensors",
480
+ "visual.blocks.19.attn.qkv.weight": "model-00001-of-00004.safetensors",
481
+ "visual.blocks.19.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
482
+ "visual.blocks.19.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
483
+ "visual.blocks.19.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
484
+ "visual.blocks.19.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
485
+ "visual.blocks.19.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
486
+ "visual.blocks.19.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
487
+ "visual.blocks.19.norm1.weight": "model-00001-of-00004.safetensors",
488
+ "visual.blocks.19.norm2.weight": "model-00001-of-00004.safetensors",
489
+ "visual.blocks.2.attn.proj.bias": "model-00001-of-00004.safetensors",
490
+ "visual.blocks.2.attn.proj.weight": "model-00001-of-00004.safetensors",
491
+ "visual.blocks.2.attn.qkv.bias": "model-00001-of-00004.safetensors",
492
+ "visual.blocks.2.attn.qkv.weight": "model-00001-of-00004.safetensors",
493
+ "visual.blocks.2.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
494
+ "visual.blocks.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
495
+ "visual.blocks.2.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
496
+ "visual.blocks.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
497
+ "visual.blocks.2.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
498
+ "visual.blocks.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
499
+ "visual.blocks.2.norm1.weight": "model-00001-of-00004.safetensors",
500
+ "visual.blocks.2.norm2.weight": "model-00001-of-00004.safetensors",
501
+ "visual.blocks.20.attn.proj.bias": "model-00001-of-00004.safetensors",
502
+ "visual.blocks.20.attn.proj.weight": "model-00001-of-00004.safetensors",
503
+ "visual.blocks.20.attn.qkv.bias": "model-00001-of-00004.safetensors",
504
+ "visual.blocks.20.attn.qkv.weight": "model-00001-of-00004.safetensors",
505
+ "visual.blocks.20.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
506
+ "visual.blocks.20.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
507
+ "visual.blocks.20.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
508
+ "visual.blocks.20.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
509
+ "visual.blocks.20.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
510
+ "visual.blocks.20.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
511
+ "visual.blocks.20.norm1.weight": "model-00001-of-00004.safetensors",
512
+ "visual.blocks.20.norm2.weight": "model-00001-of-00004.safetensors",
513
+ "visual.blocks.21.attn.proj.bias": "model-00001-of-00004.safetensors",
514
+ "visual.blocks.21.attn.proj.weight": "model-00001-of-00004.safetensors",
515
+ "visual.blocks.21.attn.qkv.bias": "model-00001-of-00004.safetensors",
516
+ "visual.blocks.21.attn.qkv.weight": "model-00001-of-00004.safetensors",
517
+ "visual.blocks.21.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
518
+ "visual.blocks.21.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
519
+ "visual.blocks.21.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
520
+ "visual.blocks.21.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
521
+ "visual.blocks.21.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
522
+ "visual.blocks.21.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
523
+ "visual.blocks.21.norm1.weight": "model-00001-of-00004.safetensors",
524
+ "visual.blocks.21.norm2.weight": "model-00001-of-00004.safetensors",
525
+ "visual.blocks.22.attn.proj.bias": "model-00001-of-00004.safetensors",
526
+ "visual.blocks.22.attn.proj.weight": "model-00001-of-00004.safetensors",
527
+ "visual.blocks.22.attn.qkv.bias": "model-00001-of-00004.safetensors",
528
+ "visual.blocks.22.attn.qkv.weight": "model-00001-of-00004.safetensors",
529
+ "visual.blocks.22.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
530
+ "visual.blocks.22.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
531
+ "visual.blocks.22.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
532
+ "visual.blocks.22.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
533
+ "visual.blocks.22.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
534
+ "visual.blocks.22.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
535
+ "visual.blocks.22.norm1.weight": "model-00001-of-00004.safetensors",
536
+ "visual.blocks.22.norm2.weight": "model-00001-of-00004.safetensors",
537
+ "visual.blocks.23.attn.proj.bias": "model-00001-of-00004.safetensors",
538
+ "visual.blocks.23.attn.proj.weight": "model-00001-of-00004.safetensors",
539
+ "visual.blocks.23.attn.qkv.bias": "model-00001-of-00004.safetensors",
540
+ "visual.blocks.23.attn.qkv.weight": "model-00001-of-00004.safetensors",
541
+ "visual.blocks.23.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
542
+ "visual.blocks.23.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
543
+ "visual.blocks.23.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
544
+ "visual.blocks.23.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
545
+ "visual.blocks.23.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
546
+ "visual.blocks.23.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
547
+ "visual.blocks.23.norm1.weight": "model-00001-of-00004.safetensors",
548
+ "visual.blocks.23.norm2.weight": "model-00001-of-00004.safetensors",
549
+ "visual.blocks.24.attn.proj.bias": "model-00001-of-00004.safetensors",
550
+ "visual.blocks.24.attn.proj.weight": "model-00001-of-00004.safetensors",
551
+ "visual.blocks.24.attn.qkv.bias": "model-00001-of-00004.safetensors",
552
+ "visual.blocks.24.attn.qkv.weight": "model-00001-of-00004.safetensors",
553
+ "visual.blocks.24.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
554
+ "visual.blocks.24.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
555
+ "visual.blocks.24.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
556
+ "visual.blocks.24.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
557
+ "visual.blocks.24.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
558
+ "visual.blocks.24.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
559
+ "visual.blocks.24.norm1.weight": "model-00001-of-00004.safetensors",
560
+ "visual.blocks.24.norm2.weight": "model-00001-of-00004.safetensors",
561
+ "visual.blocks.25.attn.proj.bias": "model-00001-of-00004.safetensors",
562
+ "visual.blocks.25.attn.proj.weight": "model-00001-of-00004.safetensors",
563
+ "visual.blocks.25.attn.qkv.bias": "model-00001-of-00004.safetensors",
564
+ "visual.blocks.25.attn.qkv.weight": "model-00001-of-00004.safetensors",
565
+ "visual.blocks.25.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
566
+ "visual.blocks.25.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
567
+ "visual.blocks.25.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
568
+ "visual.blocks.25.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
569
+ "visual.blocks.25.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
570
+ "visual.blocks.25.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
571
+ "visual.blocks.25.norm1.weight": "model-00001-of-00004.safetensors",
572
+ "visual.blocks.25.norm2.weight": "model-00001-of-00004.safetensors",
573
+ "visual.blocks.26.attn.proj.bias": "model-00001-of-00004.safetensors",
574
+ "visual.blocks.26.attn.proj.weight": "model-00001-of-00004.safetensors",
575
+ "visual.blocks.26.attn.qkv.bias": "model-00001-of-00004.safetensors",
576
+ "visual.blocks.26.attn.qkv.weight": "model-00001-of-00004.safetensors",
577
+ "visual.blocks.26.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
578
+ "visual.blocks.26.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
579
+ "visual.blocks.26.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
580
+ "visual.blocks.26.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
581
+ "visual.blocks.26.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
582
+ "visual.blocks.26.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
583
+ "visual.blocks.26.norm1.weight": "model-00001-of-00004.safetensors",
584
+ "visual.blocks.26.norm2.weight": "model-00001-of-00004.safetensors",
585
+ "visual.blocks.27.attn.proj.bias": "model-00001-of-00004.safetensors",
586
+ "visual.blocks.27.attn.proj.weight": "model-00001-of-00004.safetensors",
587
+ "visual.blocks.27.attn.qkv.bias": "model-00001-of-00004.safetensors",
588
+ "visual.blocks.27.attn.qkv.weight": "model-00001-of-00004.safetensors",
589
+ "visual.blocks.27.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
590
+ "visual.blocks.27.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
591
+ "visual.blocks.27.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
592
+ "visual.blocks.27.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
593
+ "visual.blocks.27.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
594
+ "visual.blocks.27.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
595
+ "visual.blocks.27.norm1.weight": "model-00001-of-00004.safetensors",
596
+ "visual.blocks.27.norm2.weight": "model-00001-of-00004.safetensors",
597
+ "visual.blocks.28.attn.proj.bias": "model-00001-of-00004.safetensors",
598
+ "visual.blocks.28.attn.proj.weight": "model-00001-of-00004.safetensors",
599
+ "visual.blocks.28.attn.qkv.bias": "model-00001-of-00004.safetensors",
600
+ "visual.blocks.28.attn.qkv.weight": "model-00001-of-00004.safetensors",
601
+ "visual.blocks.28.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
602
+ "visual.blocks.28.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
603
+ "visual.blocks.28.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
604
+ "visual.blocks.28.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
605
+ "visual.blocks.28.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
606
+ "visual.blocks.28.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
607
+ "visual.blocks.28.norm1.weight": "model-00001-of-00004.safetensors",
608
+ "visual.blocks.28.norm2.weight": "model-00001-of-00004.safetensors",
609
+ "visual.blocks.29.attn.proj.bias": "model-00001-of-00004.safetensors",
610
+ "visual.blocks.29.attn.proj.weight": "model-00001-of-00004.safetensors",
611
+ "visual.blocks.29.attn.qkv.bias": "model-00001-of-00004.safetensors",
612
+ "visual.blocks.29.attn.qkv.weight": "model-00001-of-00004.safetensors",
613
+ "visual.blocks.29.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
614
+ "visual.blocks.29.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
615
+ "visual.blocks.29.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
616
+ "visual.blocks.29.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
617
+ "visual.blocks.29.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
618
+ "visual.blocks.29.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
619
+ "visual.blocks.29.norm1.weight": "model-00001-of-00004.safetensors",
620
+ "visual.blocks.29.norm2.weight": "model-00001-of-00004.safetensors",
621
+ "visual.blocks.3.attn.proj.bias": "model-00001-of-00004.safetensors",
622
+ "visual.blocks.3.attn.proj.weight": "model-00001-of-00004.safetensors",
623
+ "visual.blocks.3.attn.qkv.bias": "model-00001-of-00004.safetensors",
624
+ "visual.blocks.3.attn.qkv.weight": "model-00001-of-00004.safetensors",
625
+ "visual.blocks.3.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
626
+ "visual.blocks.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
627
+ "visual.blocks.3.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
628
+ "visual.blocks.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
629
+ "visual.blocks.3.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
630
+ "visual.blocks.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
631
+ "visual.blocks.3.norm1.weight": "model-00001-of-00004.safetensors",
632
+ "visual.blocks.3.norm2.weight": "model-00001-of-00004.safetensors",
633
+ "visual.blocks.30.attn.proj.bias": "model-00001-of-00004.safetensors",
634
+ "visual.blocks.30.attn.proj.weight": "model-00001-of-00004.safetensors",
635
+ "visual.blocks.30.attn.qkv.bias": "model-00001-of-00004.safetensors",
636
+ "visual.blocks.30.attn.qkv.weight": "model-00001-of-00004.safetensors",
637
+ "visual.blocks.30.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
638
+ "visual.blocks.30.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
639
+ "visual.blocks.30.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
640
+ "visual.blocks.30.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
641
+ "visual.blocks.30.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
642
+ "visual.blocks.30.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
643
+ "visual.blocks.30.norm1.weight": "model-00001-of-00004.safetensors",
644
+ "visual.blocks.30.norm2.weight": "model-00001-of-00004.safetensors",
645
+ "visual.blocks.31.attn.proj.bias": "model-00001-of-00004.safetensors",
646
+ "visual.blocks.31.attn.proj.weight": "model-00001-of-00004.safetensors",
647
+ "visual.blocks.31.attn.qkv.bias": "model-00001-of-00004.safetensors",
648
+ "visual.blocks.31.attn.qkv.weight": "model-00001-of-00004.safetensors",
649
+ "visual.blocks.31.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
650
+ "visual.blocks.31.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
651
+ "visual.blocks.31.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
652
+ "visual.blocks.31.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
653
+ "visual.blocks.31.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
654
+ "visual.blocks.31.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
655
+ "visual.blocks.31.norm1.weight": "model-00001-of-00004.safetensors",
656
+ "visual.blocks.31.norm2.weight": "model-00001-of-00004.safetensors",
657
+ "visual.blocks.4.attn.proj.bias": "model-00001-of-00004.safetensors",
658
+ "visual.blocks.4.attn.proj.weight": "model-00001-of-00004.safetensors",
659
+ "visual.blocks.4.attn.qkv.bias": "model-00001-of-00004.safetensors",
660
+ "visual.blocks.4.attn.qkv.weight": "model-00001-of-00004.safetensors",
661
+ "visual.blocks.4.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
662
+ "visual.blocks.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
663
+ "visual.blocks.4.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
664
+ "visual.blocks.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
665
+ "visual.blocks.4.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
666
+ "visual.blocks.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
667
+ "visual.blocks.4.norm1.weight": "model-00001-of-00004.safetensors",
668
+ "visual.blocks.4.norm2.weight": "model-00001-of-00004.safetensors",
669
+ "visual.blocks.5.attn.proj.bias": "model-00001-of-00004.safetensors",
670
+ "visual.blocks.5.attn.proj.weight": "model-00001-of-00004.safetensors",
671
+ "visual.blocks.5.attn.qkv.bias": "model-00001-of-00004.safetensors",
672
+ "visual.blocks.5.attn.qkv.weight": "model-00001-of-00004.safetensors",
673
+ "visual.blocks.5.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
674
+ "visual.blocks.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
675
+ "visual.blocks.5.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
676
+ "visual.blocks.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
677
+ "visual.blocks.5.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
678
+ "visual.blocks.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
679
+ "visual.blocks.5.norm1.weight": "model-00001-of-00004.safetensors",
680
+ "visual.blocks.5.norm2.weight": "model-00001-of-00004.safetensors",
681
+ "visual.blocks.6.attn.proj.bias": "model-00001-of-00004.safetensors",
682
+ "visual.blocks.6.attn.proj.weight": "model-00001-of-00004.safetensors",
683
+ "visual.blocks.6.attn.qkv.bias": "model-00001-of-00004.safetensors",
684
+ "visual.blocks.6.attn.qkv.weight": "model-00001-of-00004.safetensors",
685
+ "visual.blocks.6.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
686
+ "visual.blocks.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
687
+ "visual.blocks.6.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
688
+ "visual.blocks.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
689
+ "visual.blocks.6.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
690
+ "visual.blocks.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
691
+ "visual.blocks.6.norm1.weight": "model-00001-of-00004.safetensors",
692
+ "visual.blocks.6.norm2.weight": "model-00001-of-00004.safetensors",
693
+ "visual.blocks.7.attn.proj.bias": "model-00001-of-00004.safetensors",
694
+ "visual.blocks.7.attn.proj.weight": "model-00001-of-00004.safetensors",
695
+ "visual.blocks.7.attn.qkv.bias": "model-00001-of-00004.safetensors",
696
+ "visual.blocks.7.attn.qkv.weight": "model-00001-of-00004.safetensors",
697
+ "visual.blocks.7.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
698
+ "visual.blocks.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
699
+ "visual.blocks.7.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
700
+ "visual.blocks.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
701
+ "visual.blocks.7.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
702
+ "visual.blocks.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
703
+ "visual.blocks.7.norm1.weight": "model-00001-of-00004.safetensors",
704
+ "visual.blocks.7.norm2.weight": "model-00001-of-00004.safetensors",
705
+ "visual.blocks.8.attn.proj.bias": "model-00001-of-00004.safetensors",
706
+ "visual.blocks.8.attn.proj.weight": "model-00001-of-00004.safetensors",
707
+ "visual.blocks.8.attn.qkv.bias": "model-00001-of-00004.safetensors",
708
+ "visual.blocks.8.attn.qkv.weight": "model-00001-of-00004.safetensors",
709
+ "visual.blocks.8.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
710
+ "visual.blocks.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
711
+ "visual.blocks.8.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
712
+ "visual.blocks.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
713
+ "visual.blocks.8.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
714
+ "visual.blocks.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
715
+ "visual.blocks.8.norm1.weight": "model-00001-of-00004.safetensors",
716
+ "visual.blocks.8.norm2.weight": "model-00001-of-00004.safetensors",
717
+ "visual.blocks.9.attn.proj.bias": "model-00001-of-00004.safetensors",
718
+ "visual.blocks.9.attn.proj.weight": "model-00001-of-00004.safetensors",
719
+ "visual.blocks.9.attn.qkv.bias": "model-00001-of-00004.safetensors",
720
+ "visual.blocks.9.attn.qkv.weight": "model-00001-of-00004.safetensors",
721
+ "visual.blocks.9.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
722
+ "visual.blocks.9.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
723
+ "visual.blocks.9.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
724
+ "visual.blocks.9.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
725
+ "visual.blocks.9.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
726
+ "visual.blocks.9.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
727
+ "visual.blocks.9.norm1.weight": "model-00001-of-00004.safetensors",
728
+ "visual.blocks.9.norm2.weight": "model-00001-of-00004.safetensors",
729
+ "visual.merger.ln_q.weight": "model-00001-of-00004.safetensors",
730
+ "visual.merger.mlp.0.bias": "model-00001-of-00004.safetensors",
731
+ "visual.merger.mlp.0.weight": "model-00001-of-00004.safetensors",
732
+ "visual.merger.mlp.2.bias": "model-00001-of-00004.safetensors",
733
+ "visual.merger.mlp.2.weight": "model-00001-of-00004.safetensors",
734
+ "visual.patch_embed.proj.weight": "model-00001-of-00004.safetensors"
735
+ }
736
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": true,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.48145466,
8
+ 0.4578275,
9
+ 0.40821073
10
+ ],
11
+ "image_processor_type": "Qwen2VLImageProcessor",
12
+ "image_std": [
13
+ 0.26862954,
14
+ 0.26130258,
15
+ 0.27577711
16
+ ],
17
+ "max_pixels": 12845056,
18
+ "merge_size": 2,
19
+ "min_pixels": 3136,
20
+ "patch_size": 14,
21
+ "processor_class": "Qwen2_5_VLProcessor",
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "longest_edge": 12845056,
26
+ "shortest_edge": 3136
27
+ },
28
+ "temporal_patch_size": 2
29
+ }
running_log.txt ADDED
@@ -0,0 +1,1037 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file vocab.json
2
+
3
+ [WARNING|2025-10-19 08:28:09] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
4
+
5
+ [WARNING|2025-10-19 08:28:08] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
6
+
7
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file merges.txt
8
+
9
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file tokenizer.json
10
+
11
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file added_tokens.json
12
+
13
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file special_tokens_map.json
14
+
15
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file tokenizer_config.json
16
+
17
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file chat_template.jinja
18
+
19
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2323 >> Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.
20
+
21
+ [INFO|2025-10-19 08:28:08] image_processing_base.py:379 >> loading configuration file /gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct/preprocessor_config.json
22
+
23
+ [INFO|2025-10-19 08:28:08] image_processing_base.py:379 >> loading configuration file /gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct/preprocessor_config.json
24
+
25
+ [WARNING|2025-10-19 08:28:08] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
26
+
27
+ [INFO|2025-10-19 08:28:08] image_processing_base.py:434 >> Image processor Qwen2VLImageProcessor {
28
+ "do_convert_rgb": true,
29
+ "do_normalize": true,
30
+ "do_rescale": true,
31
+ "do_resize": true,
32
+ "image_mean": [
33
+ 0.48145466,
34
+ 0.4578275,
35
+ 0.40821073
36
+ ],
37
+ "image_processor_type": "Qwen2VLImageProcessor",
38
+ "image_std": [
39
+ 0.26862954,
40
+ 0.26130258,
41
+ 0.27577711
42
+ ],
43
+ "max_pixels": 12845056,
44
+ "merge_size": 2,
45
+ "min_pixels": 3136,
46
+ "patch_size": 14,
47
+ "processor_class": "Qwen2_5_VLProcessor",
48
+ "resample": 3,
49
+ "rescale_factor": 0.00392156862745098,
50
+ "size": {
51
+ "longest_edge": 12845056,
52
+ "shortest_edge": 3136
53
+ },
54
+ "temporal_patch_size": 2
55
+ }
56
+
57
+
58
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file vocab.json
59
+
60
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file merges.txt
61
+
62
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file tokenizer.json
63
+
64
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file added_tokens.json
65
+
66
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file special_tokens_map.json
67
+
68
+ [WARNING|2025-10-19 08:28:09] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
69
+
70
+ [WARNING|2025-10-19 08:28:09] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
71
+
72
+ [WARNING|2025-10-19 08:28:09] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
73
+
74
+ [WARNING|2025-10-19 08:28:09] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
75
+
76
+ [WARNING|2025-10-19 08:28:09] logging.py:329 >> Using a slow image processor as `use_fast` is unset and a slow processor was saved with this model. `use_fast=True` will be the default behavior in v4.50, even if the model was saved with a slow processor. This will result in minor differences in outputs. You'll still be able to use a slow processor with `use_fast=False`.
77
+
78
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file tokenizer_config.json
79
+
80
+ [INFO|2025-10-19 08:28:08] tokenization_utils_base.py:2058 >> loading file chat_template.jinja
81
+
82
+ [INFO|2025-10-19 08:28:09] tokenization_utils_base.py:2323 >> Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.
83
+
84
+ [INFO|2025-10-19 08:28:09] processing_utils.py:876 >> Processor Qwen2_5_VLProcessor:
85
+ - image_processor: Qwen2VLImageProcessor {
86
+ "do_convert_rgb": true,
87
+ "do_normalize": true,
88
+ "do_rescale": true,
89
+ "do_resize": true,
90
+ "image_mean": [
91
+ 0.48145466,
92
+ 0.4578275,
93
+ 0.40821073
94
+ ],
95
+ "image_processor_type": "Qwen2VLImageProcessor",
96
+ "image_std": [
97
+ 0.26862954,
98
+ 0.26130258,
99
+ 0.27577711
100
+ ],
101
+ "max_pixels": 12845056,
102
+ "merge_size": 2,
103
+ "min_pixels": 3136,
104
+ "patch_size": 14,
105
+ "processor_class": "Qwen2_5_VLProcessor",
106
+ "resample": 3,
107
+ "rescale_factor": 0.00392156862745098,
108
+ "size": {
109
+ "longest_edge": 12845056,
110
+ "shortest_edge": 3136
111
+ },
112
+ "temporal_patch_size": 2
113
+ }
114
+
115
+ - tokenizer: Qwen2TokenizerFast(name_or_path='/gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct', vocab_size=151643, model_max_length=131072, is_fast=True, padding_side='right', truncation_side='right', special_tokens={'eos_token': '<|im_end|>', 'pad_token': '<|endoftext|>', 'additional_special_tokens': ['<|im_start|>', '<|im_end|>', '<|object_ref_start|>', '<|object_ref_end|>', '<|box_start|>', '<|box_end|>', '<|quad_start|>', '<|quad_end|>', '<|vision_start|>', '<|vision_end|>', '<|vision_pad|>', '<|image_pad|>', '<|video_pad|>']}, clean_up_tokenization_spaces=False, added_tokens_decoder={
116
+ 151643: AddedToken("<|endoftext|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
117
+ 151644: AddedToken("<|im_start|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
118
+ 151645: AddedToken("<|im_end|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
119
+ 151646: AddedToken("<|object_ref_start|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
120
+ 151647: AddedToken("<|object_ref_end|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
121
+ 151648: AddedToken("<|box_start|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
122
+ 151649: AddedToken("<|box_end|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
123
+ 151650: AddedToken("<|quad_start|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
124
+ 151651: AddedToken("<|quad_end|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
125
+ 151652: AddedToken("<|vision_start|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
126
+ 151653: AddedToken("<|vision_end|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
127
+ 151654: AddedToken("<|vision_pad|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
128
+ 151655: AddedToken("<|image_pad|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
129
+ 151656: AddedToken("<|video_pad|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=True),
130
+ 151657: AddedToken("<tool_call>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
131
+ 151658: AddedToken("</tool_call>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
132
+ 151659: AddedToken("<|fim_prefix|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
133
+ 151660: AddedToken("<|fim_middle|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
134
+ 151661: AddedToken("<|fim_suffix|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
135
+ 151662: AddedToken("<|fim_pad|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
136
+ 151663: AddedToken("<|repo_name|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
137
+ 151664: AddedToken("<|file_sep|>", rstrip=False, lstrip=False, single_word=False, normalized=False, special=False),
138
+ }
139
+ )
140
+
141
+ {
142
+ "processor_class": "Qwen2_5_VLProcessor"
143
+ }
144
+
145
+
146
+ [INFO|2025-10-19 08:28:09] logging.py:157 >> Add <|im_end|> to stop words.
147
+
148
+ [INFO|2025-10-19 08:28:09] logging.py:157 >> Loading dataset critic_training_data.json...
149
+
150
+ [INFO|2025-10-19 08:28:33] logging.py:157 >> Loading dataset refined.json...
151
+
152
+ [INFO|2025-10-19 08:28:57] logging.py:157 >> Loading dataset omnisvg.json...
153
+
154
+ [INFO|2025-10-19 08:29:22] logging.py:157 >> Loading dataset svgen.json...
155
+
156
+ [INFO|2025-10-19 08:29:51] logging.py:157 >> Loading dataset llm4svg.json...
157
+
158
+ [INFO|2025-10-19 08:32:22] configuration_utils.py:697 >> loading configuration file /gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct/config.json
159
+
160
+ [INFO|2025-10-19 08:32:22] configuration_utils.py:771 >> Model config Qwen2_5_VLConfig {
161
+ "architectures": [
162
+ "Qwen2_5_VLForConditionalGeneration"
163
+ ],
164
+ "attention_dropout": 0.0,
165
+ "bos_token_id": 151643,
166
+ "eos_token_id": 151645,
167
+ "hidden_act": "silu",
168
+ "hidden_size": 3584,
169
+ "image_token_id": 151655,
170
+ "initializer_range": 0.02,
171
+ "intermediate_size": 18944,
172
+ "max_position_embeddings": 128000,
173
+ "max_window_layers": 28,
174
+ "model_type": "qwen2_5_vl",
175
+ "num_attention_heads": 28,
176
+ "num_hidden_layers": 28,
177
+ "num_key_value_heads": 4,
178
+ "rms_norm_eps": 1e-06,
179
+ "rope_scaling": {
180
+ "mrope_section": [
181
+ 16,
182
+ 24,
183
+ 24
184
+ ],
185
+ "rope_type": "default",
186
+ "type": "default"
187
+ },
188
+ "rope_theta": 1000000.0,
189
+ "sliding_window": 32768,
190
+ "tie_word_embeddings": false,
191
+ "torch_dtype": "bfloat16",
192
+ "transformers_version": "4.50.0",
193
+ "use_cache": true,
194
+ "use_sliding_window": false,
195
+ "video_token_id": 151656,
196
+ "vision_config": {
197
+ "depth": 32,
198
+ "fullatt_block_indexes": [
199
+ 7,
200
+ 15,
201
+ 23,
202
+ 31
203
+ ],
204
+ "hidden_act": "silu",
205
+ "hidden_size": 1280,
206
+ "in_channels": 3,
207
+ "in_chans": 3,
208
+ "intermediate_size": 3420,
209
+ "model_type": "qwen2_5_vl",
210
+ "num_heads": 16,
211
+ "out_hidden_size": 3584,
212
+ "patch_size": 14,
213
+ "spatial_merge_size": 2,
214
+ "spatial_patch_size": 14,
215
+ "temporal_patch_size": 2,
216
+ "tokens_per_second": 2,
217
+ "window_size": 112
218
+ },
219
+ "vision_end_token_id": 151653,
220
+ "vision_start_token_id": 151652,
221
+ "vision_token_id": 151654,
222
+ "vocab_size": 152064
223
+ }
224
+
225
+
226
+ [INFO|2025-10-19 08:32:22] modeling_utils.py:1151 >> loading weights file /gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct/model.safetensors.index.json
227
+
228
+ [INFO|2025-10-19 08:32:22] modeling_utils.py:3747 >> Detected DeepSpeed ZeRO-3: activating zero.init() for this model
229
+
230
+ [INFO|2025-10-19 08:32:22] configuration_utils.py:1139 >> Generate config GenerationConfig {
231
+ "bos_token_id": 151643,
232
+ "eos_token_id": 151645
233
+ }
234
+
235
+
236
+ [INFO|2025-10-19 08:32:22] modeling_utils.py:2170 >> Instantiating Qwen2_5_VisionTransformerPretrainedModel model under default dtype torch.float32.
237
+
238
+ [INFO|2025-10-19 08:32:43] modeling_utils.py:4987 >> All model checkpoint weights were used when initializing Qwen2_5_VLForConditionalGeneration.
239
+
240
+
241
+ [INFO|2025-10-19 08:32:43] modeling_utils.py:4995 >> All the weights of Qwen2_5_VLForConditionalGeneration were initialized from the model checkpoint at /gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct.
242
+ If your task is similar to the task the model of the checkpoint was trained on, you can already use Qwen2_5_VLForConditionalGeneration for predictions without further training.
243
+
244
+ [INFO|2025-10-19 08:32:43] configuration_utils.py:1092 >> loading configuration file /gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct/generation_config.json
245
+
246
+ [INFO|2025-10-19 08:32:43] configuration_utils.py:1139 >> Generate config GenerationConfig {
247
+ "bos_token_id": 151643,
248
+ "do_sample": true,
249
+ "eos_token_id": [
250
+ 151645,
251
+ 151643
252
+ ],
253
+ "pad_token_id": 151643,
254
+ "repetition_penalty": 1.05,
255
+ "temperature": 1e-06
256
+ }
257
+
258
+
259
+ [INFO|2025-10-19 08:32:43] logging.py:157 >> Gradient checkpointing enabled.
260
+
261
+ [INFO|2025-10-19 08:32:43] logging.py:157 >> Using torch SDPA for faster training and inference.
262
+
263
+ [INFO|2025-10-19 08:32:43] logging.py:157 >> ZeRO3 / FSDP detected, remaining trainable params in float32.
264
+
265
+ [INFO|2025-10-19 08:32:43] logging.py:157 >> Fine-tuning method: Full
266
+
267
+ [INFO|2025-10-19 08:32:43] logging.py:157 >> Set vision model not trainable: ['visual.patch_embed', 'visual.blocks'].
268
+
269
+ [INFO|2025-10-19 08:32:43] logging.py:157 >> Set multi model projector not trainable: visual.merger.
270
+
271
+ [INFO|2025-10-19 08:32:43] logging.py:157 >> trainable params: 7,615,616,512 || all params: 8,292,166,656 || trainable%: 91.8411
272
+
273
+ [INFO|2025-10-19 08:32:43] trainer.py:748 >> Using auto half precision backend
274
+
275
+ [INFO|2025-10-19 08:32:46] trainer.py:2409 >> ***** Running training *****
276
+
277
+ [INFO|2025-10-19 08:32:46] trainer.py:2410 >> Num examples = 296,675
278
+
279
+ [INFO|2025-10-19 08:32:46] trainer.py:2411 >> Num Epochs = 3
280
+
281
+ [INFO|2025-10-19 08:32:46] trainer.py:2412 >> Instantaneous batch size per device = 2
282
+
283
+ [INFO|2025-10-19 08:32:46] trainer.py:2415 >> Total train batch size (w. parallel, distributed & accumulation) = 128
284
+
285
+ [INFO|2025-10-19 08:32:46] trainer.py:2416 >> Gradient Accumulation steps = 8
286
+
287
+ [INFO|2025-10-19 08:32:46] trainer.py:2417 >> Total optimization steps = 6,951
288
+
289
+ [INFO|2025-10-19 08:32:47] trainer.py:2418 >> Number of trainable parameters = 7,615,616,512
290
+
291
+ [INFO|2025-10-19 08:41:51] logging.py:157 >> {'loss': 1.4310, 'learning_rate': 9.9998e-05, 'epoch': 0.01, 'throughput': 9395.55}
292
+
293
+ [INFO|2025-10-19 08:50:37] logging.py:157 >> {'loss': 0.5348, 'learning_rate': 9.9991e-05, 'epoch': 0.02, 'throughput': 9478.63}
294
+
295
+ [INFO|2025-10-19 08:59:17] logging.py:157 >> {'loss': 0.4599, 'learning_rate': 9.9980e-05, 'epoch': 0.03, 'throughput': 9537.12}
296
+
297
+ [INFO|2025-10-19 09:08:06] logging.py:157 >> {'loss': 0.4108, 'learning_rate': 9.9964e-05, 'epoch': 0.04, 'throughput': 9507.78}
298
+
299
+ [INFO|2025-10-19 09:17:01] logging.py:157 >> {'loss': 0.3947, 'learning_rate': 9.9944e-05, 'epoch': 0.05, 'throughput': 9470.14}
300
+
301
+ [INFO|2025-10-19 09:25:56] logging.py:157 >> {'loss': 0.3764, 'learning_rate': 9.9919e-05, 'epoch': 0.05, 'throughput': 9515.96}
302
+
303
+ [INFO|2025-10-19 09:34:29] logging.py:157 >> {'loss': 0.3751, 'learning_rate': 9.9890e-05, 'epoch': 0.06, 'throughput': 9525.58}
304
+
305
+ [INFO|2025-10-19 09:43:07] logging.py:157 >> {'loss': 0.3704, 'learning_rate': 9.9856e-05, 'epoch': 0.07, 'throughput': 9513.01}
306
+
307
+ [INFO|2025-10-19 09:52:01] logging.py:157 >> {'loss': 0.3552, 'learning_rate': 9.9818e-05, 'epoch': 0.08, 'throughput': 9524.90}
308
+
309
+ [INFO|2025-10-19 10:00:47] logging.py:157 >> {'loss': 0.3576, 'learning_rate': 9.9775e-05, 'epoch': 0.09, 'throughput': 9525.35}
310
+
311
+ [INFO|2025-10-19 10:09:47] logging.py:157 >> {'loss': 0.3451, 'learning_rate': 9.9728e-05, 'epoch': 0.10, 'throughput': 9525.43}
312
+
313
+ [INFO|2025-10-19 10:18:39] logging.py:157 >> {'loss': 0.3506, 'learning_rate': 9.9676e-05, 'epoch': 0.11, 'throughput': 9524.66}
314
+
315
+ [INFO|2025-10-19 10:27:37] logging.py:157 >> {'loss': 0.3443, 'learning_rate': 9.9620e-05, 'epoch': 0.12, 'throughput': 9531.29}
316
+
317
+ [INFO|2025-10-19 10:36:00] logging.py:157 >> {'loss': 0.3446, 'learning_rate': 9.9559e-05, 'epoch': 0.13, 'throughput': 9532.39}
318
+
319
+ [INFO|2025-10-19 10:44:24] logging.py:157 >> {'loss': 0.3362, 'learning_rate': 9.9494e-05, 'epoch': 0.14, 'throughput': 9543.53}
320
+
321
+ [INFO|2025-10-19 10:53:32] logging.py:157 >> {'loss': 0.3384, 'learning_rate': 9.9425e-05, 'epoch': 0.14, 'throughput': 9528.67}
322
+
323
+ [INFO|2025-10-19 11:02:31] logging.py:157 >> {'loss': 0.3315, 'learning_rate': 9.9351e-05, 'epoch': 0.15, 'throughput': 9534.93}
324
+
325
+ [INFO|2025-10-19 11:11:12] logging.py:157 >> {'loss': 0.3300, 'learning_rate': 9.9272e-05, 'epoch': 0.16, 'throughput': 9542.47}
326
+
327
+ [INFO|2025-10-19 11:20:21] logging.py:157 >> {'loss': 0.3296, 'learning_rate': 9.9189e-05, 'epoch': 0.17, 'throughput': 9530.71}
328
+
329
+ [INFO|2025-10-19 11:29:10] logging.py:157 >> {'loss': 0.3315, 'learning_rate': 9.9102e-05, 'epoch': 0.18, 'throughput': 9530.11}
330
+
331
+ [INFO|2025-10-19 11:38:03] logging.py:157 >> {'loss': 0.3530, 'learning_rate': 9.9010e-05, 'epoch': 0.19, 'throughput': 9524.36}
332
+
333
+ [INFO|2025-10-19 11:47:11] logging.py:157 >> {'loss': 0.3414, 'learning_rate': 9.8914e-05, 'epoch': 0.20, 'throughput': 9514.36}
334
+
335
+ [INFO|2025-10-19 11:56:09] logging.py:157 >> {'loss': 0.3224, 'learning_rate': 9.8813e-05, 'epoch': 0.21, 'throughput': 9515.30}
336
+
337
+ [INFO|2025-10-19 12:05:15] logging.py:157 >> {'loss': 0.3212, 'learning_rate': 9.8708e-05, 'epoch': 0.22, 'throughput': 9511.06}
338
+
339
+ [INFO|2025-10-19 12:14:07] logging.py:157 >> {'loss': 0.3213, 'learning_rate': 9.8599e-05, 'epoch': 0.23, 'throughput': 9509.05}
340
+
341
+ [INFO|2025-10-19 12:22:40] logging.py:157 >> {'loss': 0.3198, 'learning_rate': 9.8485e-05, 'epoch': 0.24, 'throughput': 9514.22}
342
+
343
+ [INFO|2025-10-19 12:31:22] logging.py:157 >> {'loss': 0.3149, 'learning_rate': 9.8367e-05, 'epoch': 0.24, 'throughput': 9518.41}
344
+
345
+ [INFO|2025-10-19 12:40:35] logging.py:157 >> {'loss': 0.3169, 'learning_rate': 9.8245e-05, 'epoch': 0.25, 'throughput': 9510.51}
346
+
347
+ [INFO|2025-10-19 12:49:33] logging.py:157 >> {'loss': 0.3142, 'learning_rate': 9.8118e-05, 'epoch': 0.26, 'throughput': 9501.43}
348
+
349
+ [INFO|2025-10-19 12:58:19] logging.py:157 >> {'loss': 0.3097, 'learning_rate': 9.7987e-05, 'epoch': 0.27, 'throughput': 9499.35}
350
+
351
+ [INFO|2025-10-19 13:07:12] logging.py:157 >> {'loss': 0.3116, 'learning_rate': 9.7851e-05, 'epoch': 0.28, 'throughput': 9500.56}
352
+
353
+ [INFO|2025-10-19 13:16:12] logging.py:157 >> {'loss': 0.3086, 'learning_rate': 9.7712e-05, 'epoch': 0.29, 'throughput': 9499.14}
354
+
355
+ [INFO|2025-10-19 13:25:17] logging.py:157 >> {'loss': 0.3057, 'learning_rate': 9.7567e-05, 'epoch': 0.30, 'throughput': 9491.21}
356
+
357
+ [INFO|2025-10-19 13:34:03] logging.py:157 >> {'loss': 0.3017, 'learning_rate': 9.7419e-05, 'epoch': 0.31, 'throughput': 9494.90}
358
+
359
+ [INFO|2025-10-19 13:43:13] logging.py:157 >> {'loss': 0.3066, 'learning_rate': 9.7266e-05, 'epoch': 0.32, 'throughput': 9489.84}
360
+
361
+ [INFO|2025-10-19 13:52:17] logging.py:157 >> {'loss': 0.2996, 'learning_rate': 9.7110e-05, 'epoch': 0.33, 'throughput': 9490.92}
362
+
363
+ [INFO|2025-10-19 14:01:12] logging.py:157 >> {'loss': 0.2972, 'learning_rate': 9.6948e-05, 'epoch': 0.34, 'throughput': 9489.46}
364
+
365
+ [INFO|2025-10-19 14:10:12] logging.py:157 >> {'loss': 0.2984, 'learning_rate': 9.6783e-05, 'epoch': 0.34, 'throughput': 9487.66}
366
+
367
+ [INFO|2025-10-19 14:18:52] logging.py:157 >> {'loss': 0.2957, 'learning_rate': 9.6614e-05, 'epoch': 0.35, 'throughput': 9493.32}
368
+
369
+ [INFO|2025-10-19 14:28:01] logging.py:157 >> {'loss': 0.2926, 'learning_rate': 9.6440e-05, 'epoch': 0.36, 'throughput': 9491.78}
370
+
371
+ [INFO|2025-10-19 14:36:47] logging.py:157 >> {'loss': 0.2909, 'learning_rate': 9.6262e-05, 'epoch': 0.37, 'throughput': 9494.44}
372
+
373
+ [INFO|2025-10-19 14:45:41] logging.py:157 >> {'loss': 0.2954, 'learning_rate': 9.6080e-05, 'epoch': 0.38, 'throughput': 9492.66}
374
+
375
+ [INFO|2025-10-19 14:54:34] logging.py:157 >> {'loss': 0.2912, 'learning_rate': 9.5893e-05, 'epoch': 0.39, 'throughput': 9497.80}
376
+
377
+ [INFO|2025-10-19 15:03:25] logging.py:157 >> {'loss': 0.2928, 'learning_rate': 9.5703e-05, 'epoch': 0.40, 'throughput': 9498.61}
378
+
379
+ [INFO|2025-10-19 15:11:44] logging.py:157 >> {'loss': 0.2920, 'learning_rate': 9.5508e-05, 'epoch': 0.41, 'throughput': 9506.77}
380
+
381
+ [INFO|2025-10-19 15:20:51] logging.py:157 >> {'loss': 0.2920, 'learning_rate': 9.5310e-05, 'epoch': 0.42, 'throughput': 9502.21}
382
+
383
+ [INFO|2025-10-19 15:29:38] logging.py:157 >> {'loss': 0.2959, 'learning_rate': 9.5107e-05, 'epoch': 0.43, 'throughput': 9500.11}
384
+
385
+ [INFO|2025-10-19 15:38:41] logging.py:157 >> {'loss': 0.2884, 'learning_rate': 9.4900e-05, 'epoch': 0.43, 'throughput': 9497.19}
386
+
387
+ [INFO|2025-10-19 15:47:33] logging.py:157 >> {'loss': 0.2878, 'learning_rate': 9.4690e-05, 'epoch': 0.44, 'throughput': 9494.35}
388
+
389
+ [INFO|2025-10-19 15:56:42] logging.py:157 >> {'loss': 0.2908, 'learning_rate': 9.4475e-05, 'epoch': 0.45, 'throughput': 9490.15}
390
+
391
+ [INFO|2025-10-19 16:06:06] logging.py:157 >> {'loss': 0.2796, 'learning_rate': 9.4256e-05, 'epoch': 0.46, 'throughput': 9485.80}
392
+
393
+ [INFO|2025-10-19 16:15:10] logging.py:157 >> {'loss': 0.2858, 'learning_rate': 9.4033e-05, 'epoch': 0.47, 'throughput': 9484.86}
394
+
395
+ [INFO|2025-10-19 16:23:56] logging.py:157 >> {'loss': 0.2876, 'learning_rate': 9.3806e-05, 'epoch': 0.48, 'throughput': 9486.71}
396
+
397
+ [INFO|2025-10-19 16:33:11] logging.py:157 >> {'loss': 0.2814, 'learning_rate': 9.3575e-05, 'epoch': 0.49, 'throughput': 9486.33}
398
+
399
+ [INFO|2025-10-19 16:42:03] logging.py:157 >> {'loss': 0.2804, 'learning_rate': 9.3341e-05, 'epoch': 0.50, 'throughput': 9491.48}
400
+
401
+ [INFO|2025-10-19 16:51:06] logging.py:157 >> {'loss': 0.2863, 'learning_rate': 9.3102e-05, 'epoch': 0.51, 'throughput': 9490.65}
402
+
403
+ [INFO|2025-10-19 16:59:50] logging.py:157 >> {'loss': 0.2851, 'learning_rate': 9.2860e-05, 'epoch': 0.52, 'throughput': 9494.69}
404
+
405
+ [INFO|2025-10-19 17:08:35] logging.py:157 >> {'loss': 0.2798, 'learning_rate': 9.2613e-05, 'epoch': 0.53, 'throughput': 9497.76}
406
+
407
+ [INFO|2025-10-19 17:17:38] logging.py:157 >> {'loss': 0.2728, 'learning_rate': 9.2363e-05, 'epoch': 0.53, 'throughput': 9497.60}
408
+
409
+ [INFO|2025-10-19 17:26:07] logging.py:157 >> {'loss': 0.2756, 'learning_rate': 9.2109e-05, 'epoch': 0.54, 'throughput': 9500.30}
410
+
411
+ [INFO|2025-10-19 17:34:57] logging.py:157 >> {'loss': 0.2747, 'learning_rate': 9.1851e-05, 'epoch': 0.55, 'throughput': 9501.41}
412
+
413
+ [INFO|2025-10-19 17:43:50] logging.py:157 >> {'loss': 0.2772, 'learning_rate': 9.1590e-05, 'epoch': 0.56, 'throughput': 9503.01}
414
+
415
+ [INFO|2025-10-19 17:52:25] logging.py:157 >> {'loss': 0.2785, 'learning_rate': 9.1325e-05, 'epoch': 0.57, 'throughput': 9508.07}
416
+
417
+ [INFO|2025-10-19 18:01:25] logging.py:157 >> {'loss': 0.2755, 'learning_rate': 9.1056e-05, 'epoch': 0.58, 'throughput': 9509.96}
418
+
419
+ [INFO|2025-10-19 18:10:33] logging.py:157 >> {'loss': 0.2708, 'learning_rate': 9.0783e-05, 'epoch': 0.59, 'throughput': 9506.81}
420
+
421
+ [INFO|2025-10-19 18:19:36] logging.py:157 >> {'loss': 0.2729, 'learning_rate': 9.0507e-05, 'epoch': 0.60, 'throughput': 9504.96}
422
+
423
+ [INFO|2025-10-19 18:28:32] logging.py:157 >> {'loss': 0.2754, 'learning_rate': 9.0227e-05, 'epoch': 0.61, 'throughput': 9505.70}
424
+
425
+ [INFO|2025-10-19 18:37:36] logging.py:157 >> {'loss': 0.2742, 'learning_rate': 8.9943e-05, 'epoch': 0.62, 'throughput': 9500.81}
426
+
427
+ [INFO|2025-10-19 18:46:09] logging.py:157 >> {'loss': 0.2703, 'learning_rate': 8.9656e-05, 'epoch': 0.63, 'throughput': 9503.01}
428
+
429
+ [INFO|2025-10-19 18:54:51] logging.py:157 >> {'loss': 0.2756, 'learning_rate': 8.9365e-05, 'epoch': 0.63, 'throughput': 9502.95}
430
+
431
+ [INFO|2025-10-19 19:04:00] logging.py:157 >> {'loss': 0.2698, 'learning_rate': 8.9070e-05, 'epoch': 0.64, 'throughput': 9501.97}
432
+
433
+ [INFO|2025-10-19 19:13:03] logging.py:157 >> {'loss': 0.2716, 'learning_rate': 8.8773e-05, 'epoch': 0.65, 'throughput': 9499.40}
434
+
435
+ [INFO|2025-10-19 19:22:00] logging.py:157 >> {'loss': 0.2682, 'learning_rate': 8.8471e-05, 'epoch': 0.66, 'throughput': 9498.48}
436
+
437
+ [INFO|2025-10-19 19:30:38] logging.py:157 >> {'loss': 0.2695, 'learning_rate': 8.8166e-05, 'epoch': 0.67, 'throughput': 9500.35}
438
+
439
+ [INFO|2025-10-19 19:39:20] logging.py:157 >> {'loss': 0.2706, 'learning_rate': 8.7858e-05, 'epoch': 0.68, 'throughput': 9502.46}
440
+
441
+ [INFO|2025-10-19 19:48:19] logging.py:157 >> {'loss': 0.2704, 'learning_rate': 8.7546e-05, 'epoch': 0.69, 'throughput': 9503.27}
442
+
443
+ [INFO|2025-10-19 19:57:01] logging.py:157 >> {'loss': 0.2707, 'learning_rate': 8.7231e-05, 'epoch': 0.70, 'throughput': 9504.39}
444
+
445
+ [INFO|2025-10-19 20:06:09] logging.py:157 >> {'loss': 0.2653, 'learning_rate': 8.6913e-05, 'epoch': 0.71, 'throughput': 9503.23}
446
+
447
+ [INFO|2025-10-19 20:14:45] logging.py:157 >> {'loss': 0.2649, 'learning_rate': 8.6591e-05, 'epoch': 0.72, 'throughput': 9507.46}
448
+
449
+ [INFO|2025-10-19 20:23:37] logging.py:157 >> {'loss': 0.2652, 'learning_rate': 8.6266e-05, 'epoch': 0.72, 'throughput': 9507.43}
450
+
451
+ [INFO|2025-10-19 20:32:21] logging.py:157 >> {'loss': 0.2638, 'learning_rate': 8.5938e-05, 'epoch': 0.73, 'throughput': 9507.28}
452
+
453
+ [INFO|2025-10-19 20:41:00] logging.py:157 >> {'loss': 0.2685, 'learning_rate': 8.5606e-05, 'epoch': 0.74, 'throughput': 9510.67}
454
+
455
+ [INFO|2025-10-19 20:49:36] logging.py:157 >> {'loss': 0.2584, 'learning_rate': 8.5271e-05, 'epoch': 0.75, 'throughput': 9511.61}
456
+
457
+ [INFO|2025-10-19 20:58:33] logging.py:157 >> {'loss': 0.2607, 'learning_rate': 8.4933e-05, 'epoch': 0.76, 'throughput': 9511.41}
458
+
459
+ [INFO|2025-10-19 21:07:10] logging.py:157 >> {'loss': 0.2652, 'learning_rate': 8.4592e-05, 'epoch': 0.77, 'throughput': 9511.99}
460
+
461
+ [INFO|2025-10-19 21:15:56] logging.py:157 >> {'loss': 0.2604, 'learning_rate': 8.4248e-05, 'epoch': 0.78, 'throughput': 9513.64}
462
+
463
+ [INFO|2025-10-19 21:24:38] logging.py:157 >> {'loss': 0.2603, 'learning_rate': 8.3901e-05, 'epoch': 0.79, 'throughput': 9515.83}
464
+
465
+ [INFO|2025-10-19 21:34:06] logging.py:157 >> {'loss': 0.2576, 'learning_rate': 8.3550e-05, 'epoch': 0.80, 'throughput': 9511.18}
466
+
467
+ [INFO|2025-10-19 21:43:04] logging.py:157 >> {'loss': 0.2622, 'learning_rate': 8.3197e-05, 'epoch': 0.81, 'throughput': 9511.76}
468
+
469
+ [INFO|2025-10-19 21:51:57] logging.py:157 >> {'loss': 0.2587, 'learning_rate': 8.2841e-05, 'epoch': 0.82, 'throughput': 9511.99}
470
+
471
+ [INFO|2025-10-19 22:01:15] logging.py:157 >> {'loss': 0.2575, 'learning_rate': 8.2481e-05, 'epoch': 0.82, 'throughput': 9511.08}
472
+
473
+ [INFO|2025-10-19 22:10:20] logging.py:157 >> {'loss': 0.2573, 'learning_rate': 8.2119e-05, 'epoch': 0.83, 'throughput': 9509.35}
474
+
475
+ [INFO|2025-10-19 22:19:20] logging.py:157 >> {'loss': 0.2600, 'learning_rate': 8.1754e-05, 'epoch': 0.84, 'throughput': 9508.08}
476
+
477
+ [INFO|2025-10-19 22:28:30] logging.py:157 >> {'loss': 0.2571, 'learning_rate': 8.1386e-05, 'epoch': 0.85, 'throughput': 9505.71}
478
+
479
+ [INFO|2025-10-19 22:37:09] logging.py:157 >> {'loss': 0.2510, 'learning_rate': 8.1015e-05, 'epoch': 0.86, 'throughput': 9507.90}
480
+
481
+ [INFO|2025-10-19 22:46:00] logging.py:157 >> {'loss': 0.2614, 'learning_rate': 8.0642e-05, 'epoch': 0.87, 'throughput': 9507.12}
482
+
483
+ [INFO|2025-10-19 22:55:24] logging.py:157 >> {'loss': 0.2528, 'learning_rate': 8.0265e-05, 'epoch': 0.88, 'throughput': 9504.87}
484
+
485
+ [INFO|2025-10-19 23:03:49] logging.py:157 >> {'loss': 0.2571, 'learning_rate': 7.9886e-05, 'epoch': 0.89, 'throughput': 9508.31}
486
+
487
+ [INFO|2025-10-19 23:12:48] logging.py:157 >> {'loss': 0.2547, 'learning_rate': 7.9504e-05, 'epoch': 0.90, 'throughput': 9508.57}
488
+
489
+ [INFO|2025-10-19 23:21:42] logging.py:157 >> {'loss': 0.2538, 'learning_rate': 7.9120e-05, 'epoch': 0.91, 'throughput': 9507.51}
490
+
491
+ [INFO|2025-10-19 23:30:30] logging.py:157 >> {'loss': 0.2551, 'learning_rate': 7.8733e-05, 'epoch': 0.92, 'throughput': 9506.69}
492
+
493
+ [INFO|2025-10-19 23:39:42] logging.py:157 >> {'loss': 0.2515, 'learning_rate': 7.8343e-05, 'epoch': 0.92, 'throughput': 9503.49}
494
+
495
+ [INFO|2025-10-19 23:48:36] logging.py:157 >> {'loss': 0.2526, 'learning_rate': 7.7951e-05, 'epoch': 0.93, 'throughput': 9503.75}
496
+
497
+ [INFO|2025-10-19 23:57:34] logging.py:157 >> {'loss': 0.2482, 'learning_rate': 7.7556e-05, 'epoch': 0.94, 'throughput': 9504.35}
498
+
499
+ [INFO|2025-10-20 00:06:42] logging.py:157 >> {'loss': 0.2516, 'learning_rate': 7.7159e-05, 'epoch': 0.95, 'throughput': 9502.88}
500
+
501
+ [INFO|2025-10-20 00:15:05] logging.py:157 >> {'loss': 0.2493, 'learning_rate': 7.6759e-05, 'epoch': 0.96, 'throughput': 9505.71}
502
+
503
+ [INFO|2025-10-20 00:23:54] logging.py:157 >> {'loss': 0.2465, 'learning_rate': 7.6357e-05, 'epoch': 0.97, 'throughput': 9508.14}
504
+
505
+ [INFO|2025-10-20 00:32:41] logging.py:157 >> {'loss': 0.2486, 'learning_rate': 7.5953e-05, 'epoch': 0.98, 'throughput': 9508.27}
506
+
507
+ [INFO|2025-10-20 00:41:47] logging.py:157 >> {'loss': 0.2472, 'learning_rate': 7.5546e-05, 'epoch': 0.99, 'throughput': 9507.12}
508
+
509
+ [INFO|2025-10-20 00:50:40] logging.py:157 >> {'loss': 0.2471, 'learning_rate': 7.5137e-05, 'epoch': 1.00, 'throughput': 9506.69}
510
+
511
+ [INFO|2025-10-20 01:00:01] logging.py:157 >> {'loss': 0.2361, 'learning_rate': 7.4726e-05, 'epoch': 1.01, 'throughput': 9504.55}
512
+
513
+ [INFO|2025-10-20 01:08:47] logging.py:157 >> {'loss': 0.2170, 'learning_rate': 7.4312e-05, 'epoch': 1.02, 'throughput': 9504.99}
514
+
515
+ [INFO|2025-10-20 01:17:18] logging.py:157 >> {'loss': 0.2145, 'learning_rate': 7.3896e-05, 'epoch': 1.02, 'throughput': 9506.33}
516
+
517
+ [INFO|2025-10-20 01:26:16] logging.py:157 >> {'loss': 0.2179, 'learning_rate': 7.3478e-05, 'epoch': 1.03, 'throughput': 9504.64}
518
+
519
+ [INFO|2025-10-20 01:34:49] logging.py:157 >> {'loss': 0.2098, 'learning_rate': 7.3058e-05, 'epoch': 1.04, 'throughput': 9506.20}
520
+
521
+ [INFO|2025-10-20 01:43:41] logging.py:157 >> {'loss': 0.2174, 'learning_rate': 7.2636e-05, 'epoch': 1.05, 'throughput': 9505.78}
522
+
523
+ [INFO|2025-10-20 01:52:29] logging.py:157 >> {'loss': 0.2187, 'learning_rate': 7.2212e-05, 'epoch': 1.06, 'throughput': 9506.65}
524
+
525
+ [INFO|2025-10-20 02:01:32] logging.py:157 >> {'loss': 0.2162, 'learning_rate': 7.1786e-05, 'epoch': 1.07, 'throughput': 9506.10}
526
+
527
+ [INFO|2025-10-20 02:10:19] logging.py:157 >> {'loss': 0.2202, 'learning_rate': 7.1358e-05, 'epoch': 1.08, 'throughput': 9505.76}
528
+
529
+ [INFO|2025-10-20 02:19:23] logging.py:157 >> {'loss': 0.2237, 'learning_rate': 7.0928e-05, 'epoch': 1.09, 'throughput': 9504.97}
530
+
531
+ [INFO|2025-10-20 02:27:59] logging.py:157 >> {'loss': 0.2199, 'learning_rate': 7.0496e-05, 'epoch': 1.10, 'throughput': 9505.35}
532
+
533
+ [INFO|2025-10-20 02:37:16] logging.py:157 >> {'loss': 0.2189, 'learning_rate': 7.0062e-05, 'epoch': 1.11, 'throughput': 9501.61}
534
+
535
+ [INFO|2025-10-20 02:46:26] logging.py:157 >> {'loss': 0.2163, 'learning_rate': 6.9626e-05, 'epoch': 1.11, 'throughput': 9501.64}
536
+
537
+ [INFO|2025-10-20 02:55:16] logging.py:157 >> {'loss': 0.2157, 'learning_rate': 6.9189e-05, 'epoch': 1.12, 'throughput': 9502.18}
538
+
539
+ [INFO|2025-10-20 03:04:29] logging.py:157 >> {'loss': 0.2141, 'learning_rate': 6.8750e-05, 'epoch': 1.13, 'throughput': 9499.47}
540
+
541
+ [INFO|2025-10-20 03:12:55] logging.py:157 >> {'loss': 0.2185, 'learning_rate': 6.8309e-05, 'epoch': 1.14, 'throughput': 9502.37}
542
+
543
+ [INFO|2025-10-20 03:21:51] logging.py:157 >> {'loss': 0.2125, 'learning_rate': 6.7867e-05, 'epoch': 1.15, 'throughput': 9502.47}
544
+
545
+ [INFO|2025-10-20 03:30:50] logging.py:157 >> {'loss': 0.2138, 'learning_rate': 6.7423e-05, 'epoch': 1.16, 'throughput': 9501.96}
546
+
547
+ [INFO|2025-10-20 03:39:45] logging.py:157 >> {'loss': 0.2152, 'learning_rate': 6.6977e-05, 'epoch': 1.17, 'throughput': 9502.59}
548
+
549
+ [INFO|2025-10-20 03:48:29] logging.py:157 >> {'loss': 0.2125, 'learning_rate': 6.6530e-05, 'epoch': 1.18, 'throughput': 9503.45}
550
+
551
+ [INFO|2025-10-20 03:57:37] logging.py:157 >> {'loss': 0.2123, 'learning_rate': 6.6081e-05, 'epoch': 1.19, 'throughput': 9502.01}
552
+
553
+ [INFO|2025-10-20 04:06:37] logging.py:157 >> {'loss': 0.2101, 'learning_rate': 6.5631e-05, 'epoch': 1.20, 'throughput': 9500.47}
554
+
555
+ [INFO|2025-10-20 04:15:30] logging.py:157 >> {'loss': 0.2090, 'learning_rate': 6.5180e-05, 'epoch': 1.21, 'throughput': 9501.47}
556
+
557
+ [INFO|2025-10-20 04:24:12] logging.py:157 >> {'loss': 0.2122, 'learning_rate': 6.4727e-05, 'epoch': 1.21, 'throughput': 9501.91}
558
+
559
+ [INFO|2025-10-20 04:33:14] logging.py:157 >> {'loss': 0.2093, 'learning_rate': 6.4273e-05, 'epoch': 1.22, 'throughput': 9500.84}
560
+
561
+ [INFO|2025-10-20 04:41:55] logging.py:157 >> {'loss': 0.2114, 'learning_rate': 6.3817e-05, 'epoch': 1.23, 'throughput': 9501.80}
562
+
563
+ [INFO|2025-10-20 04:50:50] logging.py:157 >> {'loss': 0.2111, 'learning_rate': 6.3361e-05, 'epoch': 1.24, 'throughput': 9501.17}
564
+
565
+ [INFO|2025-10-20 04:59:36] logging.py:157 >> {'loss': 0.2086, 'learning_rate': 6.2903e-05, 'epoch': 1.25, 'throughput': 9501.16}
566
+
567
+ [INFO|2025-10-20 05:08:27] logging.py:157 >> {'loss': 0.2095, 'learning_rate': 6.2444e-05, 'epoch': 1.26, 'throughput': 9501.00}
568
+
569
+ [INFO|2025-10-20 05:17:03] logging.py:157 >> {'loss': 0.2083, 'learning_rate': 6.1984e-05, 'epoch': 1.27, 'throughput': 9502.81}
570
+
571
+ [INFO|2025-10-20 05:25:43] logging.py:157 >> {'loss': 0.2088, 'learning_rate': 6.1522e-05, 'epoch': 1.28, 'throughput': 9504.07}
572
+
573
+ [INFO|2025-10-20 05:34:38] logging.py:157 >> {'loss': 0.2118, 'learning_rate': 6.1060e-05, 'epoch': 1.29, 'throughput': 9503.94}
574
+
575
+ [INFO|2025-10-20 05:43:25] logging.py:157 >> {'loss': 0.2058, 'learning_rate': 6.0597e-05, 'epoch': 1.30, 'throughput': 9504.75}
576
+
577
+ [INFO|2025-10-20 05:52:28] logging.py:157 >> {'loss': 0.2065, 'learning_rate': 6.0132e-05, 'epoch': 1.31, 'throughput': 9504.80}
578
+
579
+ [INFO|2025-10-20 06:01:14] logging.py:157 >> {'loss': 0.2070, 'learning_rate': 5.9667e-05, 'epoch': 1.31, 'throughput': 9504.25}
580
+
581
+ [INFO|2025-10-20 06:10:19] logging.py:157 >> {'loss': 0.2049, 'learning_rate': 5.9201e-05, 'epoch': 1.32, 'throughput': 9502.94}
582
+
583
+ [INFO|2025-10-20 06:19:34] logging.py:157 >> {'loss': 0.2080, 'learning_rate': 5.8734e-05, 'epoch': 1.33, 'throughput': 9499.75}
584
+
585
+ [INFO|2025-10-20 06:28:22] logging.py:157 >> {'loss': 0.2047, 'learning_rate': 5.8267e-05, 'epoch': 1.34, 'throughput': 9499.82}
586
+
587
+ [INFO|2025-10-20 06:37:17] logging.py:157 >> {'loss': 0.2022, 'learning_rate': 5.7798e-05, 'epoch': 1.35, 'throughput': 9498.47}
588
+
589
+ [INFO|2025-10-20 06:46:48] logging.py:157 >> {'loss': 0.2073, 'learning_rate': 5.7329e-05, 'epoch': 1.36, 'throughput': 9494.01}
590
+
591
+ [INFO|2025-10-20 06:55:58] logging.py:157 >> {'loss': 0.2056, 'learning_rate': 5.6859e-05, 'epoch': 1.37, 'throughput': 9492.45}
592
+
593
+ [INFO|2025-10-20 07:04:26] logging.py:157 >> {'loss': 0.2056, 'learning_rate': 5.6389e-05, 'epoch': 1.38, 'throughput': 9494.77}
594
+
595
+ [INFO|2025-10-20 07:13:31] logging.py:157 >> {'loss': 0.2037, 'learning_rate': 5.5918e-05, 'epoch': 1.39, 'throughput': 9494.81}
596
+
597
+ [INFO|2025-10-20 07:22:03] logging.py:157 >> {'loss': 0.2042, 'learning_rate': 5.5447e-05, 'epoch': 1.40, 'throughput': 9496.67}
598
+
599
+ [INFO|2025-10-20 07:31:07] logging.py:157 >> {'loss': 0.2011, 'learning_rate': 5.4975e-05, 'epoch': 1.40, 'throughput': 9496.92}
600
+
601
+ [INFO|2025-10-20 07:40:10] logging.py:157 >> {'loss': 0.2015, 'learning_rate': 5.4502e-05, 'epoch': 1.41, 'throughput': 9495.35}
602
+
603
+ [INFO|2025-10-20 07:49:28] logging.py:157 >> {'loss': 0.2005, 'learning_rate': 5.4029e-05, 'epoch': 1.42, 'throughput': 9493.13}
604
+
605
+ [INFO|2025-10-20 07:58:08] logging.py:157 >> {'loss': 0.2052, 'learning_rate': 5.3556e-05, 'epoch': 1.43, 'throughput': 9493.86}
606
+
607
+ [INFO|2025-10-20 08:06:44] logging.py:157 >> {'loss': 0.2042, 'learning_rate': 5.3083e-05, 'epoch': 1.44, 'throughput': 9495.07}
608
+
609
+ [INFO|2025-10-20 08:15:42] logging.py:157 >> {'loss': 0.1984, 'learning_rate': 5.2609e-05, 'epoch': 1.45, 'throughput': 9493.99}
610
+
611
+ [INFO|2025-10-20 08:24:50] logging.py:157 >> {'loss': 0.2038, 'learning_rate': 5.2135e-05, 'epoch': 1.46, 'throughput': 9492.20}
612
+
613
+ [INFO|2025-10-20 08:33:47] logging.py:157 >> {'loss': 0.2012, 'learning_rate': 5.1661e-05, 'epoch': 1.47, 'throughput': 9492.22}
614
+
615
+ [INFO|2025-10-20 08:42:27] logging.py:157 >> {'loss': 0.1987, 'learning_rate': 5.1186e-05, 'epoch': 1.48, 'throughput': 9492.76}
616
+
617
+ [INFO|2025-10-20 08:51:30] logging.py:157 >> {'loss': 0.1986, 'learning_rate': 5.0712e-05, 'epoch': 1.49, 'throughput': 9491.54}
618
+
619
+ [INFO|2025-10-20 09:00:19] logging.py:157 >> {'loss': 0.1987, 'learning_rate': 5.0237e-05, 'epoch': 1.50, 'throughput': 9491.31}
620
+
621
+ [INFO|2025-10-20 09:08:54] logging.py:157 >> {'loss': 0.1952, 'learning_rate': 4.9763e-05, 'epoch': 1.50, 'throughput': 9493.38}
622
+
623
+ [INFO|2025-10-20 09:17:40] logging.py:157 >> {'loss': 0.1957, 'learning_rate': 4.9288e-05, 'epoch': 1.51, 'throughput': 9494.32}
624
+
625
+ [INFO|2025-10-20 09:26:33] logging.py:157 >> {'loss': 0.1957, 'learning_rate': 4.8814e-05, 'epoch': 1.52, 'throughput': 9495.01}
626
+
627
+ [INFO|2025-10-20 09:35:27] logging.py:157 >> {'loss': 0.1970, 'learning_rate': 4.8339e-05, 'epoch': 1.53, 'throughput': 9494.56}
628
+
629
+ [INFO|2025-10-20 09:43:58] logging.py:157 >> {'loss': 0.1957, 'learning_rate': 4.7865e-05, 'epoch': 1.54, 'throughput': 9495.47}
630
+
631
+ [INFO|2025-10-20 09:52:47] logging.py:157 >> {'loss': 0.1926, 'learning_rate': 4.7391e-05, 'epoch': 1.55, 'throughput': 9496.47}
632
+
633
+ [INFO|2025-10-20 10:01:54] logging.py:157 >> {'loss': 0.1934, 'learning_rate': 4.6917e-05, 'epoch': 1.56, 'throughput': 9496.66}
634
+
635
+ [INFO|2025-10-20 10:10:48] logging.py:157 >> {'loss': 0.1961, 'learning_rate': 4.6444e-05, 'epoch': 1.57, 'throughput': 9496.52}
636
+
637
+ [INFO|2025-10-20 10:19:52] logging.py:157 >> {'loss': 0.1902, 'learning_rate': 4.5971e-05, 'epoch': 1.58, 'throughput': 9496.01}
638
+
639
+ [INFO|2025-10-20 10:28:51] logging.py:157 >> {'loss': 0.1971, 'learning_rate': 4.5498e-05, 'epoch': 1.59, 'throughput': 9495.37}
640
+
641
+ [INFO|2025-10-20 10:37:40] logging.py:157 >> {'loss': 0.1952, 'learning_rate': 4.5025e-05, 'epoch': 1.59, 'throughput': 9495.50}
642
+
643
+ [INFO|2025-10-20 10:46:19] logging.py:157 >> {'loss': 0.1908, 'learning_rate': 4.4553e-05, 'epoch': 1.60, 'throughput': 9496.69}
644
+
645
+ [INFO|2025-10-20 10:55:21] logging.py:157 >> {'loss': 0.1945, 'learning_rate': 4.4082e-05, 'epoch': 1.61, 'throughput': 9496.20}
646
+
647
+ [INFO|2025-10-20 11:04:17] logging.py:157 >> {'loss': 0.1911, 'learning_rate': 4.3611e-05, 'epoch': 1.62, 'throughput': 9496.70}
648
+
649
+ [INFO|2025-10-20 11:13:15] logging.py:157 >> {'loss': 0.1930, 'learning_rate': 4.3141e-05, 'epoch': 1.63, 'throughput': 9496.86}
650
+
651
+ [INFO|2025-10-20 11:22:03] logging.py:157 >> {'loss': 0.1898, 'learning_rate': 4.2671e-05, 'epoch': 1.64, 'throughput': 9498.11}
652
+
653
+ [INFO|2025-10-20 11:30:38] logging.py:157 >> {'loss': 0.1852, 'learning_rate': 4.2202e-05, 'epoch': 1.65, 'throughput': 9500.27}
654
+
655
+ [INFO|2025-10-20 11:39:38] logging.py:157 >> {'loss': 0.1863, 'learning_rate': 4.1733e-05, 'epoch': 1.66, 'throughput': 9499.96}
656
+
657
+ [INFO|2025-10-20 11:48:37] logging.py:157 >> {'loss': 0.1882, 'learning_rate': 4.1266e-05, 'epoch': 1.67, 'throughput': 9498.96}
658
+
659
+ [INFO|2025-10-20 11:57:24] logging.py:157 >> {'loss': 0.1893, 'learning_rate': 4.0799e-05, 'epoch': 1.68, 'throughput': 9500.06}
660
+
661
+ [INFO|2025-10-20 12:06:33] logging.py:157 >> {'loss': 0.1885, 'learning_rate': 4.0333e-05, 'epoch': 1.69, 'throughput': 9499.68}
662
+
663
+ [INFO|2025-10-20 12:15:46] logging.py:157 >> {'loss': 0.1883, 'learning_rate': 3.9868e-05, 'epoch': 1.69, 'throughput': 9499.21}
664
+
665
+ [INFO|2025-10-20 12:24:39] logging.py:157 >> {'loss': 0.1871, 'learning_rate': 3.9403e-05, 'epoch': 1.70, 'throughput': 9499.01}
666
+
667
+ [INFO|2025-10-20 12:33:32] logging.py:157 >> {'loss': 0.1853, 'learning_rate': 3.8940e-05, 'epoch': 1.71, 'throughput': 9498.79}
668
+
669
+ [INFO|2025-10-20 12:42:17] logging.py:157 >> {'loss': 0.1862, 'learning_rate': 3.8478e-05, 'epoch': 1.72, 'throughput': 9499.53}
670
+
671
+ [INFO|2025-10-20 12:51:21] logging.py:157 >> {'loss': 0.1913, 'learning_rate': 3.8016e-05, 'epoch': 1.73, 'throughput': 9498.33}
672
+
673
+ [INFO|2025-10-20 13:00:21] logging.py:157 >> {'loss': 0.1908, 'learning_rate': 3.7556e-05, 'epoch': 1.74, 'throughput': 9498.07}
674
+
675
+ [INFO|2025-10-20 13:09:43] logging.py:157 >> {'loss': 0.1839, 'learning_rate': 3.7097e-05, 'epoch': 1.75, 'throughput': 9496.29}
676
+
677
+ [INFO|2025-10-20 13:18:59] logging.py:157 >> {'loss': 0.1869, 'learning_rate': 3.6639e-05, 'epoch': 1.76, 'throughput': 9495.72}
678
+
679
+ [INFO|2025-10-20 13:27:58] logging.py:157 >> {'loss': 0.1884, 'learning_rate': 3.6183e-05, 'epoch': 1.77, 'throughput': 9494.70}
680
+
681
+ [INFO|2025-10-20 13:37:11] logging.py:157 >> {'loss': 0.1863, 'learning_rate': 3.5727e-05, 'epoch': 1.78, 'throughput': 9492.68}
682
+
683
+ [INFO|2025-10-20 13:45:49] logging.py:157 >> {'loss': 0.1884, 'learning_rate': 3.5273e-05, 'epoch': 1.79, 'throughput': 9493.64}
684
+
685
+ [INFO|2025-10-20 13:54:26] logging.py:157 >> {'loss': 0.1815, 'learning_rate': 3.4820e-05, 'epoch': 1.79, 'throughput': 9494.28}
686
+
687
+ [INFO|2025-10-20 14:03:24] logging.py:157 >> {'loss': 0.1798, 'learning_rate': 3.4369e-05, 'epoch': 1.80, 'throughput': 9493.88}
688
+
689
+ [INFO|2025-10-20 14:11:55] logging.py:157 >> {'loss': 0.1797, 'learning_rate': 3.3919e-05, 'epoch': 1.81, 'throughput': 9495.04}
690
+
691
+ [INFO|2025-10-20 14:20:35] logging.py:157 >> {'loss': 0.1773, 'learning_rate': 3.3470e-05, 'epoch': 1.82, 'throughput': 9495.33}
692
+
693
+ [INFO|2025-10-20 14:29:27] logging.py:157 >> {'loss': 0.1828, 'learning_rate': 3.3023e-05, 'epoch': 1.83, 'throughput': 9494.34}
694
+
695
+ [INFO|2025-10-20 14:38:22] logging.py:157 >> {'loss': 0.1800, 'learning_rate': 3.2577e-05, 'epoch': 1.84, 'throughput': 9494.06}
696
+
697
+ [INFO|2025-10-20 14:47:18] logging.py:157 >> {'loss': 0.1825, 'learning_rate': 3.2133e-05, 'epoch': 1.85, 'throughput': 9493.51}
698
+
699
+ [INFO|2025-10-20 14:56:14] logging.py:157 >> {'loss': 0.1776, 'learning_rate': 3.1691e-05, 'epoch': 1.86, 'throughput': 9493.01}
700
+
701
+ [INFO|2025-10-20 15:05:18] logging.py:157 >> {'loss': 0.1768, 'learning_rate': 3.1250e-05, 'epoch': 1.87, 'throughput': 9493.04}
702
+
703
+ [INFO|2025-10-20 15:14:21] logging.py:157 >> {'loss': 0.1778, 'learning_rate': 3.0811e-05, 'epoch': 1.88, 'throughput': 9492.18}
704
+
705
+ [INFO|2025-10-20 15:23:32] logging.py:157 >> {'loss': 0.1788, 'learning_rate': 3.0374e-05, 'epoch': 1.88, 'throughput': 9491.15}
706
+
707
+ [INFO|2025-10-20 15:32:43] logging.py:157 >> {'loss': 0.1760, 'learning_rate': 2.9938e-05, 'epoch': 1.89, 'throughput': 9490.66}
708
+
709
+ [INFO|2025-10-20 15:41:43] logging.py:157 >> {'loss': 0.1783, 'learning_rate': 2.9504e-05, 'epoch': 1.90, 'throughput': 9490.01}
710
+
711
+ [INFO|2025-10-20 15:50:49] logging.py:157 >> {'loss': 0.1780, 'learning_rate': 2.9072e-05, 'epoch': 1.91, 'throughput': 9488.58}
712
+
713
+ [INFO|2025-10-20 15:59:52] logging.py:157 >> {'loss': 0.1759, 'learning_rate': 2.8642e-05, 'epoch': 1.92, 'throughput': 9488.29}
714
+
715
+ [INFO|2025-10-20 16:08:51] logging.py:157 >> {'loss': 0.1769, 'learning_rate': 2.8214e-05, 'epoch': 1.93, 'throughput': 9487.56}
716
+
717
+ [INFO|2025-10-20 16:17:39] logging.py:157 >> {'loss': 0.1761, 'learning_rate': 2.7788e-05, 'epoch': 1.94, 'throughput': 9488.08}
718
+
719
+ [INFO|2025-10-20 16:26:37] logging.py:157 >> {'loss': 0.1762, 'learning_rate': 2.7364e-05, 'epoch': 1.95, 'throughput': 9488.56}
720
+
721
+ [INFO|2025-10-20 16:35:36] logging.py:157 >> {'loss': 0.1715, 'learning_rate': 2.6942e-05, 'epoch': 1.96, 'throughput': 9489.02}
722
+
723
+ [INFO|2025-10-20 16:44:11] logging.py:157 >> {'loss': 0.1728, 'learning_rate': 2.6522e-05, 'epoch': 1.97, 'throughput': 9489.67}
724
+
725
+ [INFO|2025-10-20 16:53:22] logging.py:157 >> {'loss': 0.1750, 'learning_rate': 2.6104e-05, 'epoch': 1.98, 'throughput': 9488.69}
726
+
727
+ [INFO|2025-10-20 17:02:13] logging.py:157 >> {'loss': 0.1736, 'learning_rate': 2.5688e-05, 'epoch': 1.98, 'throughput': 9489.47}
728
+
729
+ [INFO|2025-10-20 17:11:21] logging.py:157 >> {'loss': 0.1704, 'learning_rate': 2.5274e-05, 'epoch': 1.99, 'throughput': 9489.29}
730
+
731
+ [INFO|2025-10-20 17:20:16] logging.py:157 >> {'loss': 0.1548, 'learning_rate': 2.4863e-05, 'epoch': 2.00, 'throughput': 9490.07}
732
+
733
+ [INFO|2025-10-20 17:29:16] logging.py:157 >> {'loss': 0.1188, 'learning_rate': 2.4454e-05, 'epoch': 2.01, 'throughput': 9489.70}
734
+
735
+ [INFO|2025-10-20 17:38:27] logging.py:157 >> {'loss': 0.1176, 'learning_rate': 2.4047e-05, 'epoch': 2.02, 'throughput': 9490.21}
736
+
737
+ [INFO|2025-10-20 17:47:24] logging.py:157 >> {'loss': 0.1166, 'learning_rate': 2.3643e-05, 'epoch': 2.03, 'throughput': 9489.93}
738
+
739
+ [INFO|2025-10-20 17:56:19] logging.py:157 >> {'loss': 0.1129, 'learning_rate': 2.3241e-05, 'epoch': 2.04, 'throughput': 9489.27}
740
+
741
+ [INFO|2025-10-20 18:05:04] logging.py:157 >> {'loss': 0.1122, 'learning_rate': 2.2841e-05, 'epoch': 2.05, 'throughput': 9490.08}
742
+
743
+ [INFO|2025-10-20 18:13:56] logging.py:157 >> {'loss': 0.1145, 'learning_rate': 2.2444e-05, 'epoch': 2.06, 'throughput': 9490.09}
744
+
745
+ [INFO|2025-10-20 18:22:51] logging.py:157 >> {'loss': 0.1153, 'learning_rate': 2.2049e-05, 'epoch': 2.07, 'throughput': 9490.25}
746
+
747
+ [INFO|2025-10-20 18:31:59] logging.py:157 >> {'loss': 0.1152, 'learning_rate': 2.1657e-05, 'epoch': 2.08, 'throughput': 9489.42}
748
+
749
+ [INFO|2025-10-20 18:40:42] logging.py:157 >> {'loss': 0.1148, 'learning_rate': 2.1267e-05, 'epoch': 2.08, 'throughput': 9489.77}
750
+
751
+ [INFO|2025-10-20 18:50:03] logging.py:157 >> {'loss': 0.1119, 'learning_rate': 2.0880e-05, 'epoch': 2.09, 'throughput': 9488.55}
752
+
753
+ [INFO|2025-10-20 18:59:08] logging.py:157 >> {'loss': 0.1101, 'learning_rate': 2.0496e-05, 'epoch': 2.10, 'throughput': 9487.59}
754
+
755
+ [INFO|2025-10-20 19:08:09] logging.py:157 >> {'loss': 0.1139, 'learning_rate': 2.0114e-05, 'epoch': 2.11, 'throughput': 9487.45}
756
+
757
+ [INFO|2025-10-20 19:16:41] logging.py:157 >> {'loss': 0.1116, 'learning_rate': 1.9735e-05, 'epoch': 2.12, 'throughput': 9489.64}
758
+
759
+ [INFO|2025-10-20 19:25:49] logging.py:157 >> {'loss': 0.1120, 'learning_rate': 1.9358e-05, 'epoch': 2.13, 'throughput': 9489.09}
760
+
761
+ [INFO|2025-10-20 19:34:50] logging.py:157 >> {'loss': 0.1106, 'learning_rate': 1.8985e-05, 'epoch': 2.14, 'throughput': 9488.78}
762
+
763
+ [INFO|2025-10-20 19:43:50] logging.py:157 >> {'loss': 0.1124, 'learning_rate': 1.8614e-05, 'epoch': 2.15, 'throughput': 9488.59}
764
+
765
+ [INFO|2025-10-20 19:52:41] logging.py:157 >> {'loss': 0.1136, 'learning_rate': 1.8246e-05, 'epoch': 2.16, 'throughput': 9488.83}
766
+
767
+ [INFO|2025-10-20 19:53:28] trainer.py:4289 >>
768
+ ***** Running Evaluation *****
769
+
770
+ [INFO|2025-10-20 19:53:28] trainer.py:4291 >> Num examples = 9176
771
+
772
+ [INFO|2025-10-20 19:53:28] trainer.py:4294 >> Batch size = 2
773
+
774
+ [INFO|2025-10-20 20:02:26] trainer.py:3966 >> Saving model checkpoint to saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000
775
+
776
+ [INFO|2025-10-20 20:02:26] configuration_utils.py:423 >> Configuration saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/config.json
777
+
778
+ [INFO|2025-10-20 20:02:26] configuration_utils.py:908 >> Configuration saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/generation_config.json
779
+
780
+ [INFO|2025-10-20 20:09:40] modeling_utils.py:3594 >> The model is bigger than the maximum size per checkpoint (5GB) and is going to be split in 4 checkpoint shards. You can find where each parameters has been saved in the index located at saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/model.safetensors.index.json.
781
+
782
+ [INFO|2025-10-20 20:09:40] tokenization_utils_base.py:2510 >> tokenizer config file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/tokenizer_config.json
783
+
784
+ [INFO|2025-10-20 20:09:40] tokenization_utils_base.py:2519 >> Special tokens file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/special_tokens_map.json
785
+
786
+ [INFO|2025-10-20 20:14:49] image_processing_base.py:261 >> Image processor saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/preprocessor_config.json
787
+
788
+ [INFO|2025-10-20 20:14:49] tokenization_utils_base.py:2510 >> tokenizer config file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/tokenizer_config.json
789
+
790
+ [INFO|2025-10-20 20:14:49] tokenization_utils_base.py:2519 >> Special tokens file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/special_tokens_map.json
791
+
792
+ [INFO|2025-10-20 20:14:49] processing_utils.py:638 >> chat template saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-5000/chat_template.json
793
+
794
+ [INFO|2025-10-20 20:22:41] logging.py:157 >> {'loss': 0.1102, 'learning_rate': 1.7881e-05, 'epoch': 2.17, 'throughput': 9394.81}
795
+
796
+ [INFO|2025-10-20 20:31:44] logging.py:157 >> {'loss': 0.1130, 'learning_rate': 1.7519e-05, 'epoch': 2.18, 'throughput': 9394.59}
797
+
798
+ [INFO|2025-10-20 20:40:35] logging.py:157 >> {'loss': 0.1104, 'learning_rate': 1.7159e-05, 'epoch': 2.18, 'throughput': 9394.84}
799
+
800
+ [INFO|2025-10-20 20:49:22] logging.py:157 >> {'loss': 0.1152, 'learning_rate': 1.6803e-05, 'epoch': 2.19, 'throughput': 9395.21}
801
+
802
+ [INFO|2025-10-20 20:57:59] logging.py:157 >> {'loss': 0.1097, 'learning_rate': 1.6450e-05, 'epoch': 2.20, 'throughput': 9396.50}
803
+
804
+ [INFO|2025-10-20 21:06:50] logging.py:157 >> {'loss': 0.1111, 'learning_rate': 1.6099e-05, 'epoch': 2.21, 'throughput': 9396.54}
805
+
806
+ [INFO|2025-10-20 21:15:45] logging.py:157 >> {'loss': 0.1104, 'learning_rate': 1.5752e-05, 'epoch': 2.22, 'throughput': 9396.81}
807
+
808
+ [INFO|2025-10-20 21:24:38] logging.py:157 >> {'loss': 0.1075, 'learning_rate': 1.5408e-05, 'epoch': 2.23, 'throughput': 9397.25}
809
+
810
+ [INFO|2025-10-20 21:33:34] logging.py:157 >> {'loss': 0.1093, 'learning_rate': 1.5067e-05, 'epoch': 2.24, 'throughput': 9397.23}
811
+
812
+ [INFO|2025-10-20 21:42:37] logging.py:157 >> {'loss': 0.1126, 'learning_rate': 1.4729e-05, 'epoch': 2.25, 'throughput': 9397.67}
813
+
814
+ [INFO|2025-10-20 21:51:20] logging.py:157 >> {'loss': 0.1064, 'learning_rate': 1.4394e-05, 'epoch': 2.26, 'throughput': 9398.27}
815
+
816
+ [INFO|2025-10-20 22:00:12] logging.py:157 >> {'loss': 0.1096, 'learning_rate': 1.4062e-05, 'epoch': 2.27, 'throughput': 9398.52}
817
+
818
+ [INFO|2025-10-20 22:09:09] logging.py:157 >> {'loss': 0.1089, 'learning_rate': 1.3734e-05, 'epoch': 2.27, 'throughput': 9398.21}
819
+
820
+ [INFO|2025-10-20 22:17:32] logging.py:157 >> {'loss': 0.1093, 'learning_rate': 1.3409e-05, 'epoch': 2.28, 'throughput': 9399.94}
821
+
822
+ [INFO|2025-10-20 22:26:21] logging.py:157 >> {'loss': 0.1064, 'learning_rate': 1.3087e-05, 'epoch': 2.29, 'throughput': 9400.36}
823
+
824
+ [INFO|2025-10-20 22:35:22] logging.py:157 >> {'loss': 0.1103, 'learning_rate': 1.2769e-05, 'epoch': 2.30, 'throughput': 9400.86}
825
+
826
+ [INFO|2025-10-20 22:44:04] logging.py:157 >> {'loss': 0.1077, 'learning_rate': 1.2454e-05, 'epoch': 2.31, 'throughput': 9401.43}
827
+
828
+ [INFO|2025-10-20 22:52:55] logging.py:157 >> {'loss': 0.1051, 'learning_rate': 1.2142e-05, 'epoch': 2.32, 'throughput': 9402.42}
829
+
830
+ [INFO|2025-10-20 23:02:06] logging.py:157 >> {'loss': 0.1063, 'learning_rate': 1.1834e-05, 'epoch': 2.33, 'throughput': 9402.19}
831
+
832
+ [INFO|2025-10-20 23:10:53] logging.py:157 >> {'loss': 0.1073, 'learning_rate': 1.1529e-05, 'epoch': 2.34, 'throughput': 9402.65}
833
+
834
+ [INFO|2025-10-20 23:19:56] logging.py:157 >> {'loss': 0.1076, 'learning_rate': 1.1227e-05, 'epoch': 2.35, 'throughput': 9402.88}
835
+
836
+ [INFO|2025-10-20 23:28:32] logging.py:157 >> {'loss': 0.1049, 'learning_rate': 1.0930e-05, 'epoch': 2.36, 'throughput': 9403.97}
837
+
838
+ [INFO|2025-10-20 23:37:11] logging.py:157 >> {'loss': 0.1038, 'learning_rate': 1.0635e-05, 'epoch': 2.37, 'throughput': 9404.57}
839
+
840
+ [INFO|2025-10-20 23:46:14] logging.py:157 >> {'loss': 0.1049, 'learning_rate': 1.0344e-05, 'epoch': 2.37, 'throughput': 9404.62}
841
+
842
+ [INFO|2025-10-20 23:55:18] logging.py:157 >> {'loss': 0.1026, 'learning_rate': 1.0057e-05, 'epoch': 2.38, 'throughput': 9404.53}
843
+
844
+ [INFO|2025-10-21 00:04:01] logging.py:157 >> {'loss': 0.1061, 'learning_rate': 9.7735e-06, 'epoch': 2.39, 'throughput': 9405.00}
845
+
846
+ [INFO|2025-10-21 00:12:43] logging.py:157 >> {'loss': 0.1078, 'learning_rate': 9.4934e-06, 'epoch': 2.40, 'throughput': 9405.66}
847
+
848
+ [INFO|2025-10-21 00:22:04] logging.py:157 >> {'loss': 0.1021, 'learning_rate': 9.2171e-06, 'epoch': 2.41, 'throughput': 9404.52}
849
+
850
+ [INFO|2025-10-21 00:31:08] logging.py:157 >> {'loss': 0.1050, 'learning_rate': 8.9443e-06, 'epoch': 2.42, 'throughput': 9404.23}
851
+
852
+ [INFO|2025-10-21 00:40:06] logging.py:157 >> {'loss': 0.1039, 'learning_rate': 8.6753e-06, 'epoch': 2.43, 'throughput': 9404.10}
853
+
854
+ [INFO|2025-10-21 00:48:47] logging.py:157 >> {'loss': 0.1026, 'learning_rate': 8.4100e-06, 'epoch': 2.44, 'throughput': 9404.46}
855
+
856
+ [INFO|2025-10-21 00:57:41] logging.py:157 >> {'loss': 0.1046, 'learning_rate': 8.1485e-06, 'epoch': 2.45, 'throughput': 9405.18}
857
+
858
+ [INFO|2025-10-21 01:06:27] logging.py:157 >> {'loss': 0.1062, 'learning_rate': 7.8907e-06, 'epoch': 2.46, 'throughput': 9405.68}
859
+
860
+ [INFO|2025-10-21 01:14:52] logging.py:157 >> {'loss': 0.1005, 'learning_rate': 7.6368e-06, 'epoch': 2.47, 'throughput': 9407.14}
861
+
862
+ [INFO|2025-10-21 01:23:49] logging.py:157 >> {'loss': 0.1008, 'learning_rate': 7.3866e-06, 'epoch': 2.47, 'throughput': 9407.69}
863
+
864
+ [INFO|2025-10-21 01:32:54] logging.py:157 >> {'loss': 0.1012, 'learning_rate': 7.1403e-06, 'epoch': 2.48, 'throughput': 9407.74}
865
+
866
+ [INFO|2025-10-21 01:41:45] logging.py:157 >> {'loss': 0.1004, 'learning_rate': 6.8978e-06, 'epoch': 2.49, 'throughput': 9408.87}
867
+
868
+ [INFO|2025-10-21 01:50:52] logging.py:157 >> {'loss': 0.1058, 'learning_rate': 6.6592e-06, 'epoch': 2.50, 'throughput': 9409.14}
869
+
870
+ [INFO|2025-10-21 01:59:29] logging.py:157 >> {'loss': 0.0996, 'learning_rate': 6.4246e-06, 'epoch': 2.51, 'throughput': 9410.56}
871
+
872
+ [INFO|2025-10-21 02:08:18] logging.py:157 >> {'loss': 0.0980, 'learning_rate': 6.1938e-06, 'epoch': 2.52, 'throughput': 9411.15}
873
+
874
+ [INFO|2025-10-21 02:17:08] logging.py:157 >> {'loss': 0.1053, 'learning_rate': 5.9670e-06, 'epoch': 2.53, 'throughput': 9411.73}
875
+
876
+ [INFO|2025-10-21 02:26:00] logging.py:157 >> {'loss': 0.1021, 'learning_rate': 5.7442e-06, 'epoch': 2.54, 'throughput': 9412.46}
877
+
878
+ [INFO|2025-10-21 02:34:44] logging.py:157 >> {'loss': 0.1003, 'learning_rate': 5.5253e-06, 'epoch': 2.55, 'throughput': 9413.49}
879
+
880
+ [INFO|2025-10-21 02:43:21] logging.py:157 >> {'loss': 0.1039, 'learning_rate': 5.3105e-06, 'epoch': 2.56, 'throughput': 9413.93}
881
+
882
+ [INFO|2025-10-21 02:52:07] logging.py:157 >> {'loss': 0.1034, 'learning_rate': 5.0997e-06, 'epoch': 2.56, 'throughput': 9414.81}
883
+
884
+ [INFO|2025-10-21 03:01:16] logging.py:157 >> {'loss': 0.1025, 'learning_rate': 4.8929e-06, 'epoch': 2.57, 'throughput': 9415.33}
885
+
886
+ [INFO|2025-10-21 03:10:08] logging.py:157 >> {'loss': 0.1041, 'learning_rate': 4.6902e-06, 'epoch': 2.58, 'throughput': 9415.61}
887
+
888
+ [INFO|2025-10-21 03:19:13] logging.py:157 >> {'loss': 0.1035, 'learning_rate': 4.4916e-06, 'epoch': 2.59, 'throughput': 9415.24}
889
+
890
+ [INFO|2025-10-21 03:28:15] logging.py:157 >> {'loss': 0.1020, 'learning_rate': 4.2970e-06, 'epoch': 2.60, 'throughput': 9415.55}
891
+
892
+ [INFO|2025-10-21 03:37:01] logging.py:157 >> {'loss': 0.0968, 'learning_rate': 4.1066e-06, 'epoch': 2.61, 'throughput': 9416.74}
893
+
894
+ [INFO|2025-10-21 03:46:20] logging.py:157 >> {'loss': 0.1025, 'learning_rate': 3.9203e-06, 'epoch': 2.62, 'throughput': 9416.50}
895
+
896
+ [INFO|2025-10-21 03:55:19] logging.py:157 >> {'loss': 0.0992, 'learning_rate': 3.7382e-06, 'epoch': 2.63, 'throughput': 9417.01}
897
+
898
+ [INFO|2025-10-21 04:04:01] logging.py:157 >> {'loss': 0.1014, 'learning_rate': 3.5603e-06, 'epoch': 2.64, 'throughput': 9417.49}
899
+
900
+ [INFO|2025-10-21 04:13:07] logging.py:157 >> {'loss': 0.0970, 'learning_rate': 3.3865e-06, 'epoch': 2.65, 'throughput': 9416.80}
901
+
902
+ [INFO|2025-10-21 04:21:34] logging.py:157 >> {'loss': 0.1011, 'learning_rate': 3.2169e-06, 'epoch': 2.66, 'throughput': 9417.61}
903
+
904
+ [INFO|2025-10-21 04:30:30] logging.py:157 >> {'loss': 0.1003, 'learning_rate': 3.0515e-06, 'epoch': 2.66, 'throughput': 9418.35}
905
+
906
+ [INFO|2025-10-21 04:39:21] logging.py:157 >> {'loss': 0.1011, 'learning_rate': 2.8904e-06, 'epoch': 2.67, 'throughput': 9419.24}
907
+
908
+ [INFO|2025-10-21 04:48:13] logging.py:157 >> {'loss': 0.0992, 'learning_rate': 2.7335e-06, 'epoch': 2.68, 'throughput': 9418.86}
909
+
910
+ [INFO|2025-10-21 04:57:13] logging.py:157 >> {'loss': 0.0985, 'learning_rate': 2.5809e-06, 'epoch': 2.69, 'throughput': 9418.72}
911
+
912
+ [INFO|2025-10-21 05:06:03] logging.py:157 >> {'loss': 0.0999, 'learning_rate': 2.4325e-06, 'epoch': 2.70, 'throughput': 9419.01}
913
+
914
+ [INFO|2025-10-21 05:14:56] logging.py:157 >> {'loss': 0.1015, 'learning_rate': 2.2885e-06, 'epoch': 2.71, 'throughput': 9419.26}
915
+
916
+ [INFO|2025-10-21 05:23:49] logging.py:157 >> {'loss': 0.0952, 'learning_rate': 2.1487e-06, 'epoch': 2.72, 'throughput': 9418.88}
917
+
918
+ [INFO|2025-10-21 05:32:51] logging.py:157 >> {'loss': 0.1014, 'learning_rate': 2.0132e-06, 'epoch': 2.73, 'throughput': 9418.79}
919
+
920
+ [INFO|2025-10-21 05:42:05] logging.py:157 >> {'loss': 0.0962, 'learning_rate': 1.8821e-06, 'epoch': 2.74, 'throughput': 9418.29}
921
+
922
+ [INFO|2025-10-21 05:51:14] logging.py:157 >> {'loss': 0.0984, 'learning_rate': 1.7553e-06, 'epoch': 2.75, 'throughput': 9417.96}
923
+
924
+ [INFO|2025-10-21 05:59:46] logging.py:157 >> {'loss': 0.0996, 'learning_rate': 1.6328e-06, 'epoch': 2.76, 'throughput': 9418.90}
925
+
926
+ [INFO|2025-10-21 06:08:27] logging.py:157 >> {'loss': 0.0980, 'learning_rate': 1.5147e-06, 'epoch': 2.76, 'throughput': 9419.80}
927
+
928
+ [INFO|2025-10-21 06:17:49] logging.py:157 >> {'loss': 0.0979, 'learning_rate': 1.4010e-06, 'epoch': 2.77, 'throughput': 9419.54}
929
+
930
+ [INFO|2025-10-21 06:26:53] logging.py:157 >> {'loss': 0.0960, 'learning_rate': 1.2916e-06, 'epoch': 2.78, 'throughput': 9419.30}
931
+
932
+ [INFO|2025-10-21 06:35:34] logging.py:157 >> {'loss': 0.0995, 'learning_rate': 1.1866e-06, 'epoch': 2.79, 'throughput': 9419.37}
933
+
934
+ [INFO|2025-10-21 06:44:22] logging.py:157 >> {'loss': 0.0979, 'learning_rate': 1.0861e-06, 'epoch': 2.80, 'throughput': 9419.58}
935
+
936
+ [INFO|2025-10-21 06:53:12] logging.py:157 >> {'loss': 0.0944, 'learning_rate': 9.8988e-07, 'epoch': 2.81, 'throughput': 9419.64}
937
+
938
+ [INFO|2025-10-21 07:01:56] logging.py:157 >> {'loss': 0.0949, 'learning_rate': 8.9813e-07, 'epoch': 2.82, 'throughput': 9420.47}
939
+
940
+ [INFO|2025-10-21 07:11:06] logging.py:157 >> {'loss': 0.0959, 'learning_rate': 8.1080e-07, 'epoch': 2.83, 'throughput': 9420.22}
941
+
942
+ [INFO|2025-10-21 07:20:02] logging.py:157 >> {'loss': 0.0995, 'learning_rate': 7.2790e-07, 'epoch': 2.84, 'throughput': 9420.29}
943
+
944
+ [INFO|2025-10-21 07:28:41] logging.py:157 >> {'loss': 0.0973, 'learning_rate': 6.4944e-07, 'epoch': 2.85, 'throughput': 9421.16}
945
+
946
+ [INFO|2025-10-21 07:37:33] logging.py:157 >> {'loss': 0.0992, 'learning_rate': 5.7543e-07, 'epoch': 2.85, 'throughput': 9421.50}
947
+
948
+ [INFO|2025-10-21 07:46:42] logging.py:157 >> {'loss': 0.0978, 'learning_rate': 5.0586e-07, 'epoch': 2.86, 'throughput': 9421.29}
949
+
950
+ [INFO|2025-10-21 07:55:32] logging.py:157 >> {'loss': 0.0963, 'learning_rate': 4.4076e-07, 'epoch': 2.87, 'throughput': 9421.46}
951
+
952
+ [INFO|2025-10-21 08:04:53] logging.py:157 >> {'loss': 0.0932, 'learning_rate': 3.8012e-07, 'epoch': 2.88, 'throughput': 9420.75}
953
+
954
+ [INFO|2025-10-21 08:13:35] logging.py:157 >> {'loss': 0.0980, 'learning_rate': 3.2395e-07, 'epoch': 2.89, 'throughput': 9421.03}
955
+
956
+ [INFO|2025-10-21 08:22:02] logging.py:157 >> {'loss': 0.0990, 'learning_rate': 2.7225e-07, 'epoch': 2.90, 'throughput': 9422.17}
957
+
958
+ [INFO|2025-10-21 08:31:18] logging.py:157 >> {'loss': 0.0974, 'learning_rate': 2.2504e-07, 'epoch': 2.91, 'throughput': 9421.85}
959
+
960
+ [INFO|2025-10-21 08:39:56] logging.py:157 >> {'loss': 0.0995, 'learning_rate': 1.8231e-07, 'epoch': 2.92, 'throughput': 9422.72}
961
+
962
+ [INFO|2025-10-21 08:49:10] logging.py:157 >> {'loss': 0.0955, 'learning_rate': 1.4406e-07, 'epoch': 2.93, 'throughput': 9422.15}
963
+
964
+ [INFO|2025-10-21 08:57:45] logging.py:157 >> {'loss': 0.0950, 'learning_rate': 1.1031e-07, 'epoch': 2.94, 'throughput': 9422.79}
965
+
966
+ [INFO|2025-10-21 09:06:43] logging.py:157 >> {'loss': 0.0995, 'learning_rate': 8.1053e-08, 'epoch': 2.95, 'throughput': 9422.90}
967
+
968
+ [INFO|2025-10-21 09:15:28] logging.py:157 >> {'loss': 0.0976, 'learning_rate': 5.6291e-08, 'epoch': 2.95, 'throughput': 9423.33}
969
+
970
+ [INFO|2025-10-21 09:24:09] logging.py:157 >> {'loss': 0.0955, 'learning_rate': 3.6029e-08, 'epoch': 2.96, 'throughput': 9423.84}
971
+
972
+ [INFO|2025-10-21 09:32:53] logging.py:157 >> {'loss': 0.0979, 'learning_rate': 2.0267e-08, 'epoch': 2.97, 'throughput': 9424.10}
973
+
974
+ [INFO|2025-10-21 09:41:43] logging.py:157 >> {'loss': 0.0999, 'learning_rate': 9.0080e-09, 'epoch': 2.98, 'throughput': 9425.00}
975
+
976
+ [INFO|2025-10-21 09:50:56] logging.py:157 >> {'loss': 0.0990, 'learning_rate': 2.2521e-09, 'epoch': 2.99, 'throughput': 9424.34}
977
+
978
+ [INFO|2025-10-21 10:00:15] logging.py:157 >> {'loss': 0.0971, 'learning_rate': 0.0000e+00, 'epoch': 3.00, 'throughput': 9423.59}
979
+
980
+ [INFO|2025-10-21 10:00:23] trainer.py:3966 >> Saving model checkpoint to saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951
981
+
982
+ [INFO|2025-10-21 10:00:23] configuration_utils.py:423 >> Configuration saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/config.json
983
+
984
+ [INFO|2025-10-21 10:00:23] configuration_utils.py:908 >> Configuration saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/generation_config.json
985
+
986
+ [INFO|2025-10-21 10:07:28] modeling_utils.py:3594 >> The model is bigger than the maximum size per checkpoint (5GB) and is going to be split in 4 checkpoint shards. You can find where each parameters has been saved in the index located at saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/model.safetensors.index.json.
987
+
988
+ [INFO|2025-10-21 10:07:28] tokenization_utils_base.py:2510 >> tokenizer config file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/tokenizer_config.json
989
+
990
+ [INFO|2025-10-21 10:07:28] tokenization_utils_base.py:2519 >> Special tokens file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/special_tokens_map.json
991
+
992
+ [INFO|2025-10-21 10:12:28] image_processing_base.py:261 >> Image processor saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/preprocessor_config.json
993
+
994
+ [INFO|2025-10-21 10:12:28] tokenization_utils_base.py:2510 >> tokenizer config file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/tokenizer_config.json
995
+
996
+ [INFO|2025-10-21 10:12:28] tokenization_utils_base.py:2519 >> Special tokens file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/special_tokens_map.json
997
+
998
+ [INFO|2025-10-21 10:12:29] processing_utils.py:638 >> chat template saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/checkpoint-6951/chat_template.json
999
+
1000
+ [INFO|2025-10-21 10:12:29] trainer.py:2665 >>
1001
+
1002
+ Training completed. Do not forget to share your model on huggingface.co/models =)
1003
+
1004
+
1005
+
1006
+ [INFO|2025-10-21 10:12:29] image_processing_base.py:261 >> Image processor saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/preprocessor_config.json
1007
+
1008
+ [INFO|2025-10-21 10:12:29] tokenization_utils_base.py:2510 >> tokenizer config file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/tokenizer_config.json
1009
+
1010
+ [INFO|2025-10-21 10:12:29] tokenization_utils_base.py:2519 >> Special tokens file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/special_tokens_map.json
1011
+
1012
+ [INFO|2025-10-21 10:12:30] processing_utils.py:638 >> chat template saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/chat_template.json
1013
+
1014
+ [INFO|2025-10-21 10:12:37] trainer.py:3966 >> Saving model checkpoint to saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123
1015
+
1016
+ [INFO|2025-10-21 10:12:37] configuration_utils.py:423 >> Configuration saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/config.json
1017
+
1018
+ [INFO|2025-10-21 10:12:37] configuration_utils.py:908 >> Configuration saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/generation_config.json
1019
+
1020
+ [INFO|2025-10-21 10:19:32] modeling_utils.py:3594 >> The model is bigger than the maximum size per checkpoint (5GB) and is going to be split in 4 checkpoint shards. You can find where each parameters has been saved in the index located at saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/model.safetensors.index.json.
1021
+
1022
+ [INFO|2025-10-21 10:19:32] tokenization_utils_base.py:2510 >> tokenizer config file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/tokenizer_config.json
1023
+
1024
+ [INFO|2025-10-21 10:19:32] tokenization_utils_base.py:2519 >> Special tokens file saved in saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123/special_tokens_map.json
1025
+
1026
+ [WARNING|2025-10-21 10:19:34] logging.py:162 >> No metric eval_accuracy to plot.
1027
+
1028
+ [INFO|2025-10-21 10:19:34] trainer.py:4289 >>
1029
+ ***** Running Evaluation *****
1030
+
1031
+ [INFO|2025-10-21 10:19:34] trainer.py:4291 >> Num examples = 9176
1032
+
1033
+ [INFO|2025-10-21 10:19:34] trainer.py:4294 >> Batch size = 2
1034
+
1035
+ [INFO|2025-10-21 10:28:27] modelcard.py:449 >> Dropping the following result as it does not have all the necessary fields:
1036
+ {'task': {'name': 'Causal Language Modeling', 'type': 'text-generation'}}
1037
+
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
3
+ size 11421896
tokenizer_config.json ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}",
199
+ "clean_up_tokenization_spaces": false,
200
+ "eos_token": "<|im_end|>",
201
+ "errors": "replace",
202
+ "extra_special_tokens": {},
203
+ "model_max_length": 6000,
204
+ "pad_token": "<|endoftext|>",
205
+ "padding_side": "right",
206
+ "processor_class": "Qwen2_5_VLProcessor",
207
+ "split_special_tokens": false,
208
+ "tokenizer_class": "Qwen2Tokenizer",
209
+ "unk_token": null
210
+ }
train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 2.9996224990562474,
3
+ "num_input_tokens_seen": 1677860944,
4
+ "total_flos": 8545808136798208.0,
5
+ "train_loss": 0.2019795169591595,
6
+ "train_runtime": 178782.2648,
7
+ "train_samples_per_second": 4.978,
8
+ "train_steps_per_second": 0.039
9
+ }
trainer_log.jsonl ADDED
@@ -0,0 +1,333 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"current_steps": 21, "total_steps": 6951, "loss": 1.431, "lr": 9.999774793715127e-05, "epoch": 0.009060022650056626, "percentage": 0.3, "elapsed_time": "0:09:04", "remaining_time": "2 days, 1:56:17", "throughput": 9395.55, "total_tokens": 5118512}
2
+ {"current_steps": 42, "total_steps": 6951, "loss": 0.5348, "lr": 9.99909919514765e-05, "epoch": 0.01812004530011325, "percentage": 0.6, "elapsed_time": "0:17:50", "remaining_time": "2 days, 0:56:01", "throughput": 9478.63, "total_tokens": 10150592}
3
+ {"current_steps": 63, "total_steps": 6951, "loss": 0.4599, "lr": 9.997973265157192e-05, "epoch": 0.027180067950169876, "percentage": 0.91, "elapsed_time": "0:26:30", "remaining_time": "2 days, 0:18:38", "throughput": 9537.12, "total_tokens": 15170896}
4
+ {"current_steps": 84, "total_steps": 6951, "loss": 0.4108, "lr": 9.996397105170353e-05, "epoch": 0.0362400906002265, "percentage": 1.21, "elapsed_time": "0:35:19", "remaining_time": "2 days, 0:08:22", "throughput": 9507.78, "total_tokens": 20155632}
5
+ {"current_steps": 105, "total_steps": 6951, "loss": 0.3947, "lr": 9.994370857171588e-05, "epoch": 0.045300113250283124, "percentage": 1.51, "elapsed_time": "0:44:14", "remaining_time": "2 days, 0:04:12", "throughput": 9470.14, "total_tokens": 25135440}
6
+ {"current_steps": 126, "total_steps": 6951, "loss": 0.3764, "lr": 9.991894703690414e-05, "epoch": 0.05436013590033975, "percentage": 1.81, "elapsed_time": "0:53:09", "remaining_time": "1 day, 23:58:59", "throughput": 9515.96, "total_tokens": 30346784}
7
+ {"current_steps": 147, "total_steps": 6951, "loss": 0.3751, "lr": 9.988968867784958e-05, "epoch": 0.06342015855039637, "percentage": 2.11, "elapsed_time": "1:01:42", "remaining_time": "1 day, 23:36:18", "throughput": 9525.58, "total_tokens": 35269664}
8
+ {"current_steps": 168, "total_steps": 6951, "loss": 0.3704, "lr": 9.985593613021872e-05, "epoch": 0.072480181200453, "percentage": 2.42, "elapsed_time": "1:10:20", "remaining_time": "1 day, 23:20:11", "throughput": 9513.01, "total_tokens": 40151792}
9
+ {"current_steps": 189, "total_steps": 6951, "loss": 0.3552, "lr": 9.981769243452595e-05, "epoch": 0.08154020385050963, "percentage": 2.72, "elapsed_time": "1:19:14", "remaining_time": "1 day, 23:14:54", "throughput": 9524.9, "total_tokens": 45283312}
10
+ {"current_steps": 210, "total_steps": 6951, "loss": 0.3576, "lr": 9.977496103585949e-05, "epoch": 0.09060022650056625, "percentage": 3.02, "elapsed_time": "1:28:00", "remaining_time": "1 day, 23:05:05", "throughput": 9525.35, "total_tokens": 50298912}
11
+ {"current_steps": 231, "total_steps": 6951, "loss": 0.3451, "lr": 9.972774578357117e-05, "epoch": 0.09966024915062288, "percentage": 3.32, "elapsed_time": "1:37:00", "remaining_time": "1 day, 23:02:12", "throughput": 9525.43, "total_tokens": 55445792}
12
+ {"current_steps": 252, "total_steps": 6951, "loss": 0.3506, "lr": 9.96760509309296e-05, "epoch": 0.1087202718006795, "percentage": 3.63, "elapsed_time": "1:45:52", "remaining_time": "1 day, 22:54:33", "throughput": 9524.66, "total_tokens": 60506496}
13
+ {"current_steps": 273, "total_steps": 6951, "loss": 0.3443, "lr": 9.961988113473708e-05, "epoch": 0.11778029445073612, "percentage": 3.93, "elapsed_time": "1:54:50", "remaining_time": "1 day, 22:49:19", "throughput": 9531.29, "total_tokens": 65678096}
14
+ {"current_steps": 294, "total_steps": 6951, "loss": 0.3446, "lr": 9.955924145491005e-05, "epoch": 0.12684031710079274, "percentage": 4.23, "elapsed_time": "2:03:13", "remaining_time": "1 day, 22:30:12", "throughput": 9532.39, "total_tokens": 70478688}
15
+ {"current_steps": 315, "total_steps": 6951, "loss": 0.3362, "lr": 9.94941373540233e-05, "epoch": 0.13590033975084936, "percentage": 4.53, "elapsed_time": "2:11:37", "remaining_time": "1 day, 22:13:01", "throughput": 9543.53, "total_tokens": 75373536}
16
+ {"current_steps": 336, "total_steps": 6951, "loss": 0.3384, "lr": 9.942457469681794e-05, "epoch": 0.144960362400906, "percentage": 4.83, "elapsed_time": "2:20:45", "remaining_time": "1 day, 22:11:15", "throughput": 9528.67, "total_tokens": 80476704}
17
+ {"current_steps": 357, "total_steps": 6951, "loss": 0.3315, "lr": 9.935055974967299e-05, "epoch": 0.15402038505096263, "percentage": 5.14, "elapsed_time": "2:29:44", "remaining_time": "1 day, 22:05:57", "throughput": 9534.93, "total_tokens": 85670800}
18
+ {"current_steps": 378, "total_steps": 6951, "loss": 0.33, "lr": 9.927209918004095e-05, "epoch": 0.16308040770101925, "percentage": 5.44, "elapsed_time": "2:38:25", "remaining_time": "1 day, 21:54:52", "throughput": 9542.47, "total_tokens": 90707040}
19
+ {"current_steps": 399, "total_steps": 6951, "loss": 0.3296, "lr": 9.918920005584719e-05, "epoch": 0.17214043035107587, "percentage": 5.74, "elapsed_time": "2:47:34", "remaining_time": "1 day, 21:51:41", "throughput": 9530.71, "total_tokens": 95824496}
20
+ {"current_steps": 420, "total_steps": 6951, "loss": 0.3315, "lr": 9.910186984485321e-05, "epoch": 0.1812004530011325, "percentage": 6.04, "elapsed_time": "2:56:23", "remaining_time": "1 day, 21:42:53", "throughput": 9530.11, "total_tokens": 100862224}
21
+ {"current_steps": 441, "total_steps": 6951, "loss": 0.353, "lr": 9.901011641398398e-05, "epoch": 0.19026047565118911, "percentage": 6.34, "elapsed_time": "3:05:16", "remaining_time": "1 day, 21:34:59", "throughput": 9524.36, "total_tokens": 105876656}
22
+ {"current_steps": 462, "total_steps": 6951, "loss": 0.3414, "lr": 9.89139480286192e-05, "epoch": 0.19932049830124576, "percentage": 6.65, "elapsed_time": "3:14:24", "remaining_time": "1 day, 21:30:34", "throughput": 9514.36, "total_tokens": 110980864}
23
+ {"current_steps": 483, "total_steps": 6951, "loss": 0.3224, "lr": 9.881337335184878e-05, "epoch": 0.20838052095130238, "percentage": 6.95, "elapsed_time": "3:23:22", "remaining_time": "1 day, 21:23:33", "throughput": 9515.3, "total_tokens": 116114800}
24
+ {"current_steps": 504, "total_steps": 6951, "loss": 0.3212, "lr": 9.870840144369246e-05, "epoch": 0.217440543601359, "percentage": 7.25, "elapsed_time": "3:32:28", "remaining_time": "1 day, 21:17:59", "throughput": 9511.06, "total_tokens": 121255744}
25
+ {"current_steps": 525, "total_steps": 6951, "loss": 0.3213, "lr": 9.859904176028362e-05, "epoch": 0.22650056625141562, "percentage": 7.55, "elapsed_time": "3:41:20", "remaining_time": "1 day, 21:09:18", "throughput": 9509.05, "total_tokens": 126288608}
26
+ {"current_steps": 546, "total_steps": 6951, "loss": 0.3198, "lr": 9.848530415301747e-05, "epoch": 0.23556058890147225, "percentage": 7.85, "elapsed_time": "3:49:53", "remaining_time": "1 day, 20:56:47", "throughput": 9514.22, "total_tokens": 131233488}
27
+ {"current_steps": 567, "total_steps": 6951, "loss": 0.3149, "lr": 9.836719886766356e-05, "epoch": 0.24462061155152887, "percentage": 8.16, "elapsed_time": "3:58:35", "remaining_time": "1 day, 20:46:18", "throughput": 9518.41, "total_tokens": 136257888}
28
+ {"current_steps": 588, "total_steps": 6951, "loss": 0.3169, "lr": 9.824473654344297e-05, "epoch": 0.2536806342015855, "percentage": 8.46, "elapsed_time": "4:07:48", "remaining_time": "1 day, 20:41:36", "throughput": 9510.51, "total_tokens": 141405120}
29
+ {"current_steps": 609, "total_steps": 6951, "loss": 0.3142, "lr": 9.811792821206969e-05, "epoch": 0.2627406568516421, "percentage": 8.76, "elapsed_time": "4:16:46", "remaining_time": "1 day, 20:33:56", "throughput": 9501.43, "total_tokens": 146380496}
30
+ {"current_steps": 630, "total_steps": 6951, "loss": 0.3097, "lr": 9.7986785296757e-05, "epoch": 0.2718006795016987, "percentage": 9.06, "elapsed_time": "4:25:32", "remaining_time": "1 day, 20:24:11", "throughput": 9499.35, "total_tokens": 151344048}
31
+ {"current_steps": 651, "total_steps": 6951, "loss": 0.3116, "lr": 9.785131961118844e-05, "epoch": 0.2808607021517554, "percentage": 9.37, "elapsed_time": "4:34:25", "remaining_time": "1 day, 20:15:47", "throughput": 9500.56, "total_tokens": 156435136}
32
+ {"current_steps": 672, "total_steps": 6951, "loss": 0.3086, "lr": 9.771154335845345e-05, "epoch": 0.289920724801812, "percentage": 9.67, "elapsed_time": "4:43:25", "remaining_time": "1 day, 20:08:13", "throughput": 9499.14, "total_tokens": 161536224}
33
+ {"current_steps": 693, "total_steps": 6951, "loss": 0.3057, "lr": 9.756746912994832e-05, "epoch": 0.29898074745186864, "percentage": 9.97, "elapsed_time": "4:52:30", "remaining_time": "1 day, 20:01:24", "throughput": 9491.21, "total_tokens": 166573984}
34
+ {"current_steps": 714, "total_steps": 6951, "loss": 0.3017, "lr": 9.741910990424174e-05, "epoch": 0.30804077010192527, "percentage": 10.27, "elapsed_time": "5:01:16", "remaining_time": "1 day, 19:51:46", "throughput": 9494.9, "total_tokens": 171638000}
35
+ {"current_steps": 735, "total_steps": 6951, "loss": 0.3066, "lr": 9.726647904590571e-05, "epoch": 0.3171007927519819, "percentage": 10.57, "elapsed_time": "5:10:26", "remaining_time": "1 day, 19:45:29", "throughput": 9489.84, "total_tokens": 176765648}
36
+ {"current_steps": 756, "total_steps": 6951, "loss": 0.2996, "lr": 9.710959030431167e-05, "epoch": 0.3261608154020385, "percentage": 10.88, "elapsed_time": "5:19:30", "remaining_time": "1 day, 19:38:14", "throughput": 9490.92, "total_tokens": 181949360}
37
+ {"current_steps": 777, "total_steps": 6951, "loss": 0.2972, "lr": 9.694845781239187e-05, "epoch": 0.3352208380520951, "percentage": 11.18, "elapsed_time": "5:28:25", "remaining_time": "1 day, 19:29:35", "throughput": 9489.46, "total_tokens": 186990096}
38
+ {"current_steps": 798, "total_steps": 6951, "loss": 0.2984, "lr": 9.678309608536626e-05, "epoch": 0.34428086070215175, "percentage": 11.48, "elapsed_time": "5:37:25", "remaining_time": "1 day, 19:21:44", "throughput": 9487.66, "total_tokens": 192083856}
39
+ {"current_steps": 819, "total_steps": 6951, "loss": 0.2957, "lr": 9.661352001943493e-05, "epoch": 0.35334088335220837, "percentage": 11.78, "elapsed_time": "5:46:05", "remaining_time": "1 day, 19:11:15", "throughput": 9493.32, "total_tokens": 197134448}
40
+ {"current_steps": 840, "total_steps": 6951, "loss": 0.2926, "lr": 9.64397448904362e-05, "epoch": 0.362400906002265, "percentage": 12.08, "elapsed_time": "5:55:14", "remaining_time": "1 day, 19:04:21", "throughput": 9491.78, "total_tokens": 202310368}
41
+ {"current_steps": 861, "total_steps": 6951, "loss": 0.2909, "lr": 9.626178635247054e-05, "epoch": 0.3714609286523216, "percentage": 12.39, "elapsed_time": "6:04:00", "remaining_time": "1 day, 18:54:38", "throughput": 9494.44, "total_tokens": 207359840}
42
+ {"current_steps": 882, "total_steps": 6951, "loss": 0.2954, "lr": 9.607966043649046e-05, "epoch": 0.38052095130237823, "percentage": 12.69, "elapsed_time": "6:12:54", "remaining_time": "1 day, 18:45:59", "throughput": 9492.66, "total_tokens": 212395664}
43
+ {"current_steps": 903, "total_steps": 6951, "loss": 0.2912, "lr": 9.589338354885629e-05, "epoch": 0.3895809739524349, "percentage": 12.99, "elapsed_time": "6:21:47", "remaining_time": "1 day, 18:37:06", "throughput": 9497.8, "total_tokens": 217570640}
44
+ {"current_steps": 924, "total_steps": 6951, "loss": 0.2928, "lr": 9.570297246985837e-05, "epoch": 0.3986409966024915, "percentage": 13.29, "elapsed_time": "6:30:38", "remaining_time": "1 day, 18:28:00", "throughput": 9498.61, "total_tokens": 222629712}
45
+ {"current_steps": 945, "total_steps": 6951, "loss": 0.292, "lr": 9.550844435220539e-05, "epoch": 0.40770101925254815, "percentage": 13.6, "elapsed_time": "6:38:57", "remaining_time": "1 day, 18:15:34", "throughput": 9506.77, "total_tokens": 227565744}
46
+ {"current_steps": 966, "total_steps": 6951, "loss": 0.292, "lr": 9.530981671947923e-05, "epoch": 0.41676104190260477, "percentage": 13.9, "elapsed_time": "6:48:04", "remaining_time": "1 day, 18:08:16", "throughput": 9502.21, "total_tokens": 232655712}
47
+ {"current_steps": 987, "total_steps": 6951, "loss": 0.2959, "lr": 9.510710746455636e-05, "epoch": 0.4258210645526614, "percentage": 14.2, "elapsed_time": "6:56:51", "remaining_time": "1 day, 17:58:52", "throughput": 9500.11, "total_tokens": 237611056}
48
+ {"current_steps": 1008, "total_steps": 6951, "loss": 0.2884, "lr": 9.490033484799608e-05, "epoch": 0.434881087202718, "percentage": 14.5, "elapsed_time": "7:05:54", "remaining_time": "1 day, 17:51:03", "throughput": 9497.19, "total_tokens": 242693136}
49
+ {"current_steps": 1029, "total_steps": 6951, "loss": 0.2878, "lr": 9.468951749639551e-05, "epoch": 0.44394110985277463, "percentage": 14.8, "elapsed_time": "7:14:46", "remaining_time": "1 day, 17:42:12", "throughput": 9494.35, "total_tokens": 247677488}
50
+ {"current_steps": 1050, "total_steps": 6951, "loss": 0.2908, "lr": 9.447467440071164e-05, "epoch": 0.45300113250283125, "percentage": 15.11, "elapsed_time": "7:23:55", "remaining_time": "1 day, 17:34:48", "throughput": 9490.15, "total_tokens": 252770384}
51
+ {"current_steps": 1071, "total_steps": 6951, "loss": 0.2796, "lr": 9.425582491455067e-05, "epoch": 0.46206115515288787, "percentage": 15.41, "elapsed_time": "7:33:19", "remaining_time": "1 day, 17:28:50", "throughput": 9485.8, "total_tokens": 258009696}
52
+ {"current_steps": 1092, "total_steps": 6951, "loss": 0.2858, "lr": 9.403298875242448e-05, "epoch": 0.4711211778029445, "percentage": 15.71, "elapsed_time": "7:42:23", "remaining_time": "1 day, 17:20:57", "throughput": 9484.86, "total_tokens": 263147728}
53
+ {"current_steps": 1113, "total_steps": 6951, "loss": 0.2876, "lr": 9.380618598797473e-05, "epoch": 0.4801812004530011, "percentage": 16.01, "elapsed_time": "7:51:09", "remaining_time": "1 day, 17:11:21", "throughput": 9486.71, "total_tokens": 268184080}
54
+ {"current_steps": 1134, "total_steps": 6951, "loss": 0.2814, "lr": 9.357543705216465e-05, "epoch": 0.48924122310305773, "percentage": 16.31, "elapsed_time": "8:00:24", "remaining_time": "1 day, 17:04:21", "throughput": 9486.33, "total_tokens": 273442768}
55
+ {"current_steps": 1155, "total_steps": 6951, "loss": 0.2804, "lr": 9.334076273143843e-05, "epoch": 0.4983012457531144, "percentage": 16.62, "elapsed_time": "8:09:16", "remaining_time": "1 day, 16:55:18", "throughput": 9491.48, "total_tokens": 278640624}
56
+ {"current_steps": 1176, "total_steps": 6951, "loss": 0.2863, "lr": 9.310218416584886e-05, "epoch": 0.507361268403171, "percentage": 16.92, "elapsed_time": "8:18:19", "remaining_time": "1 day, 16:47:09", "throughput": 9490.65, "total_tokens": 283769424}
57
+ {"current_steps": 1197, "total_steps": 6951, "loss": 0.2851, "lr": 9.28597228471529e-05, "epoch": 0.5164212910532276, "percentage": 17.22, "elapsed_time": "8:27:03", "remaining_time": "1 day, 16:37:28", "throughput": 9494.69, "total_tokens": 288866448}
58
+ {"current_steps": 1218, "total_steps": 6951, "loss": 0.2798, "lr": 9.26134006168757e-05, "epoch": 0.5254813137032842, "percentage": 17.52, "elapsed_time": "8:35:48", "remaining_time": "1 day, 16:27:52", "throughput": 9497.76, "total_tokens": 293944576}
59
+ {"current_steps": 1239, "total_steps": 6951, "loss": 0.2728, "lr": 9.236323966434295e-05, "epoch": 0.5345413363533409, "percentage": 17.82, "elapsed_time": "8:44:51", "remaining_time": "1 day, 16:19:39", "throughput": 9497.6, "total_tokens": 299090032}
60
+ {"current_steps": 1260, "total_steps": 6951, "loss": 0.2756, "lr": 9.210926252468219e-05, "epoch": 0.5436013590033975, "percentage": 18.13, "elapsed_time": "8:53:20", "remaining_time": "1 day, 16:08:56", "throughput": 9500.3, "total_tokens": 304016304}
61
+ {"current_steps": 1281, "total_steps": 6951, "loss": 0.2747, "lr": 9.185149207679263e-05, "epoch": 0.5526613816534541, "percentage": 18.43, "elapsed_time": "9:02:10", "remaining_time": "1 day, 15:59:46", "throughput": 9501.41, "total_tokens": 309084016}
62
+ {"current_steps": 1302, "total_steps": 6951, "loss": 0.2772, "lr": 9.158995154128425e-05, "epoch": 0.5617214043035108, "percentage": 18.73, "elapsed_time": "9:11:03", "remaining_time": "1 day, 15:50:52", "throughput": 9503.01, "total_tokens": 314201696}
63
+ {"current_steps": 1323, "total_steps": 6951, "loss": 0.2785, "lr": 9.132466447838597e-05, "epoch": 0.5707814269535674, "percentage": 19.03, "elapsed_time": "9:19:38", "remaining_time": "1 day, 15:40:41", "throughput": 9508.07, "total_tokens": 319266256}
64
+ {"current_steps": 1344, "total_steps": 6951, "loss": 0.2755, "lr": 9.105565478582334e-05, "epoch": 0.579841449603624, "percentage": 19.34, "elapsed_time": "9:28:38", "remaining_time": "1 day, 15:32:19", "throughput": 9509.96, "total_tokens": 324468352}
65
+ {"current_steps": 1365, "total_steps": 6951, "loss": 0.2708, "lr": 9.078294669666576e-05, "epoch": 0.5889014722536806, "percentage": 19.64, "elapsed_time": "9:37:46", "remaining_time": "1 day, 15:24:25", "throughput": 9506.81, "total_tokens": 329566736}
66
+ {"current_steps": 1386, "total_steps": 6951, "loss": 0.2729, "lr": 9.050656477714346e-05, "epoch": 0.5979614949037373, "percentage": 19.94, "elapsed_time": "9:46:49", "remaining_time": "1 day, 15:16:10", "throughput": 9504.96, "total_tokens": 334661888}
67
+ {"current_steps": 1407, "total_steps": 6951, "loss": 0.2754, "lr": 9.022653392443454e-05, "epoch": 0.6070215175537939, "percentage": 20.24, "elapsed_time": "9:55:45", "remaining_time": "1 day, 15:07:27", "throughput": 9505.7, "total_tokens": 339784976}
68
+ {"current_steps": 1428, "total_steps": 6951, "loss": 0.2742, "lr": 8.994287936442225e-05, "epoch": 0.6160815402038505, "percentage": 20.54, "elapsed_time": "10:04:49", "remaining_time": "1 day, 14:59:13", "throughput": 9500.81, "total_tokens": 344776544}
69
+ {"current_steps": 1449, "total_steps": 6951, "loss": 0.2703, "lr": 8.96556266494224e-05, "epoch": 0.6251415628539071, "percentage": 20.85, "elapsed_time": "10:13:22", "remaining_time": "1 day, 14:49:01", "throughput": 9503.01, "total_tokens": 349731168}
70
+ {"current_steps": 1470, "total_steps": 6951, "loss": 0.2756, "lr": 8.936480165588173e-05, "epoch": 0.6342015855039638, "percentage": 21.15, "elapsed_time": "10:22:04", "remaining_time": "1 day, 14:39:27", "throughput": 9502.95, "total_tokens": 354694544}
71
+ {"current_steps": 1491, "total_steps": 6951, "loss": 0.2698, "lr": 8.907043058204674e-05, "epoch": 0.6432616081540203, "percentage": 21.45, "elapsed_time": "10:31:13", "remaining_time": "1 day, 14:31:31", "throughput": 9501.97, "total_tokens": 359871984}
72
+ {"current_steps": 1512, "total_steps": 6951, "loss": 0.2716, "lr": 8.877253994560382e-05, "epoch": 0.652321630804077, "percentage": 21.75, "elapsed_time": "10:40:16", "remaining_time": "1 day, 14:23:14", "throughput": 9499.4, "total_tokens": 364937440}
73
+ {"current_steps": 1533, "total_steps": 6951, "loss": 0.2682, "lr": 8.847115658129039e-05, "epoch": 0.6613816534541337, "percentage": 22.05, "elapsed_time": "10:49:13", "remaining_time": "1 day, 14:14:29", "throughput": 9498.48, "total_tokens": 369994848}
74
+ {"current_steps": 1554, "total_steps": 6951, "loss": 0.2695, "lr": 8.816630763847755e-05, "epoch": 0.6704416761041903, "percentage": 22.36, "elapsed_time": "10:57:51", "remaining_time": "1 day, 14:04:43", "throughput": 9500.35, "total_tokens": 374992544}
75
+ {"current_steps": 1575, "total_steps": 6951, "loss": 0.2706, "lr": 8.785802057872446e-05, "epoch": 0.6795016987542469, "percentage": 22.66, "elapsed_time": "11:06:33", "remaining_time": "1 day, 13:55:11", "throughput": 9502.46, "total_tokens": 380038624}
76
+ {"current_steps": 1596, "total_steps": 6951, "loss": 0.2704, "lr": 8.754632317330447e-05, "epoch": 0.6885617214043035, "percentage": 22.96, "elapsed_time": "11:15:32", "remaining_time": "1 day, 13:46:38", "throughput": 9503.27, "total_tokens": 385195792}
77
+ {"current_steps": 1617, "total_steps": 6951, "loss": 0.2707, "lr": 8.723124350070347e-05, "epoch": 0.6976217440543602, "percentage": 23.26, "elapsed_time": "11:24:14", "remaining_time": "1 day, 13:37:05", "throughput": 9504.39, "total_tokens": 390195296}
78
+ {"current_steps": 1638, "total_steps": 6951, "loss": 0.2653, "lr": 8.691280994409043e-05, "epoch": 0.7066817667044167, "percentage": 23.56, "elapsed_time": "11:33:22", "remaining_time": "1 day, 13:28:59", "throughput": 9503.23, "total_tokens": 395353440}
79
+ {"current_steps": 1659, "total_steps": 6951, "loss": 0.2649, "lr": 8.659105118876068e-05, "epoch": 0.7157417893544734, "percentage": 23.87, "elapsed_time": "11:41:58", "remaining_time": "1 day, 13:19:14", "throughput": 9507.46, "total_tokens": 400444080}
80
+ {"current_steps": 1680, "total_steps": 6951, "loss": 0.2652, "lr": 8.626599621955179e-05, "epoch": 0.72480181200453, "percentage": 24.17, "elapsed_time": "11:50:50", "remaining_time": "1 day, 13:10:14", "throughput": 9507.43, "total_tokens": 405492112}
81
+ {"current_steps": 1701, "total_steps": 6951, "loss": 0.2638, "lr": 8.593767431823255e-05, "epoch": 0.7338618346545867, "percentage": 24.47, "elapsed_time": "11:59:34", "remaining_time": "1 day, 13:00:53", "throughput": 9507.28, "total_tokens": 410467584}
82
+ {"current_steps": 1722, "total_steps": 6951, "loss": 0.2685, "lr": 8.56061150608652e-05, "epoch": 0.7429218573046432, "percentage": 24.77, "elapsed_time": "12:08:13", "remaining_time": "1 day, 12:51:17", "throughput": 9510.67, "total_tokens": 415550320}
83
+ {"current_steps": 1743, "total_steps": 6951, "loss": 0.2584, "lr": 8.527134831514117e-05, "epoch": 0.7519818799546999, "percentage": 25.08, "elapsed_time": "12:16:49", "remaining_time": "1 day, 12:41:35", "throughput": 9511.61, "total_tokens": 420503712}
84
+ {"current_steps": 1764, "total_steps": 6951, "loss": 0.2607, "lr": 8.493340423769053e-05, "epoch": 0.7610419026047565, "percentage": 25.38, "elapsed_time": "12:25:46", "remaining_time": "1 day, 12:32:56", "throughput": 9511.41, "total_tokens": 425602800}
85
+ {"current_steps": 1785, "total_steps": 6951, "loss": 0.2652, "lr": 8.459231327136532e-05, "epoch": 0.7701019252548131, "percentage": 25.68, "elapsed_time": "12:34:23", "remaining_time": "1 day, 12:23:18", "throughput": 9511.99, "total_tokens": 430546320}
86
+ {"current_steps": 1806, "total_steps": 6951, "loss": 0.2604, "lr": 8.42481061424973e-05, "epoch": 0.7791619479048698, "percentage": 25.98, "elapsed_time": "12:43:09", "remaining_time": "1 day, 12:14:07", "throughput": 9513.64, "total_tokens": 435625600}
87
+ {"current_steps": 1827, "total_steps": 6951, "loss": 0.2603, "lr": 8.390081385812993e-05, "epoch": 0.7882219705549264, "percentage": 26.28, "elapsed_time": "12:51:51", "remaining_time": "1 day, 12:04:45", "throughput": 9515.83, "total_tokens": 440695024}
88
+ {"current_steps": 1848, "total_steps": 6951, "loss": 0.2576, "lr": 8.355046770322528e-05, "epoch": 0.797281993204983, "percentage": 26.59, "elapsed_time": "13:01:19", "remaining_time": "1 day, 11:57:30", "throughput": 9511.18, "total_tokens": 445877360}
89
+ {"current_steps": 1869, "total_steps": 6951, "loss": 0.2622, "lr": 8.319709923784573e-05, "epoch": 0.8063420158550396, "percentage": 26.89, "elapsed_time": "13:10:17", "remaining_time": "1 day, 11:48:52", "throughput": 9511.76, "total_tokens": 451021040}
90
+ {"current_steps": 1890, "total_steps": 6951, "loss": 0.2587, "lr": 8.284074029431099e-05, "epoch": 0.8154020385050963, "percentage": 27.19, "elapsed_time": "13:19:10", "remaining_time": "1 day, 11:39:59", "throughput": 9511.99, "total_tokens": 456101872}
91
+ {"current_steps": 1911, "total_steps": 6951, "loss": 0.2575, "lr": 8.248142297433057e-05, "epoch": 0.8244620611551529, "percentage": 27.49, "elapsed_time": "13:28:28", "remaining_time": "1 day, 11:32:13", "throughput": 9511.08, "total_tokens": 461365920}
92
+ {"current_steps": 1932, "total_steps": 6951, "loss": 0.2573, "lr": 8.211917964611196e-05, "epoch": 0.8335220838052095, "percentage": 27.79, "elapsed_time": "13:37:33", "remaining_time": "1 day, 11:23:52", "throughput": 9509.35, "total_tokens": 466466096}
93
+ {"current_steps": 1953, "total_steps": 6951, "loss": 0.26, "lr": 8.175404294144482e-05, "epoch": 0.8425821064552661, "percentage": 28.1, "elapsed_time": "13:46:33", "remaining_time": "1 day, 11:15:17", "throughput": 9508.08, "total_tokens": 471541104}
94
+ {"current_steps": 1974, "total_steps": 6951, "loss": 0.2571, "lr": 8.138604575276143e-05, "epoch": 0.8516421291053228, "percentage": 28.4, "elapsed_time": "13:55:43", "remaining_time": "1 day, 11:07:04", "throughput": 9505.71, "total_tokens": 476646096}
95
+ {"current_steps": 1995, "total_steps": 6951, "loss": 0.251, "lr": 8.10152212301737e-05, "epoch": 0.8607021517553793, "percentage": 28.7, "elapsed_time": "14:04:22", "remaining_time": "1 day, 10:57:36", "throughput": 9507.9, "total_tokens": 481695200}
96
+ {"current_steps": 2016, "total_steps": 6951, "loss": 0.2614, "lr": 8.064160277848682e-05, "epoch": 0.869762174405436, "percentage": 29.0, "elapsed_time": "14:13:13", "remaining_time": "1 day, 10:48:38", "throughput": 9507.12, "total_tokens": 486706656}
97
+ {"current_steps": 2037, "total_steps": 6951, "loss": 0.2528, "lr": 8.026522405419023e-05, "epoch": 0.8788221970554927, "percentage": 29.31, "elapsed_time": "14:22:37", "remaining_time": "1 day, 10:40:57", "throughput": 9504.87, "total_tokens": 491943424}
98
+ {"current_steps": 2058, "total_steps": 6951, "loss": 0.2571, "lr": 7.988611896242559e-05, "epoch": 0.8878822197055493, "percentage": 29.61, "elapsed_time": "14:31:02", "remaining_time": "1 day, 10:30:56", "throughput": 9508.31, "total_tokens": 496925888}
99
+ {"current_steps": 2079, "total_steps": 6951, "loss": 0.2547, "lr": 7.950432165393259e-05, "epoch": 0.8969422423556059, "percentage": 29.91, "elapsed_time": "14:40:01", "remaining_time": "1 day, 10:22:16", "throughput": 9508.57, "total_tokens": 502065216}
100
+ {"current_steps": 2100, "total_steps": 6951, "loss": 0.2538, "lr": 7.911986652197262e-05, "epoch": 0.9060022650056625, "percentage": 30.21, "elapsed_time": "14:48:55", "remaining_time": "1 day, 10:13:25", "throughput": 9507.51, "total_tokens": 507089616}
101
+ {"current_steps": 2121, "total_steps": 6951, "loss": 0.2551, "lr": 7.873278819923048e-05, "epoch": 0.9150622876557192, "percentage": 30.51, "elapsed_time": "14:57:43", "remaining_time": "1 day, 10:04:18", "throughput": 9506.69, "total_tokens": 512060336}
102
+ {"current_steps": 2142, "total_steps": 6951, "loss": 0.2515, "lr": 7.834312155469456e-05, "epoch": 0.9241223103057757, "percentage": 30.82, "elapsed_time": "15:06:55", "remaining_time": "1 day, 9:56:07", "throughput": 9503.49, "total_tokens": 517133680}
103
+ {"current_steps": 2163, "total_steps": 6951, "loss": 0.2526, "lr": 7.79509016905158e-05, "epoch": 0.9331823329558324, "percentage": 31.12, "elapsed_time": "15:15:49", "remaining_time": "1 day, 9:47:16", "throughput": 9503.75, "total_tokens": 522229616}
104
+ {"current_steps": 2184, "total_steps": 6951, "loss": 0.2482, "lr": 7.755616393884561e-05, "epoch": 0.942242355605889, "percentage": 31.42, "elapsed_time": "15:24:47", "remaining_time": "1 day, 9:38:31", "throughput": 9504.35, "total_tokens": 527368864}
105
+ {"current_steps": 2205, "total_steps": 6951, "loss": 0.2516, "lr": 7.715894385865299e-05, "epoch": 0.9513023782559457, "percentage": 31.72, "elapsed_time": "15:33:55", "remaining_time": "1 day, 9:30:09", "throughput": 9502.88, "total_tokens": 532499712}
106
+ {"current_steps": 2226, "total_steps": 6951, "loss": 0.2493, "lr": 7.675927723252134e-05, "epoch": 0.9603624009060022, "percentage": 32.02, "elapsed_time": "15:42:18", "remaining_time": "1 day, 9:20:10", "throughput": 9505.71, "total_tokens": 537438224}
107
+ {"current_steps": 2247, "total_steps": 6951, "loss": 0.2465, "lr": 7.635720006342512e-05, "epoch": 0.9694224235560589, "percentage": 32.33, "elapsed_time": "15:51:07", "remaining_time": "1 day, 9:11:07", "throughput": 9508.14, "total_tokens": 542603472}
108
+ {"current_steps": 2268, "total_steps": 6951, "loss": 0.2486, "lr": 7.595274857148652e-05, "epoch": 0.9784824462061155, "percentage": 32.63, "elapsed_time": "15:59:54", "remaining_time": "1 day, 9:02:01", "throughput": 9508.27, "total_tokens": 547622688}
109
+ {"current_steps": 2289, "total_steps": 6951, "loss": 0.2472, "lr": 7.554595919071268e-05, "epoch": 0.9875424688561721, "percentage": 32.93, "elapsed_time": "16:09:00", "remaining_time": "1 day, 8:53:35", "throughput": 9507.12, "total_tokens": 552751232}
110
+ {"current_steps": 2310, "total_steps": 6951, "loss": 0.2471, "lr": 7.513686856571368e-05, "epoch": 0.9966024915062288, "percentage": 33.23, "elapsed_time": "16:17:53", "remaining_time": "1 day, 8:44:39", "throughput": 9506.69, "total_tokens": 557786736}
111
+ {"current_steps": 2331, "total_steps": 6951, "loss": 0.2361, "lr": 7.472551354840145e-05, "epoch": 1.0060400151000377, "percentage": 33.53, "elapsed_time": "16:27:14", "remaining_time": "1 day, 8:36:40", "throughput": 9504.55, "total_tokens": 562993712}
112
+ {"current_steps": 2352, "total_steps": 6951, "loss": 0.217, "lr": 7.431193119467008e-05, "epoch": 1.0151000377500943, "percentage": 33.84, "elapsed_time": "16:36:00", "remaining_time": "1 day, 8:27:32", "throughput": 9504.99, "total_tokens": 568021744}
113
+ {"current_steps": 2373, "total_steps": 6951, "loss": 0.2145, "lr": 7.389615876105774e-05, "epoch": 1.024160060400151, "percentage": 34.14, "elapsed_time": "16:44:31", "remaining_time": "1 day, 8:17:55", "throughput": 9506.33, "total_tokens": 572956608}
114
+ {"current_steps": 2394, "total_steps": 6951, "loss": 0.2179, "lr": 7.347823370139042e-05, "epoch": 1.0332200830502076, "percentage": 34.44, "elapsed_time": "16:53:29", "remaining_time": "1 day, 8:09:11", "throughput": 9504.64, "total_tokens": 577973792}
115
+ {"current_steps": 2415, "total_steps": 6951, "loss": 0.2098, "lr": 7.30581936634082e-05, "epoch": 1.0422801057002642, "percentage": 34.74, "elapsed_time": "17:02:02", "remaining_time": "1 day, 7:59:40", "throughput": 9506.2, "total_tokens": 582948368}
116
+ {"current_steps": 2436, "total_steps": 6951, "loss": 0.2174, "lr": 7.263607648537364e-05, "epoch": 1.051340128350321, "percentage": 35.05, "elapsed_time": "17:10:54", "remaining_time": "1 day, 7:50:43", "throughput": 9505.78, "total_tokens": 587973936}
117
+ {"current_steps": 2457, "total_steps": 6951, "loss": 0.2187, "lr": 7.221192019266332e-05, "epoch": 1.0604001510003775, "percentage": 35.35, "elapsed_time": "17:19:42", "remaining_time": "1 day, 7:41:41", "throughput": 9506.65, "total_tokens": 593048624}
118
+ {"current_steps": 2478, "total_steps": 6951, "loss": 0.2162, "lr": 7.178576299434238e-05, "epoch": 1.069460173650434, "percentage": 35.65, "elapsed_time": "17:28:45", "remaining_time": "1 day, 7:33:05", "throughput": 9506.1, "total_tokens": 598171840}
119
+ {"current_steps": 2499, "total_steps": 6951, "loss": 0.2202, "lr": 7.135764327972261e-05, "epoch": 1.0785201963004907, "percentage": 35.95, "elapsed_time": "17:37:32", "remaining_time": "1 day, 7:24:02", "throughput": 9505.76, "total_tokens": 603168000}
120
+ {"current_steps": 2520, "total_steps": 6951, "loss": 0.2237, "lr": 7.092759961490415e-05, "epoch": 1.0875802189505475, "percentage": 36.25, "elapsed_time": "17:46:36", "remaining_time": "1 day, 7:15:26", "throughput": 9504.97, "total_tokens": 608280544}
121
+ {"current_steps": 2541, "total_steps": 6951, "loss": 0.2199, "lr": 7.049567073930143e-05, "epoch": 1.096640241600604, "percentage": 36.56, "elapsed_time": "17:55:12", "remaining_time": "1 day, 7:06:04", "throughput": 9505.35, "total_tokens": 613215280}
122
+ {"current_steps": 2562, "total_steps": 6951, "loss": 0.2189, "lr": 7.006189556215345e-05, "epoch": 1.1057002642506606, "percentage": 36.86, "elapsed_time": "18:04:29", "remaining_time": "1 day, 6:57:50", "throughput": 9501.61, "total_tokens": 618261984}
123
+ {"current_steps": 2583, "total_steps": 6951, "loss": 0.2163, "lr": 6.962631315901861e-05, "epoch": 1.1147602869007172, "percentage": 37.16, "elapsed_time": "18:13:39", "remaining_time": "1 day, 6:49:26", "throughput": 9501.64, "total_tokens": 623492320}
124
+ {"current_steps": 2604, "total_steps": 6951, "loss": 0.2157, "lr": 6.918896276825485e-05, "epoch": 1.123820309550774, "percentage": 37.46, "elapsed_time": "18:22:29", "remaining_time": "1 day, 6:40:26", "throughput": 9502.18, "total_tokens": 628563152}
125
+ {"current_steps": 2625, "total_steps": 6951, "loss": 0.2141, "lr": 6.874988378748483e-05, "epoch": 1.1328803322008305, "percentage": 37.76, "elapsed_time": "18:31:42", "remaining_time": "1 day, 6:32:05", "throughput": 9499.47, "total_tokens": 633639472}
126
+ {"current_steps": 2646, "total_steps": 6951, "loss": 0.2185, "lr": 6.830911577004698e-05, "epoch": 1.141940354850887, "percentage": 38.07, "elapsed_time": "18:40:08", "remaining_time": "1 day, 6:22:27", "throughput": 9502.37, "total_tokens": 638639648}
127
+ {"current_steps": 2667, "total_steps": 6951, "loss": 0.2125, "lr": 6.786669842143236e-05, "epoch": 1.1510003775009436, "percentage": 38.37, "elapsed_time": "18:49:04", "remaining_time": "1 day, 6:13:38", "throughput": 9502.47, "total_tokens": 643743632}
128
+ {"current_steps": 2688, "total_steps": 6951, "loss": 0.2138, "lr": 6.742267159570795e-05, "epoch": 1.1600604001510004, "percentage": 38.67, "elapsed_time": "18:58:03", "remaining_time": "1 day, 6:04:52", "throughput": 9501.96, "total_tokens": 648823584}
129
+ {"current_steps": 2709, "total_steps": 6951, "loss": 0.2152, "lr": 6.697707529192648e-05, "epoch": 1.169120422801057, "percentage": 38.97, "elapsed_time": "19:06:58", "remaining_time": "1 day, 5:56:01", "throughput": 9502.59, "total_tokens": 653949232}
130
+ {"current_steps": 2730, "total_steps": 6951, "loss": 0.2125, "lr": 6.652994965052319e-05, "epoch": 1.1781804454511136, "percentage": 39.27, "elapsed_time": "19:15:42", "remaining_time": "1 day, 5:46:54", "throughput": 9503.45, "total_tokens": 658996016}
131
+ {"current_steps": 2751, "total_steps": 6951, "loss": 0.2123, "lr": 6.608133494969994e-05, "epoch": 1.1872404681011703, "percentage": 39.58, "elapsed_time": "19:24:50", "remaining_time": "1 day, 5:38:23", "throughput": 9502.01, "total_tokens": 664102304}
132
+ {"current_steps": 2772, "total_steps": 6951, "loss": 0.2101, "lr": 6.563127160179671e-05, "epoch": 1.196300490751227, "percentage": 39.88, "elapsed_time": "19:33:50", "remaining_time": "1 day, 5:29:39", "throughput": 9500.47, "total_tokens": 669123584}
133
+ {"current_steps": 2793, "total_steps": 6951, "loss": 0.209, "lr": 6.517980014965139e-05, "epoch": 1.2053605134012835, "percentage": 40.18, "elapsed_time": "19:42:43", "remaining_time": "1 day, 5:20:44", "throughput": 9501.47, "total_tokens": 674256592}
134
+ {"current_steps": 2814, "total_steps": 6951, "loss": 0.2122, "lr": 6.472696126294732e-05, "epoch": 1.21442053605134, "percentage": 40.48, "elapsed_time": "19:51:25", "remaining_time": "1 day, 5:11:34", "throughput": 9501.91, "total_tokens": 679248208}
135
+ {"current_steps": 2835, "total_steps": 6951, "loss": 0.2093, "lr": 6.427279573454985e-05, "epoch": 1.2234805587013968, "percentage": 40.79, "elapsed_time": "20:00:27", "remaining_time": "1 day, 5:02:53", "throughput": 9500.84, "total_tokens": 684325632}
136
+ {"current_steps": 2856, "total_steps": 6951, "loss": 0.2114, "lr": 6.381734447683152e-05, "epoch": 1.2325405813514534, "percentage": 41.09, "elapsed_time": "20:09:08", "remaining_time": "1 day, 4:53:41", "throughput": 9501.8, "total_tokens": 689336736}
137
+ {"current_steps": 2877, "total_steps": 6951, "loss": 0.2111, "lr": 6.33606485179866e-05, "epoch": 1.24160060400151, "percentage": 41.39, "elapsed_time": "20:18:03", "remaining_time": "1 day, 4:44:51", "throughput": 9501.17, "total_tokens": 694382688}
138
+ {"current_steps": 2898, "total_steps": 6951, "loss": 0.2086, "lr": 6.290274899833517e-05, "epoch": 1.2506606266515665, "percentage": 41.69, "elapsed_time": "20:26:49", "remaining_time": "1 day, 4:35:46", "throughput": 9501.16, "total_tokens": 699371792}
139
+ {"current_steps": 2919, "total_steps": 6951, "loss": 0.2095, "lr": 6.244368716661713e-05, "epoch": 1.2597206493016233, "percentage": 41.99, "elapsed_time": "20:35:40", "remaining_time": "1 day, 4:26:49", "throughput": 9501.0, "total_tokens": 704404624}
140
+ {"current_steps": 2940, "total_steps": 6951, "loss": 0.2083, "lr": 6.198350437627632e-05, "epoch": 1.2687806719516799, "percentage": 42.3, "elapsed_time": "20:44:16", "remaining_time": "1 day, 4:17:33", "throughput": 9502.81, "total_tokens": 709451392}
141
+ {"current_steps": 2961, "total_steps": 6951, "loss": 0.2088, "lr": 6.152224208173533e-05, "epoch": 1.2778406946017364, "percentage": 42.6, "elapsed_time": "20:52:56", "remaining_time": "1 day, 4:08:22", "throughput": 9504.07, "total_tokens": 714486848}
142
+ {"current_steps": 2982, "total_steps": 6951, "loss": 0.2118, "lr": 6.10599418346613e-05, "epoch": 1.2869007172517932, "percentage": 42.9, "elapsed_time": "21:01:51", "remaining_time": "1 day, 3:59:30", "throughput": 9503.94, "total_tokens": 719556448}
143
+ {"current_steps": 3003, "total_steps": 6951, "loss": 0.2058, "lr": 6.059664528022266e-05, "epoch": 1.2959607399018498, "percentage": 43.2, "elapsed_time": "21:10:38", "remaining_time": "1 day, 3:50:29", "throughput": 9504.75, "total_tokens": 724625472}
144
+ {"current_steps": 3024, "total_steps": 6951, "loss": 0.2065, "lr": 6.0132394153337755e-05, "epoch": 1.3050207625519064, "percentage": 43.5, "elapsed_time": "21:19:41", "remaining_time": "1 day, 3:41:49", "throughput": 9504.8, "total_tokens": 729794320}
145
+ {"current_steps": 3045, "total_steps": 6951, "loss": 0.207, "lr": 5.9667230274915174e-05, "epoch": 1.3140807852019631, "percentage": 43.81, "elapsed_time": "21:28:27", "remaining_time": "1 day, 3:32:47", "throughput": 9504.25, "total_tokens": 734753392}
146
+ {"current_steps": 3066, "total_steps": 6951, "loss": 0.2049, "lr": 5.920119554808651e-05, "epoch": 1.3231408078520197, "percentage": 44.11, "elapsed_time": "21:37:32", "remaining_time": "1 day, 3:24:08", "throughput": 9502.94, "total_tokens": 739827088}
147
+ {"current_steps": 3087, "total_steps": 6951, "loss": 0.208, "lr": 5.873433195443152e-05, "epoch": 1.3322008305020763, "percentage": 44.41, "elapsed_time": "21:46:47", "remaining_time": "1 day, 3:15:42", "throughput": 9499.75, "total_tokens": 744847184}
148
+ {"current_steps": 3108, "total_steps": 6951, "loss": 0.2047, "lr": 5.82666815501964e-05, "epoch": 1.3412608531521328, "percentage": 44.71, "elapsed_time": "21:55:35", "remaining_time": "1 day, 3:06:42", "throughput": 9499.82, "total_tokens": 749874880}
149
+ {"current_steps": 3129, "total_steps": 6951, "loss": 0.2022, "lr": 5.779828646250521e-05, "epoch": 1.3503208758021894, "percentage": 45.02, "elapsed_time": "22:04:30", "remaining_time": "1 day, 2:57:51", "throughput": 9498.47, "total_tokens": 754848400}
150
+ {"current_steps": 3150, "total_steps": 6951, "loss": 0.2073, "lr": 5.7329188885565e-05, "epoch": 1.3593808984522462, "percentage": 45.32, "elapsed_time": "22:14:01", "remaining_time": "1 day, 2:49:43", "throughput": 9494.01, "total_tokens": 759913728}
151
+ {"current_steps": 3171, "total_steps": 6951, "loss": 0.2056, "lr": 5.6859431076864755e-05, "epoch": 1.3684409211023028, "percentage": 45.62, "elapsed_time": "22:23:11", "remaining_time": "1 day, 2:41:09", "throughput": 9492.45, "total_tokens": 765009632}
152
+ {"current_steps": 3192, "total_steps": 6951, "loss": 0.2056, "lr": 5.6389055353368826e-05, "epoch": 1.3775009437523593, "percentage": 45.92, "elapsed_time": "22:31:39", "remaining_time": "1 day, 2:31:44", "throughput": 9494.77, "total_tokens": 770016704}
153
+ {"current_steps": 3213, "total_steps": 6951, "loss": 0.2037, "lr": 5.591810408770493e-05, "epoch": 1.386560966402416, "percentage": 46.22, "elapsed_time": "22:40:44", "remaining_time": "1 day, 2:23:04", "throughput": 9494.81, "total_tokens": 775197264}
154
+ {"current_steps": 3234, "total_steps": 6951, "loss": 0.2042, "lr": 5.544661970434696e-05, "epoch": 1.3956209890524727, "percentage": 46.53, "elapsed_time": "22:49:16", "remaining_time": "1 day, 2:13:46", "throughput": 9496.67, "total_tokens": 780209328}
155
+ {"current_steps": 3255, "total_steps": 6951, "loss": 0.2011, "lr": 5.497464467579351e-05, "epoch": 1.4046810117025292, "percentage": 46.83, "elapsed_time": "22:58:20", "remaining_time": "1 day, 2:05:05", "throughput": 9496.92, "total_tokens": 785402112}
156
+ {"current_steps": 3276, "total_steps": 6951, "loss": 0.2015, "lr": 5.450222151874166e-05, "epoch": 1.4137410343525858, "percentage": 47.13, "elapsed_time": "23:07:23", "remaining_time": "1 day, 1:56:22", "throughput": 9495.35, "total_tokens": 790429216}
157
+ {"current_steps": 3297, "total_steps": 6951, "loss": 0.2005, "lr": 5.402939279025705e-05, "epoch": 1.4228010570026426, "percentage": 47.43, "elapsed_time": "23:16:41", "remaining_time": "1 day, 1:47:56", "throughput": 9493.13, "total_tokens": 795543264}
158
+ {"current_steps": 3318, "total_steps": 6951, "loss": 0.2052, "lr": 5.355620108394018e-05, "epoch": 1.4318610796526992, "percentage": 47.73, "elapsed_time": "23:25:21", "remaining_time": "1 day, 1:38:46", "throughput": 9493.86, "total_tokens": 800533200}
159
+ {"current_steps": 3339, "total_steps": 6951, "loss": 0.2042, "lr": 5.308268902608958e-05, "epoch": 1.4409211023027557, "percentage": 48.04, "elapsed_time": "23:33:57", "remaining_time": "1 day, 1:29:34", "throughput": 9495.07, "total_tokens": 805542720}
160
+ {"current_steps": 3360, "total_steps": 6951, "loss": 0.1984, "lr": 5.2608899271861765e-05, "epoch": 1.4499811249528123, "percentage": 48.34, "elapsed_time": "23:42:55", "remaining_time": "1 day, 1:20:44", "throughput": 9493.99, "total_tokens": 810549376}
161
+ {"current_steps": 3381, "total_steps": 6951, "loss": 0.2038, "lr": 5.213487450142892e-05, "epoch": 1.459041147602869, "percentage": 48.64, "elapsed_time": "23:52:03", "remaining_time": "1 day, 1:12:06", "throughput": 9492.2, "total_tokens": 815599232}
162
+ {"current_steps": 3402, "total_steps": 6951, "loss": 0.2012, "lr": 5.166065741613402e-05, "epoch": 1.4681011702529256, "percentage": 48.94, "elapsed_time": "1 day, 0:01:00", "remaining_time": "1 day, 1:03:16", "throughput": 9492.22, "total_tokens": 820700608}
163
+ {"current_steps": 3423, "total_steps": 6951, "loss": 0.1987, "lr": 5.118629073464424e-05, "epoch": 1.4771611929029822, "percentage": 49.24, "elapsed_time": "1 day, 0:09:40", "remaining_time": "1 day, 0:54:08", "throughput": 9492.76, "total_tokens": 825686176}
164
+ {"current_steps": 3444, "total_steps": 6951, "loss": 0.1986, "lr": 5.071181718910283e-05, "epoch": 1.486221215553039, "percentage": 49.55, "elapsed_time": "1 day, 0:18:43", "remaining_time": "1 day, 0:45:24", "throughput": 9491.54, "total_tokens": 830730000}
165
+ {"current_steps": 3465, "total_steps": 6951, "loss": 0.1987, "lr": 5.023727952127954e-05, "epoch": 1.4952812382030956, "percentage": 49.85, "elapsed_time": "1 day, 0:27:32", "remaining_time": "1 day, 0:36:26", "throughput": 9491.31, "total_tokens": 835738032}
166
+ {"current_steps": 3486, "total_steps": 6951, "loss": 0.1952, "lr": 4.976272047872046e-05, "epoch": 1.5043412608531521, "percentage": 50.15, "elapsed_time": "1 day, 0:36:07", "remaining_time": "1 day, 0:27:14", "throughput": 9493.38, "total_tokens": 840806528}
167
+ {"current_steps": 3507, "total_steps": 6951, "loss": 0.1957, "lr": 4.9288182810897184e-05, "epoch": 1.513401283503209, "percentage": 50.45, "elapsed_time": "1 day, 0:44:53", "remaining_time": "1 day, 0:18:12", "throughput": 9494.32, "total_tokens": 845877808}
168
+ {"current_steps": 3528, "total_steps": 6951, "loss": 0.1957, "lr": 4.8813709265355766e-05, "epoch": 1.5224613061532652, "percentage": 50.76, "elapsed_time": "1 day, 0:53:46", "remaining_time": "1 day, 0:09:18", "throughput": 9495.01, "total_tokens": 851002432}
169
+ {"current_steps": 3549, "total_steps": 6951, "loss": 0.197, "lr": 4.8339342583866005e-05, "epoch": 1.531521328803322, "percentage": 51.06, "elapsed_time": "1 day, 1:02:40", "remaining_time": "1 day, 0:00:26", "throughput": 9494.56, "total_tokens": 856037440}
170
+ {"current_steps": 3570, "total_steps": 6951, "loss": 0.1957, "lr": 4.7865125498571086e-05, "epoch": 1.5405813514533786, "percentage": 51.36, "elapsed_time": "1 day, 1:11:11", "remaining_time": "23:51:11", "throughput": 9495.47, "total_tokens": 860972624}
171
+ {"current_steps": 3591, "total_steps": 6951, "loss": 0.1926, "lr": 4.739110072813823e-05, "epoch": 1.5496413741034352, "percentage": 51.66, "elapsed_time": "1 day, 1:20:00", "remaining_time": "23:42:13", "throughput": 9496.47, "total_tokens": 866078128}
172
+ {"current_steps": 3612, "total_steps": 6951, "loss": 0.1934, "lr": 4.6917310973910425e-05, "epoch": 1.558701396753492, "percentage": 51.96, "elapsed_time": "1 day, 1:29:07", "remaining_time": "23:33:32", "throughput": 9496.66, "total_tokens": 871290720}
173
+ {"current_steps": 3633, "total_steps": 6951, "loss": 0.1961, "lr": 4.6443798916059836e-05, "epoch": 1.5677614194035485, "percentage": 52.27, "elapsed_time": "1 day, 1:38:01", "remaining_time": "23:24:40", "throughput": 9496.52, "total_tokens": 876353920}
174
+ {"current_steps": 3654, "total_steps": 6951, "loss": 0.1902, "lr": 4.597060720974298e-05, "epoch": 1.576821442053605, "percentage": 52.57, "elapsed_time": "1 day, 1:47:05", "remaining_time": "23:15:56", "throughput": 9496.01, "total_tokens": 881469536}
175
+ {"current_steps": 3675, "total_steps": 6951, "loss": 0.1971, "lr": 4.549777848125833e-05, "epoch": 1.5858814647036619, "percentage": 52.87, "elapsed_time": "1 day, 1:56:04", "remaining_time": "23:07:07", "throughput": 9495.37, "total_tokens": 886532048}
176
+ {"current_steps": 3696, "total_steps": 6951, "loss": 0.1952, "lr": 4.50253553242065e-05, "epoch": 1.5949414873537184, "percentage": 53.17, "elapsed_time": "1 day, 2:04:53", "remaining_time": "22:58:10", "throughput": 9495.5, "total_tokens": 891565152}
177
+ {"current_steps": 3717, "total_steps": 6951, "loss": 0.1908, "lr": 4.4553380295653053e-05, "epoch": 1.604001510003775, "percentage": 53.47, "elapsed_time": "1 day, 2:13:32", "remaining_time": "22:49:03", "throughput": 9496.69, "total_tokens": 896603568}
178
+ {"current_steps": 3738, "total_steps": 6951, "loss": 0.1945, "lr": 4.40818959122951e-05, "epoch": 1.6130615326538318, "percentage": 53.78, "elapsed_time": "1 day, 2:22:34", "remaining_time": "22:40:17", "throughput": 9496.2, "total_tokens": 901703264}
179
+ {"current_steps": 3759, "total_steps": 6951, "loss": 0.1911, "lr": 4.361094464663118e-05, "epoch": 1.6221215553038881, "percentage": 54.08, "elapsed_time": "1 day, 2:31:30", "remaining_time": "22:31:27", "throughput": 9496.7, "total_tokens": 906846256}
180
+ {"current_steps": 3780, "total_steps": 6951, "loss": 0.193, "lr": 4.3140568923135264e-05, "epoch": 1.631181577953945, "percentage": 54.38, "elapsed_time": "1 day, 2:40:27", "remaining_time": "22:22:36", "throughput": 9496.86, "total_tokens": 911964272}
181
+ {"current_steps": 3801, "total_steps": 6951, "loss": 0.1898, "lr": 4.267081111443501e-05, "epoch": 1.6402416006040015, "percentage": 54.68, "elapsed_time": "1 day, 2:49:16", "remaining_time": "22:13:39", "throughput": 9498.11, "total_tokens": 917101840}
182
+ {"current_steps": 3822, "total_steps": 6951, "loss": 0.1852, "lr": 4.22017135374948e-05, "epoch": 1.649301623254058, "percentage": 54.98, "elapsed_time": "1 day, 2:57:51", "remaining_time": "22:04:30", "throughput": 9500.27, "total_tokens": 922205664}
183
+ {"current_steps": 3843, "total_steps": 6951, "loss": 0.1863, "lr": 4.1733318449803624e-05, "epoch": 1.6583616459041148, "percentage": 55.29, "elapsed_time": "1 day, 3:06:51", "remaining_time": "21:55:42", "throughput": 9499.96, "total_tokens": 927302560}
184
+ {"current_steps": 3864, "total_steps": 6951, "loss": 0.1882, "lr": 4.1265668045568495e-05, "epoch": 1.6674216685541714, "percentage": 55.59, "elapsed_time": "1 day, 3:15:50", "remaining_time": "21:46:53", "throughput": 9498.96, "total_tokens": 932325424}
185
+ {"current_steps": 3885, "total_steps": 6951, "loss": 0.1893, "lr": 4.079880445191351e-05, "epoch": 1.676481691204228, "percentage": 55.89, "elapsed_time": "1 day, 3:24:37", "remaining_time": "21:37:54", "throughput": 9500.06, "total_tokens": 937438464}
186
+ {"current_steps": 3906, "total_steps": 6951, "loss": 0.1885, "lr": 4.033276972508484e-05, "epoch": 1.6855417138542848, "percentage": 56.19, "elapsed_time": "1 day, 3:33:46", "remaining_time": "21:29:13", "throughput": 9499.68, "total_tokens": 942617840}
187
+ {"current_steps": 3927, "total_steps": 6951, "loss": 0.1883, "lr": 3.9867605846662256e-05, "epoch": 1.6946017365043413, "percentage": 56.5, "elapsed_time": "1 day, 3:42:59", "remaining_time": "21:20:35", "throughput": 9499.21, "total_tokens": 947823200}
188
+ {"current_steps": 3948, "total_steps": 6951, "loss": 0.1871, "lr": 3.940335471977734e-05, "epoch": 1.7036617591543979, "percentage": 56.8, "elapsed_time": "1 day, 3:51:52", "remaining_time": "21:11:41", "throughput": 9499.01, "total_tokens": 952872784}
189
+ {"current_steps": 3969, "total_steps": 6951, "loss": 0.1853, "lr": 3.89400581653387e-05, "epoch": 1.7127217818044547, "percentage": 57.1, "elapsed_time": "1 day, 4:00:45", "remaining_time": "21:02:47", "throughput": 9498.79, "total_tokens": 957908608}
190
+ {"current_steps": 3990, "total_steps": 6951, "loss": 0.1862, "lr": 3.847775791826468e-05, "epoch": 1.721781804454511, "percentage": 57.4, "elapsed_time": "1 day, 4:09:30", "remaining_time": "20:53:47", "throughput": 9499.53, "total_tokens": 962972208}
191
+ {"current_steps": 4011, "total_steps": 6951, "loss": 0.1913, "lr": 3.801649562372371e-05, "epoch": 1.7308418271045678, "percentage": 57.7, "elapsed_time": "1 day, 4:18:34", "remaining_time": "20:45:01", "throughput": 9498.33, "total_tokens": 968020256}
192
+ {"current_steps": 4032, "total_steps": 6951, "loss": 0.1908, "lr": 3.755631283338287e-05, "epoch": 1.7399018497546244, "percentage": 58.01, "elapsed_time": "1 day, 4:27:34", "remaining_time": "20:36:12", "throughput": 9498.07, "total_tokens": 973116912}
193
+ {"current_steps": 4053, "total_steps": 6951, "loss": 0.1839, "lr": 3.709725100166482e-05, "epoch": 1.748961872404681, "percentage": 58.31, "elapsed_time": "1 day, 4:36:56", "remaining_time": "20:27:39", "throughput": 9496.29, "total_tokens": 978276224}
194
+ {"current_steps": 4074, "total_steps": 6951, "loss": 0.1869, "lr": 3.663935148201341e-05, "epoch": 1.7580218950547377, "percentage": 58.61, "elapsed_time": "1 day, 4:46:12", "remaining_time": "20:19:01", "throughput": 9495.72, "total_tokens": 983499184}
195
+ {"current_steps": 4095, "total_steps": 6951, "loss": 0.1884, "lr": 3.618265552316849e-05, "epoch": 1.7670819177047943, "percentage": 58.91, "elapsed_time": "1 day, 4:55:11", "remaining_time": "20:10:11", "throughput": 9494.7, "total_tokens": 988511216}
196
+ {"current_steps": 4116, "total_steps": 6951, "loss": 0.1863, "lr": 3.572720426545017e-05, "epoch": 1.7761419403548508, "percentage": 59.21, "elapsed_time": "1 day, 5:04:24", "remaining_time": "20:01:30", "throughput": 9492.68, "total_tokens": 993542272}
197
+ {"current_steps": 4137, "total_steps": 6951, "loss": 0.1884, "lr": 3.5273038737052675e-05, "epoch": 1.7852019630049076, "percentage": 59.52, "elapsed_time": "1 day, 5:13:02", "remaining_time": "19:52:25", "throughput": 9493.64, "total_tokens": 998561584}
198
+ {"current_steps": 4158, "total_steps": 6951, "loss": 0.1815, "lr": 3.482019985034861e-05, "epoch": 1.794261985654964, "percentage": 59.82, "elapsed_time": "1 day, 5:21:39", "remaining_time": "19:43:19", "throughput": 9494.28, "total_tokens": 1003535696}
199
+ {"current_steps": 4179, "total_steps": 6951, "loss": 0.1798, "lr": 3.43687283982033e-05, "epoch": 1.8033220083050208, "percentage": 60.12, "elapsed_time": "1 day, 5:30:37", "remaining_time": "19:34:29", "throughput": 9493.88, "total_tokens": 1008610432}
200
+ {"current_steps": 4200, "total_steps": 6951, "loss": 0.1797, "lr": 3.391866505030009e-05, "epoch": 1.8123820309550775, "percentage": 60.42, "elapsed_time": "1 day, 5:39:08", "remaining_time": "19:25:20", "throughput": 9495.04, "total_tokens": 1013577840}
201
+ {"current_steps": 4221, "total_steps": 6951, "loss": 0.1773, "lr": 3.347005034947681e-05, "epoch": 1.821442053605134, "percentage": 60.73, "elapsed_time": "1 day, 5:47:48", "remaining_time": "19:16:17", "throughput": 9495.33, "total_tokens": 1018549888}
202
+ {"current_steps": 4242, "total_steps": 6951, "loss": 0.1828, "lr": 3.3022924708073524e-05, "epoch": 1.8305020762551907, "percentage": 61.03, "elapsed_time": "1 day, 5:56:40", "remaining_time": "19:07:23", "throughput": 9494.34, "total_tokens": 1023498368}
203
+ {"current_steps": 4263, "total_steps": 6951, "loss": 0.18, "lr": 3.257732840429206e-05, "epoch": 1.8395620989052472, "percentage": 61.33, "elapsed_time": "1 day, 6:05:35", "remaining_time": "18:58:30", "throughput": 9494.06, "total_tokens": 1028542992}
204
+ {"current_steps": 4284, "total_steps": 6951, "loss": 0.1825, "lr": 3.2133301578567646e-05, "epoch": 1.8486221215553038, "percentage": 61.63, "elapsed_time": "1 day, 6:14:31", "remaining_time": "18:49:37", "throughput": 9493.51, "total_tokens": 1033574288}
205
+ {"current_steps": 4305, "total_steps": 6951, "loss": 0.1776, "lr": 3.169088422995304e-05, "epoch": 1.8576821442053606, "percentage": 61.93, "elapsed_time": "1 day, 6:23:27", "remaining_time": "18:40:45", "throughput": 9493.01, "total_tokens": 1038606208}
206
+ {"current_steps": 4326, "total_steps": 6951, "loss": 0.1768, "lr": 3.125011621251516e-05, "epoch": 1.8667421668554172, "percentage": 62.24, "elapsed_time": "1 day, 6:32:31", "remaining_time": "18:31:57", "throughput": 9493.04, "total_tokens": 1043770704}
207
+ {"current_steps": 4347, "total_steps": 6951, "loss": 0.1778, "lr": 3.081103723174515e-05, "epoch": 1.8758021895054737, "percentage": 62.54, "elapsed_time": "1 day, 6:41:34", "remaining_time": "18:23:09", "throughput": 9492.18, "total_tokens": 1048829664}
208
+ {"current_steps": 4368, "total_steps": 6951, "loss": 0.1788, "lr": 3.0373686840981397e-05, "epoch": 1.8848622121555305, "percentage": 62.84, "elapsed_time": "1 day, 6:50:45", "remaining_time": "18:14:26", "throughput": 9491.15, "total_tokens": 1053950224}
209
+ {"current_steps": 4389, "total_steps": 6951, "loss": 0.176, "lr": 2.9938104437846572e-05, "epoch": 1.8939222348055869, "percentage": 63.14, "elapsed_time": "1 day, 6:59:56", "remaining_time": "18:05:42", "throughput": 9490.66, "total_tokens": 1059119888}
210
+ {"current_steps": 4410, "total_steps": 6951, "loss": 0.1783, "lr": 2.950432926069857e-05, "epoch": 1.9029822574556436, "percentage": 63.44, "elapsed_time": "1 day, 7:08:56", "remaining_time": "17:56:52", "throughput": 9490.01, "total_tokens": 1064177088}
211
+ {"current_steps": 4431, "total_steps": 6951, "loss": 0.178, "lr": 2.9072400385095865e-05, "epoch": 1.9120422801057002, "percentage": 63.75, "elapsed_time": "1 day, 7:18:02", "remaining_time": "17:48:05", "throughput": 9488.58, "total_tokens": 1069200928}
212
+ {"current_steps": 4452, "total_steps": 6951, "loss": 0.1759, "lr": 2.864235672027741e-05, "epoch": 1.9211023027557568, "percentage": 64.05, "elapsed_time": "1 day, 7:27:05", "remaining_time": "17:39:15", "throughput": 9488.29, "total_tokens": 1074313840}
213
+ {"current_steps": 4473, "total_steps": 6951, "loss": 0.1769, "lr": 2.8214237005657627e-05, "epoch": 1.9301623254058136, "percentage": 64.35, "elapsed_time": "1 day, 7:36:04", "remaining_time": "17:30:24", "throughput": 9487.56, "total_tokens": 1079348080}
214
+ {"current_steps": 4494, "total_steps": 6951, "loss": 0.1761, "lr": 2.7788079807336692e-05, "epoch": 1.9392223480558701, "percentage": 64.65, "elapsed_time": "1 day, 7:44:52", "remaining_time": "17:21:26", "throughput": 9488.08, "total_tokens": 1084415072}
215
+ {"current_steps": 4515, "total_steps": 6951, "loss": 0.1762, "lr": 2.7363923514626367e-05, "epoch": 1.9482823707059267, "percentage": 64.95, "elapsed_time": "1 day, 7:53:50", "remaining_time": "17:12:35", "throughput": 9488.56, "total_tokens": 1089576528}
216
+ {"current_steps": 4536, "total_steps": 6951, "loss": 0.1715, "lr": 2.6941806336591808e-05, "epoch": 1.9573423933559835, "percentage": 65.26, "elapsed_time": "1 day, 8:02:49", "remaining_time": "17:03:43", "throughput": 9489.02, "total_tokens": 1094741664}
217
+ {"current_steps": 4557, "total_steps": 6951, "loss": 0.1728, "lr": 2.6521766298609584e-05, "epoch": 1.96640241600604, "percentage": 65.56, "elapsed_time": "1 day, 8:11:24", "remaining_time": "16:54:39", "throughput": 9489.67, "total_tokens": 1099708896}
218
+ {"current_steps": 4578, "total_steps": 6951, "loss": 0.175, "lr": 2.610384123894229e-05, "epoch": 1.9754624386560966, "percentage": 65.86, "elapsed_time": "1 day, 8:20:35", "remaining_time": "16:45:54", "throughput": 9488.69, "total_tokens": 1104824512}
219
+ {"current_steps": 4599, "total_steps": 6951, "loss": 0.1736, "lr": 2.568806880532991e-05, "epoch": 1.9845224613061534, "percentage": 66.16, "elapsed_time": "1 day, 8:29:26", "remaining_time": "16:36:58", "throughput": 9489.47, "total_tokens": 1109954160}
220
+ {"current_steps": 4620, "total_steps": 6951, "loss": 0.1704, "lr": 2.5274486451598565e-05, "epoch": 1.9935824839562097, "percentage": 66.47, "elapsed_time": "1 day, 8:38:34", "remaining_time": "16:28:11", "throughput": 9489.29, "total_tokens": 1115130992}
221
+ {"current_steps": 4641, "total_steps": 6951, "loss": 0.1548, "lr": 2.4863131434286342e-05, "epoch": 2.003020007550019, "percentage": 66.77, "elapsed_time": "1 day, 8:47:29", "remaining_time": "16:19:17", "throughput": 9490.07, "total_tokens": 1120294784}
222
+ {"current_steps": 4662, "total_steps": 6951, "loss": 0.1188, "lr": 2.4454040809287342e-05, "epoch": 2.0120800302000754, "percentage": 67.07, "elapsed_time": "1 day, 8:56:29", "remaining_time": "16:10:26", "throughput": 9489.7, "total_tokens": 1125375728}
223
+ {"current_steps": 4683, "total_steps": 6951, "loss": 0.1176, "lr": 2.4047251428513485e-05, "epoch": 2.021140052850132, "percentage": 67.37, "elapsed_time": "1 day, 9:05:40", "remaining_time": "16:01:40", "throughput": 9490.21, "total_tokens": 1130663488}
224
+ {"current_steps": 4704, "total_steps": 6951, "loss": 0.1166, "lr": 2.364279993657487e-05, "epoch": 2.0302000755001886, "percentage": 67.67, "elapsed_time": "1 day, 9:14:37", "remaining_time": "15:52:47", "throughput": 9489.93, "total_tokens": 1135729856}
225
+ {"current_steps": 4725, "total_steps": 6951, "loss": 0.1129, "lr": 2.3240722767478657e-05, "epoch": 2.0392600981502453, "percentage": 67.98, "elapsed_time": "1 day, 9:23:32", "remaining_time": "15:43:53", "throughput": 9489.27, "total_tokens": 1140728768}
226
+ {"current_steps": 4746, "total_steps": 6951, "loss": 0.1122, "lr": 2.2841056141347038e-05, "epoch": 2.048320120800302, "percentage": 68.28, "elapsed_time": "1 day, 9:32:17", "remaining_time": "15:34:54", "throughput": 9490.08, "total_tokens": 1145810672}
227
+ {"current_steps": 4767, "total_steps": 6951, "loss": 0.1145, "lr": 2.2443836061154415e-05, "epoch": 2.0573801434503585, "percentage": 68.58, "elapsed_time": "1 day, 9:41:09", "remaining_time": "15:25:59", "throughput": 9490.09, "total_tokens": 1150862064}
228
+ {"current_steps": 4788, "total_steps": 6951, "loss": 0.1153, "lr": 2.2049098309484195e-05, "epoch": 2.0664401661004153, "percentage": 68.88, "elapsed_time": "1 day, 9:50:04", "remaining_time": "15:17:05", "throughput": 9490.25, "total_tokens": 1155954544}
229
+ {"current_steps": 4809, "total_steps": 6951, "loss": 0.1152, "lr": 2.1656878445305447e-05, "epoch": 2.075500188750472, "percentage": 69.18, "elapsed_time": "1 day, 9:59:12", "remaining_time": "15:08:17", "throughput": 9489.42, "total_tokens": 1161054256}
230
+ {"current_steps": 4830, "total_steps": 6951, "loss": 0.1148, "lr": 2.1267211800769528e-05, "epoch": 2.0845602114005284, "percentage": 69.49, "elapsed_time": "1 day, 10:07:55", "remaining_time": "14:59:18", "throughput": 9489.77, "total_tokens": 1166056688}
231
+ {"current_steps": 4851, "total_steps": 6951, "loss": 0.1119, "lr": 2.088013347802738e-05, "epoch": 2.093620234050585, "percentage": 69.79, "elapsed_time": "1 day, 10:17:16", "remaining_time": "14:50:35", "throughput": 9488.55, "total_tokens": 1171231104}
232
+ {"current_steps": 4872, "total_steps": 6951, "loss": 0.1101, "lr": 2.0495678346067414e-05, "epoch": 2.102680256700642, "percentage": 70.09, "elapsed_time": "1 day, 10:26:21", "remaining_time": "14:41:45", "throughput": 9487.59, "total_tokens": 1176284976}
233
+ {"current_steps": 4893, "total_steps": 6951, "loss": 0.1139, "lr": 2.011388103757442e-05, "epoch": 2.1117402793506983, "percentage": 70.39, "elapsed_time": "1 day, 10:35:22", "remaining_time": "14:32:54", "throughput": 9487.45, "total_tokens": 1181400944}
234
+ {"current_steps": 4914, "total_steps": 6951, "loss": 0.1116, "lr": 1.973477594580977e-05, "epoch": 2.120800302000755, "percentage": 70.69, "elapsed_time": "1 day, 10:43:54", "remaining_time": "14:23:50", "throughput": 9489.64, "total_tokens": 1186527776}
235
+ {"current_steps": 4935, "total_steps": 6951, "loss": 0.112, "lr": 1.9358397221513176e-05, "epoch": 2.1298603246508114, "percentage": 71.0, "elapsed_time": "1 day, 10:53:02", "remaining_time": "14:15:01", "throughput": 9489.09, "total_tokens": 1191661680}
236
+ {"current_steps": 4956, "total_steps": 6951, "loss": 0.1106, "lr": 1.8984778769826316e-05, "epoch": 2.138920347300868, "percentage": 71.3, "elapsed_time": "1 day, 11:02:03", "remaining_time": "14:06:10", "throughput": 9488.78, "total_tokens": 1196759648}
237
+ {"current_steps": 4977, "total_steps": 6951, "loss": 0.1124, "lr": 1.8613954247238586e-05, "epoch": 2.147980369950925, "percentage": 71.6, "elapsed_time": "1 day, 11:11:03", "remaining_time": "13:57:17", "throughput": 9488.59, "total_tokens": 1201857104}
238
+ {"current_steps": 4998, "total_steps": 6951, "loss": 0.1136, "lr": 1.82459570585552e-05, "epoch": 2.1570403926009813, "percentage": 71.9, "elapsed_time": "1 day, 11:19:54", "remaining_time": "13:48:22", "throughput": 9488.83, "total_tokens": 1206927520}
239
+ {"current_steps": 5000, "total_steps": 6951, "eval_loss": 0.19485081732273102, "epoch": 2.157903251900987, "percentage": 71.93, "elapsed_time": "1 day, 11:29:30", "remaining_time": "13:50:56", "throughput": 9449.62, "total_tokens": 1207385424}
240
+ {"current_steps": 5019, "total_steps": 6951, "loss": 0.1102, "lr": 1.7880820353888056e-05, "epoch": 2.166100415251038, "percentage": 72.21, "elapsed_time": "1 day, 11:49:54", "remaining_time": "13:47:34", "throughput": 9394.81, "total_tokens": 1211875824}
241
+ {"current_steps": 5040, "total_steps": 6951, "loss": 0.113, "lr": 1.751857702566944e-05, "epoch": 2.175160437901095, "percentage": 72.51, "elapsed_time": "1 day, 11:58:57", "remaining_time": "13:38:36", "throughput": 9394.59, "total_tokens": 1216954688}
242
+ {"current_steps": 5061, "total_steps": 6951, "loss": 0.1104, "lr": 1.7159259705689e-05, "epoch": 2.1842204605511513, "percentage": 72.81, "elapsed_time": "1 day, 12:07:48", "remaining_time": "13:29:33", "throughput": 9394.84, "total_tokens": 1221976560}
243
+ {"current_steps": 5082, "total_steps": 6951, "loss": 0.1152, "lr": 1.6802900762154267e-05, "epoch": 2.193280483201208, "percentage": 73.11, "elapsed_time": "1 day, 12:16:35", "remaining_time": "13:20:29", "throughput": 9395.21, "total_tokens": 1226975776}
244
+ {"current_steps": 5103, "total_steps": 6951, "loss": 0.1097, "lr": 1.644953229677474e-05, "epoch": 2.2023405058512644, "percentage": 73.41, "elapsed_time": "1 day, 12:25:12", "remaining_time": "13:11:21", "throughput": 9396.5, "total_tokens": 1231998784}
245
+ {"current_steps": 5124, "total_steps": 6951, "loss": 0.1111, "lr": 1.609918614187009e-05, "epoch": 2.211400528501321, "percentage": 73.72, "elapsed_time": "1 day, 12:34:03", "remaining_time": "13:02:18", "throughput": 9396.54, "total_tokens": 1236990864}
246
+ {"current_steps": 5145, "total_steps": 6951, "loss": 0.1104, "lr": 1.575189385750271e-05, "epoch": 2.220460551151378, "percentage": 74.02, "elapsed_time": "1 day, 12:42:57", "remaining_time": "12:53:17", "throughput": 9396.81, "total_tokens": 1242051280}
247
+ {"current_steps": 5166, "total_steps": 6951, "loss": 0.1075, "lr": 1.540768672863468e-05, "epoch": 2.2295205738014343, "percentage": 74.32, "elapsed_time": "1 day, 12:51:51", "remaining_time": "12:44:15", "throughput": 9397.25, "total_tokens": 1247127040}
248
+ {"current_steps": 5187, "total_steps": 6951, "loss": 0.1093, "lr": 1.5066595762309477e-05, "epoch": 2.238580596451491, "percentage": 74.62, "elapsed_time": "1 day, 13:00:47", "remaining_time": "12:35:14", "throughput": 9397.23, "total_tokens": 1252158672}
249
+ {"current_steps": 5208, "total_steps": 6951, "loss": 0.1126, "lr": 1.4728651684858834e-05, "epoch": 2.247640619101548, "percentage": 74.92, "elapsed_time": "1 day, 13:09:50", "remaining_time": "12:26:16", "throughput": 9397.67, "total_tokens": 1257321184}
250
+ {"current_steps": 5229, "total_steps": 6951, "loss": 0.1064, "lr": 1.4393884939134833e-05, "epoch": 2.2567006417516042, "percentage": 75.23, "elapsed_time": "1 day, 13:18:33", "remaining_time": "12:17:11", "throughput": 9398.27, "total_tokens": 1262315984}
251
+ {"current_steps": 5250, "total_steps": 6951, "loss": 0.1096, "lr": 1.4062325681767469e-05, "epoch": 2.265760664401661, "percentage": 75.53, "elapsed_time": "1 day, 13:27:25", "remaining_time": "12:08:10", "throughput": 9398.52, "total_tokens": 1267351616}
252
+ {"current_steps": 5271, "total_steps": 6951, "loss": 0.1089, "lr": 1.3734003780448218e-05, "epoch": 2.274820687051718, "percentage": 75.83, "elapsed_time": "1 day, 13:36:22", "remaining_time": "11:59:09", "throughput": 9398.21, "total_tokens": 1272350592}
253
+ {"current_steps": 5292, "total_steps": 6951, "loss": 0.1093, "lr": 1.340894881123932e-05, "epoch": 2.283880709701774, "percentage": 76.13, "elapsed_time": "1 day, 13:44:45", "remaining_time": "11:49:58", "throughput": 9399.94, "total_tokens": 1277314160}
254
+ {"current_steps": 5313, "total_steps": 6951, "loss": 0.1064, "lr": 1.308719005590957e-05, "epoch": 2.292940732351831, "percentage": 76.44, "elapsed_time": "1 day, 13:53:34", "remaining_time": "11:40:56", "throughput": 9400.36, "total_tokens": 1282348896}
255
+ {"current_steps": 5334, "total_steps": 6951, "loss": 0.1103, "lr": 1.276875649929654e-05, "epoch": 2.3020007550018873, "percentage": 76.74, "elapsed_time": "1 day, 14:02:35", "remaining_time": "11:31:58", "throughput": 9400.86, "total_tokens": 1287503120}
256
+ {"current_steps": 5355, "total_steps": 6951, "loss": 0.1077, "lr": 1.2453676826695532e-05, "epoch": 2.311060777651944, "percentage": 77.04, "elapsed_time": "1 day, 14:11:17", "remaining_time": "11:22:53", "throughput": 9401.43, "total_tokens": 1292488224}
257
+ {"current_steps": 5376, "total_steps": 6951, "loss": 0.1051, "lr": 1.2141979421275545e-05, "epoch": 2.320120800302001, "percentage": 77.34, "elapsed_time": "1 day, 14:20:08", "remaining_time": "11:13:52", "throughput": 9402.42, "total_tokens": 1297613792}
258
+ {"current_steps": 5397, "total_steps": 6951, "loss": 0.1063, "lr": 1.1833692361522459e-05, "epoch": 2.329180822952057, "percentage": 77.64, "elapsed_time": "1 day, 14:29:19", "remaining_time": "11:04:56", "throughput": 9402.19, "total_tokens": 1302765200}
259
+ {"current_steps": 5418, "total_steps": 6951, "loss": 0.1073, "lr": 1.1528843418709622e-05, "epoch": 2.338240845602114, "percentage": 77.95, "elapsed_time": "1 day, 14:38:06", "remaining_time": "10:55:53", "throughput": 9402.65, "total_tokens": 1307780896}
260
+ {"current_steps": 5439, "total_steps": 6951, "loss": 0.1076, "lr": 1.1227460054396177e-05, "epoch": 2.3473008682521708, "percentage": 78.25, "elapsed_time": "1 day, 14:47:09", "remaining_time": "10:46:55", "throughput": 9402.88, "total_tokens": 1312916864}
261
+ {"current_steps": 5460, "total_steps": 6951, "loss": 0.1049, "lr": 1.0929569417953278e-05, "epoch": 2.356360890902227, "percentage": 78.55, "elapsed_time": "1 day, 14:55:45", "remaining_time": "10:37:50", "throughput": 9403.97, "total_tokens": 1317924528}
262
+ {"current_steps": 5481, "total_steps": 6951, "loss": 0.1038, "lr": 1.0635198344118296e-05, "epoch": 2.365420913552284, "percentage": 78.85, "elapsed_time": "1 day, 15:04:24", "remaining_time": "10:28:46", "throughput": 9404.57, "total_tokens": 1322892896}
263
+ {"current_steps": 5502, "total_steps": 6951, "loss": 0.1049, "lr": 1.034437335057762e-05, "epoch": 2.3744809362023407, "percentage": 79.15, "elapsed_time": "1 day, 15:13:27", "remaining_time": "10:19:48", "throughput": 9404.62, "total_tokens": 1328000960}
264
+ {"current_steps": 5523, "total_steps": 6951, "loss": 0.1026, "lr": 1.005712063557776e-05, "epoch": 2.383540958852397, "percentage": 79.46, "elapsed_time": "1 day, 15:22:31", "remaining_time": "10:10:50", "throughput": 9404.53, "total_tokens": 1333104928}
265
+ {"current_steps": 5544, "total_steps": 6951, "loss": 0.1061, "lr": 9.773466075565457e-06, "epoch": 2.392600981502454, "percentage": 79.76, "elapsed_time": "1 day, 15:31:14", "remaining_time": "10:01:47", "throughput": 9405.0, "total_tokens": 1338094928}
266
+ {"current_steps": 5565, "total_steps": 6951, "loss": 0.1078, "lr": 9.493435222856556e-06, "epoch": 2.40166100415251, "percentage": 80.06, "elapsed_time": "1 day, 15:39:56", "remaining_time": "9:52:44", "throughput": 9405.66, "total_tokens": 1343094352}
267
+ {"current_steps": 5586, "total_steps": 6951, "loss": 0.1021, "lr": 9.21705330333426e-06, "epoch": 2.410721026802567, "percentage": 80.36, "elapsed_time": "1 day, 15:49:17", "remaining_time": "9:43:50", "throughput": 9404.52, "total_tokens": 1348209008}
268
+ {"current_steps": 5607, "total_steps": 6951, "loss": 0.105, "lr": 8.944345214176675e-06, "epoch": 2.4197810494526237, "percentage": 80.66, "elapsed_time": "1 day, 15:58:21", "remaining_time": "9:34:53", "throughput": 9404.23, "total_tokens": 1353281712}
269
+ {"current_steps": 5628, "total_steps": 6951, "loss": 0.1039, "lr": 8.675335521614036e-06, "epoch": 2.42884107210268, "percentage": 80.97, "elapsed_time": "1 day, 16:07:19", "remaining_time": "9:25:54", "throughput": 9404.1, "total_tokens": 1358325728}
270
+ {"current_steps": 5649, "total_steps": 6951, "loss": 0.1026, "lr": 8.410048458715763e-06, "epoch": 2.437901094752737, "percentage": 81.27, "elapsed_time": "1 day, 16:16:00", "remaining_time": "9:16:50", "throughput": 9404.46, "total_tokens": 1363274864}
271
+ {"current_steps": 5670, "total_steps": 6951, "loss": 0.1046, "lr": 8.148507923207377e-06, "epoch": 2.4469611174027937, "percentage": 81.57, "elapsed_time": "1 day, 16:24:54", "remaining_time": "9:07:50", "throughput": 9405.18, "total_tokens": 1368398176}
272
+ {"current_steps": 5691, "total_steps": 6951, "loss": 0.1062, "lr": 7.890737475317817e-06, "epoch": 2.45602114005285, "percentage": 81.87, "elapsed_time": "1 day, 16:33:40", "remaining_time": "8:58:49", "throughput": 9405.68, "total_tokens": 1373421664}
273
+ {"current_steps": 5712, "total_steps": 6951, "loss": 0.1005, "lr": 7.636760335657056e-06, "epoch": 2.465081162702907, "percentage": 82.18, "elapsed_time": "1 day, 16:42:05", "remaining_time": "8:49:43", "throughput": 9407.14, "total_tokens": 1378386688}
274
+ {"current_steps": 5733, "total_steps": 6951, "loss": 0.1008, "lr": 7.38659938312432e-06, "epoch": 2.4741411853529636, "percentage": 82.48, "elapsed_time": "1 day, 16:51:02", "remaining_time": "8:40:43", "throughput": 9407.69, "total_tokens": 1383515360}
275
+ {"current_steps": 5754, "total_steps": 6951, "loss": 0.1012, "lr": 7.140277152847103e-06, "epoch": 2.48320120800302, "percentage": 82.78, "elapsed_time": "1 day, 17:00:07", "remaining_time": "8:31:46", "throughput": 9407.74, "total_tokens": 1388651712}
276
+ {"current_steps": 5775, "total_steps": 6951, "loss": 0.1004, "lr": 6.89781583415115e-06, "epoch": 2.4922612306530767, "percentage": 83.08, "elapsed_time": "1 day, 17:08:58", "remaining_time": "8:22:46", "throughput": 9408.87, "total_tokens": 1393819168}
277
+ {"current_steps": 5796, "total_steps": 6951, "loss": 0.1058, "lr": 6.659237268561569e-06, "epoch": 2.501321253303133, "percentage": 83.38, "elapsed_time": "1 day, 17:18:05", "remaining_time": "8:13:49", "throughput": 9409.14, "total_tokens": 1399005008}
278
+ {"current_steps": 5817, "total_steps": 6951, "loss": 0.0996, "lr": 6.424562947835367e-06, "epoch": 2.51038127595319, "percentage": 83.69, "elapsed_time": "1 day, 17:26:42", "remaining_time": "8:04:46", "throughput": 9410.56, "total_tokens": 1404075040}
279
+ {"current_steps": 5838, "total_steps": 6951, "loss": 0.098, "lr": 6.193814012025278e-06, "epoch": 2.5194412986032466, "percentage": 83.99, "elapsed_time": "1 day, 17:35:31", "remaining_time": "7:55:45", "throughput": 9411.15, "total_tokens": 1409145760}
280
+ {"current_steps": 5859, "total_steps": 6951, "loss": 0.1053, "lr": 5.967011247575532e-06, "epoch": 2.5285013212533034, "percentage": 84.29, "elapsed_time": "1 day, 17:44:21", "remaining_time": "7:46:45", "throughput": 9411.73, "total_tokens": 1414225568}
281
+ {"current_steps": 5880, "total_steps": 6951, "loss": 0.1021, "lr": 5.744175085449338e-06, "epoch": 2.5375613439033597, "percentage": 84.59, "elapsed_time": "1 day, 17:53:13", "remaining_time": "7:37:45", "throughput": 9412.46, "total_tokens": 1419339216}
282
+ {"current_steps": 5901, "total_steps": 6951, "loss": 0.1003, "lr": 5.525325599288356e-06, "epoch": 2.5466213665534165, "percentage": 84.89, "elapsed_time": "1 day, 18:01:57", "remaining_time": "7:28:44", "throughput": 9413.49, "total_tokens": 1424423024}
283
+ {"current_steps": 5922, "total_steps": 6951, "loss": 0.1039, "lr": 5.310482503604497e-06, "epoch": 2.555681389203473, "percentage": 85.2, "elapsed_time": "1 day, 18:10:34", "remaining_time": "7:19:42", "throughput": 9413.93, "total_tokens": 1429360512}
284
+ {"current_steps": 5943, "total_steps": 6951, "loss": 0.1034, "lr": 5.09966515200393e-06, "epoch": 2.5647414118535297, "percentage": 85.5, "elapsed_time": "1 day, 18:19:20", "remaining_time": "7:10:42", "throughput": 9414.81, "total_tokens": 1434443216}
285
+ {"current_steps": 5964, "total_steps": 6951, "loss": 0.1025, "lr": 4.892892535443655e-06, "epoch": 2.5738014345035864, "percentage": 85.8, "elapsed_time": "1 day, 18:28:29", "remaining_time": "7:01:45", "throughput": 9415.33, "total_tokens": 1439693152}
286
+ {"current_steps": 5985, "total_steps": 6951, "loss": 0.1041, "lr": 4.690183280520777e-06, "epoch": 2.582861457153643, "percentage": 86.1, "elapsed_time": "1 day, 18:37:21", "remaining_time": "6:52:45", "throughput": 9415.61, "total_tokens": 1444742640}
287
+ {"current_steps": 6006, "total_steps": 6951, "loss": 0.1035, "lr": 4.491555647794609e-06, "epoch": 2.5919214798036996, "percentage": 86.4, "elapsed_time": "1 day, 18:46:26", "remaining_time": "6:43:48", "throughput": 9415.24, "total_tokens": 1449817024}
288
+ {"current_steps": 6027, "total_steps": 6951, "loss": 0.102, "lr": 4.297027530141634e-06, "epoch": 2.600981502453756, "percentage": 86.71, "elapsed_time": "1 day, 18:55:28", "remaining_time": "6:34:50", "throughput": 9415.55, "total_tokens": 1454966656}
289
+ {"current_steps": 6048, "total_steps": 6951, "loss": 0.0968, "lr": 4.106616451143719e-06, "epoch": 2.6100415251038127, "percentage": 87.01, "elapsed_time": "1 day, 19:04:14", "remaining_time": "6:25:50", "throughput": 9416.74, "total_tokens": 1460107904}
290
+ {"current_steps": 6069, "total_steps": 6951, "loss": 0.1025, "lr": 3.9203395635095615e-06, "epoch": 2.6191015477538695, "percentage": 87.31, "elapsed_time": "1 day, 19:13:33", "remaining_time": "6:16:55", "throughput": 9416.5, "total_tokens": 1465329712}
291
+ {"current_steps": 6090, "total_steps": 6951, "loss": 0.0992, "lr": 3.7382136475294592e-06, "epoch": 2.6281615704039263, "percentage": 87.61, "elapsed_time": "1 day, 19:22:32", "remaining_time": "6:07:56", "throughput": 9417.01, "total_tokens": 1470486400}
292
+ {"current_steps": 6111, "total_steps": 6951, "loss": 0.1014, "lr": 3.5602551095638094e-06, "epoch": 2.6372215930539826, "percentage": 87.92, "elapsed_time": "1 day, 19:31:14", "remaining_time": "5:58:56", "throughput": 9417.49, "total_tokens": 1475481216}
293
+ {"current_steps": 6132, "total_steps": 6951, "loss": 0.097, "lr": 3.386479980565077e-06, "epoch": 2.6462816157040394, "percentage": 88.22, "elapsed_time": "1 day, 19:40:20", "remaining_time": "5:49:58", "throughput": 9416.8, "total_tokens": 1480509520}
294
+ {"current_steps": 6153, "total_steps": 6951, "loss": 0.1011, "lr": 3.2169039146337455e-06, "epoch": 2.6553416383540958, "percentage": 88.52, "elapsed_time": "1 day, 19:48:47", "remaining_time": "5:40:56", "throughput": 9417.61, "total_tokens": 1485415168}
295
+ {"current_steps": 6174, "total_steps": 6951, "loss": 0.1003, "lr": 3.0515421876081364e-06, "epoch": 2.6644016610041525, "percentage": 88.82, "elapsed_time": "1 day, 19:57:43", "remaining_time": "5:31:57", "throughput": 9418.35, "total_tokens": 1490580288}
296
+ {"current_steps": 6195, "total_steps": 6951, "loss": 0.1011, "lr": 2.8904096956883396e-06, "epoch": 2.6734616836542093, "percentage": 89.12, "elapsed_time": "1 day, 20:06:34", "remaining_time": "5:22:58", "throughput": 9419.24, "total_tokens": 1495724928}
297
+ {"current_steps": 6216, "total_steps": 6951, "loss": 0.0992, "lr": 2.733520954094304e-06, "epoch": 2.6825217063042657, "percentage": 89.43, "elapsed_time": "1 day, 20:15:26", "remaining_time": "5:13:59", "throughput": 9418.86, "total_tokens": 1500671568}
298
+ {"current_steps": 6237, "total_steps": 6951, "loss": 0.0985, "lr": 2.580890095758276e-06, "epoch": 2.6915817289543225, "percentage": 89.73, "elapsed_time": "1 day, 20:24:26", "remaining_time": "5:05:01", "throughput": 9418.72, "total_tokens": 1505736848}
299
+ {"current_steps": 6258, "total_steps": 6951, "loss": 0.0999, "lr": 2.4325308700516804e-06, "epoch": 2.700641751604379, "percentage": 90.03, "elapsed_time": "1 day, 20:33:16", "remaining_time": "4:56:01", "throughput": 9419.01, "total_tokens": 1510772384}
300
+ {"current_steps": 6279, "total_steps": 6951, "loss": 0.1015, "lr": 2.288456641546549e-06, "epoch": 2.7097017742544356, "percentage": 90.33, "elapsed_time": "1 day, 20:42:09", "remaining_time": "4:47:03", "throughput": 9419.26, "total_tokens": 1515840336}
301
+ {"current_steps": 6300, "total_steps": 6951, "loss": 0.0952, "lr": 2.1486803888115802e-06, "epoch": 2.7187617969044924, "percentage": 90.63, "elapsed_time": "1 day, 20:51:02", "remaining_time": "4:38:04", "throughput": 9418.88, "total_tokens": 1520795728}
302
+ {"current_steps": 6321, "total_steps": 6951, "loss": 0.1014, "lr": 2.013214703242994e-06, "epoch": 2.7278218195545487, "percentage": 90.94, "elapsed_time": "1 day, 21:00:04", "remaining_time": "4:29:06", "throughput": 9418.79, "total_tokens": 1525885232}
303
+ {"current_steps": 6342, "total_steps": 6951, "loss": 0.0962, "lr": 1.8820717879303175e-06, "epoch": 2.7368818422046055, "percentage": 91.24, "elapsed_time": "1 day, 21:09:18", "remaining_time": "4:20:09", "throughput": 9418.29, "total_tokens": 1531020736}
304
+ {"current_steps": 6363, "total_steps": 6951, "loss": 0.0984, "lr": 1.7552634565570325e-06, "epoch": 2.7459418648546623, "percentage": 91.54, "elapsed_time": "1 day, 21:18:27", "remaining_time": "4:11:12", "throughput": 9417.96, "total_tokens": 1536139280}
305
+ {"current_steps": 6384, "total_steps": 6951, "loss": 0.0996, "lr": 1.6328011323364313e-06, "epoch": 2.7550018875047186, "percentage": 91.84, "elapsed_time": "1 day, 21:26:59", "remaining_time": "4:02:12", "throughput": 9418.9, "total_tokens": 1541119392}
306
+ {"current_steps": 6405, "total_steps": 6951, "loss": 0.098, "lr": 1.5146958469825445e-06, "epoch": 2.7640619101547754, "percentage": 92.15, "elapsed_time": "1 day, 21:35:40", "remaining_time": "3:53:12", "throughput": 9419.8, "total_tokens": 1546172016}
307
+ {"current_steps": 6426, "total_steps": 6951, "loss": 0.0979, "lr": 1.4009582397163879e-06, "epoch": 2.773121932804832, "percentage": 92.45, "elapsed_time": "1 day, 21:45:02", "remaining_time": "3:44:16", "throughput": 9419.54, "total_tokens": 1551424800}
308
+ {"current_steps": 6447, "total_steps": 6951, "loss": 0.096, "lr": 1.2915985563075383e-06, "epoch": 2.7821819554548886, "percentage": 92.75, "elapsed_time": "1 day, 21:54:06", "remaining_time": "3:35:18", "throughput": 9419.3, "total_tokens": 1556510032}
309
+ {"current_steps": 6468, "total_steps": 6951, "loss": 0.0995, "lr": 1.1866266481512234e-06, "epoch": 2.7912419781049453, "percentage": 93.05, "elapsed_time": "1 day, 22:02:47", "remaining_time": "3:26:18", "throughput": 9419.37, "total_tokens": 1561425840}
310
+ {"current_steps": 6489, "total_steps": 6951, "loss": 0.0979, "lr": 1.0860519713808082e-06, "epoch": 2.8003020007550017, "percentage": 93.35, "elapsed_time": "1 day, 22:11:35", "remaining_time": "3:17:19", "throughput": 9419.58, "total_tokens": 1566437584}
311
+ {"current_steps": 6510, "total_steps": 6951, "loss": 0.0944, "lr": 9.898835860160271e-07, "epoch": 2.8093620234050585, "percentage": 93.66, "elapsed_time": "1 day, 22:20:25", "remaining_time": "3:08:21", "throughput": 9419.64, "total_tokens": 1571433728}
312
+ {"current_steps": 6531, "total_steps": 6951, "loss": 0.0949, "lr": 8.981301551467924e-07, "epoch": 2.8184220460551153, "percentage": 93.96, "elapsed_time": "1 day, 22:29:09", "remaining_time": "2:59:22", "throughput": 9420.47, "total_tokens": 1576510304}
313
+ {"current_steps": 6552, "total_steps": 6951, "loss": 0.0959, "lr": 8.10799944152818e-07, "epoch": 2.8274820687051716, "percentage": 94.26, "elapsed_time": "1 day, 22:38:19", "remaining_time": "2:50:24", "throughput": 9420.22, "total_tokens": 1581652480}
314
+ {"current_steps": 6573, "total_steps": 6951, "loss": 0.0995, "lr": 7.279008199590543e-07, "epoch": 2.8365420913552284, "percentage": 94.56, "elapsed_time": "1 day, 22:47:15", "remaining_time": "2:41:26", "throughput": 9420.29, "total_tokens": 1586710928}
315
+ {"current_steps": 6594, "total_steps": 6951, "loss": 0.0973, "lr": 6.494402503270158e-07, "epoch": 2.845602114005285, "percentage": 94.86, "elapsed_time": "1 day, 22:55:54", "remaining_time": "2:32:27", "throughput": 9421.16, "total_tokens": 1591751872}
316
+ {"current_steps": 6615, "total_steps": 6951, "loss": 0.0992, "lr": 5.754253031820588e-07, "epoch": 2.8546621366553415, "percentage": 95.17, "elapsed_time": "1 day, 23:04:46", "remaining_time": "2:23:28", "throughput": 9421.5, "total_tokens": 1596817344}
317
+ {"current_steps": 6636, "total_steps": 6951, "loss": 0.0978, "lr": 5.058626459766902e-07, "epoch": 2.8637221593053983, "percentage": 95.47, "elapsed_time": "1 day, 23:13:55", "remaining_time": "2:14:31", "throughput": 9421.29, "total_tokens": 1601955280}
318
+ {"current_steps": 6657, "total_steps": 6951, "loss": 0.0963, "lr": 4.407585450899587e-07, "epoch": 2.872782181955455, "percentage": 95.77, "elapsed_time": "1 day, 23:22:45", "remaining_time": "2:05:32", "throughput": 9421.46, "total_tokens": 1606977888}
319
+ {"current_steps": 6678, "total_steps": 6951, "loss": 0.0932, "lr": 3.8011886526292395e-07, "epoch": 2.8818422046055114, "percentage": 96.07, "elapsed_time": "1 day, 23:32:06", "remaining_time": "1:56:35", "throughput": 9420.75, "total_tokens": 1612137088}
320
+ {"current_steps": 6699, "total_steps": 6951, "loss": 0.098, "lr": 3.2394906907040056e-07, "epoch": 2.8909022272555682, "percentage": 96.37, "elapsed_time": "1 day, 23:40:48", "remaining_time": "1:47:36", "throughput": 9421.03, "total_tokens": 1617105760}
321
+ {"current_steps": 6720, "total_steps": 6951, "loss": 0.099, "lr": 2.7225421642883554e-07, "epoch": 2.8999622499056246, "percentage": 96.68, "elapsed_time": "1 day, 23:49:15", "remaining_time": "1:38:37", "throughput": 9422.17, "total_tokens": 1622079712}
322
+ {"current_steps": 6741, "total_steps": 6951, "loss": 0.0974, "lr": 2.250389641405115e-07, "epoch": 2.9090222725556814, "percentage": 96.98, "elapsed_time": "1 day, 23:58:31", "remaining_time": "1:29:40", "throughput": 9421.85, "total_tokens": 1627262208}
323
+ {"current_steps": 6762, "total_steps": 6951, "loss": 0.0995, "lr": 1.823075654740547e-07, "epoch": 2.918082295205738, "percentage": 97.28, "elapsed_time": "2 days, 0:07:09", "remaining_time": "1:20:41", "throughput": 9422.72, "total_tokens": 1632293744}
324
+ {"current_steps": 6783, "total_steps": 6951, "loss": 0.0955, "lr": 1.4406386978128018e-07, "epoch": 2.9271423178557945, "percentage": 97.58, "elapsed_time": "2 days, 0:16:23", "remaining_time": "1:11:44", "throughput": 9422.15, "total_tokens": 1637413856}
325
+ {"current_steps": 6804, "total_steps": 6951, "loss": 0.095, "lr": 1.1031132215043594e-07, "epoch": 2.9362023405058513, "percentage": 97.89, "elapsed_time": "2 days, 0:24:58", "remaining_time": "1:02:45", "throughput": 9422.79, "total_tokens": 1642376144}
326
+ {"current_steps": 6825, "total_steps": 6951, "loss": 0.0995, "lr": 8.105296309586785e-08, "epoch": 2.9452623631559076, "percentage": 98.19, "elapsed_time": "2 days, 0:33:56", "remaining_time": "0:53:47", "throughput": 9422.9, "total_tokens": 1647471008}
327
+ {"current_steps": 6846, "total_steps": 6951, "loss": 0.0976, "lr": 5.629142828411094e-08, "epoch": 2.9543223858059644, "percentage": 98.49, "elapsed_time": "2 days, 0:42:41", "remaining_time": "0:44:49", "throughput": 9423.33, "total_tokens": 1652489696}
328
+ {"current_steps": 6867, "total_steps": 6951, "loss": 0.0955, "lr": 3.602894829647374e-08, "epoch": 2.963382408456021, "percentage": 98.79, "elapsed_time": "2 days, 0:51:22", "remaining_time": "0:35:51", "throughput": 9423.84, "total_tokens": 1657488848}
329
+ {"current_steps": 6888, "total_steps": 6951, "loss": 0.0979, "lr": 2.0267348428087974e-08, "epoch": 2.972442431106078, "percentage": 99.09, "elapsed_time": "2 days, 1:00:06", "remaining_time": "0:26:53", "throughput": 9424.1, "total_tokens": 1662468816}
330
+ {"current_steps": 6909, "total_steps": 6951, "loss": 0.0999, "lr": 9.008048523501122e-09, "epoch": 2.9815024537561343, "percentage": 99.4, "elapsed_time": "2 days, 1:08:56", "remaining_time": "0:17:55", "throughput": 9425.0, "total_tokens": 1667627776}
331
+ {"current_steps": 6930, "total_steps": 6951, "loss": 0.099, "lr": 2.252062848745462e-09, "epoch": 2.990562476406191, "percentage": 99.7, "elapsed_time": "2 days, 1:18:09", "remaining_time": "0:08:57", "throughput": 9424.34, "total_tokens": 1672724048}
332
+ {"current_steps": 6951, "total_steps": 6951, "loss": 0.0971, "lr": 0.0, "epoch": 2.9996224990562474, "percentage": 100.0, "elapsed_time": "2 days, 1:27:28", "remaining_time": "0:00:00", "throughput": 9423.59, "total_tokens": 1677860944}
333
+ {"current_steps": 6951, "total_steps": 6951, "epoch": 2.9996224990562474, "percentage": 100.0, "elapsed_time": "2 days, 1:39:42", "remaining_time": "0:00:00", "throughput": 9384.94, "total_tokens": 1677860944}
trainer_state.json ADDED
@@ -0,0 +1,2701 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.9996224990562474,
6
+ "eval_steps": 5000,
7
+ "global_step": 6951,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.009060022650056626,
14
+ "grad_norm": 2.6664810047066947,
15
+ "learning_rate": 9.999774793715127e-05,
16
+ "loss": 1.431,
17
+ "num_input_tokens_seen": 5118512,
18
+ "step": 21
19
+ },
20
+ {
21
+ "epoch": 0.01812004530011325,
22
+ "grad_norm": 0.8152880359374859,
23
+ "learning_rate": 9.99909919514765e-05,
24
+ "loss": 0.5348,
25
+ "num_input_tokens_seen": 10150592,
26
+ "step": 42
27
+ },
28
+ {
29
+ "epoch": 0.027180067950169876,
30
+ "grad_norm": 0.6315786850545617,
31
+ "learning_rate": 9.997973265157192e-05,
32
+ "loss": 0.4599,
33
+ "num_input_tokens_seen": 15170896,
34
+ "step": 63
35
+ },
36
+ {
37
+ "epoch": 0.0362400906002265,
38
+ "grad_norm": 0.4538892840989214,
39
+ "learning_rate": 9.996397105170353e-05,
40
+ "loss": 0.4108,
41
+ "num_input_tokens_seen": 20155632,
42
+ "step": 84
43
+ },
44
+ {
45
+ "epoch": 0.045300113250283124,
46
+ "grad_norm": 0.4720911162561318,
47
+ "learning_rate": 9.994370857171588e-05,
48
+ "loss": 0.3947,
49
+ "num_input_tokens_seen": 25135440,
50
+ "step": 105
51
+ },
52
+ {
53
+ "epoch": 0.05436013590033975,
54
+ "grad_norm": 0.4622888476742547,
55
+ "learning_rate": 9.991894703690414e-05,
56
+ "loss": 0.3764,
57
+ "num_input_tokens_seen": 30346784,
58
+ "step": 126
59
+ },
60
+ {
61
+ "epoch": 0.06342015855039637,
62
+ "grad_norm": 0.4173513485950873,
63
+ "learning_rate": 9.988968867784958e-05,
64
+ "loss": 0.3751,
65
+ "num_input_tokens_seen": 35269664,
66
+ "step": 147
67
+ },
68
+ {
69
+ "epoch": 0.072480181200453,
70
+ "grad_norm": 0.39249341716348773,
71
+ "learning_rate": 9.985593613021872e-05,
72
+ "loss": 0.3704,
73
+ "num_input_tokens_seen": 40151792,
74
+ "step": 168
75
+ },
76
+ {
77
+ "epoch": 0.08154020385050963,
78
+ "grad_norm": 0.3080363284417135,
79
+ "learning_rate": 9.981769243452595e-05,
80
+ "loss": 0.3552,
81
+ "num_input_tokens_seen": 45283312,
82
+ "step": 189
83
+ },
84
+ {
85
+ "epoch": 0.09060022650056625,
86
+ "grad_norm": 0.3747998358734097,
87
+ "learning_rate": 9.977496103585949e-05,
88
+ "loss": 0.3576,
89
+ "num_input_tokens_seen": 50298912,
90
+ "step": 210
91
+ },
92
+ {
93
+ "epoch": 0.09966024915062288,
94
+ "grad_norm": 0.2975791185912304,
95
+ "learning_rate": 9.972774578357117e-05,
96
+ "loss": 0.3451,
97
+ "num_input_tokens_seen": 55445792,
98
+ "step": 231
99
+ },
100
+ {
101
+ "epoch": 0.1087202718006795,
102
+ "grad_norm": 0.3172928529259604,
103
+ "learning_rate": 9.96760509309296e-05,
104
+ "loss": 0.3506,
105
+ "num_input_tokens_seen": 60506496,
106
+ "step": 252
107
+ },
108
+ {
109
+ "epoch": 0.11778029445073612,
110
+ "grad_norm": 0.3304680645103982,
111
+ "learning_rate": 9.961988113473708e-05,
112
+ "loss": 0.3443,
113
+ "num_input_tokens_seen": 65678096,
114
+ "step": 273
115
+ },
116
+ {
117
+ "epoch": 0.12684031710079274,
118
+ "grad_norm": 0.2929759270178528,
119
+ "learning_rate": 9.955924145491005e-05,
120
+ "loss": 0.3446,
121
+ "num_input_tokens_seen": 70478688,
122
+ "step": 294
123
+ },
124
+ {
125
+ "epoch": 0.13590033975084936,
126
+ "grad_norm": 0.2809492487037724,
127
+ "learning_rate": 9.94941373540233e-05,
128
+ "loss": 0.3362,
129
+ "num_input_tokens_seen": 75373536,
130
+ "step": 315
131
+ },
132
+ {
133
+ "epoch": 0.144960362400906,
134
+ "grad_norm": 0.38609616986912937,
135
+ "learning_rate": 9.942457469681794e-05,
136
+ "loss": 0.3384,
137
+ "num_input_tokens_seen": 80476704,
138
+ "step": 336
139
+ },
140
+ {
141
+ "epoch": 0.15402038505096263,
142
+ "grad_norm": 0.24129947470960447,
143
+ "learning_rate": 9.935055974967299e-05,
144
+ "loss": 0.3315,
145
+ "num_input_tokens_seen": 85670800,
146
+ "step": 357
147
+ },
148
+ {
149
+ "epoch": 0.16308040770101925,
150
+ "grad_norm": 0.22875446286948012,
151
+ "learning_rate": 9.927209918004095e-05,
152
+ "loss": 0.33,
153
+ "num_input_tokens_seen": 90707040,
154
+ "step": 378
155
+ },
156
+ {
157
+ "epoch": 0.17214043035107587,
158
+ "grad_norm": 0.26219955903132913,
159
+ "learning_rate": 9.918920005584719e-05,
160
+ "loss": 0.3296,
161
+ "num_input_tokens_seen": 95824496,
162
+ "step": 399
163
+ },
164
+ {
165
+ "epoch": 0.1812004530011325,
166
+ "grad_norm": 0.6217611528853424,
167
+ "learning_rate": 9.910186984485321e-05,
168
+ "loss": 0.3315,
169
+ "num_input_tokens_seen": 100862224,
170
+ "step": 420
171
+ },
172
+ {
173
+ "epoch": 0.19026047565118911,
174
+ "grad_norm": 0.5343386676193482,
175
+ "learning_rate": 9.901011641398398e-05,
176
+ "loss": 0.353,
177
+ "num_input_tokens_seen": 105876656,
178
+ "step": 441
179
+ },
180
+ {
181
+ "epoch": 0.19932049830124576,
182
+ "grad_norm": 0.29271392356860787,
183
+ "learning_rate": 9.89139480286192e-05,
184
+ "loss": 0.3414,
185
+ "num_input_tokens_seen": 110980864,
186
+ "step": 462
187
+ },
188
+ {
189
+ "epoch": 0.20838052095130238,
190
+ "grad_norm": 0.2662936598921738,
191
+ "learning_rate": 9.881337335184878e-05,
192
+ "loss": 0.3224,
193
+ "num_input_tokens_seen": 116114800,
194
+ "step": 483
195
+ },
196
+ {
197
+ "epoch": 0.217440543601359,
198
+ "grad_norm": 0.3006863273182064,
199
+ "learning_rate": 9.870840144369246e-05,
200
+ "loss": 0.3212,
201
+ "num_input_tokens_seen": 121255744,
202
+ "step": 504
203
+ },
204
+ {
205
+ "epoch": 0.22650056625141562,
206
+ "grad_norm": 0.28557101475631624,
207
+ "learning_rate": 9.859904176028362e-05,
208
+ "loss": 0.3213,
209
+ "num_input_tokens_seen": 126288608,
210
+ "step": 525
211
+ },
212
+ {
213
+ "epoch": 0.23556058890147225,
214
+ "grad_norm": 0.30204169829965893,
215
+ "learning_rate": 9.848530415301747e-05,
216
+ "loss": 0.3198,
217
+ "num_input_tokens_seen": 131233488,
218
+ "step": 546
219
+ },
220
+ {
221
+ "epoch": 0.24462061155152887,
222
+ "grad_norm": 0.22788149212961117,
223
+ "learning_rate": 9.836719886766356e-05,
224
+ "loss": 0.3149,
225
+ "num_input_tokens_seen": 136257888,
226
+ "step": 567
227
+ },
228
+ {
229
+ "epoch": 0.2536806342015855,
230
+ "grad_norm": 0.25388452332747136,
231
+ "learning_rate": 9.824473654344297e-05,
232
+ "loss": 0.3169,
233
+ "num_input_tokens_seen": 141405120,
234
+ "step": 588
235
+ },
236
+ {
237
+ "epoch": 0.2627406568516421,
238
+ "grad_norm": 0.22932388019266456,
239
+ "learning_rate": 9.811792821206969e-05,
240
+ "loss": 0.3142,
241
+ "num_input_tokens_seen": 146380496,
242
+ "step": 609
243
+ },
244
+ {
245
+ "epoch": 0.2718006795016987,
246
+ "grad_norm": 0.21316227582275912,
247
+ "learning_rate": 9.7986785296757e-05,
248
+ "loss": 0.3097,
249
+ "num_input_tokens_seen": 151344048,
250
+ "step": 630
251
+ },
252
+ {
253
+ "epoch": 0.2808607021517554,
254
+ "grad_norm": 0.2055839569031328,
255
+ "learning_rate": 9.785131961118844e-05,
256
+ "loss": 0.3116,
257
+ "num_input_tokens_seen": 156435136,
258
+ "step": 651
259
+ },
260
+ {
261
+ "epoch": 0.289920724801812,
262
+ "grad_norm": 0.2441799648084251,
263
+ "learning_rate": 9.771154335845345e-05,
264
+ "loss": 0.3086,
265
+ "num_input_tokens_seen": 161536224,
266
+ "step": 672
267
+ },
268
+ {
269
+ "epoch": 0.29898074745186864,
270
+ "grad_norm": 0.20481810635702893,
271
+ "learning_rate": 9.756746912994832e-05,
272
+ "loss": 0.3057,
273
+ "num_input_tokens_seen": 166573984,
274
+ "step": 693
275
+ },
276
+ {
277
+ "epoch": 0.30804077010192527,
278
+ "grad_norm": 0.2592126104806373,
279
+ "learning_rate": 9.741910990424174e-05,
280
+ "loss": 0.3017,
281
+ "num_input_tokens_seen": 171638000,
282
+ "step": 714
283
+ },
284
+ {
285
+ "epoch": 0.3171007927519819,
286
+ "grad_norm": 0.25174137308280303,
287
+ "learning_rate": 9.726647904590571e-05,
288
+ "loss": 0.3066,
289
+ "num_input_tokens_seen": 176765648,
290
+ "step": 735
291
+ },
292
+ {
293
+ "epoch": 0.3261608154020385,
294
+ "grad_norm": 0.20855236580529835,
295
+ "learning_rate": 9.710959030431167e-05,
296
+ "loss": 0.2996,
297
+ "num_input_tokens_seen": 181949360,
298
+ "step": 756
299
+ },
300
+ {
301
+ "epoch": 0.3352208380520951,
302
+ "grad_norm": 0.23697815659002952,
303
+ "learning_rate": 9.694845781239187e-05,
304
+ "loss": 0.2972,
305
+ "num_input_tokens_seen": 186990096,
306
+ "step": 777
307
+ },
308
+ {
309
+ "epoch": 0.34428086070215175,
310
+ "grad_norm": 0.2492979898134609,
311
+ "learning_rate": 9.678309608536626e-05,
312
+ "loss": 0.2984,
313
+ "num_input_tokens_seen": 192083856,
314
+ "step": 798
315
+ },
316
+ {
317
+ "epoch": 0.35334088335220837,
318
+ "grad_norm": 0.23816573617268064,
319
+ "learning_rate": 9.661352001943493e-05,
320
+ "loss": 0.2957,
321
+ "num_input_tokens_seen": 197134448,
322
+ "step": 819
323
+ },
324
+ {
325
+ "epoch": 0.362400906002265,
326
+ "grad_norm": 0.20467034048790322,
327
+ "learning_rate": 9.64397448904362e-05,
328
+ "loss": 0.2926,
329
+ "num_input_tokens_seen": 202310368,
330
+ "step": 840
331
+ },
332
+ {
333
+ "epoch": 0.3714609286523216,
334
+ "grad_norm": 0.17904927666050605,
335
+ "learning_rate": 9.626178635247054e-05,
336
+ "loss": 0.2909,
337
+ "num_input_tokens_seen": 207359840,
338
+ "step": 861
339
+ },
340
+ {
341
+ "epoch": 0.38052095130237823,
342
+ "grad_norm": 0.248985929697072,
343
+ "learning_rate": 9.607966043649046e-05,
344
+ "loss": 0.2954,
345
+ "num_input_tokens_seen": 212395664,
346
+ "step": 882
347
+ },
348
+ {
349
+ "epoch": 0.3895809739524349,
350
+ "grad_norm": 0.17735947921966527,
351
+ "learning_rate": 9.589338354885629e-05,
352
+ "loss": 0.2912,
353
+ "num_input_tokens_seen": 217570640,
354
+ "step": 903
355
+ },
356
+ {
357
+ "epoch": 0.3986409966024915,
358
+ "grad_norm": 0.2653024856558906,
359
+ "learning_rate": 9.570297246985837e-05,
360
+ "loss": 0.2928,
361
+ "num_input_tokens_seen": 222629712,
362
+ "step": 924
363
+ },
364
+ {
365
+ "epoch": 0.40770101925254815,
366
+ "grad_norm": 0.21684716629964057,
367
+ "learning_rate": 9.550844435220539e-05,
368
+ "loss": 0.292,
369
+ "num_input_tokens_seen": 227565744,
370
+ "step": 945
371
+ },
372
+ {
373
+ "epoch": 0.41676104190260477,
374
+ "grad_norm": 0.19831973070913392,
375
+ "learning_rate": 9.530981671947923e-05,
376
+ "loss": 0.292,
377
+ "num_input_tokens_seen": 232655712,
378
+ "step": 966
379
+ },
380
+ {
381
+ "epoch": 0.4258210645526614,
382
+ "grad_norm": 0.2039591338730108,
383
+ "learning_rate": 9.510710746455636e-05,
384
+ "loss": 0.2959,
385
+ "num_input_tokens_seen": 237611056,
386
+ "step": 987
387
+ },
388
+ {
389
+ "epoch": 0.434881087202718,
390
+ "grad_norm": 0.20635917697106,
391
+ "learning_rate": 9.490033484799608e-05,
392
+ "loss": 0.2884,
393
+ "num_input_tokens_seen": 242693136,
394
+ "step": 1008
395
+ },
396
+ {
397
+ "epoch": 0.44394110985277463,
398
+ "grad_norm": 0.21178513822087988,
399
+ "learning_rate": 9.468951749639551e-05,
400
+ "loss": 0.2878,
401
+ "num_input_tokens_seen": 247677488,
402
+ "step": 1029
403
+ },
404
+ {
405
+ "epoch": 0.45300113250283125,
406
+ "grad_norm": 0.24393748334345636,
407
+ "learning_rate": 9.447467440071164e-05,
408
+ "loss": 0.2908,
409
+ "num_input_tokens_seen": 252770384,
410
+ "step": 1050
411
+ },
412
+ {
413
+ "epoch": 0.46206115515288787,
414
+ "grad_norm": 0.19345581725168481,
415
+ "learning_rate": 9.425582491455067e-05,
416
+ "loss": 0.2796,
417
+ "num_input_tokens_seen": 258009696,
418
+ "step": 1071
419
+ },
420
+ {
421
+ "epoch": 0.4711211778029445,
422
+ "grad_norm": 0.17550447436524724,
423
+ "learning_rate": 9.403298875242448e-05,
424
+ "loss": 0.2858,
425
+ "num_input_tokens_seen": 263147728,
426
+ "step": 1092
427
+ },
428
+ {
429
+ "epoch": 0.4801812004530011,
430
+ "grad_norm": 0.1873327110291133,
431
+ "learning_rate": 9.380618598797473e-05,
432
+ "loss": 0.2876,
433
+ "num_input_tokens_seen": 268184080,
434
+ "step": 1113
435
+ },
436
+ {
437
+ "epoch": 0.48924122310305773,
438
+ "grad_norm": 0.2326284547666313,
439
+ "learning_rate": 9.357543705216465e-05,
440
+ "loss": 0.2814,
441
+ "num_input_tokens_seen": 273442768,
442
+ "step": 1134
443
+ },
444
+ {
445
+ "epoch": 0.4983012457531144,
446
+ "grad_norm": 0.1606625392823979,
447
+ "learning_rate": 9.334076273143843e-05,
448
+ "loss": 0.2804,
449
+ "num_input_tokens_seen": 278640624,
450
+ "step": 1155
451
+ },
452
+ {
453
+ "epoch": 0.507361268403171,
454
+ "grad_norm": 0.174300515580659,
455
+ "learning_rate": 9.310218416584886e-05,
456
+ "loss": 0.2863,
457
+ "num_input_tokens_seen": 283769424,
458
+ "step": 1176
459
+ },
460
+ {
461
+ "epoch": 0.5164212910532276,
462
+ "grad_norm": 0.18523825539113345,
463
+ "learning_rate": 9.28597228471529e-05,
464
+ "loss": 0.2851,
465
+ "num_input_tokens_seen": 288866448,
466
+ "step": 1197
467
+ },
468
+ {
469
+ "epoch": 0.5254813137032842,
470
+ "grad_norm": 0.29288899462077944,
471
+ "learning_rate": 9.26134006168757e-05,
472
+ "loss": 0.2798,
473
+ "num_input_tokens_seen": 293944576,
474
+ "step": 1218
475
+ },
476
+ {
477
+ "epoch": 0.5345413363533409,
478
+ "grad_norm": 0.21677248351508627,
479
+ "learning_rate": 9.236323966434295e-05,
480
+ "loss": 0.2728,
481
+ "num_input_tokens_seen": 299090032,
482
+ "step": 1239
483
+ },
484
+ {
485
+ "epoch": 0.5436013590033975,
486
+ "grad_norm": 0.17425284816339717,
487
+ "learning_rate": 9.210926252468219e-05,
488
+ "loss": 0.2756,
489
+ "num_input_tokens_seen": 304016304,
490
+ "step": 1260
491
+ },
492
+ {
493
+ "epoch": 0.5526613816534541,
494
+ "grad_norm": 0.19722321188451059,
495
+ "learning_rate": 9.185149207679263e-05,
496
+ "loss": 0.2747,
497
+ "num_input_tokens_seen": 309084016,
498
+ "step": 1281
499
+ },
500
+ {
501
+ "epoch": 0.5617214043035108,
502
+ "grad_norm": 0.15927450699962342,
503
+ "learning_rate": 9.158995154128425e-05,
504
+ "loss": 0.2772,
505
+ "num_input_tokens_seen": 314201696,
506
+ "step": 1302
507
+ },
508
+ {
509
+ "epoch": 0.5707814269535674,
510
+ "grad_norm": 0.144121234319095,
511
+ "learning_rate": 9.132466447838597e-05,
512
+ "loss": 0.2785,
513
+ "num_input_tokens_seen": 319266256,
514
+ "step": 1323
515
+ },
516
+ {
517
+ "epoch": 0.579841449603624,
518
+ "grad_norm": 0.20014275331573014,
519
+ "learning_rate": 9.105565478582334e-05,
520
+ "loss": 0.2755,
521
+ "num_input_tokens_seen": 324468352,
522
+ "step": 1344
523
+ },
524
+ {
525
+ "epoch": 0.5889014722536806,
526
+ "grad_norm": 0.1763537829210326,
527
+ "learning_rate": 9.078294669666576e-05,
528
+ "loss": 0.2708,
529
+ "num_input_tokens_seen": 329566736,
530
+ "step": 1365
531
+ },
532
+ {
533
+ "epoch": 0.5979614949037373,
534
+ "grad_norm": 0.20344878470372835,
535
+ "learning_rate": 9.050656477714346e-05,
536
+ "loss": 0.2729,
537
+ "num_input_tokens_seen": 334661888,
538
+ "step": 1386
539
+ },
540
+ {
541
+ "epoch": 0.6070215175537939,
542
+ "grad_norm": 0.16201525012659232,
543
+ "learning_rate": 9.022653392443454e-05,
544
+ "loss": 0.2754,
545
+ "num_input_tokens_seen": 339784976,
546
+ "step": 1407
547
+ },
548
+ {
549
+ "epoch": 0.6160815402038505,
550
+ "grad_norm": 0.17086654725622255,
551
+ "learning_rate": 8.994287936442225e-05,
552
+ "loss": 0.2742,
553
+ "num_input_tokens_seen": 344776544,
554
+ "step": 1428
555
+ },
556
+ {
557
+ "epoch": 0.6251415628539071,
558
+ "grad_norm": 0.17370971449213884,
559
+ "learning_rate": 8.96556266494224e-05,
560
+ "loss": 0.2703,
561
+ "num_input_tokens_seen": 349731168,
562
+ "step": 1449
563
+ },
564
+ {
565
+ "epoch": 0.6342015855039638,
566
+ "grad_norm": 0.1759254965690454,
567
+ "learning_rate": 8.936480165588173e-05,
568
+ "loss": 0.2756,
569
+ "num_input_tokens_seen": 354694544,
570
+ "step": 1470
571
+ },
572
+ {
573
+ "epoch": 0.6432616081540203,
574
+ "grad_norm": 0.1884165927777844,
575
+ "learning_rate": 8.907043058204674e-05,
576
+ "loss": 0.2698,
577
+ "num_input_tokens_seen": 359871984,
578
+ "step": 1491
579
+ },
580
+ {
581
+ "epoch": 0.652321630804077,
582
+ "grad_norm": 0.18427306909901323,
583
+ "learning_rate": 8.877253994560382e-05,
584
+ "loss": 0.2716,
585
+ "num_input_tokens_seen": 364937440,
586
+ "step": 1512
587
+ },
588
+ {
589
+ "epoch": 0.6613816534541337,
590
+ "grad_norm": 0.20911376204072243,
591
+ "learning_rate": 8.847115658129039e-05,
592
+ "loss": 0.2682,
593
+ "num_input_tokens_seen": 369994848,
594
+ "step": 1533
595
+ },
596
+ {
597
+ "epoch": 0.6704416761041903,
598
+ "grad_norm": 0.20741042143522315,
599
+ "learning_rate": 8.816630763847755e-05,
600
+ "loss": 0.2695,
601
+ "num_input_tokens_seen": 374992544,
602
+ "step": 1554
603
+ },
604
+ {
605
+ "epoch": 0.6795016987542469,
606
+ "grad_norm": 0.1643283959081191,
607
+ "learning_rate": 8.785802057872446e-05,
608
+ "loss": 0.2706,
609
+ "num_input_tokens_seen": 380038624,
610
+ "step": 1575
611
+ },
612
+ {
613
+ "epoch": 0.6885617214043035,
614
+ "grad_norm": 0.20102992236744546,
615
+ "learning_rate": 8.754632317330447e-05,
616
+ "loss": 0.2704,
617
+ "num_input_tokens_seen": 385195792,
618
+ "step": 1596
619
+ },
620
+ {
621
+ "epoch": 0.6976217440543602,
622
+ "grad_norm": 0.18834807757879243,
623
+ "learning_rate": 8.723124350070347e-05,
624
+ "loss": 0.2707,
625
+ "num_input_tokens_seen": 390195296,
626
+ "step": 1617
627
+ },
628
+ {
629
+ "epoch": 0.7066817667044167,
630
+ "grad_norm": 0.15261075530832655,
631
+ "learning_rate": 8.691280994409043e-05,
632
+ "loss": 0.2653,
633
+ "num_input_tokens_seen": 395353440,
634
+ "step": 1638
635
+ },
636
+ {
637
+ "epoch": 0.7157417893544734,
638
+ "grad_norm": 0.20682506960801342,
639
+ "learning_rate": 8.659105118876068e-05,
640
+ "loss": 0.2649,
641
+ "num_input_tokens_seen": 400444080,
642
+ "step": 1659
643
+ },
644
+ {
645
+ "epoch": 0.72480181200453,
646
+ "grad_norm": 0.21733357068498219,
647
+ "learning_rate": 8.626599621955179e-05,
648
+ "loss": 0.2652,
649
+ "num_input_tokens_seen": 405492112,
650
+ "step": 1680
651
+ },
652
+ {
653
+ "epoch": 0.7338618346545867,
654
+ "grad_norm": 0.18286757761891814,
655
+ "learning_rate": 8.593767431823255e-05,
656
+ "loss": 0.2638,
657
+ "num_input_tokens_seen": 410467584,
658
+ "step": 1701
659
+ },
660
+ {
661
+ "epoch": 0.7429218573046432,
662
+ "grad_norm": 0.16764027437130122,
663
+ "learning_rate": 8.56061150608652e-05,
664
+ "loss": 0.2685,
665
+ "num_input_tokens_seen": 415550320,
666
+ "step": 1722
667
+ },
668
+ {
669
+ "epoch": 0.7519818799546999,
670
+ "grad_norm": 0.17921646972994934,
671
+ "learning_rate": 8.527134831514117e-05,
672
+ "loss": 0.2584,
673
+ "num_input_tokens_seen": 420503712,
674
+ "step": 1743
675
+ },
676
+ {
677
+ "epoch": 0.7610419026047565,
678
+ "grad_norm": 0.19062465197166928,
679
+ "learning_rate": 8.493340423769053e-05,
680
+ "loss": 0.2607,
681
+ "num_input_tokens_seen": 425602800,
682
+ "step": 1764
683
+ },
684
+ {
685
+ "epoch": 0.7701019252548131,
686
+ "grad_norm": 0.19476076523413036,
687
+ "learning_rate": 8.459231327136532e-05,
688
+ "loss": 0.2652,
689
+ "num_input_tokens_seen": 430546320,
690
+ "step": 1785
691
+ },
692
+ {
693
+ "epoch": 0.7791619479048698,
694
+ "grad_norm": 0.18756178702354967,
695
+ "learning_rate": 8.42481061424973e-05,
696
+ "loss": 0.2604,
697
+ "num_input_tokens_seen": 435625600,
698
+ "step": 1806
699
+ },
700
+ {
701
+ "epoch": 0.7882219705549264,
702
+ "grad_norm": 0.16871375853816825,
703
+ "learning_rate": 8.390081385812993e-05,
704
+ "loss": 0.2603,
705
+ "num_input_tokens_seen": 440695024,
706
+ "step": 1827
707
+ },
708
+ {
709
+ "epoch": 0.797281993204983,
710
+ "grad_norm": 0.1669594920851862,
711
+ "learning_rate": 8.355046770322528e-05,
712
+ "loss": 0.2576,
713
+ "num_input_tokens_seen": 445877360,
714
+ "step": 1848
715
+ },
716
+ {
717
+ "epoch": 0.8063420158550396,
718
+ "grad_norm": 0.20147791313721689,
719
+ "learning_rate": 8.319709923784573e-05,
720
+ "loss": 0.2622,
721
+ "num_input_tokens_seen": 451021040,
722
+ "step": 1869
723
+ },
724
+ {
725
+ "epoch": 0.8154020385050963,
726
+ "grad_norm": 0.17108850294819108,
727
+ "learning_rate": 8.284074029431099e-05,
728
+ "loss": 0.2587,
729
+ "num_input_tokens_seen": 456101872,
730
+ "step": 1890
731
+ },
732
+ {
733
+ "epoch": 0.8244620611551529,
734
+ "grad_norm": 0.18516681989871883,
735
+ "learning_rate": 8.248142297433057e-05,
736
+ "loss": 0.2575,
737
+ "num_input_tokens_seen": 461365920,
738
+ "step": 1911
739
+ },
740
+ {
741
+ "epoch": 0.8335220838052095,
742
+ "grad_norm": 0.20285356102658042,
743
+ "learning_rate": 8.211917964611196e-05,
744
+ "loss": 0.2573,
745
+ "num_input_tokens_seen": 466466096,
746
+ "step": 1932
747
+ },
748
+ {
749
+ "epoch": 0.8425821064552661,
750
+ "grad_norm": 0.207923488217522,
751
+ "learning_rate": 8.175404294144482e-05,
752
+ "loss": 0.26,
753
+ "num_input_tokens_seen": 471541104,
754
+ "step": 1953
755
+ },
756
+ {
757
+ "epoch": 0.8516421291053228,
758
+ "grad_norm": 0.19850908270608497,
759
+ "learning_rate": 8.138604575276143e-05,
760
+ "loss": 0.2571,
761
+ "num_input_tokens_seen": 476646096,
762
+ "step": 1974
763
+ },
764
+ {
765
+ "epoch": 0.8607021517553793,
766
+ "grad_norm": 0.1821198820367163,
767
+ "learning_rate": 8.10152212301737e-05,
768
+ "loss": 0.251,
769
+ "num_input_tokens_seen": 481695200,
770
+ "step": 1995
771
+ },
772
+ {
773
+ "epoch": 0.869762174405436,
774
+ "grad_norm": 0.1623421619904062,
775
+ "learning_rate": 8.064160277848682e-05,
776
+ "loss": 0.2614,
777
+ "num_input_tokens_seen": 486706656,
778
+ "step": 2016
779
+ },
780
+ {
781
+ "epoch": 0.8788221970554927,
782
+ "grad_norm": 0.1774308248272562,
783
+ "learning_rate": 8.026522405419023e-05,
784
+ "loss": 0.2528,
785
+ "num_input_tokens_seen": 491943424,
786
+ "step": 2037
787
+ },
788
+ {
789
+ "epoch": 0.8878822197055493,
790
+ "grad_norm": 0.21003241654174584,
791
+ "learning_rate": 7.988611896242559e-05,
792
+ "loss": 0.2571,
793
+ "num_input_tokens_seen": 496925888,
794
+ "step": 2058
795
+ },
796
+ {
797
+ "epoch": 0.8969422423556059,
798
+ "grad_norm": 0.20014809740395048,
799
+ "learning_rate": 7.950432165393259e-05,
800
+ "loss": 0.2547,
801
+ "num_input_tokens_seen": 502065216,
802
+ "step": 2079
803
+ },
804
+ {
805
+ "epoch": 0.9060022650056625,
806
+ "grad_norm": 0.17154274701388803,
807
+ "learning_rate": 7.911986652197262e-05,
808
+ "loss": 0.2538,
809
+ "num_input_tokens_seen": 507089616,
810
+ "step": 2100
811
+ },
812
+ {
813
+ "epoch": 0.9150622876557192,
814
+ "grad_norm": 0.17929198920009218,
815
+ "learning_rate": 7.873278819923048e-05,
816
+ "loss": 0.2551,
817
+ "num_input_tokens_seen": 512060336,
818
+ "step": 2121
819
+ },
820
+ {
821
+ "epoch": 0.9241223103057757,
822
+ "grad_norm": 0.16398954046091754,
823
+ "learning_rate": 7.834312155469456e-05,
824
+ "loss": 0.2515,
825
+ "num_input_tokens_seen": 517133680,
826
+ "step": 2142
827
+ },
828
+ {
829
+ "epoch": 0.9331823329558324,
830
+ "grad_norm": 0.17469600332499013,
831
+ "learning_rate": 7.79509016905158e-05,
832
+ "loss": 0.2526,
833
+ "num_input_tokens_seen": 522229616,
834
+ "step": 2163
835
+ },
836
+ {
837
+ "epoch": 0.942242355605889,
838
+ "grad_norm": 0.15900929966723312,
839
+ "learning_rate": 7.755616393884561e-05,
840
+ "loss": 0.2482,
841
+ "num_input_tokens_seen": 527368864,
842
+ "step": 2184
843
+ },
844
+ {
845
+ "epoch": 0.9513023782559457,
846
+ "grad_norm": 0.18254122861853214,
847
+ "learning_rate": 7.715894385865299e-05,
848
+ "loss": 0.2516,
849
+ "num_input_tokens_seen": 532499712,
850
+ "step": 2205
851
+ },
852
+ {
853
+ "epoch": 0.9603624009060022,
854
+ "grad_norm": 0.19001641667974054,
855
+ "learning_rate": 7.675927723252134e-05,
856
+ "loss": 0.2493,
857
+ "num_input_tokens_seen": 537438224,
858
+ "step": 2226
859
+ },
860
+ {
861
+ "epoch": 0.9694224235560589,
862
+ "grad_norm": 0.16454856189702688,
863
+ "learning_rate": 7.635720006342512e-05,
864
+ "loss": 0.2465,
865
+ "num_input_tokens_seen": 542603472,
866
+ "step": 2247
867
+ },
868
+ {
869
+ "epoch": 0.9784824462061155,
870
+ "grad_norm": 0.18435585737458549,
871
+ "learning_rate": 7.595274857148652e-05,
872
+ "loss": 0.2486,
873
+ "num_input_tokens_seen": 547622688,
874
+ "step": 2268
875
+ },
876
+ {
877
+ "epoch": 0.9875424688561721,
878
+ "grad_norm": 0.16595693704140477,
879
+ "learning_rate": 7.554595919071268e-05,
880
+ "loss": 0.2472,
881
+ "num_input_tokens_seen": 552751232,
882
+ "step": 2289
883
+ },
884
+ {
885
+ "epoch": 0.9966024915062288,
886
+ "grad_norm": 0.16765543588823353,
887
+ "learning_rate": 7.513686856571368e-05,
888
+ "loss": 0.2471,
889
+ "num_input_tokens_seen": 557786736,
890
+ "step": 2310
891
+ },
892
+ {
893
+ "epoch": 1.0060400151000377,
894
+ "grad_norm": 0.17133389174596797,
895
+ "learning_rate": 7.472551354840145e-05,
896
+ "loss": 0.2361,
897
+ "num_input_tokens_seen": 562993712,
898
+ "step": 2331
899
+ },
900
+ {
901
+ "epoch": 1.0151000377500943,
902
+ "grad_norm": 0.18279159983012744,
903
+ "learning_rate": 7.431193119467008e-05,
904
+ "loss": 0.217,
905
+ "num_input_tokens_seen": 568021744,
906
+ "step": 2352
907
+ },
908
+ {
909
+ "epoch": 1.024160060400151,
910
+ "grad_norm": 0.266530218109695,
911
+ "learning_rate": 7.389615876105774e-05,
912
+ "loss": 0.2145,
913
+ "num_input_tokens_seen": 572956608,
914
+ "step": 2373
915
+ },
916
+ {
917
+ "epoch": 1.0332200830502076,
918
+ "grad_norm": 0.178808088687151,
919
+ "learning_rate": 7.347823370139042e-05,
920
+ "loss": 0.2179,
921
+ "num_input_tokens_seen": 577973792,
922
+ "step": 2394
923
+ },
924
+ {
925
+ "epoch": 1.0422801057002642,
926
+ "grad_norm": 0.15535901011827938,
927
+ "learning_rate": 7.30581936634082e-05,
928
+ "loss": 0.2098,
929
+ "num_input_tokens_seen": 582948368,
930
+ "step": 2415
931
+ },
932
+ {
933
+ "epoch": 1.051340128350321,
934
+ "grad_norm": 0.1879255010231289,
935
+ "learning_rate": 7.263607648537364e-05,
936
+ "loss": 0.2174,
937
+ "num_input_tokens_seen": 587973936,
938
+ "step": 2436
939
+ },
940
+ {
941
+ "epoch": 1.0604001510003775,
942
+ "grad_norm": 0.18116579180636055,
943
+ "learning_rate": 7.221192019266332e-05,
944
+ "loss": 0.2187,
945
+ "num_input_tokens_seen": 593048624,
946
+ "step": 2457
947
+ },
948
+ {
949
+ "epoch": 1.069460173650434,
950
+ "grad_norm": 0.16067683672474237,
951
+ "learning_rate": 7.178576299434238e-05,
952
+ "loss": 0.2162,
953
+ "num_input_tokens_seen": 598171840,
954
+ "step": 2478
955
+ },
956
+ {
957
+ "epoch": 1.0785201963004907,
958
+ "grad_norm": 0.16890347919356866,
959
+ "learning_rate": 7.135764327972261e-05,
960
+ "loss": 0.2202,
961
+ "num_input_tokens_seen": 603168000,
962
+ "step": 2499
963
+ },
964
+ {
965
+ "epoch": 1.0875802189505475,
966
+ "grad_norm": 0.171528446871021,
967
+ "learning_rate": 7.092759961490415e-05,
968
+ "loss": 0.2237,
969
+ "num_input_tokens_seen": 608280544,
970
+ "step": 2520
971
+ },
972
+ {
973
+ "epoch": 1.096640241600604,
974
+ "grad_norm": 0.16674379731500746,
975
+ "learning_rate": 7.049567073930143e-05,
976
+ "loss": 0.2199,
977
+ "num_input_tokens_seen": 613215280,
978
+ "step": 2541
979
+ },
980
+ {
981
+ "epoch": 1.1057002642506606,
982
+ "grad_norm": 0.18816045716369076,
983
+ "learning_rate": 7.006189556215345e-05,
984
+ "loss": 0.2189,
985
+ "num_input_tokens_seen": 618261984,
986
+ "step": 2562
987
+ },
988
+ {
989
+ "epoch": 1.1147602869007172,
990
+ "grad_norm": 0.16658411013718444,
991
+ "learning_rate": 6.962631315901861e-05,
992
+ "loss": 0.2163,
993
+ "num_input_tokens_seen": 623492320,
994
+ "step": 2583
995
+ },
996
+ {
997
+ "epoch": 1.123820309550774,
998
+ "grad_norm": 0.19772642288828662,
999
+ "learning_rate": 6.918896276825485e-05,
1000
+ "loss": 0.2157,
1001
+ "num_input_tokens_seen": 628563152,
1002
+ "step": 2604
1003
+ },
1004
+ {
1005
+ "epoch": 1.1328803322008305,
1006
+ "grad_norm": 0.17075347503361357,
1007
+ "learning_rate": 6.874988378748483e-05,
1008
+ "loss": 0.2141,
1009
+ "num_input_tokens_seen": 633639472,
1010
+ "step": 2625
1011
+ },
1012
+ {
1013
+ "epoch": 1.141940354850887,
1014
+ "grad_norm": 0.14444472527009938,
1015
+ "learning_rate": 6.830911577004698e-05,
1016
+ "loss": 0.2185,
1017
+ "num_input_tokens_seen": 638639648,
1018
+ "step": 2646
1019
+ },
1020
+ {
1021
+ "epoch": 1.1510003775009436,
1022
+ "grad_norm": 0.17948926082904845,
1023
+ "learning_rate": 6.786669842143236e-05,
1024
+ "loss": 0.2125,
1025
+ "num_input_tokens_seen": 643743632,
1026
+ "step": 2667
1027
+ },
1028
+ {
1029
+ "epoch": 1.1600604001510004,
1030
+ "grad_norm": 0.1845862453656852,
1031
+ "learning_rate": 6.742267159570795e-05,
1032
+ "loss": 0.2138,
1033
+ "num_input_tokens_seen": 648823584,
1034
+ "step": 2688
1035
+ },
1036
+ {
1037
+ "epoch": 1.169120422801057,
1038
+ "grad_norm": 0.1611490189496428,
1039
+ "learning_rate": 6.697707529192648e-05,
1040
+ "loss": 0.2152,
1041
+ "num_input_tokens_seen": 653949232,
1042
+ "step": 2709
1043
+ },
1044
+ {
1045
+ "epoch": 1.1781804454511136,
1046
+ "grad_norm": 0.19293414419678218,
1047
+ "learning_rate": 6.652994965052319e-05,
1048
+ "loss": 0.2125,
1049
+ "num_input_tokens_seen": 658996016,
1050
+ "step": 2730
1051
+ },
1052
+ {
1053
+ "epoch": 1.1872404681011703,
1054
+ "grad_norm": 0.1887515649690068,
1055
+ "learning_rate": 6.608133494969994e-05,
1056
+ "loss": 0.2123,
1057
+ "num_input_tokens_seen": 664102304,
1058
+ "step": 2751
1059
+ },
1060
+ {
1061
+ "epoch": 1.196300490751227,
1062
+ "grad_norm": 0.15668371616625942,
1063
+ "learning_rate": 6.563127160179671e-05,
1064
+ "loss": 0.2101,
1065
+ "num_input_tokens_seen": 669123584,
1066
+ "step": 2772
1067
+ },
1068
+ {
1069
+ "epoch": 1.2053605134012835,
1070
+ "grad_norm": 0.17871386948979864,
1071
+ "learning_rate": 6.517980014965139e-05,
1072
+ "loss": 0.209,
1073
+ "num_input_tokens_seen": 674256592,
1074
+ "step": 2793
1075
+ },
1076
+ {
1077
+ "epoch": 1.21442053605134,
1078
+ "grad_norm": 0.16852785549912133,
1079
+ "learning_rate": 6.472696126294732e-05,
1080
+ "loss": 0.2122,
1081
+ "num_input_tokens_seen": 679248208,
1082
+ "step": 2814
1083
+ },
1084
+ {
1085
+ "epoch": 1.2234805587013968,
1086
+ "grad_norm": 0.1758847676430736,
1087
+ "learning_rate": 6.427279573454985e-05,
1088
+ "loss": 0.2093,
1089
+ "num_input_tokens_seen": 684325632,
1090
+ "step": 2835
1091
+ },
1092
+ {
1093
+ "epoch": 1.2325405813514534,
1094
+ "grad_norm": 0.19298009720432585,
1095
+ "learning_rate": 6.381734447683152e-05,
1096
+ "loss": 0.2114,
1097
+ "num_input_tokens_seen": 689336736,
1098
+ "step": 2856
1099
+ },
1100
+ {
1101
+ "epoch": 1.24160060400151,
1102
+ "grad_norm": 0.16439303725722001,
1103
+ "learning_rate": 6.33606485179866e-05,
1104
+ "loss": 0.2111,
1105
+ "num_input_tokens_seen": 694382688,
1106
+ "step": 2877
1107
+ },
1108
+ {
1109
+ "epoch": 1.2506606266515665,
1110
+ "grad_norm": 0.18140167193790194,
1111
+ "learning_rate": 6.290274899833517e-05,
1112
+ "loss": 0.2086,
1113
+ "num_input_tokens_seen": 699371792,
1114
+ "step": 2898
1115
+ },
1116
+ {
1117
+ "epoch": 1.2597206493016233,
1118
+ "grad_norm": 0.17151657072780352,
1119
+ "learning_rate": 6.244368716661713e-05,
1120
+ "loss": 0.2095,
1121
+ "num_input_tokens_seen": 704404624,
1122
+ "step": 2919
1123
+ },
1124
+ {
1125
+ "epoch": 1.2687806719516799,
1126
+ "grad_norm": 0.2052334824788225,
1127
+ "learning_rate": 6.198350437627632e-05,
1128
+ "loss": 0.2083,
1129
+ "num_input_tokens_seen": 709451392,
1130
+ "step": 2940
1131
+ },
1132
+ {
1133
+ "epoch": 1.2778406946017364,
1134
+ "grad_norm": 0.18426322385396474,
1135
+ "learning_rate": 6.152224208173533e-05,
1136
+ "loss": 0.2088,
1137
+ "num_input_tokens_seen": 714486848,
1138
+ "step": 2961
1139
+ },
1140
+ {
1141
+ "epoch": 1.2869007172517932,
1142
+ "grad_norm": 0.1949416856665576,
1143
+ "learning_rate": 6.10599418346613e-05,
1144
+ "loss": 0.2118,
1145
+ "num_input_tokens_seen": 719556448,
1146
+ "step": 2982
1147
+ },
1148
+ {
1149
+ "epoch": 1.2959607399018498,
1150
+ "grad_norm": 0.16224663869829734,
1151
+ "learning_rate": 6.059664528022266e-05,
1152
+ "loss": 0.2058,
1153
+ "num_input_tokens_seen": 724625472,
1154
+ "step": 3003
1155
+ },
1156
+ {
1157
+ "epoch": 1.3050207625519064,
1158
+ "grad_norm": 0.1742996675080445,
1159
+ "learning_rate": 6.0132394153337755e-05,
1160
+ "loss": 0.2065,
1161
+ "num_input_tokens_seen": 729794320,
1162
+ "step": 3024
1163
+ },
1164
+ {
1165
+ "epoch": 1.3140807852019631,
1166
+ "grad_norm": 0.17806291944392397,
1167
+ "learning_rate": 5.9667230274915174e-05,
1168
+ "loss": 0.207,
1169
+ "num_input_tokens_seen": 734753392,
1170
+ "step": 3045
1171
+ },
1172
+ {
1173
+ "epoch": 1.3231408078520197,
1174
+ "grad_norm": 0.18436964692073765,
1175
+ "learning_rate": 5.920119554808651e-05,
1176
+ "loss": 0.2049,
1177
+ "num_input_tokens_seen": 739827088,
1178
+ "step": 3066
1179
+ },
1180
+ {
1181
+ "epoch": 1.3322008305020763,
1182
+ "grad_norm": 0.16939954583438047,
1183
+ "learning_rate": 5.873433195443152e-05,
1184
+ "loss": 0.208,
1185
+ "num_input_tokens_seen": 744847184,
1186
+ "step": 3087
1187
+ },
1188
+ {
1189
+ "epoch": 1.3412608531521328,
1190
+ "grad_norm": 0.1635889048824763,
1191
+ "learning_rate": 5.82666815501964e-05,
1192
+ "loss": 0.2047,
1193
+ "num_input_tokens_seen": 749874880,
1194
+ "step": 3108
1195
+ },
1196
+ {
1197
+ "epoch": 1.3503208758021894,
1198
+ "grad_norm": 0.16527453811089068,
1199
+ "learning_rate": 5.779828646250521e-05,
1200
+ "loss": 0.2022,
1201
+ "num_input_tokens_seen": 754848400,
1202
+ "step": 3129
1203
+ },
1204
+ {
1205
+ "epoch": 1.3593808984522462,
1206
+ "grad_norm": 0.18777829379599956,
1207
+ "learning_rate": 5.7329188885565e-05,
1208
+ "loss": 0.2073,
1209
+ "num_input_tokens_seen": 759913728,
1210
+ "step": 3150
1211
+ },
1212
+ {
1213
+ "epoch": 1.3684409211023028,
1214
+ "grad_norm": 0.15155859962967053,
1215
+ "learning_rate": 5.6859431076864755e-05,
1216
+ "loss": 0.2056,
1217
+ "num_input_tokens_seen": 765009632,
1218
+ "step": 3171
1219
+ },
1220
+ {
1221
+ "epoch": 1.3775009437523593,
1222
+ "grad_norm": 0.154719416013354,
1223
+ "learning_rate": 5.6389055353368826e-05,
1224
+ "loss": 0.2056,
1225
+ "num_input_tokens_seen": 770016704,
1226
+ "step": 3192
1227
+ },
1228
+ {
1229
+ "epoch": 1.386560966402416,
1230
+ "grad_norm": 0.16028731910302912,
1231
+ "learning_rate": 5.591810408770493e-05,
1232
+ "loss": 0.2037,
1233
+ "num_input_tokens_seen": 775197264,
1234
+ "step": 3213
1235
+ },
1236
+ {
1237
+ "epoch": 1.3956209890524727,
1238
+ "grad_norm": 0.15645057759509218,
1239
+ "learning_rate": 5.544661970434696e-05,
1240
+ "loss": 0.2042,
1241
+ "num_input_tokens_seen": 780209328,
1242
+ "step": 3234
1243
+ },
1244
+ {
1245
+ "epoch": 1.4046810117025292,
1246
+ "grad_norm": 0.17948486028711083,
1247
+ "learning_rate": 5.497464467579351e-05,
1248
+ "loss": 0.2011,
1249
+ "num_input_tokens_seen": 785402112,
1250
+ "step": 3255
1251
+ },
1252
+ {
1253
+ "epoch": 1.4137410343525858,
1254
+ "grad_norm": 0.16643670433003308,
1255
+ "learning_rate": 5.450222151874166e-05,
1256
+ "loss": 0.2015,
1257
+ "num_input_tokens_seen": 790429216,
1258
+ "step": 3276
1259
+ },
1260
+ {
1261
+ "epoch": 1.4228010570026426,
1262
+ "grad_norm": 0.17345996800344896,
1263
+ "learning_rate": 5.402939279025705e-05,
1264
+ "loss": 0.2005,
1265
+ "num_input_tokens_seen": 795543264,
1266
+ "step": 3297
1267
+ },
1268
+ {
1269
+ "epoch": 1.4318610796526992,
1270
+ "grad_norm": 0.1663960297870033,
1271
+ "learning_rate": 5.355620108394018e-05,
1272
+ "loss": 0.2052,
1273
+ "num_input_tokens_seen": 800533200,
1274
+ "step": 3318
1275
+ },
1276
+ {
1277
+ "epoch": 1.4409211023027557,
1278
+ "grad_norm": 0.15958882963062815,
1279
+ "learning_rate": 5.308268902608958e-05,
1280
+ "loss": 0.2042,
1281
+ "num_input_tokens_seen": 805542720,
1282
+ "step": 3339
1283
+ },
1284
+ {
1285
+ "epoch": 1.4499811249528123,
1286
+ "grad_norm": 0.17053093118312482,
1287
+ "learning_rate": 5.2608899271861765e-05,
1288
+ "loss": 0.1984,
1289
+ "num_input_tokens_seen": 810549376,
1290
+ "step": 3360
1291
+ },
1292
+ {
1293
+ "epoch": 1.459041147602869,
1294
+ "grad_norm": 0.1731330043830458,
1295
+ "learning_rate": 5.213487450142892e-05,
1296
+ "loss": 0.2038,
1297
+ "num_input_tokens_seen": 815599232,
1298
+ "step": 3381
1299
+ },
1300
+ {
1301
+ "epoch": 1.4681011702529256,
1302
+ "grad_norm": 0.17941197802062514,
1303
+ "learning_rate": 5.166065741613402e-05,
1304
+ "loss": 0.2012,
1305
+ "num_input_tokens_seen": 820700608,
1306
+ "step": 3402
1307
+ },
1308
+ {
1309
+ "epoch": 1.4771611929029822,
1310
+ "grad_norm": 0.1844938407002505,
1311
+ "learning_rate": 5.118629073464424e-05,
1312
+ "loss": 0.1987,
1313
+ "num_input_tokens_seen": 825686176,
1314
+ "step": 3423
1315
+ },
1316
+ {
1317
+ "epoch": 1.486221215553039,
1318
+ "grad_norm": 0.1748567417166297,
1319
+ "learning_rate": 5.071181718910283e-05,
1320
+ "loss": 0.1986,
1321
+ "num_input_tokens_seen": 830730000,
1322
+ "step": 3444
1323
+ },
1324
+ {
1325
+ "epoch": 1.4952812382030956,
1326
+ "grad_norm": 0.15694569688029672,
1327
+ "learning_rate": 5.023727952127954e-05,
1328
+ "loss": 0.1987,
1329
+ "num_input_tokens_seen": 835738032,
1330
+ "step": 3465
1331
+ },
1332
+ {
1333
+ "epoch": 1.5043412608531521,
1334
+ "grad_norm": 0.18575993893540607,
1335
+ "learning_rate": 4.976272047872046e-05,
1336
+ "loss": 0.1952,
1337
+ "num_input_tokens_seen": 840806528,
1338
+ "step": 3486
1339
+ },
1340
+ {
1341
+ "epoch": 1.513401283503209,
1342
+ "grad_norm": 0.16316391964141339,
1343
+ "learning_rate": 4.9288182810897184e-05,
1344
+ "loss": 0.1957,
1345
+ "num_input_tokens_seen": 845877808,
1346
+ "step": 3507
1347
+ },
1348
+ {
1349
+ "epoch": 1.5224613061532652,
1350
+ "grad_norm": 0.1809977532876625,
1351
+ "learning_rate": 4.8813709265355766e-05,
1352
+ "loss": 0.1957,
1353
+ "num_input_tokens_seen": 851002432,
1354
+ "step": 3528
1355
+ },
1356
+ {
1357
+ "epoch": 1.531521328803322,
1358
+ "grad_norm": 0.15896204329046001,
1359
+ "learning_rate": 4.8339342583866005e-05,
1360
+ "loss": 0.197,
1361
+ "num_input_tokens_seen": 856037440,
1362
+ "step": 3549
1363
+ },
1364
+ {
1365
+ "epoch": 1.5405813514533786,
1366
+ "grad_norm": 0.1848696286617871,
1367
+ "learning_rate": 4.7865125498571086e-05,
1368
+ "loss": 0.1957,
1369
+ "num_input_tokens_seen": 860972624,
1370
+ "step": 3570
1371
+ },
1372
+ {
1373
+ "epoch": 1.5496413741034352,
1374
+ "grad_norm": 0.16411859849940666,
1375
+ "learning_rate": 4.739110072813823e-05,
1376
+ "loss": 0.1926,
1377
+ "num_input_tokens_seen": 866078128,
1378
+ "step": 3591
1379
+ },
1380
+ {
1381
+ "epoch": 1.558701396753492,
1382
+ "grad_norm": 0.15293153546751434,
1383
+ "learning_rate": 4.6917310973910425e-05,
1384
+ "loss": 0.1934,
1385
+ "num_input_tokens_seen": 871290720,
1386
+ "step": 3612
1387
+ },
1388
+ {
1389
+ "epoch": 1.5677614194035485,
1390
+ "grad_norm": 0.18580264173261662,
1391
+ "learning_rate": 4.6443798916059836e-05,
1392
+ "loss": 0.1961,
1393
+ "num_input_tokens_seen": 876353920,
1394
+ "step": 3633
1395
+ },
1396
+ {
1397
+ "epoch": 1.576821442053605,
1398
+ "grad_norm": 0.16117670144515006,
1399
+ "learning_rate": 4.597060720974298e-05,
1400
+ "loss": 0.1902,
1401
+ "num_input_tokens_seen": 881469536,
1402
+ "step": 3654
1403
+ },
1404
+ {
1405
+ "epoch": 1.5858814647036619,
1406
+ "grad_norm": 0.1821844142116438,
1407
+ "learning_rate": 4.549777848125833e-05,
1408
+ "loss": 0.1971,
1409
+ "num_input_tokens_seen": 886532048,
1410
+ "step": 3675
1411
+ },
1412
+ {
1413
+ "epoch": 1.5949414873537184,
1414
+ "grad_norm": 0.188981157327872,
1415
+ "learning_rate": 4.50253553242065e-05,
1416
+ "loss": 0.1952,
1417
+ "num_input_tokens_seen": 891565152,
1418
+ "step": 3696
1419
+ },
1420
+ {
1421
+ "epoch": 1.604001510003775,
1422
+ "grad_norm": 0.1663775536476532,
1423
+ "learning_rate": 4.4553380295653053e-05,
1424
+ "loss": 0.1908,
1425
+ "num_input_tokens_seen": 896603568,
1426
+ "step": 3717
1427
+ },
1428
+ {
1429
+ "epoch": 1.6130615326538318,
1430
+ "grad_norm": 0.16695660636413406,
1431
+ "learning_rate": 4.40818959122951e-05,
1432
+ "loss": 0.1945,
1433
+ "num_input_tokens_seen": 901703264,
1434
+ "step": 3738
1435
+ },
1436
+ {
1437
+ "epoch": 1.6221215553038881,
1438
+ "grad_norm": 0.18003132042487852,
1439
+ "learning_rate": 4.361094464663118e-05,
1440
+ "loss": 0.1911,
1441
+ "num_input_tokens_seen": 906846256,
1442
+ "step": 3759
1443
+ },
1444
+ {
1445
+ "epoch": 1.631181577953945,
1446
+ "grad_norm": 0.16377146934729214,
1447
+ "learning_rate": 4.3140568923135264e-05,
1448
+ "loss": 0.193,
1449
+ "num_input_tokens_seen": 911964272,
1450
+ "step": 3780
1451
+ },
1452
+ {
1453
+ "epoch": 1.6402416006040015,
1454
+ "grad_norm": 0.1711801561805431,
1455
+ "learning_rate": 4.267081111443501e-05,
1456
+ "loss": 0.1898,
1457
+ "num_input_tokens_seen": 917101840,
1458
+ "step": 3801
1459
+ },
1460
+ {
1461
+ "epoch": 1.649301623254058,
1462
+ "grad_norm": 0.1743609898038798,
1463
+ "learning_rate": 4.22017135374948e-05,
1464
+ "loss": 0.1852,
1465
+ "num_input_tokens_seen": 922205664,
1466
+ "step": 3822
1467
+ },
1468
+ {
1469
+ "epoch": 1.6583616459041148,
1470
+ "grad_norm": 0.17938627926996303,
1471
+ "learning_rate": 4.1733318449803624e-05,
1472
+ "loss": 0.1863,
1473
+ "num_input_tokens_seen": 927302560,
1474
+ "step": 3843
1475
+ },
1476
+ {
1477
+ "epoch": 1.6674216685541714,
1478
+ "grad_norm": 0.16947333759434738,
1479
+ "learning_rate": 4.1265668045568495e-05,
1480
+ "loss": 0.1882,
1481
+ "num_input_tokens_seen": 932325424,
1482
+ "step": 3864
1483
+ },
1484
+ {
1485
+ "epoch": 1.676481691204228,
1486
+ "grad_norm": 0.16639553173104588,
1487
+ "learning_rate": 4.079880445191351e-05,
1488
+ "loss": 0.1893,
1489
+ "num_input_tokens_seen": 937438464,
1490
+ "step": 3885
1491
+ },
1492
+ {
1493
+ "epoch": 1.6855417138542848,
1494
+ "grad_norm": 0.14651023615133163,
1495
+ "learning_rate": 4.033276972508484e-05,
1496
+ "loss": 0.1885,
1497
+ "num_input_tokens_seen": 942617840,
1498
+ "step": 3906
1499
+ },
1500
+ {
1501
+ "epoch": 1.6946017365043413,
1502
+ "grad_norm": 0.17812367097504705,
1503
+ "learning_rate": 3.9867605846662256e-05,
1504
+ "loss": 0.1883,
1505
+ "num_input_tokens_seen": 947823200,
1506
+ "step": 3927
1507
+ },
1508
+ {
1509
+ "epoch": 1.7036617591543979,
1510
+ "grad_norm": 0.1872194452488721,
1511
+ "learning_rate": 3.940335471977734e-05,
1512
+ "loss": 0.1871,
1513
+ "num_input_tokens_seen": 952872784,
1514
+ "step": 3948
1515
+ },
1516
+ {
1517
+ "epoch": 1.7127217818044547,
1518
+ "grad_norm": 0.1643081487678093,
1519
+ "learning_rate": 3.89400581653387e-05,
1520
+ "loss": 0.1853,
1521
+ "num_input_tokens_seen": 957908608,
1522
+ "step": 3969
1523
+ },
1524
+ {
1525
+ "epoch": 1.721781804454511,
1526
+ "grad_norm": 0.1753318656372752,
1527
+ "learning_rate": 3.847775791826468e-05,
1528
+ "loss": 0.1862,
1529
+ "num_input_tokens_seen": 962972208,
1530
+ "step": 3990
1531
+ },
1532
+ {
1533
+ "epoch": 1.7308418271045678,
1534
+ "grad_norm": 0.15851578473823177,
1535
+ "learning_rate": 3.801649562372371e-05,
1536
+ "loss": 0.1913,
1537
+ "num_input_tokens_seen": 968020256,
1538
+ "step": 4011
1539
+ },
1540
+ {
1541
+ "epoch": 1.7399018497546244,
1542
+ "grad_norm": 0.1812244935434252,
1543
+ "learning_rate": 3.755631283338287e-05,
1544
+ "loss": 0.1908,
1545
+ "num_input_tokens_seen": 973116912,
1546
+ "step": 4032
1547
+ },
1548
+ {
1549
+ "epoch": 1.748961872404681,
1550
+ "grad_norm": 0.16265272189557067,
1551
+ "learning_rate": 3.709725100166482e-05,
1552
+ "loss": 0.1839,
1553
+ "num_input_tokens_seen": 978276224,
1554
+ "step": 4053
1555
+ },
1556
+ {
1557
+ "epoch": 1.7580218950547377,
1558
+ "grad_norm": 0.16695166226650535,
1559
+ "learning_rate": 3.663935148201341e-05,
1560
+ "loss": 0.1869,
1561
+ "num_input_tokens_seen": 983499184,
1562
+ "step": 4074
1563
+ },
1564
+ {
1565
+ "epoch": 1.7670819177047943,
1566
+ "grad_norm": 0.17046617487207735,
1567
+ "learning_rate": 3.618265552316849e-05,
1568
+ "loss": 0.1884,
1569
+ "num_input_tokens_seen": 988511216,
1570
+ "step": 4095
1571
+ },
1572
+ {
1573
+ "epoch": 1.7761419403548508,
1574
+ "grad_norm": 0.16853521697476523,
1575
+ "learning_rate": 3.572720426545017e-05,
1576
+ "loss": 0.1863,
1577
+ "num_input_tokens_seen": 993542272,
1578
+ "step": 4116
1579
+ },
1580
+ {
1581
+ "epoch": 1.7852019630049076,
1582
+ "grad_norm": 0.16196055724715774,
1583
+ "learning_rate": 3.5273038737052675e-05,
1584
+ "loss": 0.1884,
1585
+ "num_input_tokens_seen": 998561584,
1586
+ "step": 4137
1587
+ },
1588
+ {
1589
+ "epoch": 1.794261985654964,
1590
+ "grad_norm": 0.17704958458091835,
1591
+ "learning_rate": 3.482019985034861e-05,
1592
+ "loss": 0.1815,
1593
+ "num_input_tokens_seen": 1003535696,
1594
+ "step": 4158
1595
+ },
1596
+ {
1597
+ "epoch": 1.8033220083050208,
1598
+ "grad_norm": 0.17212954264417213,
1599
+ "learning_rate": 3.43687283982033e-05,
1600
+ "loss": 0.1798,
1601
+ "num_input_tokens_seen": 1008610432,
1602
+ "step": 4179
1603
+ },
1604
+ {
1605
+ "epoch": 1.8123820309550775,
1606
+ "grad_norm": 0.1642508897074481,
1607
+ "learning_rate": 3.391866505030009e-05,
1608
+ "loss": 0.1797,
1609
+ "num_input_tokens_seen": 1013577840,
1610
+ "step": 4200
1611
+ },
1612
+ {
1613
+ "epoch": 1.821442053605134,
1614
+ "grad_norm": 0.1895193964135349,
1615
+ "learning_rate": 3.347005034947681e-05,
1616
+ "loss": 0.1773,
1617
+ "num_input_tokens_seen": 1018549888,
1618
+ "step": 4221
1619
+ },
1620
+ {
1621
+ "epoch": 1.8305020762551907,
1622
+ "grad_norm": 0.18935672208270557,
1623
+ "learning_rate": 3.3022924708073524e-05,
1624
+ "loss": 0.1828,
1625
+ "num_input_tokens_seen": 1023498368,
1626
+ "step": 4242
1627
+ },
1628
+ {
1629
+ "epoch": 1.8395620989052472,
1630
+ "grad_norm": 0.15473627402095172,
1631
+ "learning_rate": 3.257732840429206e-05,
1632
+ "loss": 0.18,
1633
+ "num_input_tokens_seen": 1028542992,
1634
+ "step": 4263
1635
+ },
1636
+ {
1637
+ "epoch": 1.8486221215553038,
1638
+ "grad_norm": 0.17782850850732204,
1639
+ "learning_rate": 3.2133301578567646e-05,
1640
+ "loss": 0.1825,
1641
+ "num_input_tokens_seen": 1033574288,
1642
+ "step": 4284
1643
+ },
1644
+ {
1645
+ "epoch": 1.8576821442053606,
1646
+ "grad_norm": 0.17879475744218412,
1647
+ "learning_rate": 3.169088422995304e-05,
1648
+ "loss": 0.1776,
1649
+ "num_input_tokens_seen": 1038606208,
1650
+ "step": 4305
1651
+ },
1652
+ {
1653
+ "epoch": 1.8667421668554172,
1654
+ "grad_norm": 0.16166293718253705,
1655
+ "learning_rate": 3.125011621251516e-05,
1656
+ "loss": 0.1768,
1657
+ "num_input_tokens_seen": 1043770704,
1658
+ "step": 4326
1659
+ },
1660
+ {
1661
+ "epoch": 1.8758021895054737,
1662
+ "grad_norm": 0.1607230134601091,
1663
+ "learning_rate": 3.081103723174515e-05,
1664
+ "loss": 0.1778,
1665
+ "num_input_tokens_seen": 1048829664,
1666
+ "step": 4347
1667
+ },
1668
+ {
1669
+ "epoch": 1.8848622121555305,
1670
+ "grad_norm": 0.159447656379203,
1671
+ "learning_rate": 3.0373686840981397e-05,
1672
+ "loss": 0.1788,
1673
+ "num_input_tokens_seen": 1053950224,
1674
+ "step": 4368
1675
+ },
1676
+ {
1677
+ "epoch": 1.8939222348055869,
1678
+ "grad_norm": 0.1674766446494019,
1679
+ "learning_rate": 2.9938104437846572e-05,
1680
+ "loss": 0.176,
1681
+ "num_input_tokens_seen": 1059119888,
1682
+ "step": 4389
1683
+ },
1684
+ {
1685
+ "epoch": 1.9029822574556436,
1686
+ "grad_norm": 0.17753675611302996,
1687
+ "learning_rate": 2.950432926069857e-05,
1688
+ "loss": 0.1783,
1689
+ "num_input_tokens_seen": 1064177088,
1690
+ "step": 4410
1691
+ },
1692
+ {
1693
+ "epoch": 1.9120422801057002,
1694
+ "grad_norm": 0.17087252328331373,
1695
+ "learning_rate": 2.9072400385095865e-05,
1696
+ "loss": 0.178,
1697
+ "num_input_tokens_seen": 1069200928,
1698
+ "step": 4431
1699
+ },
1700
+ {
1701
+ "epoch": 1.9211023027557568,
1702
+ "grad_norm": 0.16133227423173738,
1703
+ "learning_rate": 2.864235672027741e-05,
1704
+ "loss": 0.1759,
1705
+ "num_input_tokens_seen": 1074313840,
1706
+ "step": 4452
1707
+ },
1708
+ {
1709
+ "epoch": 1.9301623254058136,
1710
+ "grad_norm": 0.1865580464555286,
1711
+ "learning_rate": 2.8214237005657627e-05,
1712
+ "loss": 0.1769,
1713
+ "num_input_tokens_seen": 1079348080,
1714
+ "step": 4473
1715
+ },
1716
+ {
1717
+ "epoch": 1.9392223480558701,
1718
+ "grad_norm": 0.17483638643553473,
1719
+ "learning_rate": 2.7788079807336692e-05,
1720
+ "loss": 0.1761,
1721
+ "num_input_tokens_seen": 1084415072,
1722
+ "step": 4494
1723
+ },
1724
+ {
1725
+ "epoch": 1.9482823707059267,
1726
+ "grad_norm": 0.16127203478332483,
1727
+ "learning_rate": 2.7363923514626367e-05,
1728
+ "loss": 0.1762,
1729
+ "num_input_tokens_seen": 1089576528,
1730
+ "step": 4515
1731
+ },
1732
+ {
1733
+ "epoch": 1.9573423933559835,
1734
+ "grad_norm": 0.1818665955450248,
1735
+ "learning_rate": 2.6941806336591808e-05,
1736
+ "loss": 0.1715,
1737
+ "num_input_tokens_seen": 1094741664,
1738
+ "step": 4536
1739
+ },
1740
+ {
1741
+ "epoch": 1.96640241600604,
1742
+ "grad_norm": 0.16510174569454042,
1743
+ "learning_rate": 2.6521766298609584e-05,
1744
+ "loss": 0.1728,
1745
+ "num_input_tokens_seen": 1099708896,
1746
+ "step": 4557
1747
+ },
1748
+ {
1749
+ "epoch": 1.9754624386560966,
1750
+ "grad_norm": 0.17393602608748607,
1751
+ "learning_rate": 2.610384123894229e-05,
1752
+ "loss": 0.175,
1753
+ "num_input_tokens_seen": 1104824512,
1754
+ "step": 4578
1755
+ },
1756
+ {
1757
+ "epoch": 1.9845224613061534,
1758
+ "grad_norm": 0.18901915034549496,
1759
+ "learning_rate": 2.568806880532991e-05,
1760
+ "loss": 0.1736,
1761
+ "num_input_tokens_seen": 1109954160,
1762
+ "step": 4599
1763
+ },
1764
+ {
1765
+ "epoch": 1.9935824839562097,
1766
+ "grad_norm": 0.19336693087348367,
1767
+ "learning_rate": 2.5274486451598565e-05,
1768
+ "loss": 0.1704,
1769
+ "num_input_tokens_seen": 1115130992,
1770
+ "step": 4620
1771
+ },
1772
+ {
1773
+ "epoch": 2.003020007550019,
1774
+ "grad_norm": 0.192558427240515,
1775
+ "learning_rate": 2.4863131434286342e-05,
1776
+ "loss": 0.1548,
1777
+ "num_input_tokens_seen": 1120294784,
1778
+ "step": 4641
1779
+ },
1780
+ {
1781
+ "epoch": 2.0120800302000754,
1782
+ "grad_norm": 0.19360993518356076,
1783
+ "learning_rate": 2.4454040809287342e-05,
1784
+ "loss": 0.1188,
1785
+ "num_input_tokens_seen": 1125375728,
1786
+ "step": 4662
1787
+ },
1788
+ {
1789
+ "epoch": 2.021140052850132,
1790
+ "grad_norm": 0.19346692314512148,
1791
+ "learning_rate": 2.4047251428513485e-05,
1792
+ "loss": 0.1176,
1793
+ "num_input_tokens_seen": 1130663488,
1794
+ "step": 4683
1795
+ },
1796
+ {
1797
+ "epoch": 2.0302000755001886,
1798
+ "grad_norm": 0.1915500646603155,
1799
+ "learning_rate": 2.364279993657487e-05,
1800
+ "loss": 0.1166,
1801
+ "num_input_tokens_seen": 1135729856,
1802
+ "step": 4704
1803
+ },
1804
+ {
1805
+ "epoch": 2.0392600981502453,
1806
+ "grad_norm": 0.21320689744431512,
1807
+ "learning_rate": 2.3240722767478657e-05,
1808
+ "loss": 0.1129,
1809
+ "num_input_tokens_seen": 1140728768,
1810
+ "step": 4725
1811
+ },
1812
+ {
1813
+ "epoch": 2.048320120800302,
1814
+ "grad_norm": 0.20002232427856995,
1815
+ "learning_rate": 2.2841056141347038e-05,
1816
+ "loss": 0.1122,
1817
+ "num_input_tokens_seen": 1145810672,
1818
+ "step": 4746
1819
+ },
1820
+ {
1821
+ "epoch": 2.0573801434503585,
1822
+ "grad_norm": 0.21228559927967805,
1823
+ "learning_rate": 2.2443836061154415e-05,
1824
+ "loss": 0.1145,
1825
+ "num_input_tokens_seen": 1150862064,
1826
+ "step": 4767
1827
+ },
1828
+ {
1829
+ "epoch": 2.0664401661004153,
1830
+ "grad_norm": 0.19792768108065947,
1831
+ "learning_rate": 2.2049098309484195e-05,
1832
+ "loss": 0.1153,
1833
+ "num_input_tokens_seen": 1155954544,
1834
+ "step": 4788
1835
+ },
1836
+ {
1837
+ "epoch": 2.075500188750472,
1838
+ "grad_norm": 0.21247296887779493,
1839
+ "learning_rate": 2.1656878445305447e-05,
1840
+ "loss": 0.1152,
1841
+ "num_input_tokens_seen": 1161054256,
1842
+ "step": 4809
1843
+ },
1844
+ {
1845
+ "epoch": 2.0845602114005284,
1846
+ "grad_norm": 0.19109010163603735,
1847
+ "learning_rate": 2.1267211800769528e-05,
1848
+ "loss": 0.1148,
1849
+ "num_input_tokens_seen": 1166056688,
1850
+ "step": 4830
1851
+ },
1852
+ {
1853
+ "epoch": 2.093620234050585,
1854
+ "grad_norm": 0.19679782828606215,
1855
+ "learning_rate": 2.088013347802738e-05,
1856
+ "loss": 0.1119,
1857
+ "num_input_tokens_seen": 1171231104,
1858
+ "step": 4851
1859
+ },
1860
+ {
1861
+ "epoch": 2.102680256700642,
1862
+ "grad_norm": 0.2128224999872872,
1863
+ "learning_rate": 2.0495678346067414e-05,
1864
+ "loss": 0.1101,
1865
+ "num_input_tokens_seen": 1176284976,
1866
+ "step": 4872
1867
+ },
1868
+ {
1869
+ "epoch": 2.1117402793506983,
1870
+ "grad_norm": 0.2123206811047115,
1871
+ "learning_rate": 2.011388103757442e-05,
1872
+ "loss": 0.1139,
1873
+ "num_input_tokens_seen": 1181400944,
1874
+ "step": 4893
1875
+ },
1876
+ {
1877
+ "epoch": 2.120800302000755,
1878
+ "grad_norm": 0.2071017368245751,
1879
+ "learning_rate": 1.973477594580977e-05,
1880
+ "loss": 0.1116,
1881
+ "num_input_tokens_seen": 1186527776,
1882
+ "step": 4914
1883
+ },
1884
+ {
1885
+ "epoch": 2.1298603246508114,
1886
+ "grad_norm": 0.17323287993849096,
1887
+ "learning_rate": 1.9358397221513176e-05,
1888
+ "loss": 0.112,
1889
+ "num_input_tokens_seen": 1191661680,
1890
+ "step": 4935
1891
+ },
1892
+ {
1893
+ "epoch": 2.138920347300868,
1894
+ "grad_norm": 0.20213151950682676,
1895
+ "learning_rate": 1.8984778769826316e-05,
1896
+ "loss": 0.1106,
1897
+ "num_input_tokens_seen": 1196759648,
1898
+ "step": 4956
1899
+ },
1900
+ {
1901
+ "epoch": 2.147980369950925,
1902
+ "grad_norm": 0.19700292148625387,
1903
+ "learning_rate": 1.8613954247238586e-05,
1904
+ "loss": 0.1124,
1905
+ "num_input_tokens_seen": 1201857104,
1906
+ "step": 4977
1907
+ },
1908
+ {
1909
+ "epoch": 2.1570403926009813,
1910
+ "grad_norm": 0.21527000496492768,
1911
+ "learning_rate": 1.82459570585552e-05,
1912
+ "loss": 0.1136,
1913
+ "num_input_tokens_seen": 1206927520,
1914
+ "step": 4998
1915
+ },
1916
+ {
1917
+ "epoch": 2.157903251900987,
1918
+ "eval_loss": 0.19485081732273102,
1919
+ "eval_runtime": 529.4687,
1920
+ "eval_samples_per_second": 17.331,
1921
+ "eval_steps_per_second": 1.084,
1922
+ "num_input_tokens_seen": 1207385424,
1923
+ "step": 5000
1924
+ },
1925
+ {
1926
+ "epoch": 2.166100415251038,
1927
+ "grad_norm": 0.2275158963594303,
1928
+ "learning_rate": 1.7880820353888056e-05,
1929
+ "loss": 0.1102,
1930
+ "num_input_tokens_seen": 1211875824,
1931
+ "step": 5019
1932
+ },
1933
+ {
1934
+ "epoch": 2.175160437901095,
1935
+ "grad_norm": 0.20450931488489404,
1936
+ "learning_rate": 1.751857702566944e-05,
1937
+ "loss": 0.113,
1938
+ "num_input_tokens_seen": 1216954688,
1939
+ "step": 5040
1940
+ },
1941
+ {
1942
+ "epoch": 2.1842204605511513,
1943
+ "grad_norm": 0.21173943893990088,
1944
+ "learning_rate": 1.7159259705689e-05,
1945
+ "loss": 0.1104,
1946
+ "num_input_tokens_seen": 1221976560,
1947
+ "step": 5061
1948
+ },
1949
+ {
1950
+ "epoch": 2.193280483201208,
1951
+ "grad_norm": 0.20717537063008165,
1952
+ "learning_rate": 1.6802900762154267e-05,
1953
+ "loss": 0.1152,
1954
+ "num_input_tokens_seen": 1226975776,
1955
+ "step": 5082
1956
+ },
1957
+ {
1958
+ "epoch": 2.2023405058512644,
1959
+ "grad_norm": 0.19831781893791461,
1960
+ "learning_rate": 1.644953229677474e-05,
1961
+ "loss": 0.1097,
1962
+ "num_input_tokens_seen": 1231998784,
1963
+ "step": 5103
1964
+ },
1965
+ {
1966
+ "epoch": 2.211400528501321,
1967
+ "grad_norm": 0.18492554370023317,
1968
+ "learning_rate": 1.609918614187009e-05,
1969
+ "loss": 0.1111,
1970
+ "num_input_tokens_seen": 1236990864,
1971
+ "step": 5124
1972
+ },
1973
+ {
1974
+ "epoch": 2.220460551151378,
1975
+ "grad_norm": 0.20016085842409992,
1976
+ "learning_rate": 1.575189385750271e-05,
1977
+ "loss": 0.1104,
1978
+ "num_input_tokens_seen": 1242051280,
1979
+ "step": 5145
1980
+ },
1981
+ {
1982
+ "epoch": 2.2295205738014343,
1983
+ "grad_norm": 0.2070887723839001,
1984
+ "learning_rate": 1.540768672863468e-05,
1985
+ "loss": 0.1075,
1986
+ "num_input_tokens_seen": 1247127040,
1987
+ "step": 5166
1988
+ },
1989
+ {
1990
+ "epoch": 2.238580596451491,
1991
+ "grad_norm": 0.1925213910719394,
1992
+ "learning_rate": 1.5066595762309477e-05,
1993
+ "loss": 0.1093,
1994
+ "num_input_tokens_seen": 1252158672,
1995
+ "step": 5187
1996
+ },
1997
+ {
1998
+ "epoch": 2.247640619101548,
1999
+ "grad_norm": 0.205831347337121,
2000
+ "learning_rate": 1.4728651684858834e-05,
2001
+ "loss": 0.1126,
2002
+ "num_input_tokens_seen": 1257321184,
2003
+ "step": 5208
2004
+ },
2005
+ {
2006
+ "epoch": 2.2567006417516042,
2007
+ "grad_norm": 0.19926488557298117,
2008
+ "learning_rate": 1.4393884939134833e-05,
2009
+ "loss": 0.1064,
2010
+ "num_input_tokens_seen": 1262315984,
2011
+ "step": 5229
2012
+ },
2013
+ {
2014
+ "epoch": 2.265760664401661,
2015
+ "grad_norm": 0.18546254868875062,
2016
+ "learning_rate": 1.4062325681767469e-05,
2017
+ "loss": 0.1096,
2018
+ "num_input_tokens_seen": 1267351616,
2019
+ "step": 5250
2020
+ },
2021
+ {
2022
+ "epoch": 2.274820687051718,
2023
+ "grad_norm": 0.21880629906349583,
2024
+ "learning_rate": 1.3734003780448218e-05,
2025
+ "loss": 0.1089,
2026
+ "num_input_tokens_seen": 1272350592,
2027
+ "step": 5271
2028
+ },
2029
+ {
2030
+ "epoch": 2.283880709701774,
2031
+ "grad_norm": 0.1996371660776893,
2032
+ "learning_rate": 1.340894881123932e-05,
2033
+ "loss": 0.1093,
2034
+ "num_input_tokens_seen": 1277314160,
2035
+ "step": 5292
2036
+ },
2037
+ {
2038
+ "epoch": 2.292940732351831,
2039
+ "grad_norm": 0.18322023913039737,
2040
+ "learning_rate": 1.308719005590957e-05,
2041
+ "loss": 0.1064,
2042
+ "num_input_tokens_seen": 1282348896,
2043
+ "step": 5313
2044
+ },
2045
+ {
2046
+ "epoch": 2.3020007550018873,
2047
+ "grad_norm": 0.19825429674508396,
2048
+ "learning_rate": 1.276875649929654e-05,
2049
+ "loss": 0.1103,
2050
+ "num_input_tokens_seen": 1287503120,
2051
+ "step": 5334
2052
+ },
2053
+ {
2054
+ "epoch": 2.311060777651944,
2055
+ "grad_norm": 0.20100225641083314,
2056
+ "learning_rate": 1.2453676826695532e-05,
2057
+ "loss": 0.1077,
2058
+ "num_input_tokens_seen": 1292488224,
2059
+ "step": 5355
2060
+ },
2061
+ {
2062
+ "epoch": 2.320120800302001,
2063
+ "grad_norm": 0.19869949736224346,
2064
+ "learning_rate": 1.2141979421275545e-05,
2065
+ "loss": 0.1051,
2066
+ "num_input_tokens_seen": 1297613792,
2067
+ "step": 5376
2068
+ },
2069
+ {
2070
+ "epoch": 2.329180822952057,
2071
+ "grad_norm": 0.20145867765354752,
2072
+ "learning_rate": 1.1833692361522459e-05,
2073
+ "loss": 0.1063,
2074
+ "num_input_tokens_seen": 1302765200,
2075
+ "step": 5397
2076
+ },
2077
+ {
2078
+ "epoch": 2.338240845602114,
2079
+ "grad_norm": 0.20680505787617295,
2080
+ "learning_rate": 1.1528843418709622e-05,
2081
+ "loss": 0.1073,
2082
+ "num_input_tokens_seen": 1307780896,
2083
+ "step": 5418
2084
+ },
2085
+ {
2086
+ "epoch": 2.3473008682521708,
2087
+ "grad_norm": 0.23847500451035963,
2088
+ "learning_rate": 1.1227460054396177e-05,
2089
+ "loss": 0.1076,
2090
+ "num_input_tokens_seen": 1312916864,
2091
+ "step": 5439
2092
+ },
2093
+ {
2094
+ "epoch": 2.356360890902227,
2095
+ "grad_norm": 0.21518454470567003,
2096
+ "learning_rate": 1.0929569417953278e-05,
2097
+ "loss": 0.1049,
2098
+ "num_input_tokens_seen": 1317924528,
2099
+ "step": 5460
2100
+ },
2101
+ {
2102
+ "epoch": 2.365420913552284,
2103
+ "grad_norm": 0.19953783012904103,
2104
+ "learning_rate": 1.0635198344118296e-05,
2105
+ "loss": 0.1038,
2106
+ "num_input_tokens_seen": 1322892896,
2107
+ "step": 5481
2108
+ },
2109
+ {
2110
+ "epoch": 2.3744809362023407,
2111
+ "grad_norm": 0.20097656219123833,
2112
+ "learning_rate": 1.034437335057762e-05,
2113
+ "loss": 0.1049,
2114
+ "num_input_tokens_seen": 1328000960,
2115
+ "step": 5502
2116
+ },
2117
+ {
2118
+ "epoch": 2.383540958852397,
2119
+ "grad_norm": 0.20223248741837738,
2120
+ "learning_rate": 1.005712063557776e-05,
2121
+ "loss": 0.1026,
2122
+ "num_input_tokens_seen": 1333104928,
2123
+ "step": 5523
2124
+ },
2125
+ {
2126
+ "epoch": 2.392600981502454,
2127
+ "grad_norm": 0.184389360298103,
2128
+ "learning_rate": 9.773466075565457e-06,
2129
+ "loss": 0.1061,
2130
+ "num_input_tokens_seen": 1338094928,
2131
+ "step": 5544
2132
+ },
2133
+ {
2134
+ "epoch": 2.40166100415251,
2135
+ "grad_norm": 0.18202586925329933,
2136
+ "learning_rate": 9.493435222856556e-06,
2137
+ "loss": 0.1078,
2138
+ "num_input_tokens_seen": 1343094352,
2139
+ "step": 5565
2140
+ },
2141
+ {
2142
+ "epoch": 2.410721026802567,
2143
+ "grad_norm": 0.21238526697964133,
2144
+ "learning_rate": 9.21705330333426e-06,
2145
+ "loss": 0.1021,
2146
+ "num_input_tokens_seen": 1348209008,
2147
+ "step": 5586
2148
+ },
2149
+ {
2150
+ "epoch": 2.4197810494526237,
2151
+ "grad_norm": 0.2033611614783377,
2152
+ "learning_rate": 8.944345214176675e-06,
2153
+ "loss": 0.105,
2154
+ "num_input_tokens_seen": 1353281712,
2155
+ "step": 5607
2156
+ },
2157
+ {
2158
+ "epoch": 2.42884107210268,
2159
+ "grad_norm": 0.19144661395169293,
2160
+ "learning_rate": 8.675335521614036e-06,
2161
+ "loss": 0.1039,
2162
+ "num_input_tokens_seen": 1358325728,
2163
+ "step": 5628
2164
+ },
2165
+ {
2166
+ "epoch": 2.437901094752737,
2167
+ "grad_norm": 0.20545555012965147,
2168
+ "learning_rate": 8.410048458715763e-06,
2169
+ "loss": 0.1026,
2170
+ "num_input_tokens_seen": 1363274864,
2171
+ "step": 5649
2172
+ },
2173
+ {
2174
+ "epoch": 2.4469611174027937,
2175
+ "grad_norm": 0.20596285141748574,
2176
+ "learning_rate": 8.148507923207377e-06,
2177
+ "loss": 0.1046,
2178
+ "num_input_tokens_seen": 1368398176,
2179
+ "step": 5670
2180
+ },
2181
+ {
2182
+ "epoch": 2.45602114005285,
2183
+ "grad_norm": 0.21097019629979452,
2184
+ "learning_rate": 7.890737475317817e-06,
2185
+ "loss": 0.1062,
2186
+ "num_input_tokens_seen": 1373421664,
2187
+ "step": 5691
2188
+ },
2189
+ {
2190
+ "epoch": 2.465081162702907,
2191
+ "grad_norm": 0.1903944548607354,
2192
+ "learning_rate": 7.636760335657056e-06,
2193
+ "loss": 0.1005,
2194
+ "num_input_tokens_seen": 1378386688,
2195
+ "step": 5712
2196
+ },
2197
+ {
2198
+ "epoch": 2.4741411853529636,
2199
+ "grad_norm": 0.19609864215469505,
2200
+ "learning_rate": 7.38659938312432e-06,
2201
+ "loss": 0.1008,
2202
+ "num_input_tokens_seen": 1383515360,
2203
+ "step": 5733
2204
+ },
2205
+ {
2206
+ "epoch": 2.48320120800302,
2207
+ "grad_norm": 0.18901755025774616,
2208
+ "learning_rate": 7.140277152847103e-06,
2209
+ "loss": 0.1012,
2210
+ "num_input_tokens_seen": 1388651712,
2211
+ "step": 5754
2212
+ },
2213
+ {
2214
+ "epoch": 2.4922612306530767,
2215
+ "grad_norm": 0.2089521843263624,
2216
+ "learning_rate": 6.89781583415115e-06,
2217
+ "loss": 0.1004,
2218
+ "num_input_tokens_seen": 1393819168,
2219
+ "step": 5775
2220
+ },
2221
+ {
2222
+ "epoch": 2.501321253303133,
2223
+ "grad_norm": 0.20297486453222555,
2224
+ "learning_rate": 6.659237268561569e-06,
2225
+ "loss": 0.1058,
2226
+ "num_input_tokens_seen": 1399005008,
2227
+ "step": 5796
2228
+ },
2229
+ {
2230
+ "epoch": 2.51038127595319,
2231
+ "grad_norm": 0.1950872269091398,
2232
+ "learning_rate": 6.424562947835367e-06,
2233
+ "loss": 0.0996,
2234
+ "num_input_tokens_seen": 1404075040,
2235
+ "step": 5817
2236
+ },
2237
+ {
2238
+ "epoch": 2.5194412986032466,
2239
+ "grad_norm": 0.19137900590478205,
2240
+ "learning_rate": 6.193814012025278e-06,
2241
+ "loss": 0.098,
2242
+ "num_input_tokens_seen": 1409145760,
2243
+ "step": 5838
2244
+ },
2245
+ {
2246
+ "epoch": 2.5285013212533034,
2247
+ "grad_norm": 0.21343987395986905,
2248
+ "learning_rate": 5.967011247575532e-06,
2249
+ "loss": 0.1053,
2250
+ "num_input_tokens_seen": 1414225568,
2251
+ "step": 5859
2252
+ },
2253
+ {
2254
+ "epoch": 2.5375613439033597,
2255
+ "grad_norm": 0.21335949851815006,
2256
+ "learning_rate": 5.744175085449338e-06,
2257
+ "loss": 0.1021,
2258
+ "num_input_tokens_seen": 1419339216,
2259
+ "step": 5880
2260
+ },
2261
+ {
2262
+ "epoch": 2.5466213665534165,
2263
+ "grad_norm": 0.19658196939034006,
2264
+ "learning_rate": 5.525325599288356e-06,
2265
+ "loss": 0.1003,
2266
+ "num_input_tokens_seen": 1424423024,
2267
+ "step": 5901
2268
+ },
2269
+ {
2270
+ "epoch": 2.555681389203473,
2271
+ "grad_norm": 0.1831370056225536,
2272
+ "learning_rate": 5.310482503604497e-06,
2273
+ "loss": 0.1039,
2274
+ "num_input_tokens_seen": 1429360512,
2275
+ "step": 5922
2276
+ },
2277
+ {
2278
+ "epoch": 2.5647414118535297,
2279
+ "grad_norm": 0.21013156618721565,
2280
+ "learning_rate": 5.09966515200393e-06,
2281
+ "loss": 0.1034,
2282
+ "num_input_tokens_seen": 1434443216,
2283
+ "step": 5943
2284
+ },
2285
+ {
2286
+ "epoch": 2.5738014345035864,
2287
+ "grad_norm": 0.2204689190211589,
2288
+ "learning_rate": 4.892892535443655e-06,
2289
+ "loss": 0.1025,
2290
+ "num_input_tokens_seen": 1439693152,
2291
+ "step": 5964
2292
+ },
2293
+ {
2294
+ "epoch": 2.582861457153643,
2295
+ "grad_norm": 0.20888767875138448,
2296
+ "learning_rate": 4.690183280520777e-06,
2297
+ "loss": 0.1041,
2298
+ "num_input_tokens_seen": 1444742640,
2299
+ "step": 5985
2300
+ },
2301
+ {
2302
+ "epoch": 2.5919214798036996,
2303
+ "grad_norm": 0.20314033156230726,
2304
+ "learning_rate": 4.491555647794609e-06,
2305
+ "loss": 0.1035,
2306
+ "num_input_tokens_seen": 1449817024,
2307
+ "step": 6006
2308
+ },
2309
+ {
2310
+ "epoch": 2.600981502453756,
2311
+ "grad_norm": 0.1878500846044568,
2312
+ "learning_rate": 4.297027530141634e-06,
2313
+ "loss": 0.102,
2314
+ "num_input_tokens_seen": 1454966656,
2315
+ "step": 6027
2316
+ },
2317
+ {
2318
+ "epoch": 2.6100415251038127,
2319
+ "grad_norm": 0.1689243463349296,
2320
+ "learning_rate": 4.106616451143719e-06,
2321
+ "loss": 0.0968,
2322
+ "num_input_tokens_seen": 1460107904,
2323
+ "step": 6048
2324
+ },
2325
+ {
2326
+ "epoch": 2.6191015477538695,
2327
+ "grad_norm": 0.20642026958771845,
2328
+ "learning_rate": 3.9203395635095615e-06,
2329
+ "loss": 0.1025,
2330
+ "num_input_tokens_seen": 1465329712,
2331
+ "step": 6069
2332
+ },
2333
+ {
2334
+ "epoch": 2.6281615704039263,
2335
+ "grad_norm": 0.18586990386683522,
2336
+ "learning_rate": 3.7382136475294592e-06,
2337
+ "loss": 0.0992,
2338
+ "num_input_tokens_seen": 1470486400,
2339
+ "step": 6090
2340
+ },
2341
+ {
2342
+ "epoch": 2.6372215930539826,
2343
+ "grad_norm": 0.2145218277764739,
2344
+ "learning_rate": 3.5602551095638094e-06,
2345
+ "loss": 0.1014,
2346
+ "num_input_tokens_seen": 1475481216,
2347
+ "step": 6111
2348
+ },
2349
+ {
2350
+ "epoch": 2.6462816157040394,
2351
+ "grad_norm": 0.18413690443200365,
2352
+ "learning_rate": 3.386479980565077e-06,
2353
+ "loss": 0.097,
2354
+ "num_input_tokens_seen": 1480509520,
2355
+ "step": 6132
2356
+ },
2357
+ {
2358
+ "epoch": 2.6553416383540958,
2359
+ "grad_norm": 0.20568925987079073,
2360
+ "learning_rate": 3.2169039146337455e-06,
2361
+ "loss": 0.1011,
2362
+ "num_input_tokens_seen": 1485415168,
2363
+ "step": 6153
2364
+ },
2365
+ {
2366
+ "epoch": 2.6644016610041525,
2367
+ "grad_norm": 0.19689596480908558,
2368
+ "learning_rate": 3.0515421876081364e-06,
2369
+ "loss": 0.1003,
2370
+ "num_input_tokens_seen": 1490580288,
2371
+ "step": 6174
2372
+ },
2373
+ {
2374
+ "epoch": 2.6734616836542093,
2375
+ "grad_norm": 0.19998505506705416,
2376
+ "learning_rate": 2.8904096956883396e-06,
2377
+ "loss": 0.1011,
2378
+ "num_input_tokens_seen": 1495724928,
2379
+ "step": 6195
2380
+ },
2381
+ {
2382
+ "epoch": 2.6825217063042657,
2383
+ "grad_norm": 0.19403273255448156,
2384
+ "learning_rate": 2.733520954094304e-06,
2385
+ "loss": 0.0992,
2386
+ "num_input_tokens_seen": 1500671568,
2387
+ "step": 6216
2388
+ },
2389
+ {
2390
+ "epoch": 2.6915817289543225,
2391
+ "grad_norm": 0.2062968511222456,
2392
+ "learning_rate": 2.580890095758276e-06,
2393
+ "loss": 0.0985,
2394
+ "num_input_tokens_seen": 1505736848,
2395
+ "step": 6237
2396
+ },
2397
+ {
2398
+ "epoch": 2.700641751604379,
2399
+ "grad_norm": 0.18160540614114035,
2400
+ "learning_rate": 2.4325308700516804e-06,
2401
+ "loss": 0.0999,
2402
+ "num_input_tokens_seen": 1510772384,
2403
+ "step": 6258
2404
+ },
2405
+ {
2406
+ "epoch": 2.7097017742544356,
2407
+ "grad_norm": 0.1923201194653099,
2408
+ "learning_rate": 2.288456641546549e-06,
2409
+ "loss": 0.1015,
2410
+ "num_input_tokens_seen": 1515840336,
2411
+ "step": 6279
2412
+ },
2413
+ {
2414
+ "epoch": 2.7187617969044924,
2415
+ "grad_norm": 0.19463587674679012,
2416
+ "learning_rate": 2.1486803888115802e-06,
2417
+ "loss": 0.0952,
2418
+ "num_input_tokens_seen": 1520795728,
2419
+ "step": 6300
2420
+ },
2421
+ {
2422
+ "epoch": 2.7278218195545487,
2423
+ "grad_norm": 0.20675363777805839,
2424
+ "learning_rate": 2.013214703242994e-06,
2425
+ "loss": 0.1014,
2426
+ "num_input_tokens_seen": 1525885232,
2427
+ "step": 6321
2428
+ },
2429
+ {
2430
+ "epoch": 2.7368818422046055,
2431
+ "grad_norm": 0.20373174987364437,
2432
+ "learning_rate": 1.8820717879303175e-06,
2433
+ "loss": 0.0962,
2434
+ "num_input_tokens_seen": 1531020736,
2435
+ "step": 6342
2436
+ },
2437
+ {
2438
+ "epoch": 2.7459418648546623,
2439
+ "grad_norm": 0.1956195345947546,
2440
+ "learning_rate": 1.7552634565570325e-06,
2441
+ "loss": 0.0984,
2442
+ "num_input_tokens_seen": 1536139280,
2443
+ "step": 6363
2444
+ },
2445
+ {
2446
+ "epoch": 2.7550018875047186,
2447
+ "grad_norm": 0.1948987852214273,
2448
+ "learning_rate": 1.6328011323364313e-06,
2449
+ "loss": 0.0996,
2450
+ "num_input_tokens_seen": 1541119392,
2451
+ "step": 6384
2452
+ },
2453
+ {
2454
+ "epoch": 2.7640619101547754,
2455
+ "grad_norm": 0.20220064200986687,
2456
+ "learning_rate": 1.5146958469825445e-06,
2457
+ "loss": 0.098,
2458
+ "num_input_tokens_seen": 1546172016,
2459
+ "step": 6405
2460
+ },
2461
+ {
2462
+ "epoch": 2.773121932804832,
2463
+ "grad_norm": 0.18253057622469138,
2464
+ "learning_rate": 1.4009582397163879e-06,
2465
+ "loss": 0.0979,
2466
+ "num_input_tokens_seen": 1551424800,
2467
+ "step": 6426
2468
+ },
2469
+ {
2470
+ "epoch": 2.7821819554548886,
2471
+ "grad_norm": 0.19954203330015002,
2472
+ "learning_rate": 1.2915985563075383e-06,
2473
+ "loss": 0.096,
2474
+ "num_input_tokens_seen": 1556510032,
2475
+ "step": 6447
2476
+ },
2477
+ {
2478
+ "epoch": 2.7912419781049453,
2479
+ "grad_norm": 0.18349734934457243,
2480
+ "learning_rate": 1.1866266481512234e-06,
2481
+ "loss": 0.0995,
2482
+ "num_input_tokens_seen": 1561425840,
2483
+ "step": 6468
2484
+ },
2485
+ {
2486
+ "epoch": 2.8003020007550017,
2487
+ "grad_norm": 0.19583118554915796,
2488
+ "learning_rate": 1.0860519713808082e-06,
2489
+ "loss": 0.0979,
2490
+ "num_input_tokens_seen": 1566437584,
2491
+ "step": 6489
2492
+ },
2493
+ {
2494
+ "epoch": 2.8093620234050585,
2495
+ "grad_norm": 0.21286644366673166,
2496
+ "learning_rate": 9.898835860160271e-07,
2497
+ "loss": 0.0944,
2498
+ "num_input_tokens_seen": 1571433728,
2499
+ "step": 6510
2500
+ },
2501
+ {
2502
+ "epoch": 2.8184220460551153,
2503
+ "grad_norm": 0.18549288153723123,
2504
+ "learning_rate": 8.981301551467924e-07,
2505
+ "loss": 0.0949,
2506
+ "num_input_tokens_seen": 1576510304,
2507
+ "step": 6531
2508
+ },
2509
+ {
2510
+ "epoch": 2.8274820687051716,
2511
+ "grad_norm": 0.1969304866148859,
2512
+ "learning_rate": 8.10799944152818e-07,
2513
+ "loss": 0.0959,
2514
+ "num_input_tokens_seen": 1581652480,
2515
+ "step": 6552
2516
+ },
2517
+ {
2518
+ "epoch": 2.8365420913552284,
2519
+ "grad_norm": 0.19621694587220775,
2520
+ "learning_rate": 7.279008199590543e-07,
2521
+ "loss": 0.0995,
2522
+ "num_input_tokens_seen": 1586710928,
2523
+ "step": 6573
2524
+ },
2525
+ {
2526
+ "epoch": 2.845602114005285,
2527
+ "grad_norm": 0.19626099410771614,
2528
+ "learning_rate": 6.494402503270158e-07,
2529
+ "loss": 0.0973,
2530
+ "num_input_tokens_seen": 1591751872,
2531
+ "step": 6594
2532
+ },
2533
+ {
2534
+ "epoch": 2.8546621366553415,
2535
+ "grad_norm": 0.17530668226038035,
2536
+ "learning_rate": 5.754253031820588e-07,
2537
+ "loss": 0.0992,
2538
+ "num_input_tokens_seen": 1596817344,
2539
+ "step": 6615
2540
+ },
2541
+ {
2542
+ "epoch": 2.8637221593053983,
2543
+ "grad_norm": 0.1962276487617284,
2544
+ "learning_rate": 5.058626459766902e-07,
2545
+ "loss": 0.0978,
2546
+ "num_input_tokens_seen": 1601955280,
2547
+ "step": 6636
2548
+ },
2549
+ {
2550
+ "epoch": 2.872782181955455,
2551
+ "grad_norm": 0.19661166968992774,
2552
+ "learning_rate": 4.407585450899587e-07,
2553
+ "loss": 0.0963,
2554
+ "num_input_tokens_seen": 1606977888,
2555
+ "step": 6657
2556
+ },
2557
+ {
2558
+ "epoch": 2.8818422046055114,
2559
+ "grad_norm": 0.1900385103617743,
2560
+ "learning_rate": 3.8011886526292395e-07,
2561
+ "loss": 0.0932,
2562
+ "num_input_tokens_seen": 1612137088,
2563
+ "step": 6678
2564
+ },
2565
+ {
2566
+ "epoch": 2.8909022272555682,
2567
+ "grad_norm": 0.19054833990071282,
2568
+ "learning_rate": 3.2394906907040056e-07,
2569
+ "loss": 0.098,
2570
+ "num_input_tokens_seen": 1617105760,
2571
+ "step": 6699
2572
+ },
2573
+ {
2574
+ "epoch": 2.8999622499056246,
2575
+ "grad_norm": 0.22982156321658473,
2576
+ "learning_rate": 2.7225421642883554e-07,
2577
+ "loss": 0.099,
2578
+ "num_input_tokens_seen": 1622079712,
2579
+ "step": 6720
2580
+ },
2581
+ {
2582
+ "epoch": 2.9090222725556814,
2583
+ "grad_norm": 0.20733117617880123,
2584
+ "learning_rate": 2.250389641405115e-07,
2585
+ "loss": 0.0974,
2586
+ "num_input_tokens_seen": 1627262208,
2587
+ "step": 6741
2588
+ },
2589
+ {
2590
+ "epoch": 2.918082295205738,
2591
+ "grad_norm": 0.2091535861816229,
2592
+ "learning_rate": 1.823075654740547e-07,
2593
+ "loss": 0.0995,
2594
+ "num_input_tokens_seen": 1632293744,
2595
+ "step": 6762
2596
+ },
2597
+ {
2598
+ "epoch": 2.9271423178557945,
2599
+ "grad_norm": 0.2010699924002249,
2600
+ "learning_rate": 1.4406386978128018e-07,
2601
+ "loss": 0.0955,
2602
+ "num_input_tokens_seen": 1637413856,
2603
+ "step": 6783
2604
+ },
2605
+ {
2606
+ "epoch": 2.9362023405058513,
2607
+ "grad_norm": 0.2039974530223662,
2608
+ "learning_rate": 1.1031132215043594e-07,
2609
+ "loss": 0.095,
2610
+ "num_input_tokens_seen": 1642376144,
2611
+ "step": 6804
2612
+ },
2613
+ {
2614
+ "epoch": 2.9452623631559076,
2615
+ "grad_norm": 0.1867785407127438,
2616
+ "learning_rate": 8.105296309586785e-08,
2617
+ "loss": 0.0995,
2618
+ "num_input_tokens_seen": 1647471008,
2619
+ "step": 6825
2620
+ },
2621
+ {
2622
+ "epoch": 2.9543223858059644,
2623
+ "grad_norm": 0.1873978173047584,
2624
+ "learning_rate": 5.629142828411094e-08,
2625
+ "loss": 0.0976,
2626
+ "num_input_tokens_seen": 1652489696,
2627
+ "step": 6846
2628
+ },
2629
+ {
2630
+ "epoch": 2.963382408456021,
2631
+ "grad_norm": 0.1977061377471765,
2632
+ "learning_rate": 3.602894829647374e-08,
2633
+ "loss": 0.0955,
2634
+ "num_input_tokens_seen": 1657488848,
2635
+ "step": 6867
2636
+ },
2637
+ {
2638
+ "epoch": 2.972442431106078,
2639
+ "grad_norm": 0.19200607060766933,
2640
+ "learning_rate": 2.0267348428087974e-08,
2641
+ "loss": 0.0979,
2642
+ "num_input_tokens_seen": 1662468816,
2643
+ "step": 6888
2644
+ },
2645
+ {
2646
+ "epoch": 2.9815024537561343,
2647
+ "grad_norm": 0.21184767679059754,
2648
+ "learning_rate": 9.008048523501122e-09,
2649
+ "loss": 0.0999,
2650
+ "num_input_tokens_seen": 1667627776,
2651
+ "step": 6909
2652
+ },
2653
+ {
2654
+ "epoch": 2.990562476406191,
2655
+ "grad_norm": 0.2003643238535032,
2656
+ "learning_rate": 2.252062848745462e-09,
2657
+ "loss": 0.099,
2658
+ "num_input_tokens_seen": 1672724048,
2659
+ "step": 6930
2660
+ },
2661
+ {
2662
+ "epoch": 2.9996224990562474,
2663
+ "grad_norm": 0.19768122036104033,
2664
+ "learning_rate": 0.0,
2665
+ "loss": 0.0971,
2666
+ "num_input_tokens_seen": 1677860944,
2667
+ "step": 6951
2668
+ },
2669
+ {
2670
+ "epoch": 2.9996224990562474,
2671
+ "num_input_tokens_seen": 1677860944,
2672
+ "step": 6951,
2673
+ "total_flos": 8545808136798208.0,
2674
+ "train_loss": 0.2019795169591595,
2675
+ "train_runtime": 178782.2648,
2676
+ "train_samples_per_second": 4.978,
2677
+ "train_steps_per_second": 0.039
2678
+ }
2679
+ ],
2680
+ "logging_steps": 21,
2681
+ "max_steps": 6951,
2682
+ "num_input_tokens_seen": 1677860944,
2683
+ "num_train_epochs": 3,
2684
+ "save_steps": 5000,
2685
+ "stateful_callbacks": {
2686
+ "TrainerControl": {
2687
+ "args": {
2688
+ "should_epoch_stop": false,
2689
+ "should_evaluate": false,
2690
+ "should_log": false,
2691
+ "should_save": true,
2692
+ "should_training_stop": true
2693
+ },
2694
+ "attributes": {}
2695
+ }
2696
+ },
2697
+ "total_flos": 8545808136798208.0,
2698
+ "train_batch_size": 2,
2699
+ "trial_name": null,
2700
+ "trial_params": null
2701
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:836bd95485689002d3c81f577ca1ed5609983953380bae747b167b1d2645c8b8
3
+ size 7480
training_args.yaml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ bf16: true
2
+ cutoff_len: 6000
3
+ dataset: critic_training_data,refined,omnisvg,svgen,llm4svg
4
+ dataset_dir: data
5
+ ddp_timeout: 180000000
6
+ deepspeed: cache/ds_z3_config.json
7
+ do_train: true
8
+ eval_steps: 5000
9
+ eval_strategy: steps
10
+ finetuning_type: full
11
+ flash_attn: auto
12
+ gradient_accumulation_steps: 8
13
+ include_num_input_tokens_seen: true
14
+ learning_rate: 0.0001
15
+ logging_steps: 21
16
+ lr_scheduler_type: cosine
17
+ max_grad_norm: 1.0
18
+ max_samples: 1000000
19
+ model_name_or_path: /gemini-3/space/thu/zhaozhiyuan/wfy-mptsnet/Qwen2.5-VL-7B-Instruct
20
+ num_train_epochs: 3.0
21
+ optim: adamw_torch
22
+ output_dir: saves/Qwen2.5-VL-7B-Instruct/full/all_stage_123
23
+ packing: false
24
+ per_device_eval_batch_size: 2
25
+ per_device_train_batch_size: 2
26
+ plot_loss: true
27
+ preprocessing_num_workers: 16
28
+ report_to: none
29
+ save_steps: 5000
30
+ stage: sft
31
+ template: qwen2_vl
32
+ trust_remote_code: true
33
+ val_size: 0.03
34
+ warmup_steps: 0
vocab.json ADDED
The diff for this file is too large to render. See raw diff