wjldw commited on
Commit
b025220
·
verified ·
1 Parent(s): 3e2b613

Upload folder using huggingface_hub

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,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151645,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 2560,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 9728,
14
+ "layer_types": [
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention",
43
+ "full_attention",
44
+ "full_attention",
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention"
51
+ ],
52
+ "max_position_embeddings": 40960,
53
+ "max_window_layers": 36,
54
+ "model_type": "qwen3",
55
+ "num_attention_heads": 32,
56
+ "num_hidden_layers": 36,
57
+ "num_key_value_heads": 8,
58
+ "pad_token_id": 151643,
59
+ "rms_norm_eps": 1e-06,
60
+ "rope_scaling": null,
61
+ "rope_theta": 1000000,
62
+ "sliding_window": null,
63
+ "tie_word_embeddings": true,
64
+ "transformers_version": "4.57.1",
65
+ "use_cache": true,
66
+ "use_sliding_window": false,
67
+ "vocab_size": 151936
68
+ }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151643
6
+ ],
7
+ "pad_token_id": 151643,
8
+ "temperature": 0.6,
9
+ "top_k": 20,
10
+ "top_p": 0.95,
11
+ "transformers_version": "4.57.1"
12
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2560d39ca86873138060108722789ef6673658ae16517a6ac6361b0b7e9f1641
3
+ size 4967215360
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2224d33ed62c4adfe2c4d44a79c96e84479847194b9a39743a0803904dbe12a2
3
+ size 3077766632
model.safetensors.index.json ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 4022468096,
4
+ "total_size": 8044936192
5
+ },
6
+ "weight_map": {
7
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
16
+ "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
31
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
50
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
65
+ "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
86
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
103
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
109
+ "model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
110
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
112
+ "model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
113
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
114
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
115
+ "model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
116
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
117
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
125
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
126
+ "model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
127
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
128
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
129
+ "model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
130
+ "model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
131
+ "model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
132
+ "model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
133
+ "model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
134
+ "model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
135
+ "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
136
+ "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
137
+ "model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
138
+ "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
139
+ "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
140
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
141
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
142
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
143
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
144
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
145
+ "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
146
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
147
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
148
+ "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
149
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
150
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
151
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
152
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
153
+ "model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
154
+ "model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
155
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
156
+ "model.layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
157
+ "model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
158
+ "model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
160
+ "model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
161
+ "model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
162
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
163
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
164
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
165
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
166
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
167
+ "model.layers.21.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
168
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
169
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
170
+ "model.layers.21.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
171
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
172
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
173
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
174
+ "model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
175
+ "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
176
+ "model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
177
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
178
+ "model.layers.22.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
179
+ "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
180
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
181
+ "model.layers.22.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
182
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
183
+ "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
184
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
185
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
186
+ "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
187
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
188
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
189
+ "model.layers.23.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
190
+ "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
191
+ "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
192
+ "model.layers.23.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
193
+ "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
194
+ "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
195
+ "model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
196
+ "model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
197
+ "model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
198
+ "model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
199
+ "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
200
+ "model.layers.24.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
201
+ "model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
202
+ "model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
203
+ "model.layers.24.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
204
+ "model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
205
+ "model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
206
+ "model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
207
+ "model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
208
+ "model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
209
+ "model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
210
+ "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
211
+ "model.layers.25.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
212
+ "model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
213
+ "model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
214
+ "model.layers.25.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
215
+ "model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
216
+ "model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
217
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
218
+ "model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
219
+ "model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
220
+ "model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
221
+ "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
222
+ "model.layers.26.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
223
+ "model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
224
+ "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
225
+ "model.layers.26.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
226
+ "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
227
+ "model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
228
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
229
+ "model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
230
+ "model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
231
+ "model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
232
+ "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
233
+ "model.layers.27.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
234
+ "model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
235
+ "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
236
+ "model.layers.27.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
237
+ "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
238
+ "model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
239
+ "model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
240
+ "model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
241
+ "model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
242
+ "model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
243
+ "model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
244
+ "model.layers.28.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
245
+ "model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
246
+ "model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
247
+ "model.layers.28.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
248
+ "model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
249
+ "model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
250
+ "model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
251
+ "model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
252
+ "model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
253
+ "model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
254
+ "model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
255
+ "model.layers.29.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
256
+ "model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
257
+ "model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
258
+ "model.layers.29.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
259
+ "model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
260
+ "model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
261
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
262
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
263
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
264
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
265
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
266
+ "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
267
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
268
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
269
+ "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
270
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
271
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
272
+ "model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
273
+ "model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
274
+ "model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
275
+ "model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
276
+ "model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
277
+ "model.layers.30.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
278
+ "model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
279
+ "model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
280
+ "model.layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
281
+ "model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
282
+ "model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
283
+ "model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
284
+ "model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
285
+ "model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
286
+ "model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
287
+ "model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
288
+ "model.layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
289
+ "model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
290
+ "model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
291
+ "model.layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
292
+ "model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
293
+ "model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
294
+ "model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
295
+ "model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
296
+ "model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
297
+ "model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
298
+ "model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
299
+ "model.layers.32.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
300
+ "model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
301
+ "model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
302
+ "model.layers.32.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
303
+ "model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
304
+ "model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
305
+ "model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
306
+ "model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
307
+ "model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
308
+ "model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
309
+ "model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
310
+ "model.layers.33.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
311
+ "model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
312
+ "model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
313
+ "model.layers.33.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
314
+ "model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
315
+ "model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
316
+ "model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
317
+ "model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
318
+ "model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
319
+ "model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
320
+ "model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
321
+ "model.layers.34.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
322
+ "model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
323
+ "model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
324
+ "model.layers.34.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
325
+ "model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
326
+ "model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
327
+ "model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
328
+ "model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
329
+ "model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
330
+ "model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
331
+ "model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
332
+ "model.layers.35.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
333
+ "model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
334
+ "model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
335
+ "model.layers.35.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
336
+ "model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
337
+ "model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
338
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
339
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
340
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
341
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
342
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
343
+ "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
344
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
345
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
346
+ "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
347
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
348
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
349
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
350
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
351
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
352
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
353
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
354
+ "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
355
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
356
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
357
+ "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
358
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
359
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
360
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
361
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
362
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
363
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
364
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
365
+ "model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
366
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
367
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
368
+ "model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
369
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
370
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
371
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
372
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
373
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
374
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
375
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
376
+ "model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
377
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
378
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
379
+ "model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
380
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
381
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
382
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
383
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
384
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
385
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
386
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
387
+ "model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
388
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
389
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
390
+ "model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
391
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
392
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
393
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
394
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
395
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
396
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
397
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
398
+ "model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
399
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
400
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
401
+ "model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
402
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
403
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
404
+ "model.norm.weight": "model-00002-of-00002.safetensors"
405
+ }
406
+ }
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdb8671399ec4c5bca33ea643e05e16db6cc2b414116b1d89f263d3d6a8ca3da
3
+ size 16090217224
rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af3adcc012f6add74231d9adbee53311e577ad2cfdeddb826c1ce561df868ea5
3
+ size 15984
rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa32417f440cbd114483de7bfea8d3b13b43ac2e11e3d2a7a039f1441d9680a9
3
+ size 15920
rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:350b02fb5c703db39010addbd874720a46539b020cc7f33df71064feef7d28cb
3
+ size 15920
rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82431ef0900cff5c350d673d7a3338290eba668499d3bf1841bb53f02a2d8617
3
+ size 15984
rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13a9c5ccacb211611d1713e6c963ce6b861b9d8aeb1850ac07e1792bcad967a4
3
+ size 15984
rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90ac5c0158090ef9f2a1778afbfec05b2e967555bfb8d0fa7a77e88b900092ba
3
+ size 15984
rng_state_6.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbe1558e78f9a8dc088b61327a14cf41bfc3019206fa065f125447ec46fa6e67
3
+ size 15984
rng_state_7.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fad2b308941f76425e71264dbf8a5a206d5df40f14b824a8ad3432bb3e33bc8
3
+ size 15920
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d749dec336a7eed1620833d398ef1809f14d63c6180401c86817ba2671f5fd8a
3
+ size 1064
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:67cc0080ffd7555f723f423c27cfef314e1ad9d335c8b79f465c5faba1ed478b
3
+ size 11422821
tokenizer_config.json ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "padding_side": "left",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "truncation_side": "left",
240
+ "unk_token": null
241
+ }
trainer_state.json ADDED
@@ -0,0 +1,2518 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 500,
7
+ "global_step": 921,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "clip_ratio/high_max": 0.0,
14
+ "clip_ratio/high_mean": 0.0,
15
+ "clip_ratio/low_mean": 0.0,
16
+ "clip_ratio/low_min": 0.0,
17
+ "clip_ratio/region_mean": 0.0,
18
+ "completions/clipped_ratio": 0.034375,
19
+ "completions/max_length": 2677.6,
20
+ "completions/max_terminated_length": 2598.3,
21
+ "completions/mean_length": 1001.065625,
22
+ "completions/mean_terminated_length": 917.1349365234375,
23
+ "completions/min_length": 241.5,
24
+ "completions/min_terminated_length": 241.5,
25
+ "entropy": 0.333204485476017,
26
+ "epoch": 0.03257328990228013,
27
+ "frac_reward_zero_std": 0.8,
28
+ "grad_norm": 0.65234375,
29
+ "learning_rate": 9.90228013029316e-06,
30
+ "loss": 0.0174,
31
+ "num_tokens": 439045.0,
32
+ "reward": 0.43125,
33
+ "reward_std": 0.09436839669942856,
34
+ "rewards/qwen_accuracy_reward/mean": 0.43125,
35
+ "rewards/qwen_accuracy_reward/std": 0.37916621267795564,
36
+ "step": 10,
37
+ "step_time": 71.61828093789518
38
+ },
39
+ {
40
+ "clip_ratio/high_max": 0.0,
41
+ "clip_ratio/high_mean": 0.0,
42
+ "clip_ratio/low_mean": 0.0,
43
+ "clip_ratio/low_min": 0.0,
44
+ "clip_ratio/region_mean": 0.0,
45
+ "completions/clipped_ratio": 0.028125,
46
+ "completions/max_length": 3279.5,
47
+ "completions/max_terminated_length": 3047.0,
48
+ "completions/mean_length": 1331.078125,
49
+ "completions/mean_terminated_length": 1259.9069458007812,
50
+ "completions/min_length": 249.8,
51
+ "completions/min_terminated_length": 249.8,
52
+ "entropy": 0.4010499566793442,
53
+ "epoch": 0.06514657980456026,
54
+ "frac_reward_zero_std": 0.6,
55
+ "grad_norm": 0.75390625,
56
+ "learning_rate": 9.79370249728556e-06,
57
+ "loss": 0.0164,
58
+ "num_tokens": 963294.0,
59
+ "reward": 0.484375,
60
+ "reward_std": 0.18727783858776093,
61
+ "rewards/qwen_accuracy_reward/mean": 0.484375,
62
+ "rewards/qwen_accuracy_reward/std": 0.4520114839076996,
63
+ "step": 20,
64
+ "step_time": 87.72073962157592
65
+ },
66
+ {
67
+ "clip_ratio/high_max": 0.0,
68
+ "clip_ratio/high_mean": 0.0,
69
+ "clip_ratio/low_mean": 0.0,
70
+ "clip_ratio/low_min": 0.0,
71
+ "clip_ratio/region_mean": 0.0,
72
+ "completions/clipped_ratio": 0.028125,
73
+ "completions/max_length": 2875.3,
74
+ "completions/max_terminated_length": 2534.2,
75
+ "completions/mean_length": 1027.8875,
76
+ "completions/mean_terminated_length": 924.80517578125,
77
+ "completions/min_length": 219.2,
78
+ "completions/min_terminated_length": 219.2,
79
+ "entropy": 0.3684565082192421,
80
+ "epoch": 0.09771986970684039,
81
+ "frac_reward_zero_std": 0.8,
82
+ "grad_norm": 0.84375,
83
+ "learning_rate": 9.68512486427796e-06,
84
+ "loss": -0.0268,
85
+ "num_tokens": 1391226.0,
86
+ "reward": 0.60625,
87
+ "reward_std": 0.08984613344073296,
88
+ "rewards/qwen_accuracy_reward/mean": 0.60625,
89
+ "rewards/qwen_accuracy_reward/std": 0.47234617471694945,
90
+ "step": 30,
91
+ "step_time": 76.90530362166464
92
+ },
93
+ {
94
+ "clip_ratio/high_max": 0.0,
95
+ "clip_ratio/high_mean": 0.0,
96
+ "clip_ratio/low_mean": 0.0,
97
+ "clip_ratio/low_min": 0.0,
98
+ "clip_ratio/region_mean": 0.0,
99
+ "completions/clipped_ratio": 0.00625,
100
+ "completions/max_length": 2603.9,
101
+ "completions/max_terminated_length": 2559.9,
102
+ "completions/mean_length": 906.215625,
103
+ "completions/mean_terminated_length": 888.0654052734375,
104
+ "completions/min_length": 230.5,
105
+ "completions/min_terminated_length": 230.5,
106
+ "entropy": 0.350618913769722,
107
+ "epoch": 0.13029315960912052,
108
+ "frac_reward_zero_std": 0.8,
109
+ "grad_norm": 0.0,
110
+ "learning_rate": 9.576547231270358e-06,
111
+ "loss": 0.0068,
112
+ "num_tokens": 1789591.0,
113
+ "reward": 0.71875,
114
+ "reward_std": 0.08206871449947357,
115
+ "rewards/qwen_accuracy_reward/mean": 0.71875,
116
+ "rewards/qwen_accuracy_reward/std": 0.4095485180616379,
117
+ "step": 40,
118
+ "step_time": 69.04101052414626
119
+ },
120
+ {
121
+ "clip_ratio/high_max": 0.0,
122
+ "clip_ratio/high_mean": 0.0,
123
+ "clip_ratio/low_mean": 0.0,
124
+ "clip_ratio/low_min": 0.0,
125
+ "clip_ratio/region_mean": 0.0,
126
+ "completions/clipped_ratio": 0.03125,
127
+ "completions/max_length": 2860.0,
128
+ "completions/max_terminated_length": 2853.8,
129
+ "completions/mean_length": 1064.771875,
130
+ "completions/mean_terminated_length": 990.3612426757812,
131
+ "completions/min_length": 282.9,
132
+ "completions/min_terminated_length": 282.9,
133
+ "entropy": 0.36633683890104296,
134
+ "epoch": 0.16286644951140064,
135
+ "frac_reward_zero_std": 0.7,
136
+ "grad_norm": 1.2109375,
137
+ "learning_rate": 9.467969598262759e-06,
138
+ "loss": -0.0447,
139
+ "num_tokens": 2257246.0,
140
+ "reward": 0.753125,
141
+ "reward_std": 0.12656745240092276,
142
+ "rewards/qwen_accuracy_reward/mean": 0.753125,
143
+ "rewards/qwen_accuracy_reward/std": 0.34750270247459414,
144
+ "step": 50,
145
+ "step_time": 75.63329665400087
146
+ },
147
+ {
148
+ "clip_ratio/high_max": 0.0,
149
+ "clip_ratio/high_mean": 0.0,
150
+ "clip_ratio/low_mean": 0.0,
151
+ "clip_ratio/low_min": 0.0,
152
+ "clip_ratio/region_mean": 0.0,
153
+ "completions/clipped_ratio": 0.01875,
154
+ "completions/max_length": 3409.6,
155
+ "completions/max_terminated_length": 3273.6,
156
+ "completions/mean_length": 1275.78125,
157
+ "completions/mean_terminated_length": 1222.5706176757812,
158
+ "completions/min_length": 266.0,
159
+ "completions/min_terminated_length": 266.0,
160
+ "entropy": 0.3917502075433731,
161
+ "epoch": 0.19543973941368079,
162
+ "frac_reward_zero_std": 0.625,
163
+ "grad_norm": 0.59375,
164
+ "learning_rate": 9.359391965255158e-06,
165
+ "loss": 0.0374,
166
+ "num_tokens": 2777864.0,
167
+ "reward": 0.721875,
168
+ "reward_std": 0.17485642284154893,
169
+ "rewards/qwen_accuracy_reward/mean": 0.721875,
170
+ "rewards/qwen_accuracy_reward/std": 0.4061304032802582,
171
+ "step": 60,
172
+ "step_time": 88.08973164549097
173
+ },
174
+ {
175
+ "clip_ratio/high_max": 0.0,
176
+ "clip_ratio/high_mean": 0.0,
177
+ "clip_ratio/low_mean": 0.0,
178
+ "clip_ratio/low_min": 0.0,
179
+ "clip_ratio/region_mean": 0.0,
180
+ "completions/clipped_ratio": 0.028125,
181
+ "completions/max_length": 3239.4,
182
+ "completions/max_terminated_length": 3136.2,
183
+ "completions/mean_length": 1192.175,
184
+ "completions/mean_terminated_length": 1105.1968688964844,
185
+ "completions/min_length": 274.1,
186
+ "completions/min_terminated_length": 274.1,
187
+ "entropy": 0.3692863553762436,
188
+ "epoch": 0.2280130293159609,
189
+ "frac_reward_zero_std": 0.675,
190
+ "grad_norm": 0.66796875,
191
+ "learning_rate": 9.250814332247557e-06,
192
+ "loss": 0.0222,
193
+ "num_tokens": 3293904.0,
194
+ "reward": 0.71875,
195
+ "reward_std": 0.1526545248925686,
196
+ "rewards/qwen_accuracy_reward/mean": 0.71875,
197
+ "rewards/qwen_accuracy_reward/std": 0.4149239182472229,
198
+ "step": 70,
199
+ "step_time": 86.97396173980087
200
+ },
201
+ {
202
+ "clip_ratio/high_max": 0.0,
203
+ "clip_ratio/high_mean": 0.0,
204
+ "clip_ratio/low_mean": 0.0,
205
+ "clip_ratio/low_min": 0.0,
206
+ "clip_ratio/region_mean": 0.0,
207
+ "completions/clipped_ratio": 0.078125,
208
+ "completions/max_length": 3480.3,
209
+ "completions/max_terminated_length": 3033.2,
210
+ "completions/mean_length": 1291.58125,
211
+ "completions/mean_terminated_length": 1050.9552062988282,
212
+ "completions/min_length": 258.4,
213
+ "completions/min_terminated_length": 258.4,
214
+ "entropy": 0.36572070717811583,
215
+ "epoch": 0.26058631921824105,
216
+ "frac_reward_zero_std": 0.775,
217
+ "grad_norm": 1.2265625,
218
+ "learning_rate": 9.142236699239957e-06,
219
+ "loss": 0.0703,
220
+ "num_tokens": 3843402.0,
221
+ "reward": 0.8,
222
+ "reward_std": 0.10005094558000564,
223
+ "rewards/qwen_accuracy_reward/mean": 0.8,
224
+ "rewards/qwen_accuracy_reward/std": 0.30182539820671084,
225
+ "step": 80,
226
+ "step_time": 95.39563230751082
227
+ },
228
+ {
229
+ "clip_ratio/high_max": 0.0,
230
+ "clip_ratio/high_mean": 0.0,
231
+ "clip_ratio/low_mean": 0.0,
232
+ "clip_ratio/low_min": 0.0,
233
+ "clip_ratio/region_mean": 0.0,
234
+ "completions/clipped_ratio": 0.009375,
235
+ "completions/max_length": 3299.5,
236
+ "completions/max_terminated_length": 3093.0,
237
+ "completions/mean_length": 1185.8125,
238
+ "completions/mean_terminated_length": 1162.4843627929688,
239
+ "completions/min_length": 290.0,
240
+ "completions/min_terminated_length": 290.0,
241
+ "entropy": 0.3959953486919403,
242
+ "epoch": 0.2931596091205212,
243
+ "frac_reward_zero_std": 0.775,
244
+ "grad_norm": 1.1328125,
245
+ "learning_rate": 9.033659066232356e-06,
246
+ "loss": 0.0449,
247
+ "num_tokens": 4335982.0,
248
+ "reward": 0.809375,
249
+ "reward_std": 0.0945850744843483,
250
+ "rewards/qwen_accuracy_reward/mean": 0.809375,
251
+ "rewards/qwen_accuracy_reward/std": 0.31030095368623734,
252
+ "step": 90,
253
+ "step_time": 88.77400590376928
254
+ },
255
+ {
256
+ "clip_ratio/high_max": 0.0,
257
+ "clip_ratio/high_mean": 0.0,
258
+ "clip_ratio/low_mean": 0.0,
259
+ "clip_ratio/low_min": 0.0,
260
+ "clip_ratio/region_mean": 0.0,
261
+ "completions/clipped_ratio": 0.05,
262
+ "completions/max_length": 3318.0,
263
+ "completions/max_terminated_length": 2993.6,
264
+ "completions/mean_length": 1281.775,
265
+ "completions/mean_terminated_length": 1150.3262939453125,
266
+ "completions/min_length": 289.3,
267
+ "completions/min_terminated_length": 289.3,
268
+ "entropy": 0.3654392659664154,
269
+ "epoch": 0.3257328990228013,
270
+ "frac_reward_zero_std": 0.85,
271
+ "grad_norm": 0.486328125,
272
+ "learning_rate": 8.925081433224755e-06,
273
+ "loss": 0.051,
274
+ "num_tokens": 4886374.0,
275
+ "reward": 0.8125,
276
+ "reward_std": 0.06849094033241272,
277
+ "rewards/qwen_accuracy_reward/mean": 0.8125,
278
+ "rewards/qwen_accuracy_reward/std": 0.2677406892180443,
279
+ "step": 100,
280
+ "step_time": 92.20114967450499
281
+ },
282
+ {
283
+ "clip_ratio/high_max": 0.0,
284
+ "clip_ratio/high_mean": 0.0,
285
+ "clip_ratio/low_mean": 0.0,
286
+ "clip_ratio/low_min": 0.0,
287
+ "clip_ratio/region_mean": 0.0,
288
+ "completions/clipped_ratio": 0.0125,
289
+ "completions/max_length": 3308.2,
290
+ "completions/max_terminated_length": 2944.0,
291
+ "completions/mean_length": 1175.375,
292
+ "completions/mean_terminated_length": 1139.4002807617187,
293
+ "completions/min_length": 267.7,
294
+ "completions/min_terminated_length": 267.7,
295
+ "entropy": 0.3834399998188019,
296
+ "epoch": 0.3583061889250814,
297
+ "frac_reward_zero_std": 0.825,
298
+ "grad_norm": 0.734375,
299
+ "learning_rate": 8.816503800217156e-06,
300
+ "loss": 0.0177,
301
+ "num_tokens": 5404430.0,
302
+ "reward": 0.7875,
303
+ "reward_std": 0.06870565414428711,
304
+ "rewards/qwen_accuracy_reward/mean": 0.7875,
305
+ "rewards/qwen_accuracy_reward/std": 0.2738855093717575,
306
+ "step": 110,
307
+ "step_time": 88.0384052307345
308
+ },
309
+ {
310
+ "clip_ratio/high_max": 0.0,
311
+ "clip_ratio/high_mean": 0.0,
312
+ "clip_ratio/low_mean": 0.0,
313
+ "clip_ratio/low_min": 0.0,
314
+ "clip_ratio/region_mean": 0.0,
315
+ "completions/clipped_ratio": 0.078125,
316
+ "completions/max_length": 3146.0,
317
+ "completions/max_terminated_length": 2604.6,
318
+ "completions/mean_length": 1137.178125,
319
+ "completions/mean_terminated_length": 888.4818664550781,
320
+ "completions/min_length": 235.5,
321
+ "completions/min_terminated_length": 235.5,
322
+ "entropy": 0.3079161733388901,
323
+ "epoch": 0.39087947882736157,
324
+ "frac_reward_zero_std": 0.875,
325
+ "grad_norm": 0.78125,
326
+ "learning_rate": 8.707926167209557e-06,
327
+ "loss": 0.0605,
328
+ "num_tokens": 5908263.0,
329
+ "reward": 0.875,
330
+ "reward_std": 0.04692808985710144,
331
+ "rewards/qwen_accuracy_reward/mean": 0.875,
332
+ "rewards/qwen_accuracy_reward/std": 0.2187224417924881,
333
+ "step": 120,
334
+ "step_time": 86.96171942604705
335
+ },
336
+ {
337
+ "clip_ratio/high_max": 0.0,
338
+ "clip_ratio/high_mean": 0.0,
339
+ "clip_ratio/low_mean": 0.0,
340
+ "clip_ratio/low_min": 0.0,
341
+ "clip_ratio/region_mean": 0.0,
342
+ "completions/clipped_ratio": 0.003125,
343
+ "completions/max_length": 2680.8,
344
+ "completions/max_terminated_length": 2673.8,
345
+ "completions/mean_length": 1002.196875,
346
+ "completions/mean_terminated_length": 993.0019165039063,
347
+ "completions/min_length": 270.1,
348
+ "completions/min_terminated_length": 270.1,
349
+ "entropy": 0.34904909133911133,
350
+ "epoch": 0.4234527687296417,
351
+ "frac_reward_zero_std": 0.85,
352
+ "grad_norm": 0.81640625,
353
+ "learning_rate": 8.599348534201956e-06,
354
+ "loss": 0.0263,
355
+ "num_tokens": 6346214.0,
356
+ "reward": 0.903125,
357
+ "reward_std": 0.06533465310931205,
358
+ "rewards/qwen_accuracy_reward/mean": 0.903125,
359
+ "rewards/qwen_accuracy_reward/std": 0.19970145374536513,
360
+ "step": 130,
361
+ "step_time": 71.75175027744845
362
+ },
363
+ {
364
+ "clip_ratio/high_max": 0.0,
365
+ "clip_ratio/high_mean": 0.0,
366
+ "clip_ratio/low_mean": 0.0,
367
+ "clip_ratio/low_min": 0.0,
368
+ "clip_ratio/region_mean": 0.0,
369
+ "completions/clipped_ratio": 0.00625,
370
+ "completions/max_length": 2802.7,
371
+ "completions/max_terminated_length": 2403.3,
372
+ "completions/mean_length": 861.221875,
373
+ "completions/mean_terminated_length": 840.4104766845703,
374
+ "completions/min_length": 236.7,
375
+ "completions/min_terminated_length": 236.7,
376
+ "entropy": 0.3106671258807182,
377
+ "epoch": 0.4560260586319218,
378
+ "frac_reward_zero_std": 0.825,
379
+ "grad_norm": 0.59765625,
380
+ "learning_rate": 8.490770901194355e-06,
381
+ "loss": 0.0721,
382
+ "num_tokens": 6753109.0,
383
+ "reward": 0.8875,
384
+ "reward_std": 0.07827338129281998,
385
+ "rewards/qwen_accuracy_reward/mean": 0.8875,
386
+ "rewards/qwen_accuracy_reward/std": 0.2551010876893997,
387
+ "step": 140,
388
+ "step_time": 77.07738372143358
389
+ },
390
+ {
391
+ "clip_ratio/high_max": 0.0,
392
+ "clip_ratio/high_mean": 0.0,
393
+ "clip_ratio/low_mean": 0.0,
394
+ "clip_ratio/low_min": 0.0,
395
+ "clip_ratio/region_mean": 0.0,
396
+ "completions/clipped_ratio": 0.00625,
397
+ "completions/max_length": 2352.7,
398
+ "completions/max_terminated_length": 2317.1,
399
+ "completions/mean_length": 829.49375,
400
+ "completions/mean_terminated_length": 811.7066772460937,
401
+ "completions/min_length": 222.1,
402
+ "completions/min_terminated_length": 222.1,
403
+ "entropy": 0.2921102657914162,
404
+ "epoch": 0.48859934853420195,
405
+ "frac_reward_zero_std": 0.775,
406
+ "grad_norm": 0.8125,
407
+ "learning_rate": 8.382193268186755e-06,
408
+ "loss": 0.0156,
409
+ "num_tokens": 7138907.0,
410
+ "reward": 0.8875,
411
+ "reward_std": 0.09679971560835839,
412
+ "rewards/qwen_accuracy_reward/mean": 0.8875,
413
+ "rewards/qwen_accuracy_reward/std": 0.2569649308919907,
414
+ "step": 150,
415
+ "step_time": 64.74061961406842
416
+ },
417
+ {
418
+ "clip_ratio/high_max": 0.0,
419
+ "clip_ratio/high_mean": 0.0,
420
+ "clip_ratio/low_mean": 0.0,
421
+ "clip_ratio/low_min": 0.0,
422
+ "clip_ratio/region_mean": 0.0,
423
+ "completions/clipped_ratio": 0.0,
424
+ "completions/max_length": 2155.2,
425
+ "completions/max_terminated_length": 2155.2,
426
+ "completions/mean_length": 743.490625,
427
+ "completions/mean_terminated_length": 743.490625,
428
+ "completions/min_length": 204.6,
429
+ "completions/min_terminated_length": 204.6,
430
+ "entropy": 0.29313592314720155,
431
+ "epoch": 0.5211726384364821,
432
+ "frac_reward_zero_std": 0.95,
433
+ "grad_norm": 0.0,
434
+ "learning_rate": 8.273615635179154e-06,
435
+ "loss": 0.0272,
436
+ "num_tokens": 7488424.0,
437
+ "reward": 0.8875,
438
+ "reward_std": 0.02177756354212761,
439
+ "rewards/qwen_accuracy_reward/mean": 0.8875,
440
+ "rewards/qwen_accuracy_reward/std": 0.18192448019981383,
441
+ "step": 160,
442
+ "step_time": 56.19097121860832
443
+ },
444
+ {
445
+ "clip_ratio/high_max": 0.0,
446
+ "clip_ratio/high_mean": 0.0,
447
+ "clip_ratio/low_mean": 0.0,
448
+ "clip_ratio/low_min": 0.0,
449
+ "clip_ratio/region_mean": 0.0,
450
+ "completions/clipped_ratio": 0.0,
451
+ "completions/max_length": 2440.0,
452
+ "completions/max_terminated_length": 2440.0,
453
+ "completions/mean_length": 844.440625,
454
+ "completions/mean_terminated_length": 844.440625,
455
+ "completions/min_length": 251.0,
456
+ "completions/min_terminated_length": 251.0,
457
+ "entropy": 0.29565098136663437,
458
+ "epoch": 0.5537459283387622,
459
+ "frac_reward_zero_std": 0.825,
460
+ "grad_norm": 0.0,
461
+ "learning_rate": 8.165038002171553e-06,
462
+ "loss": -0.0086,
463
+ "num_tokens": 7878501.0,
464
+ "reward": 0.93125,
465
+ "reward_std": 0.0800636924803257,
466
+ "rewards/qwen_accuracy_reward/mean": 0.93125,
467
+ "rewards/qwen_accuracy_reward/std": 0.16346374601125718,
468
+ "step": 170,
469
+ "step_time": 66.09473502421751
470
+ },
471
+ {
472
+ "clip_ratio/high_max": 0.0,
473
+ "clip_ratio/high_mean": 0.0,
474
+ "clip_ratio/low_mean": 0.0,
475
+ "clip_ratio/low_min": 0.0,
476
+ "clip_ratio/region_mean": 0.0,
477
+ "completions/clipped_ratio": 0.00625,
478
+ "completions/max_length": 2379.1,
479
+ "completions/max_terminated_length": 2154.0,
480
+ "completions/mean_length": 784.996875,
481
+ "completions/mean_terminated_length": 766.0695556640625,
482
+ "completions/min_length": 255.2,
483
+ "completions/min_terminated_length": 255.2,
484
+ "entropy": 0.2795317336916924,
485
+ "epoch": 0.5863192182410424,
486
+ "frac_reward_zero_std": 0.85,
487
+ "grad_norm": 1.140625,
488
+ "learning_rate": 8.056460369163954e-06,
489
+ "loss": 0.0167,
490
+ "num_tokens": 8256812.0,
491
+ "reward": 0.9125,
492
+ "reward_std": 0.05850084200501442,
493
+ "rewards/qwen_accuracy_reward/mean": 0.9125,
494
+ "rewards/qwen_accuracy_reward/std": 0.16458767354488374,
495
+ "step": 180,
496
+ "step_time": 65.01561901448295
497
+ },
498
+ {
499
+ "clip_ratio/high_max": 0.0,
500
+ "clip_ratio/high_mean": 0.0,
501
+ "clip_ratio/low_mean": 0.0,
502
+ "clip_ratio/low_min": 0.0,
503
+ "clip_ratio/region_mean": 0.0,
504
+ "completions/clipped_ratio": 0.003125,
505
+ "completions/max_length": 2328.6,
506
+ "completions/max_terminated_length": 2320.4,
507
+ "completions/mean_length": 850.88125,
508
+ "completions/mean_terminated_length": 841.9321533203125,
509
+ "completions/min_length": 216.4,
510
+ "completions/min_terminated_length": 216.4,
511
+ "entropy": 0.27169933915138245,
512
+ "epoch": 0.6188925081433225,
513
+ "frac_reward_zero_std": 0.925,
514
+ "grad_norm": 0.0,
515
+ "learning_rate": 7.947882736156353e-06,
516
+ "loss": 0.0007,
517
+ "num_tokens": 8652902.0,
518
+ "reward": 0.921875,
519
+ "reward_std": 0.03377464786171913,
520
+ "rewards/qwen_accuracy_reward/mean": 0.921875,
521
+ "rewards/qwen_accuracy_reward/std": 0.15925233066082,
522
+ "step": 190,
523
+ "step_time": 64.30843478655443
524
+ },
525
+ {
526
+ "clip_ratio/high_max": 0.0,
527
+ "clip_ratio/high_mean": 0.0,
528
+ "clip_ratio/low_mean": 0.0,
529
+ "clip_ratio/low_min": 0.0,
530
+ "clip_ratio/region_mean": 0.0,
531
+ "completions/clipped_ratio": 0.015625,
532
+ "completions/max_length": 1819.1,
533
+ "completions/max_terminated_length": 1723.5,
534
+ "completions/mean_length": 664.359375,
535
+ "completions/mean_terminated_length": 614.3344909667969,
536
+ "completions/min_length": 223.3,
537
+ "completions/min_terminated_length": 223.3,
538
+ "entropy": 0.2222038835287094,
539
+ "epoch": 0.6514657980456026,
540
+ "frac_reward_zero_std": 0.925,
541
+ "grad_norm": 0.0,
542
+ "learning_rate": 7.839305103148752e-06,
543
+ "loss": 0.0265,
544
+ "num_tokens": 9018561.0,
545
+ "reward": 0.921875,
546
+ "reward_std": 0.036084231734275815,
547
+ "rewards/qwen_accuracy_reward/mean": 0.921875,
548
+ "rewards/qwen_accuracy_reward/std": 0.1368771880865097,
549
+ "step": 200,
550
+ "step_time": 50.43694004062563
551
+ },
552
+ {
553
+ "clip_ratio/high_max": 0.0,
554
+ "clip_ratio/high_mean": 0.0,
555
+ "clip_ratio/low_mean": 0.0,
556
+ "clip_ratio/low_min": 0.0,
557
+ "clip_ratio/region_mean": 0.0,
558
+ "completions/clipped_ratio": 0.009375,
559
+ "completions/max_length": 2158.4,
560
+ "completions/max_terminated_length": 2132.2,
561
+ "completions/mean_length": 757.484375,
562
+ "completions/mean_terminated_length": 726.5084045410156,
563
+ "completions/min_length": 216.3,
564
+ "completions/min_terminated_length": 216.3,
565
+ "entropy": 0.253067896515131,
566
+ "epoch": 0.6840390879478827,
567
+ "frac_reward_zero_std": 0.9,
568
+ "grad_norm": 0.85546875,
569
+ "learning_rate": 7.730727470141152e-06,
570
+ "loss": 0.0208,
571
+ "num_tokens": 9369284.0,
572
+ "reward": 0.934375,
573
+ "reward_std": 0.04807935431599617,
574
+ "rewards/qwen_accuracy_reward/mean": 0.934375,
575
+ "rewards/qwen_accuracy_reward/std": 0.1333692654967308,
576
+ "step": 210,
577
+ "step_time": 58.671303189732136
578
+ },
579
+ {
580
+ "clip_ratio/high_max": 0.0,
581
+ "clip_ratio/high_mean": 0.0,
582
+ "clip_ratio/low_mean": 0.0,
583
+ "clip_ratio/low_min": 0.0,
584
+ "clip_ratio/region_mean": 0.0,
585
+ "completions/clipped_ratio": 0.0,
586
+ "completions/max_length": 1711.7,
587
+ "completions/max_terminated_length": 1711.7,
588
+ "completions/mean_length": 662.759375,
589
+ "completions/mean_terminated_length": 662.759375,
590
+ "completions/min_length": 224.6,
591
+ "completions/min_terminated_length": 224.6,
592
+ "entropy": 0.2540799155831337,
593
+ "epoch": 0.7166123778501629,
594
+ "frac_reward_zero_std": 0.975,
595
+ "grad_norm": 0.0,
596
+ "learning_rate": 7.622149837133551e-06,
597
+ "loss": 0.0035,
598
+ "num_tokens": 9696887.0,
599
+ "reward": 0.9625,
600
+ "reward_std": 0.013363061845302582,
601
+ "rewards/qwen_accuracy_reward/mean": 0.9625,
602
+ "rewards/qwen_accuracy_reward/std": 0.07759521007537842,
603
+ "step": 220,
604
+ "step_time": 45.685889296606184
605
+ },
606
+ {
607
+ "clip_ratio/high_max": 0.0,
608
+ "clip_ratio/high_mean": 0.0,
609
+ "clip_ratio/low_mean": 0.0,
610
+ "clip_ratio/low_min": 0.0,
611
+ "clip_ratio/region_mean": 0.0,
612
+ "completions/clipped_ratio": 0.0,
613
+ "completions/max_length": 2240.7,
614
+ "completions/max_terminated_length": 2240.7,
615
+ "completions/mean_length": 768.94375,
616
+ "completions/mean_terminated_length": 768.94375,
617
+ "completions/min_length": 243.2,
618
+ "completions/min_terminated_length": 243.2,
619
+ "entropy": 0.2813176602125168,
620
+ "epoch": 0.749185667752443,
621
+ "frac_reward_zero_std": 0.9,
622
+ "grad_norm": 1.2890625,
623
+ "learning_rate": 7.51357220412595e-06,
624
+ "loss": 0.0152,
625
+ "num_tokens": 10058373.0,
626
+ "reward": 0.9375,
627
+ "reward_std": 0.04492306634783745,
628
+ "rewards/qwen_accuracy_reward/mean": 0.9375,
629
+ "rewards/qwen_accuracy_reward/std": 0.12228720486164094,
630
+ "step": 230,
631
+ "step_time": 61.028474612068386
632
+ },
633
+ {
634
+ "clip_ratio/high_max": 0.0,
635
+ "clip_ratio/high_mean": 0.0,
636
+ "clip_ratio/low_mean": 0.0,
637
+ "clip_ratio/low_min": 0.0,
638
+ "clip_ratio/region_mean": 0.0,
639
+ "completions/clipped_ratio": 0.0125,
640
+ "completions/max_length": 2169.4,
641
+ "completions/max_terminated_length": 2132.5,
642
+ "completions/mean_length": 739.503125,
643
+ "completions/mean_terminated_length": 698.6049133300781,
644
+ "completions/min_length": 218.8,
645
+ "completions/min_terminated_length": 218.8,
646
+ "entropy": 0.2684470996260643,
647
+ "epoch": 0.7817589576547231,
648
+ "frac_reward_zero_std": 0.975,
649
+ "grad_norm": 0.0,
650
+ "learning_rate": 7.40499457111835e-06,
651
+ "loss": 0.0125,
652
+ "num_tokens": 10432006.0,
653
+ "reward": 0.9875,
654
+ "reward_std": 0.013363061845302582,
655
+ "rewards/qwen_accuracy_reward/mean": 0.9875,
656
+ "rewards/qwen_accuracy_reward/std": 0.033601075410842896,
657
+ "step": 240,
658
+ "step_time": 59.92722728513181
659
+ },
660
+ {
661
+ "clip_ratio/high_max": 0.0,
662
+ "clip_ratio/high_mean": 0.0,
663
+ "clip_ratio/low_mean": 0.0,
664
+ "clip_ratio/low_min": 0.0,
665
+ "clip_ratio/region_mean": 0.0,
666
+ "completions/clipped_ratio": 0.00625,
667
+ "completions/max_length": 2439.9,
668
+ "completions/max_terminated_length": 2386.6,
669
+ "completions/mean_length": 835.70625,
670
+ "completions/mean_terminated_length": 818.9010498046875,
671
+ "completions/min_length": 245.0,
672
+ "completions/min_terminated_length": 245.0,
673
+ "entropy": 0.2859576910734177,
674
+ "epoch": 0.8143322475570033,
675
+ "frac_reward_zero_std": 0.95,
676
+ "grad_norm": 0.0,
677
+ "learning_rate": 7.29641693811075e-06,
678
+ "loss": -0.0021,
679
+ "num_tokens": 10838408.0,
680
+ "reward": 0.959375,
681
+ "reward_std": 0.0245114803314209,
682
+ "rewards/qwen_accuracy_reward/mean": 0.959375,
683
+ "rewards/qwen_accuracy_reward/std": 0.09820206016302109,
684
+ "step": 250,
685
+ "step_time": 67.63989680018275
686
+ },
687
+ {
688
+ "clip_ratio/high_max": 0.0,
689
+ "clip_ratio/high_mean": 0.0,
690
+ "clip_ratio/low_mean": 0.0,
691
+ "clip_ratio/low_min": 0.0,
692
+ "clip_ratio/region_mean": 0.0,
693
+ "completions/clipped_ratio": 0.00625,
694
+ "completions/max_length": 2440.0,
695
+ "completions/max_terminated_length": 2378.2,
696
+ "completions/mean_length": 839.625,
697
+ "completions/mean_terminated_length": 821.0300048828125,
698
+ "completions/min_length": 248.6,
699
+ "completions/min_terminated_length": 248.6,
700
+ "entropy": 0.28902051597833633,
701
+ "epoch": 0.8469055374592834,
702
+ "frac_reward_zero_std": 0.925,
703
+ "grad_norm": 0.84765625,
704
+ "learning_rate": 7.187839305103149e-06,
705
+ "loss": 0.0337,
706
+ "num_tokens": 11218088.0,
707
+ "reward": 0.9625,
708
+ "reward_std": 0.02925042062997818,
709
+ "rewards/qwen_accuracy_reward/mean": 0.9625,
710
+ "rewards/qwen_accuracy_reward/std": 0.08795147836208343,
711
+ "step": 260,
712
+ "step_time": 63.1799141773954
713
+ },
714
+ {
715
+ "clip_ratio/high_max": 0.0,
716
+ "clip_ratio/high_mean": 0.0,
717
+ "clip_ratio/low_mean": 0.0,
718
+ "clip_ratio/low_min": 0.0,
719
+ "clip_ratio/region_mean": 0.0,
720
+ "completions/clipped_ratio": 0.025,
721
+ "completions/max_length": 2544.2,
722
+ "completions/max_terminated_length": 2490.8,
723
+ "completions/mean_length": 1000.415625,
724
+ "completions/mean_terminated_length": 918.9749755859375,
725
+ "completions/min_length": 284.6,
726
+ "completions/min_terminated_length": 284.6,
727
+ "entropy": 0.29957995414733884,
728
+ "epoch": 0.8794788273615635,
729
+ "frac_reward_zero_std": 0.925,
730
+ "grad_norm": 0.6953125,
731
+ "learning_rate": 7.079261672095549e-06,
732
+ "loss": 0.0121,
733
+ "num_tokens": 11668661.0,
734
+ "reward": 0.934375,
735
+ "reward_std": 0.03061639815568924,
736
+ "rewards/qwen_accuracy_reward/mean": 0.934375,
737
+ "rewards/qwen_accuracy_reward/std": 0.10957810133695603,
738
+ "step": 270,
739
+ "step_time": 69.61986783705652
740
+ },
741
+ {
742
+ "clip_ratio/high_max": 0.0,
743
+ "clip_ratio/high_mean": 0.0,
744
+ "clip_ratio/low_mean": 0.0,
745
+ "clip_ratio/low_min": 0.0,
746
+ "clip_ratio/region_mean": 0.0,
747
+ "completions/clipped_ratio": 0.0,
748
+ "completions/max_length": 2133.8,
749
+ "completions/max_terminated_length": 2133.8,
750
+ "completions/mean_length": 713.509375,
751
+ "completions/mean_terminated_length": 713.509375,
752
+ "completions/min_length": 233.5,
753
+ "completions/min_terminated_length": 233.5,
754
+ "entropy": 0.2510858058929443,
755
+ "epoch": 0.9120521172638436,
756
+ "frac_reward_zero_std": 0.975,
757
+ "grad_norm": 0.0,
758
+ "learning_rate": 6.9706840390879485e-06,
759
+ "loss": 0.0135,
760
+ "num_tokens": 12023072.0,
761
+ "reward": 0.996875,
762
+ "reward_std": 0.00883883461356163,
763
+ "rewards/qwen_accuracy_reward/mean": 0.996875,
764
+ "rewards/qwen_accuracy_reward/std": 0.01767766922712326,
765
+ "step": 280,
766
+ "step_time": 58.07799549689516
767
+ },
768
+ {
769
+ "clip_ratio/high_max": 0.0,
770
+ "clip_ratio/high_mean": 0.0,
771
+ "clip_ratio/low_mean": 0.0,
772
+ "clip_ratio/low_min": 0.0,
773
+ "clip_ratio/region_mean": 0.0,
774
+ "completions/clipped_ratio": 0.0,
775
+ "completions/max_length": 2090.7,
776
+ "completions/max_terminated_length": 2090.7,
777
+ "completions/mean_length": 697.66875,
778
+ "completions/mean_terminated_length": 697.66875,
779
+ "completions/min_length": 241.0,
780
+ "completions/min_terminated_length": 241.0,
781
+ "entropy": 0.2558185949921608,
782
+ "epoch": 0.9446254071661238,
783
+ "frac_reward_zero_std": 0.875,
784
+ "grad_norm": 0.0,
785
+ "learning_rate": 6.8621064060803475e-06,
786
+ "loss": 0.0112,
787
+ "num_tokens": 12353414.0,
788
+ "reward": 0.925,
789
+ "reward_std": 0.051027984172105786,
790
+ "rewards/qwen_accuracy_reward/mean": 0.925,
791
+ "rewards/qwen_accuracy_reward/std": 0.16133979260921477,
792
+ "step": 290,
793
+ "step_time": 56.3230952934362
794
+ },
795
+ {
796
+ "clip_ratio/high_max": 0.0,
797
+ "clip_ratio/high_mean": 0.0,
798
+ "clip_ratio/low_mean": 0.0,
799
+ "clip_ratio/low_min": 0.0,
800
+ "clip_ratio/region_mean": 0.0,
801
+ "completions/clipped_ratio": 0.0,
802
+ "completions/max_length": 1713.9,
803
+ "completions/max_terminated_length": 1713.9,
804
+ "completions/mean_length": 610.203125,
805
+ "completions/mean_terminated_length": 610.203125,
806
+ "completions/min_length": 240.8,
807
+ "completions/min_terminated_length": 240.8,
808
+ "entropy": 0.24070774465799333,
809
+ "epoch": 0.9771986970684039,
810
+ "frac_reward_zero_std": 0.95,
811
+ "grad_norm": 0.0,
812
+ "learning_rate": 6.753528773072747e-06,
813
+ "loss": 0.0173,
814
+ "num_tokens": 12681759.0,
815
+ "reward": 0.965625,
816
+ "reward_std": 0.02041158601641655,
817
+ "rewards/qwen_accuracy_reward/mean": 0.965625,
818
+ "rewards/qwen_accuracy_reward/std": 0.08626527190208436,
819
+ "step": 300,
820
+ "step_time": 47.36222105557099
821
+ },
822
+ {
823
+ "clip_ratio/high_max": 0.0,
824
+ "clip_ratio/high_mean": 0.0,
825
+ "clip_ratio/low_mean": 0.0,
826
+ "clip_ratio/low_min": 0.0,
827
+ "clip_ratio/region_mean": 0.0,
828
+ "completions/clipped_ratio": 0.0,
829
+ "completions/max_length": 2020.4,
830
+ "completions/max_terminated_length": 2020.4,
831
+ "completions/mean_length": 677.00625,
832
+ "completions/mean_terminated_length": 677.00625,
833
+ "completions/min_length": 225.1,
834
+ "completions/min_terminated_length": 225.1,
835
+ "entropy": 0.2349437654018402,
836
+ "epoch": 1.009771986970684,
837
+ "frac_reward_zero_std": 0.875,
838
+ "grad_norm": 0.0,
839
+ "learning_rate": 6.644951140065147e-06,
840
+ "loss": -0.0031,
841
+ "num_tokens": 13024209.0,
842
+ "reward": 0.925,
843
+ "reward_std": 0.05828612819314003,
844
+ "rewards/qwen_accuracy_reward/mean": 0.925,
845
+ "rewards/qwen_accuracy_reward/std": 0.18913658261299132,
846
+ "step": 310,
847
+ "step_time": 52.18600384155288
848
+ },
849
+ {
850
+ "clip_ratio/high_max": 0.0,
851
+ "clip_ratio/high_mean": 0.0,
852
+ "clip_ratio/low_mean": 0.0,
853
+ "clip_ratio/low_min": 0.0,
854
+ "clip_ratio/region_mean": 0.0,
855
+ "completions/clipped_ratio": 0.0,
856
+ "completions/max_length": 2016.0,
857
+ "completions/max_terminated_length": 2016.0,
858
+ "completions/mean_length": 739.634375,
859
+ "completions/mean_terminated_length": 739.634375,
860
+ "completions/min_length": 227.1,
861
+ "completions/min_terminated_length": 227.1,
862
+ "entropy": 0.2607535943388939,
863
+ "epoch": 1.0423452768729642,
864
+ "frac_reward_zero_std": 0.975,
865
+ "grad_norm": 0.0,
866
+ "learning_rate": 6.536373507057546e-06,
867
+ "loss": 0.0144,
868
+ "num_tokens": 13373220.0,
869
+ "reward": 0.996875,
870
+ "reward_std": 0.00883883461356163,
871
+ "rewards/qwen_accuracy_reward/mean": 0.996875,
872
+ "rewards/qwen_accuracy_reward/std": 0.01767766922712326,
873
+ "step": 320,
874
+ "step_time": 56.04217133913189
875
+ },
876
+ {
877
+ "clip_ratio/high_max": 0.0,
878
+ "clip_ratio/high_mean": 0.0,
879
+ "clip_ratio/low_mean": 0.0,
880
+ "clip_ratio/low_min": 0.0,
881
+ "clip_ratio/region_mean": 0.0,
882
+ "completions/clipped_ratio": 0.0,
883
+ "completions/max_length": 1912.8,
884
+ "completions/max_terminated_length": 1912.8,
885
+ "completions/mean_length": 675.971875,
886
+ "completions/mean_terminated_length": 675.971875,
887
+ "completions/min_length": 248.4,
888
+ "completions/min_terminated_length": 248.4,
889
+ "entropy": 0.22910359650850295,
890
+ "epoch": 1.0749185667752443,
891
+ "frac_reward_zero_std": 0.975,
892
+ "grad_norm": 0.0,
893
+ "learning_rate": 6.427795874049946e-06,
894
+ "loss": 0.0149,
895
+ "num_tokens": 13720035.0,
896
+ "reward": 0.99375,
897
+ "reward_std": 0.011572751402854919,
898
+ "rewards/qwen_accuracy_reward/mean": 0.99375,
899
+ "rewards/qwen_accuracy_reward/std": 0.024593468010425567,
900
+ "step": 330,
901
+ "step_time": 52.62400772022083
902
+ },
903
+ {
904
+ "clip_ratio/high_max": 0.0,
905
+ "clip_ratio/high_mean": 0.0,
906
+ "clip_ratio/low_mean": 0.0,
907
+ "clip_ratio/low_min": 0.0,
908
+ "clip_ratio/region_mean": 0.0,
909
+ "completions/clipped_ratio": 0.0,
910
+ "completions/max_length": 1872.4,
911
+ "completions/max_terminated_length": 1872.4,
912
+ "completions/mean_length": 671.859375,
913
+ "completions/mean_terminated_length": 671.859375,
914
+ "completions/min_length": 244.0,
915
+ "completions/min_terminated_length": 244.0,
916
+ "entropy": 0.2325178161263466,
917
+ "epoch": 1.1074918566775245,
918
+ "frac_reward_zero_std": 0.975,
919
+ "grad_norm": 0.0,
920
+ "learning_rate": 6.319218241042345e-06,
921
+ "loss": -0.0041,
922
+ "num_tokens": 14055878.0,
923
+ "reward": 0.996875,
924
+ "reward_std": 0.00883883461356163,
925
+ "rewards/qwen_accuracy_reward/mean": 0.996875,
926
+ "rewards/qwen_accuracy_reward/std": 0.01767766922712326,
927
+ "step": 340,
928
+ "step_time": 51.82339646322653
929
+ },
930
+ {
931
+ "clip_ratio/high_max": 0.0,
932
+ "clip_ratio/high_mean": 0.0,
933
+ "clip_ratio/low_mean": 0.0,
934
+ "clip_ratio/low_min": 0.0,
935
+ "clip_ratio/region_mean": 0.0,
936
+ "completions/clipped_ratio": 0.0,
937
+ "completions/max_length": 2325.1,
938
+ "completions/max_terminated_length": 2325.1,
939
+ "completions/mean_length": 858.025,
940
+ "completions/mean_terminated_length": 858.025,
941
+ "completions/min_length": 219.4,
942
+ "completions/min_terminated_length": 219.4,
943
+ "entropy": 0.2665655896067619,
944
+ "epoch": 1.1400651465798046,
945
+ "frac_reward_zero_std": 0.9,
946
+ "grad_norm": 0.91015625,
947
+ "learning_rate": 6.2106406080347455e-06,
948
+ "loss": 0.005,
949
+ "num_tokens": 14447758.0,
950
+ "reward": 0.93125,
951
+ "reward_std": 0.0408231720328331,
952
+ "rewards/qwen_accuracy_reward/mean": 0.93125,
953
+ "rewards/qwen_accuracy_reward/std": 0.1350443869829178,
954
+ "step": 350,
955
+ "step_time": 64.82575829299167
956
+ },
957
+ {
958
+ "clip_ratio/high_max": 0.0,
959
+ "clip_ratio/high_mean": 0.0,
960
+ "clip_ratio/low_mean": 0.0,
961
+ "clip_ratio/low_min": 0.0,
962
+ "clip_ratio/region_mean": 0.0,
963
+ "completions/clipped_ratio": 0.0,
964
+ "completions/max_length": 1837.9,
965
+ "completions/max_terminated_length": 1837.9,
966
+ "completions/mean_length": 684.38125,
967
+ "completions/mean_terminated_length": 684.38125,
968
+ "completions/min_length": 237.7,
969
+ "completions/min_terminated_length": 237.7,
970
+ "entropy": 0.24428945928812026,
971
+ "epoch": 1.1726384364820848,
972
+ "frac_reward_zero_std": 0.925,
973
+ "grad_norm": 0.61328125,
974
+ "learning_rate": 6.102062975027145e-06,
975
+ "loss": -0.0047,
976
+ "num_tokens": 14782216.0,
977
+ "reward": 0.953125,
978
+ "reward_std": 0.02651650384068489,
979
+ "rewards/qwen_accuracy_reward/mean": 0.953125,
980
+ "rewards/qwen_accuracy_reward/std": 0.10168035477399825,
981
+ "step": 360,
982
+ "step_time": 46.66475373953581
983
+ },
984
+ {
985
+ "clip_ratio/high_max": 0.0,
986
+ "clip_ratio/high_mean": 0.0,
987
+ "clip_ratio/low_mean": 0.0,
988
+ "clip_ratio/low_min": 0.0,
989
+ "clip_ratio/region_mean": 0.0,
990
+ "completions/clipped_ratio": 0.0,
991
+ "completions/max_length": 1696.2,
992
+ "completions/max_terminated_length": 1696.2,
993
+ "completions/mean_length": 668.06875,
994
+ "completions/mean_terminated_length": 668.06875,
995
+ "completions/min_length": 227.5,
996
+ "completions/min_terminated_length": 227.5,
997
+ "entropy": 0.23859673142433166,
998
+ "epoch": 1.205211726384365,
999
+ "frac_reward_zero_std": 0.925,
1000
+ "grad_norm": 0.0,
1001
+ "learning_rate": 5.993485342019545e-06,
1002
+ "loss": 0.0012,
1003
+ "num_tokens": 15108926.0,
1004
+ "reward": 0.903125,
1005
+ "reward_std": 0.03787454068660736,
1006
+ "rewards/qwen_accuracy_reward/mean": 0.903125,
1007
+ "rewards/qwen_accuracy_reward/std": 0.17332438826560975,
1008
+ "step": 370,
1009
+ "step_time": 46.88851107805967
1010
+ },
1011
+ {
1012
+ "clip_ratio/high_max": 0.0,
1013
+ "clip_ratio/high_mean": 0.0,
1014
+ "clip_ratio/low_mean": 0.0,
1015
+ "clip_ratio/low_min": 0.0,
1016
+ "clip_ratio/region_mean": 0.0,
1017
+ "completions/clipped_ratio": 0.00625,
1018
+ "completions/max_length": 2117.2,
1019
+ "completions/max_terminated_length": 2041.7,
1020
+ "completions/mean_length": 779.765625,
1021
+ "completions/mean_terminated_length": 759.7556274414062,
1022
+ "completions/min_length": 242.8,
1023
+ "completions/min_terminated_length": 242.8,
1024
+ "entropy": 0.25157202035188675,
1025
+ "epoch": 1.237785016286645,
1026
+ "frac_reward_zero_std": 0.95,
1027
+ "grad_norm": 0.0,
1028
+ "learning_rate": 5.884907709011944e-06,
1029
+ "loss": 0.0203,
1030
+ "num_tokens": 15488027.0,
1031
+ "reward": 0.959375,
1032
+ "reward_std": 0.022201895713806152,
1033
+ "rewards/qwen_accuracy_reward/mean": 0.959375,
1034
+ "rewards/qwen_accuracy_reward/std": 0.08088433742523193,
1035
+ "step": 380,
1036
+ "step_time": 59.138066929019985
1037
+ },
1038
+ {
1039
+ "clip_ratio/high_max": 0.0,
1040
+ "clip_ratio/high_mean": 0.0,
1041
+ "clip_ratio/low_mean": 0.0,
1042
+ "clip_ratio/low_min": 0.0,
1043
+ "clip_ratio/region_mean": 0.0,
1044
+ "completions/clipped_ratio": 0.0,
1045
+ "completions/max_length": 1781.4,
1046
+ "completions/max_terminated_length": 1781.4,
1047
+ "completions/mean_length": 700.425,
1048
+ "completions/mean_terminated_length": 700.425,
1049
+ "completions/min_length": 235.0,
1050
+ "completions/min_terminated_length": 235.0,
1051
+ "entropy": 0.23496372401714324,
1052
+ "epoch": 1.2703583061889252,
1053
+ "frac_reward_zero_std": 0.9,
1054
+ "grad_norm": 0.0,
1055
+ "learning_rate": 5.776330076004344e-06,
1056
+ "loss": 0.0176,
1057
+ "num_tokens": 15855563.0,
1058
+ "reward": 0.915625,
1059
+ "reward_std": 0.03808925524353981,
1060
+ "rewards/qwen_accuracy_reward/mean": 0.915625,
1061
+ "rewards/qwen_accuracy_reward/std": 0.15826207846403123,
1062
+ "step": 390,
1063
+ "step_time": 50.060482597071676
1064
+ },
1065
+ {
1066
+ "clip_ratio/high_max": 0.0,
1067
+ "clip_ratio/high_mean": 0.0,
1068
+ "clip_ratio/low_mean": 0.0,
1069
+ "clip_ratio/low_min": 0.0,
1070
+ "clip_ratio/region_mean": 0.0,
1071
+ "completions/clipped_ratio": 0.0,
1072
+ "completions/max_length": 2096.2,
1073
+ "completions/max_terminated_length": 2096.2,
1074
+ "completions/mean_length": 812.94375,
1075
+ "completions/mean_terminated_length": 812.94375,
1076
+ "completions/min_length": 237.0,
1077
+ "completions/min_terminated_length": 237.0,
1078
+ "entropy": 0.25660712122917173,
1079
+ "epoch": 1.3029315960912053,
1080
+ "frac_reward_zero_std": 0.975,
1081
+ "grad_norm": 0.0,
1082
+ "learning_rate": 5.667752442996744e-06,
1083
+ "loss": 0.0008,
1084
+ "num_tokens": 16248769.0,
1085
+ "reward": 0.971875,
1086
+ "reward_std": 0.00883883461356163,
1087
+ "rewards/qwen_accuracy_reward/mean": 0.971875,
1088
+ "rewards/qwen_accuracy_reward/std": 0.061671803891658786,
1089
+ "step": 400,
1090
+ "step_time": 57.74213280631229
1091
+ },
1092
+ {
1093
+ "clip_ratio/high_max": 0.0,
1094
+ "clip_ratio/high_mean": 0.0,
1095
+ "clip_ratio/low_mean": 0.0,
1096
+ "clip_ratio/low_min": 0.0,
1097
+ "clip_ratio/region_mean": 0.0,
1098
+ "completions/clipped_ratio": 0.0,
1099
+ "completions/max_length": 2004.3,
1100
+ "completions/max_terminated_length": 2004.3,
1101
+ "completions/mean_length": 783.475,
1102
+ "completions/mean_terminated_length": 783.475,
1103
+ "completions/min_length": 247.3,
1104
+ "completions/min_terminated_length": 247.3,
1105
+ "entropy": 0.2624002441763878,
1106
+ "epoch": 1.3355048859934853,
1107
+ "frac_reward_zero_std": 0.95,
1108
+ "grad_norm": 0.0,
1109
+ "learning_rate": 5.559174809989143e-06,
1110
+ "loss": -0.0023,
1111
+ "num_tokens": 16618217.0,
1112
+ "reward": 0.978125,
1113
+ "reward_std": 0.020411586761474608,
1114
+ "rewards/qwen_accuracy_reward/mean": 0.978125,
1115
+ "rewards/qwen_accuracy_reward/std": 0.0420013427734375,
1116
+ "step": 410,
1117
+ "step_time": 55.04804942021146
1118
+ },
1119
+ {
1120
+ "clip_ratio/high_max": 0.0,
1121
+ "clip_ratio/high_mean": 0.0,
1122
+ "clip_ratio/low_mean": 0.0,
1123
+ "clip_ratio/low_min": 0.0,
1124
+ "clip_ratio/region_mean": 0.0,
1125
+ "completions/clipped_ratio": 0.0,
1126
+ "completions/max_length": 2008.8,
1127
+ "completions/max_terminated_length": 2008.8,
1128
+ "completions/mean_length": 738.990625,
1129
+ "completions/mean_terminated_length": 738.990625,
1130
+ "completions/min_length": 235.2,
1131
+ "completions/min_terminated_length": 235.2,
1132
+ "entropy": 0.23914156556129457,
1133
+ "epoch": 1.3680781758957654,
1134
+ "frac_reward_zero_std": 0.975,
1135
+ "grad_norm": 0.0,
1136
+ "learning_rate": 5.4505971769815425e-06,
1137
+ "loss": -0.0033,
1138
+ "num_tokens": 16982726.0,
1139
+ "reward": 0.96875,
1140
+ "reward_std": 0.011572751402854919,
1141
+ "rewards/qwen_accuracy_reward/mean": 0.96875,
1142
+ "rewards/qwen_accuracy_reward/std": 0.06858760267496108,
1143
+ "step": 420,
1144
+ "step_time": 55.440987238287924
1145
+ },
1146
+ {
1147
+ "clip_ratio/high_max": 0.0,
1148
+ "clip_ratio/high_mean": 0.0,
1149
+ "clip_ratio/low_mean": 0.0,
1150
+ "clip_ratio/low_min": 0.0,
1151
+ "clip_ratio/region_mean": 0.0,
1152
+ "completions/clipped_ratio": 0.0,
1153
+ "completions/max_length": 1761.0,
1154
+ "completions/max_terminated_length": 1761.0,
1155
+ "completions/mean_length": 693.9375,
1156
+ "completions/mean_terminated_length": 693.9375,
1157
+ "completions/min_length": 229.9,
1158
+ "completions/min_terminated_length": 229.9,
1159
+ "entropy": 0.2197161704301834,
1160
+ "epoch": 1.4006514657980456,
1161
+ "frac_reward_zero_std": 0.925,
1162
+ "grad_norm": 1.4765625,
1163
+ "learning_rate": 5.342019543973942e-06,
1164
+ "loss": 0.0221,
1165
+ "num_tokens": 17349890.0,
1166
+ "reward": 0.98125,
1167
+ "reward_std": 0.03104073032736778,
1168
+ "rewards/qwen_accuracy_reward/mean": 0.98125,
1169
+ "rewards/qwen_accuracy_reward/std": 0.05456787198781967,
1170
+ "step": 430,
1171
+ "step_time": 48.33475280003622
1172
+ },
1173
+ {
1174
+ "clip_ratio/high_max": 0.0,
1175
+ "clip_ratio/high_mean": 0.0,
1176
+ "clip_ratio/low_mean": 0.0,
1177
+ "clip_ratio/low_min": 0.0,
1178
+ "clip_ratio/region_mean": 0.0,
1179
+ "completions/clipped_ratio": 0.0,
1180
+ "completions/max_length": 2297.5,
1181
+ "completions/max_terminated_length": 2297.5,
1182
+ "completions/mean_length": 739.340625,
1183
+ "completions/mean_terminated_length": 739.340625,
1184
+ "completions/min_length": 219.5,
1185
+ "completions/min_terminated_length": 219.5,
1186
+ "entropy": 0.25024042576551436,
1187
+ "epoch": 1.4332247557003257,
1188
+ "frac_reward_zero_std": 0.925,
1189
+ "grad_norm": 0.0,
1190
+ "learning_rate": 5.233441910966341e-06,
1191
+ "loss": -0.0151,
1192
+ "num_tokens": 17706023.0,
1193
+ "reward": 0.9375,
1194
+ "reward_std": 0.03650856465101242,
1195
+ "rewards/qwen_accuracy_reward/mean": 0.9375,
1196
+ "rewards/qwen_accuracy_reward/std": 0.12034976184368133,
1197
+ "step": 440,
1198
+ "step_time": 62.81698907474056
1199
+ },
1200
+ {
1201
+ "clip_ratio/high_max": 0.0,
1202
+ "clip_ratio/high_mean": 0.0,
1203
+ "clip_ratio/low_mean": 0.0,
1204
+ "clip_ratio/low_min": 0.0,
1205
+ "clip_ratio/region_mean": 0.0,
1206
+ "completions/clipped_ratio": 0.0,
1207
+ "completions/max_length": 1834.9,
1208
+ "completions/max_terminated_length": 1834.9,
1209
+ "completions/mean_length": 688.871875,
1210
+ "completions/mean_terminated_length": 688.871875,
1211
+ "completions/min_length": 224.1,
1212
+ "completions/min_terminated_length": 224.1,
1213
+ "entropy": 0.226864817738533,
1214
+ "epoch": 1.4657980456026058,
1215
+ "frac_reward_zero_std": 0.95,
1216
+ "grad_norm": 0.0,
1217
+ "learning_rate": 5.124864277958741e-06,
1218
+ "loss": 0.0071,
1219
+ "num_tokens": 18040222.0,
1220
+ "reward": 0.99375,
1221
+ "reward_std": 0.01767766922712326,
1222
+ "rewards/qwen_accuracy_reward/mean": 0.99375,
1223
+ "rewards/qwen_accuracy_reward/std": 0.03535533845424652,
1224
+ "step": 450,
1225
+ "step_time": 50.243652266729626
1226
+ },
1227
+ {
1228
+ "clip_ratio/high_max": 0.0,
1229
+ "clip_ratio/high_mean": 0.0,
1230
+ "clip_ratio/low_mean": 0.0,
1231
+ "clip_ratio/low_min": 0.0,
1232
+ "clip_ratio/region_mean": 0.0,
1233
+ "completions/clipped_ratio": 0.0,
1234
+ "completions/max_length": 2076.6,
1235
+ "completions/max_terminated_length": 2076.6,
1236
+ "completions/mean_length": 820.065625,
1237
+ "completions/mean_terminated_length": 820.065625,
1238
+ "completions/min_length": 224.3,
1239
+ "completions/min_terminated_length": 224.3,
1240
+ "entropy": 0.26836813539266585,
1241
+ "epoch": 1.498371335504886,
1242
+ "frac_reward_zero_std": 0.975,
1243
+ "grad_norm": 0.0,
1244
+ "learning_rate": 5.016286644951141e-06,
1245
+ "loss": 0.0114,
1246
+ "num_tokens": 18417267.0,
1247
+ "reward": 0.965625,
1248
+ "reward_std": 0.01293872892856598,
1249
+ "rewards/qwen_accuracy_reward/mean": 0.965625,
1250
+ "rewards/qwen_accuracy_reward/std": 0.07360859215259552,
1251
+ "step": 460,
1252
+ "step_time": 53.481527561508116
1253
+ },
1254
+ {
1255
+ "clip_ratio/high_max": 0.0,
1256
+ "clip_ratio/high_mean": 0.0,
1257
+ "clip_ratio/low_mean": 0.0,
1258
+ "clip_ratio/low_min": 0.0,
1259
+ "clip_ratio/region_mean": 0.0,
1260
+ "completions/clipped_ratio": 0.0,
1261
+ "completions/max_length": 2273.2,
1262
+ "completions/max_terminated_length": 2273.2,
1263
+ "completions/mean_length": 806.01875,
1264
+ "completions/mean_terminated_length": 806.01875,
1265
+ "completions/min_length": 223.9,
1266
+ "completions/min_terminated_length": 223.9,
1267
+ "entropy": 0.2538841128349304,
1268
+ "epoch": 1.5309446254071661,
1269
+ "frac_reward_zero_std": 0.975,
1270
+ "grad_norm": 0.0,
1271
+ "learning_rate": 4.90770901194354e-06,
1272
+ "loss": 0.0067,
1273
+ "num_tokens": 18785505.0,
1274
+ "reward": 0.971875,
1275
+ "reward_std": 0.00883883461356163,
1276
+ "rewards/qwen_accuracy_reward/mean": 0.971875,
1277
+ "rewards/qwen_accuracy_reward/std": 0.061671803891658786,
1278
+ "step": 470,
1279
+ "step_time": 62.839932213444264
1280
+ },
1281
+ {
1282
+ "clip_ratio/high_max": 0.0,
1283
+ "clip_ratio/high_mean": 0.0,
1284
+ "clip_ratio/low_mean": 0.0,
1285
+ "clip_ratio/low_min": 0.0,
1286
+ "clip_ratio/region_mean": 0.0,
1287
+ "completions/clipped_ratio": 0.03125,
1288
+ "completions/max_length": 2714.5,
1289
+ "completions/max_terminated_length": 2495.2,
1290
+ "completions/mean_length": 925.478125,
1291
+ "completions/mean_terminated_length": 824.1982543945312,
1292
+ "completions/min_length": 265.8,
1293
+ "completions/min_terminated_length": 265.8,
1294
+ "entropy": 0.25242401361465455,
1295
+ "epoch": 1.5635179153094463,
1296
+ "frac_reward_zero_std": 0.925,
1297
+ "grad_norm": 1.03125,
1298
+ "learning_rate": 4.79913137893594e-06,
1299
+ "loss": 0.0221,
1300
+ "num_tokens": 19233306.0,
1301
+ "reward": 0.940625,
1302
+ "reward_std": 0.0306163989007473,
1303
+ "rewards/qwen_accuracy_reward/mean": 0.940625,
1304
+ "rewards/qwen_accuracy_reward/std": 0.11959655284881592,
1305
+ "step": 480,
1306
+ "step_time": 77.10490596247837
1307
+ },
1308
+ {
1309
+ "clip_ratio/high_max": 0.0,
1310
+ "clip_ratio/high_mean": 0.0,
1311
+ "clip_ratio/low_mean": 0.0,
1312
+ "clip_ratio/low_min": 0.0,
1313
+ "clip_ratio/region_mean": 0.0,
1314
+ "completions/clipped_ratio": 0.0,
1315
+ "completions/max_length": 1684.3,
1316
+ "completions/max_terminated_length": 1684.3,
1317
+ "completions/mean_length": 707.128125,
1318
+ "completions/mean_terminated_length": 707.128125,
1319
+ "completions/min_length": 215.6,
1320
+ "completions/min_terminated_length": 215.6,
1321
+ "entropy": 0.24735355526208877,
1322
+ "epoch": 1.5960912052117264,
1323
+ "frac_reward_zero_std": 0.95,
1324
+ "grad_norm": 0.0,
1325
+ "learning_rate": 4.690553745928339e-06,
1326
+ "loss": 0.0074,
1327
+ "num_tokens": 19559787.0,
1328
+ "reward": 0.965625,
1329
+ "reward_std": 0.02041158601641655,
1330
+ "rewards/qwen_accuracy_reward/mean": 0.965625,
1331
+ "rewards/qwen_accuracy_reward/std": 0.08626527190208436,
1332
+ "step": 490,
1333
+ "step_time": 46.93290213858709
1334
+ },
1335
+ {
1336
+ "clip_ratio/high_max": 0.0,
1337
+ "clip_ratio/high_mean": 0.0,
1338
+ "clip_ratio/low_mean": 0.0,
1339
+ "clip_ratio/low_min": 0.0,
1340
+ "clip_ratio/region_mean": 0.0,
1341
+ "completions/clipped_ratio": 0.0,
1342
+ "completions/max_length": 1979.4,
1343
+ "completions/max_terminated_length": 1979.4,
1344
+ "completions/mean_length": 789.7125,
1345
+ "completions/mean_terminated_length": 789.7125,
1346
+ "completions/min_length": 224.6,
1347
+ "completions/min_terminated_length": 224.6,
1348
+ "entropy": 0.2521603599190712,
1349
+ "epoch": 1.6286644951140063,
1350
+ "frac_reward_zero_std": 0.925,
1351
+ "grad_norm": 0.0,
1352
+ "learning_rate": 4.5819761129207385e-06,
1353
+ "loss": 0.0058,
1354
+ "num_tokens": 19946527.0,
1355
+ "reward": 0.96875,
1356
+ "reward_std": 0.02925042062997818,
1357
+ "rewards/qwen_accuracy_reward/mean": 0.96875,
1358
+ "rewards/qwen_accuracy_reward/std": 0.08427248001098633,
1359
+ "step": 500,
1360
+ "step_time": 55.279600530304016
1361
+ },
1362
+ {
1363
+ "clip_ratio/high_max": 0.0,
1364
+ "clip_ratio/high_mean": 0.0,
1365
+ "clip_ratio/low_mean": 0.0,
1366
+ "clip_ratio/low_min": 0.0,
1367
+ "clip_ratio/region_mean": 0.0,
1368
+ "completions/clipped_ratio": 0.0,
1369
+ "completions/max_length": 2161.8,
1370
+ "completions/max_terminated_length": 2161.8,
1371
+ "completions/mean_length": 712.140625,
1372
+ "completions/mean_terminated_length": 712.140625,
1373
+ "completions/min_length": 201.2,
1374
+ "completions/min_terminated_length": 201.2,
1375
+ "entropy": 0.24787612855434418,
1376
+ "epoch": 1.6612377850162865,
1377
+ "frac_reward_zero_std": 0.975,
1378
+ "grad_norm": 0.0,
1379
+ "learning_rate": 4.473398479913138e-06,
1380
+ "loss": 0.0066,
1381
+ "num_tokens": 20305956.0,
1382
+ "reward": 0.990625,
1383
+ "reward_std": 0.01293872892856598,
1384
+ "rewards/qwen_accuracy_reward/mean": 0.990625,
1385
+ "rewards/qwen_accuracy_reward/std": 0.02961445748806,
1386
+ "step": 510,
1387
+ "step_time": 60.03746303850785
1388
+ },
1389
+ {
1390
+ "clip_ratio/high_max": 0.0,
1391
+ "clip_ratio/high_mean": 0.0,
1392
+ "clip_ratio/low_mean": 0.0,
1393
+ "clip_ratio/low_min": 0.0,
1394
+ "clip_ratio/region_mean": 0.0,
1395
+ "completions/clipped_ratio": 0.0,
1396
+ "completions/max_length": 2452.2,
1397
+ "completions/max_terminated_length": 2452.2,
1398
+ "completions/mean_length": 877.840625,
1399
+ "completions/mean_terminated_length": 877.840625,
1400
+ "completions/min_length": 227.3,
1401
+ "completions/min_terminated_length": 227.3,
1402
+ "entropy": 0.2712139129638672,
1403
+ "epoch": 1.6938110749185666,
1404
+ "frac_reward_zero_std": 0.95,
1405
+ "grad_norm": 0.0,
1406
+ "learning_rate": 4.364820846905538e-06,
1407
+ "loss": 0.0001,
1408
+ "num_tokens": 20699457.0,
1409
+ "reward": 0.975,
1410
+ "reward_std": 0.023145502805709837,
1411
+ "rewards/qwen_accuracy_reward/mean": 0.975,
1412
+ "rewards/qwen_accuracy_reward/std": 0.06424924582242966,
1413
+ "step": 520,
1414
+ "step_time": 68.02793372562155
1415
+ },
1416
+ {
1417
+ "clip_ratio/high_max": 0.0,
1418
+ "clip_ratio/high_mean": 0.0,
1419
+ "clip_ratio/low_mean": 0.0,
1420
+ "clip_ratio/low_min": 0.0,
1421
+ "clip_ratio/region_mean": 0.0,
1422
+ "completions/clipped_ratio": 0.009375,
1423
+ "completions/max_length": 2466.4,
1424
+ "completions/max_terminated_length": 2373.3,
1425
+ "completions/mean_length": 999.05625,
1426
+ "completions/mean_terminated_length": 971.425537109375,
1427
+ "completions/min_length": 245.0,
1428
+ "completions/min_terminated_length": 245.0,
1429
+ "entropy": 0.28852569311857224,
1430
+ "epoch": 1.7263843648208468,
1431
+ "frac_reward_zero_std": 0.95,
1432
+ "grad_norm": 0.796875,
1433
+ "learning_rate": 4.256243213897938e-06,
1434
+ "loss": 0.028,
1435
+ "num_tokens": 21126627.0,
1436
+ "reward": 0.98125,
1437
+ "reward_std": 0.024935813248157503,
1438
+ "rewards/qwen_accuracy_reward/mean": 0.98125,
1439
+ "rewards/qwen_accuracy_reward/std": 0.03965577781200409,
1440
+ "step": 530,
1441
+ "step_time": 67.80073131825775
1442
+ },
1443
+ {
1444
+ "clip_ratio/high_max": 0.0,
1445
+ "clip_ratio/high_mean": 0.0,
1446
+ "clip_ratio/low_mean": 0.0,
1447
+ "clip_ratio/low_min": 0.0,
1448
+ "clip_ratio/region_mean": 0.0,
1449
+ "completions/clipped_ratio": 0.00625,
1450
+ "completions/max_length": 2564.1,
1451
+ "completions/max_terminated_length": 2539.0,
1452
+ "completions/mean_length": 898.35,
1453
+ "completions/mean_terminated_length": 879.8432373046875,
1454
+ "completions/min_length": 242.9,
1455
+ "completions/min_terminated_length": 242.9,
1456
+ "entropy": 0.2612716257572174,
1457
+ "epoch": 1.758957654723127,
1458
+ "frac_reward_zero_std": 0.95,
1459
+ "grad_norm": 0.0,
1460
+ "learning_rate": 4.147665580890337e-06,
1461
+ "loss": 0.0223,
1462
+ "num_tokens": 21547283.0,
1463
+ "reward": 0.990625,
1464
+ "reward_std": 0.02041158601641655,
1465
+ "rewards/qwen_accuracy_reward/mean": 0.990625,
1466
+ "rewards/qwen_accuracy_reward/std": 0.04227113723754883,
1467
+ "step": 540,
1468
+ "step_time": 71.55222802590579
1469
+ },
1470
+ {
1471
+ "clip_ratio/high_max": 0.0,
1472
+ "clip_ratio/high_mean": 0.0,
1473
+ "clip_ratio/low_mean": 0.0,
1474
+ "clip_ratio/low_min": 0.0,
1475
+ "clip_ratio/region_mean": 0.0,
1476
+ "completions/clipped_ratio": 0.0,
1477
+ "completions/max_length": 2065.7,
1478
+ "completions/max_terminated_length": 2065.7,
1479
+ "completions/mean_length": 810.70625,
1480
+ "completions/mean_terminated_length": 810.70625,
1481
+ "completions/min_length": 235.2,
1482
+ "completions/min_terminated_length": 235.2,
1483
+ "entropy": 0.2687004327774048,
1484
+ "epoch": 1.791530944625407,
1485
+ "frac_reward_zero_std": 0.975,
1486
+ "grad_norm": 0.0,
1487
+ "learning_rate": 4.039087947882737e-06,
1488
+ "loss": 0.0018,
1489
+ "num_tokens": 21932085.0,
1490
+ "reward": 0.94375,
1491
+ "reward_std": 0.011572751402854919,
1492
+ "rewards/qwen_accuracy_reward/mean": 0.94375,
1493
+ "rewards/qwen_accuracy_reward/std": 0.11258173733949661,
1494
+ "step": 550,
1495
+ "step_time": 57.344520951993765
1496
+ },
1497
+ {
1498
+ "clip_ratio/high_max": 0.0,
1499
+ "clip_ratio/high_mean": 0.0,
1500
+ "clip_ratio/low_mean": 0.0,
1501
+ "clip_ratio/low_min": 0.0,
1502
+ "clip_ratio/region_mean": 0.0,
1503
+ "completions/clipped_ratio": 0.003125,
1504
+ "completions/max_length": 2237.9,
1505
+ "completions/max_terminated_length": 2022.3,
1506
+ "completions/mean_length": 804.046875,
1507
+ "completions/mean_terminated_length": 793.9167297363281,
1508
+ "completions/min_length": 228.6,
1509
+ "completions/min_terminated_length": 228.6,
1510
+ "entropy": 0.26058160662651064,
1511
+ "epoch": 1.8241042345276872,
1512
+ "frac_reward_zero_std": 0.95,
1513
+ "grad_norm": 0.0,
1514
+ "learning_rate": 3.9305103148751365e-06,
1515
+ "loss": 0.0297,
1516
+ "num_tokens": 22301164.0,
1517
+ "reward": 0.99375,
1518
+ "reward_std": 0.01767766922712326,
1519
+ "rewards/qwen_accuracy_reward/mean": 0.99375,
1520
+ "rewards/qwen_accuracy_reward/std": 0.03535533845424652,
1521
+ "step": 560,
1522
+ "step_time": 58.96651698555797
1523
+ },
1524
+ {
1525
+ "clip_ratio/high_max": 0.0,
1526
+ "clip_ratio/high_mean": 0.0,
1527
+ "clip_ratio/low_mean": 0.0,
1528
+ "clip_ratio/low_min": 0.0,
1529
+ "clip_ratio/region_mean": 0.0,
1530
+ "completions/clipped_ratio": 0.003125,
1531
+ "completions/max_length": 2615.8,
1532
+ "completions/max_terminated_length": 2586.3,
1533
+ "completions/mean_length": 919.284375,
1534
+ "completions/mean_terminated_length": 910.6251953125,
1535
+ "completions/min_length": 227.2,
1536
+ "completions/min_terminated_length": 227.2,
1537
+ "entropy": 0.26033716797828677,
1538
+ "epoch": 1.8566775244299674,
1539
+ "frac_reward_zero_std": 0.925,
1540
+ "grad_norm": 0.0,
1541
+ "learning_rate": 3.8219326818675354e-06,
1542
+ "loss": 0.0202,
1543
+ "num_tokens": 22748151.0,
1544
+ "reward": 0.965625,
1545
+ "reward_std": 0.03377464786171913,
1546
+ "rewards/qwen_accuracy_reward/mean": 0.965625,
1547
+ "rewards/qwen_accuracy_reward/std": 0.09093452244997025,
1548
+ "step": 570,
1549
+ "step_time": 73.18712518224493
1550
+ },
1551
+ {
1552
+ "clip_ratio/high_max": 0.0,
1553
+ "clip_ratio/high_mean": 0.0,
1554
+ "clip_ratio/low_mean": 0.0,
1555
+ "clip_ratio/low_min": 0.0,
1556
+ "clip_ratio/region_mean": 0.0,
1557
+ "completions/clipped_ratio": 0.0,
1558
+ "completions/max_length": 1869.4,
1559
+ "completions/max_terminated_length": 1869.4,
1560
+ "completions/mean_length": 819.878125,
1561
+ "completions/mean_terminated_length": 819.878125,
1562
+ "completions/min_length": 241.7,
1563
+ "completions/min_terminated_length": 241.7,
1564
+ "entropy": 0.27983673214912413,
1565
+ "epoch": 1.8892508143322475,
1566
+ "frac_reward_zero_std": 0.975,
1567
+ "grad_norm": 0.0,
1568
+ "learning_rate": 3.7133550488599353e-06,
1569
+ "loss": -0.0055,
1570
+ "num_tokens": 23116952.0,
1571
+ "reward": 0.971875,
1572
+ "reward_std": 0.00883883461356163,
1573
+ "rewards/qwen_accuracy_reward/mean": 0.971875,
1574
+ "rewards/qwen_accuracy_reward/std": 0.061671803891658786,
1575
+ "step": 580,
1576
+ "step_time": 51.42270092964172
1577
+ },
1578
+ {
1579
+ "clip_ratio/high_max": 0.0,
1580
+ "clip_ratio/high_mean": 0.0,
1581
+ "clip_ratio/low_mean": 0.0,
1582
+ "clip_ratio/low_min": 0.0,
1583
+ "clip_ratio/region_mean": 0.0,
1584
+ "completions/clipped_ratio": 0.0,
1585
+ "completions/max_length": 2110.1,
1586
+ "completions/max_terminated_length": 2110.1,
1587
+ "completions/mean_length": 817.971875,
1588
+ "completions/mean_terminated_length": 817.971875,
1589
+ "completions/min_length": 217.9,
1590
+ "completions/min_terminated_length": 217.9,
1591
+ "entropy": 0.27436681389808654,
1592
+ "epoch": 1.9218241042345277,
1593
+ "frac_reward_zero_std": 0.975,
1594
+ "grad_norm": 0.0,
1595
+ "learning_rate": 3.6047774158523346e-06,
1596
+ "loss": -0.0143,
1597
+ "num_tokens": 23493583.0,
1598
+ "reward": 0.978125,
1599
+ "reward_std": 0.00883883461356163,
1600
+ "rewards/qwen_accuracy_reward/mean": 0.978125,
1601
+ "rewards/qwen_accuracy_reward/std": 0.0420013427734375,
1602
+ "step": 590,
1603
+ "step_time": 59.06694948039949
1604
+ },
1605
+ {
1606
+ "clip_ratio/high_max": 0.0,
1607
+ "clip_ratio/high_mean": 0.0,
1608
+ "clip_ratio/low_mean": 0.0,
1609
+ "clip_ratio/low_min": 0.0,
1610
+ "clip_ratio/region_mean": 0.0,
1611
+ "completions/clipped_ratio": 0.00625,
1612
+ "completions/max_length": 2356.0,
1613
+ "completions/max_terminated_length": 2309.1,
1614
+ "completions/mean_length": 819.525,
1615
+ "completions/mean_terminated_length": 800.2312561035156,
1616
+ "completions/min_length": 223.6,
1617
+ "completions/min_terminated_length": 223.6,
1618
+ "entropy": 0.2655492052435875,
1619
+ "epoch": 1.9543973941368078,
1620
+ "frac_reward_zero_std": 0.925,
1621
+ "grad_norm": 0.0,
1622
+ "learning_rate": 3.496199782844734e-06,
1623
+ "loss": 0.0383,
1624
+ "num_tokens": 23881743.0,
1625
+ "reward": 0.928125,
1626
+ "reward_std": 0.03471629247069359,
1627
+ "rewards/qwen_accuracy_reward/mean": 0.928125,
1628
+ "rewards/qwen_accuracy_reward/std": 0.1648948535323143,
1629
+ "step": 600,
1630
+ "step_time": 65.24080129675568
1631
+ },
1632
+ {
1633
+ "clip_ratio/high_max": 0.0,
1634
+ "clip_ratio/high_mean": 0.0,
1635
+ "clip_ratio/low_mean": 0.0,
1636
+ "clip_ratio/low_min": 0.0,
1637
+ "clip_ratio/region_mean": 0.0,
1638
+ "completions/clipped_ratio": 0.003125,
1639
+ "completions/max_length": 1854.6,
1640
+ "completions/max_terminated_length": 1804.7,
1641
+ "completions/mean_length": 747.76875,
1642
+ "completions/mean_terminated_length": 738.7992919921875,
1643
+ "completions/min_length": 230.1,
1644
+ "completions/min_terminated_length": 230.1,
1645
+ "entropy": 0.24497835338115692,
1646
+ "epoch": 1.986970684039088,
1647
+ "frac_reward_zero_std": 0.975,
1648
+ "grad_norm": 0.0,
1649
+ "learning_rate": 3.387622149837134e-06,
1650
+ "loss": 0.0066,
1651
+ "num_tokens": 24238917.0,
1652
+ "reward": 0.946875,
1653
+ "reward_std": 0.00883883461356163,
1654
+ "rewards/qwen_accuracy_reward/mean": 0.946875,
1655
+ "rewards/qwen_accuracy_reward/std": 0.06847771853208542,
1656
+ "step": 610,
1657
+ "step_time": 50.64491728274152
1658
+ },
1659
+ {
1660
+ "clip_ratio/high_max": 0.0,
1661
+ "clip_ratio/high_mean": 0.0,
1662
+ "clip_ratio/low_mean": 0.0,
1663
+ "clip_ratio/low_min": 0.0,
1664
+ "clip_ratio/region_mean": 0.0,
1665
+ "completions/clipped_ratio": 0.0,
1666
+ "completions/max_length": 1993.9,
1667
+ "completions/max_terminated_length": 1993.9,
1668
+ "completions/mean_length": 801.025,
1669
+ "completions/mean_terminated_length": 801.025,
1670
+ "completions/min_length": 243.0,
1671
+ "completions/min_terminated_length": 243.0,
1672
+ "entropy": 0.26399993896484375,
1673
+ "epoch": 2.019543973941368,
1674
+ "frac_reward_zero_std": 1.0,
1675
+ "grad_norm": 0.0,
1676
+ "learning_rate": 3.2790445168295332e-06,
1677
+ "loss": 0.0,
1678
+ "num_tokens": 24616733.0,
1679
+ "reward": 1.0,
1680
+ "reward_std": 0.0,
1681
+ "rewards/qwen_accuracy_reward/mean": 1.0,
1682
+ "rewards/qwen_accuracy_reward/std": 0.0,
1683
+ "step": 620,
1684
+ "step_time": 54.987590356636794
1685
+ },
1686
+ {
1687
+ "clip_ratio/high_max": 0.0,
1688
+ "clip_ratio/high_mean": 0.0,
1689
+ "clip_ratio/low_mean": 0.0,
1690
+ "clip_ratio/low_min": 0.0,
1691
+ "clip_ratio/region_mean": 0.0,
1692
+ "completions/clipped_ratio": 0.0,
1693
+ "completions/max_length": 1921.4,
1694
+ "completions/max_terminated_length": 1921.4,
1695
+ "completions/mean_length": 671.61875,
1696
+ "completions/mean_terminated_length": 671.61875,
1697
+ "completions/min_length": 230.8,
1698
+ "completions/min_terminated_length": 230.8,
1699
+ "entropy": 0.23809937834739686,
1700
+ "epoch": 2.0521172638436482,
1701
+ "frac_reward_zero_std": 0.95,
1702
+ "grad_norm": 0.0,
1703
+ "learning_rate": 3.1704668838219326e-06,
1704
+ "loss": 0.0118,
1705
+ "num_tokens": 24948163.0,
1706
+ "reward": 0.990625,
1707
+ "reward_std": 0.02041158601641655,
1708
+ "rewards/qwen_accuracy_reward/mean": 0.990625,
1709
+ "rewards/qwen_accuracy_reward/std": 0.04227113723754883,
1710
+ "step": 630,
1711
+ "step_time": 53.22267805170268
1712
+ },
1713
+ {
1714
+ "clip_ratio/high_max": 0.0,
1715
+ "clip_ratio/high_mean": 0.0,
1716
+ "clip_ratio/low_mean": 0.0,
1717
+ "clip_ratio/low_min": 0.0,
1718
+ "clip_ratio/region_mean": 0.0,
1719
+ "completions/clipped_ratio": 0.0,
1720
+ "completions/max_length": 1944.5,
1721
+ "completions/max_terminated_length": 1944.5,
1722
+ "completions/mean_length": 739.3125,
1723
+ "completions/mean_terminated_length": 739.3125,
1724
+ "completions/min_length": 225.3,
1725
+ "completions/min_terminated_length": 225.3,
1726
+ "entropy": 0.24684822857379912,
1727
+ "epoch": 2.0846905537459284,
1728
+ "frac_reward_zero_std": 1.0,
1729
+ "grad_norm": 0.0,
1730
+ "learning_rate": 3.061889250814333e-06,
1731
+ "loss": 0.0,
1732
+ "num_tokens": 25299887.0,
1733
+ "reward": 0.975,
1734
+ "reward_std": 0.0,
1735
+ "rewards/qwen_accuracy_reward/mean": 0.975,
1736
+ "rewards/qwen_accuracy_reward/std": 0.04399413466453552,
1737
+ "step": 640,
1738
+ "step_time": 52.247175365500155
1739
+ },
1740
+ {
1741
+ "clip_ratio/high_max": 0.0,
1742
+ "clip_ratio/high_mean": 0.0,
1743
+ "clip_ratio/low_mean": 0.0,
1744
+ "clip_ratio/low_min": 0.0,
1745
+ "clip_ratio/region_mean": 0.0,
1746
+ "completions/clipped_ratio": 0.0,
1747
+ "completions/max_length": 1997.9,
1748
+ "completions/max_terminated_length": 1997.9,
1749
+ "completions/mean_length": 915.025,
1750
+ "completions/mean_terminated_length": 915.025,
1751
+ "completions/min_length": 241.7,
1752
+ "completions/min_terminated_length": 241.7,
1753
+ "entropy": 0.30182347595691683,
1754
+ "epoch": 2.1172638436482085,
1755
+ "frac_reward_zero_std": 0.95,
1756
+ "grad_norm": 0.0,
1757
+ "learning_rate": 2.9533116178067322e-06,
1758
+ "loss": 0.0144,
1759
+ "num_tokens": 25695087.0,
1760
+ "reward": 0.93125,
1761
+ "reward_std": 0.02177756354212761,
1762
+ "rewards/qwen_accuracy_reward/mean": 0.93125,
1763
+ "rewards/qwen_accuracy_reward/std": 0.1425561413168907,
1764
+ "step": 650,
1765
+ "step_time": 55.97678603949025
1766
+ },
1767
+ {
1768
+ "clip_ratio/high_max": 0.0,
1769
+ "clip_ratio/high_mean": 0.0,
1770
+ "clip_ratio/low_mean": 0.0,
1771
+ "clip_ratio/low_min": 0.0,
1772
+ "clip_ratio/region_mean": 0.0,
1773
+ "completions/clipped_ratio": 0.0,
1774
+ "completions/max_length": 2010.0,
1775
+ "completions/max_terminated_length": 2010.0,
1776
+ "completions/mean_length": 773.621875,
1777
+ "completions/mean_terminated_length": 773.621875,
1778
+ "completions/min_length": 240.4,
1779
+ "completions/min_terminated_length": 240.4,
1780
+ "entropy": 0.26853514164686204,
1781
+ "epoch": 2.1498371335504887,
1782
+ "frac_reward_zero_std": 0.95,
1783
+ "grad_norm": 0.0,
1784
+ "learning_rate": 2.8447339847991316e-06,
1785
+ "loss": -0.0101,
1786
+ "num_tokens": 26070318.0,
1787
+ "reward": 0.9375,
1788
+ "reward_std": 0.02177756354212761,
1789
+ "rewards/qwen_accuracy_reward/mean": 0.9375,
1790
+ "rewards/qwen_accuracy_reward/std": 0.09809217602014542,
1791
+ "step": 660,
1792
+ "step_time": 51.58728506108746
1793
+ },
1794
+ {
1795
+ "clip_ratio/high_max": 0.0,
1796
+ "clip_ratio/high_mean": 0.0,
1797
+ "clip_ratio/low_mean": 0.0,
1798
+ "clip_ratio/low_min": 0.0,
1799
+ "clip_ratio/region_mean": 0.0,
1800
+ "completions/clipped_ratio": 0.0,
1801
+ "completions/max_length": 2261.4,
1802
+ "completions/max_terminated_length": 2261.4,
1803
+ "completions/mean_length": 841.809375,
1804
+ "completions/mean_terminated_length": 841.809375,
1805
+ "completions/min_length": 240.7,
1806
+ "completions/min_terminated_length": 240.7,
1807
+ "entropy": 0.28256789445877073,
1808
+ "epoch": 2.182410423452769,
1809
+ "frac_reward_zero_std": 0.925,
1810
+ "grad_norm": 0.0,
1811
+ "learning_rate": 2.7361563517915314e-06,
1812
+ "loss": 0.022,
1813
+ "num_tokens": 26466761.0,
1814
+ "reward": 0.915625,
1815
+ "reward_std": 0.02651650384068489,
1816
+ "rewards/qwen_accuracy_reward/mean": 0.915625,
1817
+ "rewards/qwen_accuracy_reward/std": 0.18501541167497634,
1818
+ "step": 670,
1819
+ "step_time": 62.65867903856561
1820
+ },
1821
+ {
1822
+ "clip_ratio/high_max": 0.0,
1823
+ "clip_ratio/high_mean": 0.0,
1824
+ "clip_ratio/low_mean": 0.0,
1825
+ "clip_ratio/low_min": 0.0,
1826
+ "clip_ratio/region_mean": 0.0,
1827
+ "completions/clipped_ratio": 0.0,
1828
+ "completions/max_length": 2004.7,
1829
+ "completions/max_terminated_length": 2004.7,
1830
+ "completions/mean_length": 806.809375,
1831
+ "completions/mean_terminated_length": 806.809375,
1832
+ "completions/min_length": 247.0,
1833
+ "completions/min_terminated_length": 247.0,
1834
+ "entropy": 0.25492543578147886,
1835
+ "epoch": 2.214983713355049,
1836
+ "frac_reward_zero_std": 0.975,
1837
+ "grad_norm": 0.0,
1838
+ "learning_rate": 2.627578718783931e-06,
1839
+ "loss": 0.0105,
1840
+ "num_tokens": 26856028.0,
1841
+ "reward": 0.99375,
1842
+ "reward_std": 0.011572751402854919,
1843
+ "rewards/qwen_accuracy_reward/mean": 0.99375,
1844
+ "rewards/qwen_accuracy_reward/std": 0.024593468010425567,
1845
+ "step": 680,
1846
+ "step_time": 55.284398326464
1847
+ },
1848
+ {
1849
+ "clip_ratio/high_max": 0.0,
1850
+ "clip_ratio/high_mean": 0.0,
1851
+ "clip_ratio/low_mean": 0.0,
1852
+ "clip_ratio/low_min": 0.0,
1853
+ "clip_ratio/region_mean": 0.0,
1854
+ "completions/clipped_ratio": 0.0,
1855
+ "completions/max_length": 1603.7,
1856
+ "completions/max_terminated_length": 1603.7,
1857
+ "completions/mean_length": 693.71875,
1858
+ "completions/mean_terminated_length": 693.71875,
1859
+ "completions/min_length": 248.6,
1860
+ "completions/min_terminated_length": 248.6,
1861
+ "entropy": 0.24292832612991333,
1862
+ "epoch": 2.247557003257329,
1863
+ "frac_reward_zero_std": 0.975,
1864
+ "grad_norm": 0.0,
1865
+ "learning_rate": 2.5190010857763302e-06,
1866
+ "loss": -0.001,
1867
+ "num_tokens": 27217034.0,
1868
+ "reward": 0.978125,
1869
+ "reward_std": 0.00883883461356163,
1870
+ "rewards/qwen_accuracy_reward/mean": 0.978125,
1871
+ "rewards/qwen_accuracy_reward/std": 0.0420013427734375,
1872
+ "step": 690,
1873
+ "step_time": 43.892345847841355
1874
+ },
1875
+ {
1876
+ "clip_ratio/high_max": 0.0,
1877
+ "clip_ratio/high_mean": 0.0,
1878
+ "clip_ratio/low_mean": 0.0,
1879
+ "clip_ratio/low_min": 0.0,
1880
+ "clip_ratio/region_mean": 0.0,
1881
+ "completions/clipped_ratio": 0.0,
1882
+ "completions/max_length": 2109.6,
1883
+ "completions/max_terminated_length": 2109.6,
1884
+ "completions/mean_length": 732.25625,
1885
+ "completions/mean_terminated_length": 732.25625,
1886
+ "completions/min_length": 207.3,
1887
+ "completions/min_terminated_length": 207.3,
1888
+ "entropy": 0.24278154224157333,
1889
+ "epoch": 2.2801302931596092,
1890
+ "frac_reward_zero_std": 0.95,
1891
+ "grad_norm": 0.0,
1892
+ "learning_rate": 2.4104234527687296e-06,
1893
+ "loss": 0.0079,
1894
+ "num_tokens": 27584884.0,
1895
+ "reward": 0.984375,
1896
+ "reward_std": 0.022201896458864213,
1897
+ "rewards/qwen_accuracy_reward/mean": 0.984375,
1898
+ "rewards/qwen_accuracy_reward/std": 0.05127874463796615,
1899
+ "step": 700,
1900
+ "step_time": 58.4371213012375
1901
+ },
1902
+ {
1903
+ "clip_ratio/high_max": 0.0,
1904
+ "clip_ratio/high_mean": 0.0,
1905
+ "clip_ratio/low_mean": 0.0,
1906
+ "clip_ratio/low_min": 0.0,
1907
+ "clip_ratio/region_mean": 0.0,
1908
+ "completions/clipped_ratio": 0.0,
1909
+ "completions/max_length": 2012.2,
1910
+ "completions/max_terminated_length": 2012.2,
1911
+ "completions/mean_length": 874.60625,
1912
+ "completions/mean_terminated_length": 874.60625,
1913
+ "completions/min_length": 250.3,
1914
+ "completions/min_terminated_length": 250.3,
1915
+ "entropy": 0.2829678565263748,
1916
+ "epoch": 2.3127035830618894,
1917
+ "frac_reward_zero_std": 0.95,
1918
+ "grad_norm": 0.0,
1919
+ "learning_rate": 2.3018458197611294e-06,
1920
+ "loss": 0.0006,
1921
+ "num_tokens": 27971566.0,
1922
+ "reward": 0.95,
1923
+ "reward_std": 0.01767766922712326,
1924
+ "rewards/qwen_accuracy_reward/mean": 0.95,
1925
+ "rewards/qwen_accuracy_reward/std": 0.05080004930496216,
1926
+ "step": 710,
1927
+ "step_time": 51.538982132449746
1928
+ },
1929
+ {
1930
+ "clip_ratio/high_max": 0.0,
1931
+ "clip_ratio/high_mean": 0.0,
1932
+ "clip_ratio/low_mean": 0.0,
1933
+ "clip_ratio/low_min": 0.0,
1934
+ "clip_ratio/region_mean": 0.0,
1935
+ "completions/clipped_ratio": 0.0,
1936
+ "completions/max_length": 1950.8,
1937
+ "completions/max_terminated_length": 1950.8,
1938
+ "completions/mean_length": 741.321875,
1939
+ "completions/mean_terminated_length": 741.321875,
1940
+ "completions/min_length": 216.0,
1941
+ "completions/min_terminated_length": 216.0,
1942
+ "entropy": 0.2639204204082489,
1943
+ "epoch": 2.3452768729641695,
1944
+ "frac_reward_zero_std": 0.975,
1945
+ "grad_norm": 0.0,
1946
+ "learning_rate": 2.193268186753529e-06,
1947
+ "loss": 0.0133,
1948
+ "num_tokens": 28322077.0,
1949
+ "reward": 0.996875,
1950
+ "reward_std": 0.00883883461356163,
1951
+ "rewards/qwen_accuracy_reward/mean": 0.996875,
1952
+ "rewards/qwen_accuracy_reward/std": 0.01767766922712326,
1953
+ "step": 720,
1954
+ "step_time": 53.80062342043966
1955
+ },
1956
+ {
1957
+ "clip_ratio/high_max": 0.0,
1958
+ "clip_ratio/high_mean": 0.0,
1959
+ "clip_ratio/low_mean": 0.0,
1960
+ "clip_ratio/low_min": 0.0,
1961
+ "clip_ratio/region_mean": 0.0,
1962
+ "completions/clipped_ratio": 0.009375,
1963
+ "completions/max_length": 1992.0,
1964
+ "completions/max_terminated_length": 1984.1,
1965
+ "completions/mean_length": 763.175,
1966
+ "completions/mean_terminated_length": 737.0316772460938,
1967
+ "completions/min_length": 232.5,
1968
+ "completions/min_terminated_length": 232.5,
1969
+ "entropy": 0.2350025877356529,
1970
+ "epoch": 2.3778501628664497,
1971
+ "frac_reward_zero_std": 0.95,
1972
+ "grad_norm": 0.0,
1973
+ "learning_rate": 2.0846905537459286e-06,
1974
+ "loss": -0.0018,
1975
+ "num_tokens": 28713133.0,
1976
+ "reward": 0.959375,
1977
+ "reward_std": 0.020411586761474608,
1978
+ "rewards/qwen_accuracy_reward/mean": 0.959375,
1979
+ "rewards/qwen_accuracy_reward/std": 0.049899089336395266,
1980
+ "step": 730,
1981
+ "step_time": 56.30837788451463
1982
+ },
1983
+ {
1984
+ "clip_ratio/high_max": 0.0,
1985
+ "clip_ratio/high_mean": 0.0,
1986
+ "clip_ratio/low_mean": 0.0,
1987
+ "clip_ratio/low_min": 0.0,
1988
+ "clip_ratio/region_mean": 0.0,
1989
+ "completions/clipped_ratio": 0.0,
1990
+ "completions/max_length": 1953.1,
1991
+ "completions/max_terminated_length": 1953.1,
1992
+ "completions/mean_length": 760.65,
1993
+ "completions/mean_terminated_length": 760.65,
1994
+ "completions/min_length": 248.0,
1995
+ "completions/min_terminated_length": 248.0,
1996
+ "entropy": 0.2552919015288353,
1997
+ "epoch": 2.41042345276873,
1998
+ "frac_reward_zero_std": 0.975,
1999
+ "grad_norm": 0.0,
2000
+ "learning_rate": 1.976112920738328e-06,
2001
+ "loss": -0.0,
2002
+ "num_tokens": 29084557.0,
2003
+ "reward": 0.996875,
2004
+ "reward_std": 0.00883883461356163,
2005
+ "rewards/qwen_accuracy_reward/mean": 0.996875,
2006
+ "rewards/qwen_accuracy_reward/std": 0.01767766922712326,
2007
+ "step": 740,
2008
+ "step_time": 53.73468600921333
2009
+ },
2010
+ {
2011
+ "clip_ratio/high_max": 0.0,
2012
+ "clip_ratio/high_mean": 0.0,
2013
+ "clip_ratio/low_mean": 0.0,
2014
+ "clip_ratio/low_min": 0.0,
2015
+ "clip_ratio/region_mean": 0.0,
2016
+ "completions/clipped_ratio": 0.0,
2017
+ "completions/max_length": 2096.5,
2018
+ "completions/max_terminated_length": 2096.5,
2019
+ "completions/mean_length": 763.521875,
2020
+ "completions/mean_terminated_length": 763.521875,
2021
+ "completions/min_length": 229.0,
2022
+ "completions/min_terminated_length": 229.0,
2023
+ "entropy": 0.2697294756770134,
2024
+ "epoch": 2.44299674267101,
2025
+ "frac_reward_zero_std": 1.0,
2026
+ "grad_norm": 0.0,
2027
+ "learning_rate": 1.8675352877307276e-06,
2028
+ "loss": 0.0,
2029
+ "num_tokens": 29421564.0,
2030
+ "reward": 1.0,
2031
+ "reward_std": 0.0,
2032
+ "rewards/qwen_accuracy_reward/mean": 1.0,
2033
+ "rewards/qwen_accuracy_reward/std": 0.0,
2034
+ "step": 750,
2035
+ "step_time": 57.729420161712916
2036
+ },
2037
+ {
2038
+ "clip_ratio/high_max": 0.0,
2039
+ "clip_ratio/high_mean": 0.0,
2040
+ "clip_ratio/low_mean": 0.0,
2041
+ "clip_ratio/low_min": 0.0,
2042
+ "clip_ratio/region_mean": 0.0,
2043
+ "completions/clipped_ratio": 0.0,
2044
+ "completions/max_length": 2107.5,
2045
+ "completions/max_terminated_length": 2107.5,
2046
+ "completions/mean_length": 830.36875,
2047
+ "completions/mean_terminated_length": 830.36875,
2048
+ "completions/min_length": 239.4,
2049
+ "completions/min_terminated_length": 239.4,
2050
+ "entropy": 0.2688334047794342,
2051
+ "epoch": 2.47557003257329,
2052
+ "frac_reward_zero_std": 0.95,
2053
+ "grad_norm": 0.7421875,
2054
+ "learning_rate": 1.7589576547231272e-06,
2055
+ "loss": 0.0025,
2056
+ "num_tokens": 29814434.0,
2057
+ "reward": 0.9625,
2058
+ "reward_std": 0.02177756354212761,
2059
+ "rewards/qwen_accuracy_reward/mean": 0.9625,
2060
+ "rewards/qwen_accuracy_reward/std": 0.09128626137971878,
2061
+ "step": 760,
2062
+ "step_time": 55.252242975588885
2063
+ },
2064
+ {
2065
+ "clip_ratio/high_max": 0.0,
2066
+ "clip_ratio/high_mean": 0.0,
2067
+ "clip_ratio/low_mean": 0.0,
2068
+ "clip_ratio/low_min": 0.0,
2069
+ "clip_ratio/region_mean": 0.0,
2070
+ "completions/clipped_ratio": 0.0,
2071
+ "completions/max_length": 1695.7,
2072
+ "completions/max_terminated_length": 1695.7,
2073
+ "completions/mean_length": 702.753125,
2074
+ "completions/mean_terminated_length": 702.753125,
2075
+ "completions/min_length": 224.7,
2076
+ "completions/min_terminated_length": 224.7,
2077
+ "entropy": 0.24166983664035796,
2078
+ "epoch": 2.5081433224755703,
2079
+ "frac_reward_zero_std": 0.975,
2080
+ "grad_norm": 1.171875,
2081
+ "learning_rate": 1.6503800217155266e-06,
2082
+ "loss": -0.0015,
2083
+ "num_tokens": 30160107.0,
2084
+ "reward": 0.99375,
2085
+ "reward_std": 0.011572751402854919,
2086
+ "rewards/qwen_accuracy_reward/mean": 0.99375,
2087
+ "rewards/qwen_accuracy_reward/std": 0.024593468010425567,
2088
+ "step": 770,
2089
+ "step_time": 46.50829186448827
2090
+ },
2091
+ {
2092
+ "clip_ratio/high_max": 0.0,
2093
+ "clip_ratio/high_mean": 0.0,
2094
+ "clip_ratio/low_mean": 0.0,
2095
+ "clip_ratio/low_min": 0.0,
2096
+ "clip_ratio/region_mean": 0.0,
2097
+ "completions/clipped_ratio": 0.0,
2098
+ "completions/max_length": 2194.7,
2099
+ "completions/max_terminated_length": 2194.7,
2100
+ "completions/mean_length": 810.775,
2101
+ "completions/mean_terminated_length": 810.775,
2102
+ "completions/min_length": 242.2,
2103
+ "completions/min_terminated_length": 242.2,
2104
+ "entropy": 0.26336751878261566,
2105
+ "epoch": 2.5407166123778504,
2106
+ "frac_reward_zero_std": 0.975,
2107
+ "grad_norm": 0.0,
2108
+ "learning_rate": 1.5418023887079264e-06,
2109
+ "loss": -0.0058,
2110
+ "num_tokens": 30525939.0,
2111
+ "reward": 0.978125,
2112
+ "reward_std": 0.00883883461356163,
2113
+ "rewards/qwen_accuracy_reward/mean": 0.978125,
2114
+ "rewards/qwen_accuracy_reward/std": 0.0420013427734375,
2115
+ "step": 780,
2116
+ "step_time": 60.35267236959189
2117
+ },
2118
+ {
2119
+ "clip_ratio/high_max": 0.0,
2120
+ "clip_ratio/high_mean": 0.0,
2121
+ "clip_ratio/low_mean": 0.0,
2122
+ "clip_ratio/low_min": 0.0,
2123
+ "clip_ratio/region_mean": 0.0,
2124
+ "completions/clipped_ratio": 0.003125,
2125
+ "completions/max_length": 2411.8,
2126
+ "completions/max_terminated_length": 2286.5,
2127
+ "completions/mean_length": 815.034375,
2128
+ "completions/mean_terminated_length": 804.432958984375,
2129
+ "completions/min_length": 211.4,
2130
+ "completions/min_terminated_length": 211.4,
2131
+ "entropy": 0.24477785527706147,
2132
+ "epoch": 2.5732899022801305,
2133
+ "frac_reward_zero_std": 0.875,
2134
+ "grad_norm": 0.0,
2135
+ "learning_rate": 1.433224755700326e-06,
2136
+ "loss": 0.0022,
2137
+ "num_tokens": 30932030.0,
2138
+ "reward": 0.921875,
2139
+ "reward_std": 0.06102004498243332,
2140
+ "rewards/qwen_accuracy_reward/mean": 0.921875,
2141
+ "rewards/qwen_accuracy_reward/std": 0.169888436794281,
2142
+ "step": 790,
2143
+ "step_time": 66.54381455238908
2144
+ },
2145
+ {
2146
+ "clip_ratio/high_max": 0.0,
2147
+ "clip_ratio/high_mean": 0.0,
2148
+ "clip_ratio/low_mean": 0.0,
2149
+ "clip_ratio/low_min": 0.0,
2150
+ "clip_ratio/region_mean": 0.0,
2151
+ "completions/clipped_ratio": 0.0,
2152
+ "completions/max_length": 1845.2,
2153
+ "completions/max_terminated_length": 1845.2,
2154
+ "completions/mean_length": 748.1375,
2155
+ "completions/mean_terminated_length": 748.1375,
2156
+ "completions/min_length": 237.0,
2157
+ "completions/min_terminated_length": 237.0,
2158
+ "entropy": 0.2624224051833153,
2159
+ "epoch": 2.6058631921824107,
2160
+ "frac_reward_zero_std": 0.975,
2161
+ "grad_norm": 0.0,
2162
+ "learning_rate": 1.3246471226927254e-06,
2163
+ "loss": -0.0098,
2164
+ "num_tokens": 31279306.0,
2165
+ "reward": 0.903125,
2166
+ "reward_std": 0.00883883461356163,
2167
+ "rewards/qwen_accuracy_reward/mean": 0.903125,
2168
+ "rewards/qwen_accuracy_reward/std": 0.17398374676704406,
2169
+ "step": 800,
2170
+ "step_time": 50.52960663391277
2171
+ },
2172
+ {
2173
+ "clip_ratio/high_max": 0.0,
2174
+ "clip_ratio/high_mean": 0.0,
2175
+ "clip_ratio/low_mean": 0.0,
2176
+ "clip_ratio/low_min": 0.0,
2177
+ "clip_ratio/region_mean": 0.0,
2178
+ "completions/clipped_ratio": 0.00625,
2179
+ "completions/max_length": 2163.7,
2180
+ "completions/max_terminated_length": 2090.4,
2181
+ "completions/mean_length": 855.071875,
2182
+ "completions/mean_terminated_length": 837.5410522460937,
2183
+ "completions/min_length": 213.2,
2184
+ "completions/min_terminated_length": 213.2,
2185
+ "entropy": 0.25761414915323255,
2186
+ "epoch": 2.6384364820846904,
2187
+ "frac_reward_zero_std": 0.875,
2188
+ "grad_norm": 0.0,
2189
+ "learning_rate": 1.216069489685125e-06,
2190
+ "loss": 0.0102,
2191
+ "num_tokens": 31703561.0,
2192
+ "reward": 0.946875,
2193
+ "reward_std": 0.05145231783390045,
2194
+ "rewards/qwen_accuracy_reward/mean": 0.946875,
2195
+ "rewards/qwen_accuracy_reward/std": 0.14256500601768493,
2196
+ "step": 810,
2197
+ "step_time": 58.85951620331034
2198
+ },
2199
+ {
2200
+ "clip_ratio/high_max": 0.0,
2201
+ "clip_ratio/high_mean": 0.0,
2202
+ "clip_ratio/low_mean": 0.0,
2203
+ "clip_ratio/low_min": 0.0,
2204
+ "clip_ratio/region_mean": 0.0,
2205
+ "completions/clipped_ratio": 0.003125,
2206
+ "completions/max_length": 2240.4,
2207
+ "completions/max_terminated_length": 2168.3,
2208
+ "completions/mean_length": 908.7,
2209
+ "completions/mean_terminated_length": 899.4978759765625,
2210
+ "completions/min_length": 271.1,
2211
+ "completions/min_terminated_length": 271.1,
2212
+ "entropy": 0.279021093249321,
2213
+ "epoch": 2.6710097719869705,
2214
+ "frac_reward_zero_std": 0.975,
2215
+ "grad_norm": 0.0,
2216
+ "learning_rate": 1.1074918566775244e-06,
2217
+ "loss": 0.0045,
2218
+ "num_tokens": 32114609.0,
2219
+ "reward": 0.99375,
2220
+ "reward_std": 0.011572751402854919,
2221
+ "rewards/qwen_accuracy_reward/mean": 0.99375,
2222
+ "rewards/qwen_accuracy_reward/std": 0.024593468010425567,
2223
+ "step": 820,
2224
+ "step_time": 62.48456142954528
2225
+ },
2226
+ {
2227
+ "clip_ratio/high_max": 0.0,
2228
+ "clip_ratio/high_mean": 0.0,
2229
+ "clip_ratio/low_mean": 0.0,
2230
+ "clip_ratio/low_min": 0.0,
2231
+ "clip_ratio/region_mean": 0.0,
2232
+ "completions/clipped_ratio": 0.0,
2233
+ "completions/max_length": 1864.0,
2234
+ "completions/max_terminated_length": 1864.0,
2235
+ "completions/mean_length": 750.0875,
2236
+ "completions/mean_terminated_length": 750.0875,
2237
+ "completions/min_length": 230.4,
2238
+ "completions/min_terminated_length": 230.4,
2239
+ "entropy": 0.262259940803051,
2240
+ "epoch": 2.7035830618892507,
2241
+ "frac_reward_zero_std": 1.0,
2242
+ "grad_norm": 0.0,
2243
+ "learning_rate": 9.989142236699242e-07,
2244
+ "loss": 0.0,
2245
+ "num_tokens": 32478965.0,
2246
+ "reward": 0.975,
2247
+ "reward_std": 0.0,
2248
+ "rewards/qwen_accuracy_reward/mean": 0.975,
2249
+ "rewards/qwen_accuracy_reward/std": 0.04399413466453552,
2250
+ "step": 830,
2251
+ "step_time": 51.756828672252595
2252
+ },
2253
+ {
2254
+ "clip_ratio/high_max": 0.0,
2255
+ "clip_ratio/high_mean": 0.0,
2256
+ "clip_ratio/low_mean": 0.0,
2257
+ "clip_ratio/low_min": 0.0,
2258
+ "clip_ratio/region_mean": 0.0,
2259
+ "completions/clipped_ratio": 0.0,
2260
+ "completions/max_length": 1758.2,
2261
+ "completions/max_terminated_length": 1758.2,
2262
+ "completions/mean_length": 777.496875,
2263
+ "completions/mean_terminated_length": 777.496875,
2264
+ "completions/min_length": 292.6,
2265
+ "completions/min_terminated_length": 292.6,
2266
+ "entropy": 0.2636624053120613,
2267
+ "epoch": 2.736156351791531,
2268
+ "frac_reward_zero_std": 1.0,
2269
+ "grad_norm": 0.0,
2270
+ "learning_rate": 8.903365906623236e-07,
2271
+ "loss": 0.0,
2272
+ "num_tokens": 32855788.0,
2273
+ "reward": 1.0,
2274
+ "reward_std": 0.0,
2275
+ "rewards/qwen_accuracy_reward/mean": 1.0,
2276
+ "rewards/qwen_accuracy_reward/std": 0.0,
2277
+ "step": 840,
2278
+ "step_time": 47.54948642067611
2279
+ },
2280
+ {
2281
+ "clip_ratio/high_max": 0.0,
2282
+ "clip_ratio/high_mean": 0.0,
2283
+ "clip_ratio/low_mean": 0.0,
2284
+ "clip_ratio/low_min": 0.0,
2285
+ "clip_ratio/region_mean": 0.0,
2286
+ "completions/clipped_ratio": 0.0,
2287
+ "completions/max_length": 1865.4,
2288
+ "completions/max_terminated_length": 1865.4,
2289
+ "completions/mean_length": 758.2375,
2290
+ "completions/mean_terminated_length": 758.2375,
2291
+ "completions/min_length": 212.1,
2292
+ "completions/min_terminated_length": 212.1,
2293
+ "entropy": 0.26781439036130905,
2294
+ "epoch": 2.768729641693811,
2295
+ "frac_reward_zero_std": 0.975,
2296
+ "grad_norm": 0.0,
2297
+ "learning_rate": 7.817589576547231e-07,
2298
+ "loss": 0.0175,
2299
+ "num_tokens": 33208816.0,
2300
+ "reward": 0.971875,
2301
+ "reward_std": 0.00883883461356163,
2302
+ "rewards/qwen_accuracy_reward/mean": 0.971875,
2303
+ "rewards/qwen_accuracy_reward/std": 0.061671803891658786,
2304
+ "step": 850,
2305
+ "step_time": 51.30761405080557
2306
+ },
2307
+ {
2308
+ "clip_ratio/high_max": 0.0,
2309
+ "clip_ratio/high_mean": 0.0,
2310
+ "clip_ratio/low_mean": 0.0,
2311
+ "clip_ratio/low_min": 0.0,
2312
+ "clip_ratio/region_mean": 0.0,
2313
+ "completions/clipped_ratio": 0.0,
2314
+ "completions/max_length": 2093.8,
2315
+ "completions/max_terminated_length": 2093.8,
2316
+ "completions/mean_length": 874.303125,
2317
+ "completions/mean_terminated_length": 874.303125,
2318
+ "completions/min_length": 268.3,
2319
+ "completions/min_terminated_length": 268.3,
2320
+ "entropy": 0.28648746609687803,
2321
+ "epoch": 2.801302931596091,
2322
+ "frac_reward_zero_std": 0.95,
2323
+ "grad_norm": 0.0,
2324
+ "learning_rate": 6.731813246471228e-07,
2325
+ "loss": 0.0294,
2326
+ "num_tokens": 33613025.0,
2327
+ "reward": 0.9875,
2328
+ "reward_std": 0.02177756354212761,
2329
+ "rewards/qwen_accuracy_reward/mean": 0.9875,
2330
+ "rewards/qwen_accuracy_reward/std": 0.04729212671518326,
2331
+ "step": 860,
2332
+ "step_time": 56.19616959039122
2333
+ },
2334
+ {
2335
+ "clip_ratio/high_max": 0.0,
2336
+ "clip_ratio/high_mean": 0.0,
2337
+ "clip_ratio/low_mean": 0.0,
2338
+ "clip_ratio/low_min": 0.0,
2339
+ "clip_ratio/region_mean": 0.0,
2340
+ "completions/clipped_ratio": 0.0,
2341
+ "completions/max_length": 2066.2,
2342
+ "completions/max_terminated_length": 2066.2,
2343
+ "completions/mean_length": 887.94375,
2344
+ "completions/mean_terminated_length": 887.94375,
2345
+ "completions/min_length": 235.5,
2346
+ "completions/min_terminated_length": 235.5,
2347
+ "entropy": 0.2825250759720802,
2348
+ "epoch": 2.8338762214983713,
2349
+ "frac_reward_zero_std": 1.0,
2350
+ "grad_norm": 0.0,
2351
+ "learning_rate": 5.646036916395223e-07,
2352
+ "loss": 0.0,
2353
+ "num_tokens": 34016103.0,
2354
+ "reward": 1.0,
2355
+ "reward_std": 0.0,
2356
+ "rewards/qwen_accuracy_reward/mean": 1.0,
2357
+ "rewards/qwen_accuracy_reward/std": 0.0,
2358
+ "step": 870,
2359
+ "step_time": 56.39509414639324
2360
+ },
2361
+ {
2362
+ "clip_ratio/high_max": 0.0,
2363
+ "clip_ratio/high_mean": 0.0,
2364
+ "clip_ratio/low_mean": 0.0,
2365
+ "clip_ratio/low_min": 0.0,
2366
+ "clip_ratio/region_mean": 0.0,
2367
+ "completions/clipped_ratio": 0.003125,
2368
+ "completions/max_length": 2083.2,
2369
+ "completions/max_terminated_length": 2015.4,
2370
+ "completions/mean_length": 834.1625,
2371
+ "completions/mean_terminated_length": 824.3365905761718,
2372
+ "completions/min_length": 240.6,
2373
+ "completions/min_terminated_length": 240.6,
2374
+ "entropy": 0.275046506524086,
2375
+ "epoch": 2.8664495114006514,
2376
+ "frac_reward_zero_std": 0.95,
2377
+ "grad_norm": 0.71875,
2378
+ "learning_rate": 4.5602605863192187e-07,
2379
+ "loss": 0.0176,
2380
+ "num_tokens": 34391867.0,
2381
+ "reward": 0.984375,
2382
+ "reward_std": 0.022201896458864213,
2383
+ "rewards/qwen_accuracy_reward/mean": 0.984375,
2384
+ "rewards/qwen_accuracy_reward/std": 0.05127874463796615,
2385
+ "step": 880,
2386
+ "step_time": 57.167689157929274
2387
+ },
2388
+ {
2389
+ "clip_ratio/high_max": 0.0,
2390
+ "clip_ratio/high_mean": 0.0,
2391
+ "clip_ratio/low_mean": 0.0,
2392
+ "clip_ratio/low_min": 0.0,
2393
+ "clip_ratio/region_mean": 0.0,
2394
+ "completions/clipped_ratio": 0.0,
2395
+ "completions/max_length": 2087.8,
2396
+ "completions/max_terminated_length": 2087.8,
2397
+ "completions/mean_length": 843.36875,
2398
+ "completions/mean_terminated_length": 843.36875,
2399
+ "completions/min_length": 256.4,
2400
+ "completions/min_terminated_length": 256.4,
2401
+ "entropy": 0.27352436184883117,
2402
+ "epoch": 2.8990228013029316,
2403
+ "frac_reward_zero_std": 1.0,
2404
+ "grad_norm": 0.0,
2405
+ "learning_rate": 3.474484256243214e-07,
2406
+ "loss": 0.0,
2407
+ "num_tokens": 34796825.0,
2408
+ "reward": 0.95,
2409
+ "reward_std": 0.0,
2410
+ "rewards/qwen_accuracy_reward/mean": 0.95,
2411
+ "rewards/qwen_accuracy_reward/std": 0.08798826932907104,
2412
+ "step": 890,
2413
+ "step_time": 57.07374393362552
2414
+ },
2415
+ {
2416
+ "clip_ratio/high_max": 0.0,
2417
+ "clip_ratio/high_mean": 0.0,
2418
+ "clip_ratio/low_mean": 0.0,
2419
+ "clip_ratio/low_min": 0.0,
2420
+ "clip_ratio/region_mean": 0.0,
2421
+ "completions/clipped_ratio": 0.0,
2422
+ "completions/max_length": 2076.1,
2423
+ "completions/max_terminated_length": 2076.1,
2424
+ "completions/mean_length": 821.371875,
2425
+ "completions/mean_terminated_length": 821.371875,
2426
+ "completions/min_length": 255.8,
2427
+ "completions/min_terminated_length": 255.8,
2428
+ "entropy": 0.25859465897083284,
2429
+ "epoch": 2.9315960912052117,
2430
+ "frac_reward_zero_std": 0.975,
2431
+ "grad_norm": 0.0,
2432
+ "learning_rate": 2.3887079261672097e-07,
2433
+ "loss": 0.0052,
2434
+ "num_tokens": 35194008.0,
2435
+ "reward": 0.971875,
2436
+ "reward_std": 0.00883883461356163,
2437
+ "rewards/qwen_accuracy_reward/mean": 0.971875,
2438
+ "rewards/qwen_accuracy_reward/std": 0.061671803891658786,
2439
+ "step": 900,
2440
+ "step_time": 57.363739002589135
2441
+ },
2442
+ {
2443
+ "clip_ratio/high_max": 0.0,
2444
+ "clip_ratio/high_mean": 0.0,
2445
+ "clip_ratio/low_mean": 0.0,
2446
+ "clip_ratio/low_min": 0.0,
2447
+ "clip_ratio/region_mean": 0.0,
2448
+ "completions/clipped_ratio": 0.0,
2449
+ "completions/max_length": 1843.8,
2450
+ "completions/max_terminated_length": 1843.8,
2451
+ "completions/mean_length": 770.575,
2452
+ "completions/mean_terminated_length": 770.575,
2453
+ "completions/min_length": 229.7,
2454
+ "completions/min_terminated_length": 229.7,
2455
+ "entropy": 0.26421869844198226,
2456
+ "epoch": 2.964169381107492,
2457
+ "frac_reward_zero_std": 0.95,
2458
+ "grad_norm": 0.0,
2459
+ "learning_rate": 1.3029315960912054e-07,
2460
+ "loss": 0.0081,
2461
+ "num_tokens": 35559488.0,
2462
+ "reward": 0.984375,
2463
+ "reward_std": 0.022201896458864213,
2464
+ "rewards/qwen_accuracy_reward/mean": 0.984375,
2465
+ "rewards/qwen_accuracy_reward/std": 0.05127874463796615,
2466
+ "step": 910,
2467
+ "step_time": 49.7163490107283
2468
+ },
2469
+ {
2470
+ "clip_ratio/high_max": 0.0,
2471
+ "clip_ratio/high_mean": 0.0,
2472
+ "clip_ratio/low_mean": 0.0,
2473
+ "clip_ratio/low_min": 0.0,
2474
+ "clip_ratio/region_mean": 0.0,
2475
+ "completions/clipped_ratio": 0.0,
2476
+ "completions/max_length": 1876.2,
2477
+ "completions/max_terminated_length": 1876.2,
2478
+ "completions/mean_length": 694.903125,
2479
+ "completions/mean_terminated_length": 694.903125,
2480
+ "completions/min_length": 201.0,
2481
+ "completions/min_terminated_length": 201.0,
2482
+ "entropy": 0.2524524837732315,
2483
+ "epoch": 2.996742671009772,
2484
+ "frac_reward_zero_std": 1.0,
2485
+ "grad_norm": 0.0,
2486
+ "learning_rate": 2.171552660152009e-08,
2487
+ "loss": 0.0,
2488
+ "num_tokens": 35893057.0,
2489
+ "reward": 1.0,
2490
+ "reward_std": 0.0,
2491
+ "rewards/qwen_accuracy_reward/mean": 1.0,
2492
+ "rewards/qwen_accuracy_reward/std": 0.0,
2493
+ "step": 920,
2494
+ "step_time": 51.581244880892335
2495
+ }
2496
+ ],
2497
+ "logging_steps": 10,
2498
+ "max_steps": 921,
2499
+ "num_input_tokens_seen": 35924229,
2500
+ "num_train_epochs": 3,
2501
+ "save_steps": 50,
2502
+ "stateful_callbacks": {
2503
+ "TrainerControl": {
2504
+ "args": {
2505
+ "should_epoch_stop": false,
2506
+ "should_evaluate": false,
2507
+ "should_log": false,
2508
+ "should_save": true,
2509
+ "should_training_stop": true
2510
+ },
2511
+ "attributes": {}
2512
+ }
2513
+ },
2514
+ "total_flos": 0.0,
2515
+ "train_batch_size": 4,
2516
+ "trial_name": null,
2517
+ "trial_params": null
2518
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21a3bc205409ada0f4bd091b5802a3a909a88a398d16e497eac781eae7630236
3
+ size 7096
vocab.json ADDED
The diff for this file is too large to render. See raw diff