wjldw commited on
Commit
7c5d6ec
·
verified ·
1 Parent(s): e9f5772

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:731a8b444a67868b159b0cb2edbe47e857b02b5c4bf264c73657ec92a8f2f5e6
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:1022020ac14eaf0a9e5bc9d718931cc3e39959c76ef771785070d1dfc1f61428
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:37a3ce0a7953805a740782fa662ad1cfc52f991ff8549d177fd4033bfffc63f0
3
+ size 16090217224
rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:069a21fb89e9cdd912b5dc454d58844eeb9e7af136215bc79c9a32dc0f860079
3
+ size 15984
rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1933ef234c6d1950447450676fa465319c6dfea13fd8f45a8b587983e4707aa2
3
+ size 15920
rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:860ac45307c7a18d297d614ddaf15e44b83fa85a059ef5f3094bd2e3dba2c36b
3
+ size 15920
rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b0ffbf272e35be211cf29563fafba476c8e4b4f5a9a051cb183c83cd7a9207c
3
+ size 15984
rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53c2a0fdfe8d5d0e5249a4016327271562f035b0aa16e43e03eae55f889c6a90
3
+ size 15984
rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5223fcf1a77743cc1dddc34ea56384e61c0597f22375eb02b7051f644628dd04
3
+ size 15984
rng_state_6.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a690fe8858c599f911541e1927330a04ebb2ed4c99a33896ff51998825d351a
3
+ size 15984
rng_state_7.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed2bdf42e2e9e14cb079536cdc422e6dfe602793fda2e855a66fd2903edad8e2
3
+ size 15920
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0d85e8888f64de356995cd02981ee52b52226141b982fbd59dd28f331e6c872
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,1114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 405,
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.028125,
19
+ "completions/max_length": 2620.6,
20
+ "completions/max_terminated_length": 2367.6,
21
+ "completions/mean_length": 883.478125,
22
+ "completions/mean_terminated_length": 807.5466979980469,
23
+ "completions/min_length": 197.9,
24
+ "completions/min_terminated_length": 197.9,
25
+ "entropy": 0.23559987246990205,
26
+ "epoch": 0.07407407407407407,
27
+ "frac_reward_zero_std": 0.525,
28
+ "grad_norm": 2.046875,
29
+ "learning_rate": 9.777777777777779e-06,
30
+ "loss": 0.024,
31
+ "num_tokens": 1074521.0,
32
+ "reward": 0.55625,
33
+ "reward_std": 0.19937496185302733,
34
+ "rewards/qwen_accuracy_reward/mean": 0.55625,
35
+ "rewards/qwen_accuracy_reward/std": 0.4109149545431137,
36
+ "step": 10,
37
+ "step_time": 88.14663478741423
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.0,
46
+ "completions/max_length": 1834.7,
47
+ "completions/max_terminated_length": 1834.7,
48
+ "completions/mean_length": 585.428125,
49
+ "completions/mean_terminated_length": 585.428125,
50
+ "completions/min_length": 182.1,
51
+ "completions/min_terminated_length": 182.1,
52
+ "entropy": 0.2393606960773468,
53
+ "epoch": 0.14814814814814814,
54
+ "frac_reward_zero_std": 0.675,
55
+ "grad_norm": 1.578125,
56
+ "learning_rate": 9.530864197530865e-06,
57
+ "loss": 0.0006,
58
+ "num_tokens": 2260202.0,
59
+ "reward": 0.34375,
60
+ "reward_std": 0.13309670016169547,
61
+ "rewards/qwen_accuracy_reward/mean": 0.34375,
62
+ "rewards/qwen_accuracy_reward/std": 0.43564632534980774,
63
+ "step": 20,
64
+ "step_time": 68.61595703456551
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.0,
73
+ "completions/max_length": 1243.6,
74
+ "completions/max_terminated_length": 1243.6,
75
+ "completions/mean_length": 450.828125,
76
+ "completions/mean_terminated_length": 450.828125,
77
+ "completions/min_length": 166.3,
78
+ "completions/min_terminated_length": 166.3,
79
+ "entropy": 0.20521417111158372,
80
+ "epoch": 0.2222222222222222,
81
+ "frac_reward_zero_std": 0.65,
82
+ "grad_norm": 1.5625,
83
+ "learning_rate": 9.28395061728395e-06,
84
+ "loss": -0.0119,
85
+ "num_tokens": 3563603.0,
86
+ "reward": 0.45,
87
+ "reward_std": 0.161917694658041,
88
+ "rewards/qwen_accuracy_reward/mean": 0.45,
89
+ "rewards/qwen_accuracy_reward/std": 0.4305156499147415,
90
+ "step": 30,
91
+ "step_time": 54.05118924472481
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.0,
100
+ "completions/max_length": 1784.0,
101
+ "completions/max_terminated_length": 1784.0,
102
+ "completions/mean_length": 641.815625,
103
+ "completions/mean_terminated_length": 641.815625,
104
+ "completions/min_length": 201.1,
105
+ "completions/min_terminated_length": 201.1,
106
+ "entropy": 0.24612632393836975,
107
+ "epoch": 0.2962962962962963,
108
+ "frac_reward_zero_std": 0.75,
109
+ "grad_norm": 1.078125,
110
+ "learning_rate": 9.037037037037037e-06,
111
+ "loss": -0.0269,
112
+ "num_tokens": 4556680.0,
113
+ "reward": 0.4125,
114
+ "reward_std": 0.10794617459177971,
115
+ "rewards/qwen_accuracy_reward/mean": 0.4125,
116
+ "rewards/qwen_accuracy_reward/std": 0.4408176690340042,
117
+ "step": 40,
118
+ "step_time": 62.3625052860938
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.015625,
127
+ "completions/max_length": 2380.8,
128
+ "completions/max_terminated_length": 2099.1,
129
+ "completions/mean_length": 739.5,
130
+ "completions/mean_terminated_length": 684.6817810058594,
131
+ "completions/min_length": 199.8,
132
+ "completions/min_terminated_length": 199.8,
133
+ "entropy": 0.2352774903178215,
134
+ "epoch": 0.37037037037037035,
135
+ "frac_reward_zero_std": 0.6,
136
+ "grad_norm": 0.0,
137
+ "learning_rate": 8.790123456790124e-06,
138
+ "loss": 0.0811,
139
+ "num_tokens": 5832520.0,
140
+ "reward": 0.578125,
141
+ "reward_std": 0.17328082770109177,
142
+ "rewards/qwen_accuracy_reward/mean": 0.578125,
143
+ "rewards/qwen_accuracy_reward/std": 0.46805118918418886,
144
+ "step": 50,
145
+ "step_time": 85.62781593985855
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.0,
154
+ "completions/max_length": 2675.6,
155
+ "completions/max_terminated_length": 2675.6,
156
+ "completions/mean_length": 883.246875,
157
+ "completions/mean_terminated_length": 883.246875,
158
+ "completions/min_length": 186.3,
159
+ "completions/min_terminated_length": 186.3,
160
+ "entropy": 0.2517232894897461,
161
+ "epoch": 0.4444444444444444,
162
+ "frac_reward_zero_std": 0.575,
163
+ "grad_norm": 0.82421875,
164
+ "learning_rate": 8.54320987654321e-06,
165
+ "loss": -0.0098,
166
+ "num_tokens": 7189655.0,
167
+ "reward": 0.475,
168
+ "reward_std": 0.19032337367534638,
169
+ "rewards/qwen_accuracy_reward/mean": 0.475,
170
+ "rewards/qwen_accuracy_reward/std": 0.4926638722419739,
171
+ "step": 60,
172
+ "step_time": 92.28469488024712
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.021875,
181
+ "completions/max_length": 2552.0,
182
+ "completions/max_terminated_length": 2446.1,
183
+ "completions/mean_length": 883.15,
184
+ "completions/mean_terminated_length": 819.4166320800781,
185
+ "completions/min_length": 228.0,
186
+ "completions/min_terminated_length": 228.0,
187
+ "entropy": 0.2566807523369789,
188
+ "epoch": 0.5185185185185185,
189
+ "frac_reward_zero_std": 0.7,
190
+ "grad_norm": 0.68359375,
191
+ "learning_rate": 8.296296296296297e-06,
192
+ "loss": -0.005,
193
+ "num_tokens": 8291047.0,
194
+ "reward": 0.59375,
195
+ "reward_std": 0.14424002543091774,
196
+ "rewards/qwen_accuracy_reward/mean": 0.59375,
197
+ "rewards/qwen_accuracy_reward/std": 0.44616653919219973,
198
+ "step": 70,
199
+ "step_time": 84.87951188636944
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.021875,
208
+ "completions/max_length": 2260.4,
209
+ "completions/max_terminated_length": 2111.1,
210
+ "completions/mean_length": 764.521875,
211
+ "completions/mean_terminated_length": 696.4317199707032,
212
+ "completions/min_length": 211.0,
213
+ "completions/min_terminated_length": 211.0,
214
+ "entropy": 0.23985399603843688,
215
+ "epoch": 0.5925925925925926,
216
+ "frac_reward_zero_std": 0.825,
217
+ "grad_norm": 1.421875,
218
+ "learning_rate": 8.049382716049384e-06,
219
+ "loss": 0.0083,
220
+ "num_tokens": 9351534.0,
221
+ "reward": 0.609375,
222
+ "reward_std": 0.08373925313353539,
223
+ "rewards/qwen_accuracy_reward/mean": 0.609375,
224
+ "rewards/qwen_accuracy_reward/std": 0.4246617123484612,
225
+ "step": 80,
226
+ "step_time": 72.22795200794936
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.015625,
235
+ "completions/max_length": 3024.8,
236
+ "completions/max_terminated_length": 2973.5,
237
+ "completions/mean_length": 921.46875,
238
+ "completions/mean_terminated_length": 875.6511962890625,
239
+ "completions/min_length": 188.1,
240
+ "completions/min_terminated_length": 188.1,
241
+ "entropy": 0.2663497790694237,
242
+ "epoch": 0.6666666666666666,
243
+ "frac_reward_zero_std": 0.6,
244
+ "grad_norm": 0.5859375,
245
+ "learning_rate": 7.80246913580247e-06,
246
+ "loss": 0.0353,
247
+ "num_tokens": 10367988.0,
248
+ "reward": 0.653125,
249
+ "reward_std": 0.17917103096842765,
250
+ "rewards/qwen_accuracy_reward/mean": 0.653125,
251
+ "rewards/qwen_accuracy_reward/std": 0.4230299547314644,
252
+ "step": 90,
253
+ "step_time": 99.58555124951526
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.0125,
262
+ "completions/max_length": 2742.8,
263
+ "completions/max_terminated_length": 2697.5,
264
+ "completions/mean_length": 973.35625,
265
+ "completions/mean_terminated_length": 942.023486328125,
266
+ "completions/min_length": 211.5,
267
+ "completions/min_terminated_length": 211.5,
268
+ "entropy": 0.28204803764820097,
269
+ "epoch": 0.7407407407407407,
270
+ "frac_reward_zero_std": 0.525,
271
+ "grad_norm": 1.5078125,
272
+ "learning_rate": 7.555555555555556e-06,
273
+ "loss": 0.0189,
274
+ "num_tokens": 11643438.0,
275
+ "reward": 0.584375,
276
+ "reward_std": 0.2061118684709072,
277
+ "rewards/qwen_accuracy_reward/mean": 0.584375,
278
+ "rewards/qwen_accuracy_reward/std": 0.446831539273262,
279
+ "step": 100,
280
+ "step_time": 102.57813223907723
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.021875,
289
+ "completions/max_length": 2316.0,
290
+ "completions/max_terminated_length": 2139.6,
291
+ "completions/mean_length": 738.425,
292
+ "completions/mean_terminated_length": 670.76943359375,
293
+ "completions/min_length": 176.9,
294
+ "completions/min_terminated_length": 176.9,
295
+ "entropy": 0.22543054223060607,
296
+ "epoch": 0.8148148148148148,
297
+ "frac_reward_zero_std": 0.525,
298
+ "grad_norm": 1.1015625,
299
+ "learning_rate": 7.308641975308642e-06,
300
+ "loss": 0.0297,
301
+ "num_tokens": 12699542.0,
302
+ "reward": 0.6125,
303
+ "reward_std": 0.22020382136106492,
304
+ "rewards/qwen_accuracy_reward/mean": 0.6125,
305
+ "rewards/qwen_accuracy_reward/std": 0.39834206998348237,
306
+ "step": 110,
307
+ "step_time": 76.58990271799266
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.00625,
316
+ "completions/max_length": 2589.8,
317
+ "completions/max_terminated_length": 2478.6,
318
+ "completions/mean_length": 781.328125,
319
+ "completions/mean_terminated_length": 760.4564636230468,
320
+ "completions/min_length": 195.2,
321
+ "completions/min_terminated_length": 195.2,
322
+ "entropy": 0.2283908247947693,
323
+ "epoch": 0.8888888888888888,
324
+ "frac_reward_zero_std": 0.6,
325
+ "grad_norm": 1.3984375,
326
+ "learning_rate": 7.061728395061729e-06,
327
+ "loss": -0.0513,
328
+ "num_tokens": 13937615.0,
329
+ "reward": 0.575,
330
+ "reward_std": 0.16234711930155754,
331
+ "rewards/qwen_accuracy_reward/mean": 0.575,
332
+ "rewards/qwen_accuracy_reward/std": 0.4618679523468018,
333
+ "step": 120,
334
+ "step_time": 87.97343005295843
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.009375,
343
+ "completions/max_length": 3062.2,
344
+ "completions/max_terminated_length": 2905.6,
345
+ "completions/mean_length": 934.53125,
346
+ "completions/mean_terminated_length": 907.7045288085938,
347
+ "completions/min_length": 204.6,
348
+ "completions/min_terminated_length": 204.6,
349
+ "entropy": 0.26524889916181565,
350
+ "epoch": 0.9629629629629629,
351
+ "frac_reward_zero_std": 0.55,
352
+ "grad_norm": 1.390625,
353
+ "learning_rate": 6.814814814814815e-06,
354
+ "loss": -0.0358,
355
+ "num_tokens": 14956009.0,
356
+ "reward": 0.559375,
357
+ "reward_std": 0.19821664243936538,
358
+ "rewards/qwen_accuracy_reward/mean": 0.559375,
359
+ "rewards/qwen_accuracy_reward/std": 0.4717142373323441,
360
+ "step": 130,
361
+ "step_time": 94.2147848018445
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.015625,
370
+ "completions/max_length": 2597.6,
371
+ "completions/max_terminated_length": 2383.1,
372
+ "completions/mean_length": 869.10625,
373
+ "completions/mean_terminated_length": 820.9176330566406,
374
+ "completions/min_length": 188.5,
375
+ "completions/min_terminated_length": 188.5,
376
+ "entropy": 0.24891505092382432,
377
+ "epoch": 1.037037037037037,
378
+ "frac_reward_zero_std": 0.475,
379
+ "grad_norm": 1.703125,
380
+ "learning_rate": 6.567901234567902e-06,
381
+ "loss": 0.0034,
382
+ "num_tokens": 15982347.0,
383
+ "reward": 0.6,
384
+ "reward_std": 0.2333553045988083,
385
+ "rewards/qwen_accuracy_reward/mean": 0.6,
386
+ "rewards/qwen_accuracy_reward/std": 0.4240004062652588,
387
+ "step": 140,
388
+ "step_time": 81.38715343279765
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.0,
397
+ "completions/max_length": 2014.9,
398
+ "completions/max_terminated_length": 2014.9,
399
+ "completions/mean_length": 690.875,
400
+ "completions/mean_terminated_length": 690.875,
401
+ "completions/min_length": 183.7,
402
+ "completions/min_terminated_length": 183.7,
403
+ "entropy": 0.24473001956939697,
404
+ "epoch": 1.1111111111111112,
405
+ "frac_reward_zero_std": 0.85,
406
+ "grad_norm": 0.0,
407
+ "learning_rate": 6.320987654320988e-06,
408
+ "loss": -0.0187,
409
+ "num_tokens": 17167291.0,
410
+ "reward": 0.56875,
411
+ "reward_std": 0.06849093958735467,
412
+ "rewards/qwen_accuracy_reward/mean": 0.56875,
413
+ "rewards/qwen_accuracy_reward/std": 0.4323489248752594,
414
+ "step": 150,
415
+ "step_time": 70.79571634447203
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.00625,
424
+ "completions/max_length": 2118.0,
425
+ "completions/max_terminated_length": 1952.7,
426
+ "completions/mean_length": 782.18125,
427
+ "completions/mean_terminated_length": 762.3953552246094,
428
+ "completions/min_length": 195.0,
429
+ "completions/min_terminated_length": 195.0,
430
+ "entropy": 0.2831777364015579,
431
+ "epoch": 1.1851851851851851,
432
+ "frac_reward_zero_std": 0.625,
433
+ "grad_norm": 1.203125,
434
+ "learning_rate": 6.0740740740740745e-06,
435
+ "loss": -0.006,
436
+ "num_tokens": 18437597.0,
437
+ "reward": 0.584375,
438
+ "reward_std": 0.16034405902028084,
439
+ "rewards/qwen_accuracy_reward/mean": 0.584375,
440
+ "rewards/qwen_accuracy_reward/std": 0.4593903660774231,
441
+ "step": 160,
442
+ "step_time": 82.42543985564262
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.025,
451
+ "completions/max_length": 2807.9,
452
+ "completions/max_terminated_length": 2465.3,
453
+ "completions/mean_length": 846.784375,
454
+ "completions/mean_terminated_length": 768.7292907714843,
455
+ "completions/min_length": 191.4,
456
+ "completions/min_terminated_length": 191.4,
457
+ "entropy": 0.29504771530628204,
458
+ "epoch": 1.2592592592592593,
459
+ "frac_reward_zero_std": 0.575,
460
+ "grad_norm": 1.4609375,
461
+ "learning_rate": 5.827160493827161e-06,
462
+ "loss": 0.0493,
463
+ "num_tokens": 19576592.0,
464
+ "reward": 0.646875,
465
+ "reward_std": 0.1770761601626873,
466
+ "rewards/qwen_accuracy_reward/mean": 0.646875,
467
+ "rewards/qwen_accuracy_reward/std": 0.4303886190056801,
468
+ "step": 170,
469
+ "step_time": 92.26987883467227
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.025,
478
+ "completions/max_length": 2465.0,
479
+ "completions/max_terminated_length": 2418.4,
480
+ "completions/mean_length": 787.653125,
481
+ "completions/mean_terminated_length": 704.81298828125,
482
+ "completions/min_length": 179.5,
483
+ "completions/min_terminated_length": 179.5,
484
+ "entropy": 0.26591353863477707,
485
+ "epoch": 1.3333333333333333,
486
+ "frac_reward_zero_std": 0.75,
487
+ "grad_norm": 1.0859375,
488
+ "learning_rate": 5.580246913580247e-06,
489
+ "loss": -0.0034,
490
+ "num_tokens": 20843313.0,
491
+ "reward": 0.64375,
492
+ "reward_std": 0.10615586340427399,
493
+ "rewards/qwen_accuracy_reward/mean": 0.64375,
494
+ "rewards/qwen_accuracy_reward/std": 0.4466709479689598,
495
+ "step": 180,
496
+ "step_time": 88.50245857564732
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": 2406.1,
506
+ "completions/max_terminated_length": 2396.1,
507
+ "completions/mean_length": 782.7625,
508
+ "completions/mean_terminated_length": 772.6895141601562,
509
+ "completions/min_length": 194.8,
510
+ "completions/min_terminated_length": 194.8,
511
+ "entropy": 0.2830284103751183,
512
+ "epoch": 1.4074074074074074,
513
+ "frac_reward_zero_std": 0.6,
514
+ "grad_norm": 0.859375,
515
+ "learning_rate": 5.333333333333334e-06,
516
+ "loss": -0.0002,
517
+ "num_tokens": 21942557.0,
518
+ "reward": 0.65,
519
+ "reward_std": 0.17233722135424615,
520
+ "rewards/qwen_accuracy_reward/mean": 0.65,
521
+ "rewards/qwen_accuracy_reward/std": 0.4606447845697403,
522
+ "step": 190,
523
+ "step_time": 79.6569756497629
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.003125,
532
+ "completions/max_length": 2617.1,
533
+ "completions/max_terminated_length": 2592.9,
534
+ "completions/mean_length": 752.6375,
535
+ "completions/mean_terminated_length": 745.0163208007813,
536
+ "completions/min_length": 180.0,
537
+ "completions/min_terminated_length": 180.0,
538
+ "entropy": 0.2685975283384323,
539
+ "epoch": 1.4814814814814814,
540
+ "frac_reward_zero_std": 0.725,
541
+ "grad_norm": 1.28125,
542
+ "learning_rate": 5.08641975308642e-06,
543
+ "loss": -0.0354,
544
+ "num_tokens": 23169865.0,
545
+ "reward": 0.64375,
546
+ "reward_std": 0.12130923345685005,
547
+ "rewards/qwen_accuracy_reward/mean": 0.64375,
548
+ "rewards/qwen_accuracy_reward/std": 0.3130414053797722,
549
+ "step": 200,
550
+ "step_time": 100.35109018562362
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.00625,
559
+ "completions/max_length": 2467.5,
560
+ "completions/max_terminated_length": 2375.0,
561
+ "completions/mean_length": 731.296875,
562
+ "completions/mean_terminated_length": 710.1114624023437,
563
+ "completions/min_length": 187.4,
564
+ "completions/min_terminated_length": 187.4,
565
+ "entropy": 0.28902816474437715,
566
+ "epoch": 1.5555555555555556,
567
+ "frac_reward_zero_std": 0.725,
568
+ "grad_norm": 0.9453125,
569
+ "learning_rate": 4.839506172839506e-06,
570
+ "loss": -0.0082,
571
+ "num_tokens": 24149336.0,
572
+ "reward": 0.703125,
573
+ "reward_std": 0.1222528412938118,
574
+ "rewards/qwen_accuracy_reward/mean": 0.703125,
575
+ "rewards/qwen_accuracy_reward/std": 0.4237747400999069,
576
+ "step": 210,
577
+ "step_time": 78.0917964133434
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": 2886.6,
587
+ "completions/max_terminated_length": 2886.6,
588
+ "completions/mean_length": 897.096875,
589
+ "completions/mean_terminated_length": 897.096875,
590
+ "completions/min_length": 191.6,
591
+ "completions/min_terminated_length": 191.6,
592
+ "entropy": 0.31183156073093415,
593
+ "epoch": 1.6296296296296298,
594
+ "frac_reward_zero_std": 0.55,
595
+ "grad_norm": 1.0703125,
596
+ "learning_rate": 4.592592592592593e-06,
597
+ "loss": -0.0243,
598
+ "num_tokens": 25347711.0,
599
+ "reward": 0.65625,
600
+ "reward_std": 0.20462808087468148,
601
+ "rewards/qwen_accuracy_reward/mean": 0.65625,
602
+ "rewards/qwen_accuracy_reward/std": 0.4532728582620621,
603
+ "step": 220,
604
+ "step_time": 93.06012930087745
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.04375,
613
+ "completions/max_length": 2465.6,
614
+ "completions/max_terminated_length": 2255.0,
615
+ "completions/mean_length": 999.33125,
616
+ "completions/mean_terminated_length": 878.30361328125,
617
+ "completions/min_length": 232.3,
618
+ "completions/min_terminated_length": 232.3,
619
+ "entropy": 0.3391134202480316,
620
+ "epoch": 1.7037037037037037,
621
+ "frac_reward_zero_std": 0.725,
622
+ "grad_norm": 0.96875,
623
+ "learning_rate": 4.3456790123456795e-06,
624
+ "loss": -0.0001,
625
+ "num_tokens": 26642217.0,
626
+ "reward": 0.678125,
627
+ "reward_std": 0.12720139995217322,
628
+ "rewards/qwen_accuracy_reward/mean": 0.678125,
629
+ "rewards/qwen_accuracy_reward/std": 0.4184228301048279,
630
+ "step": 230,
631
+ "step_time": 88.6226040866226
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.00625,
640
+ "completions/max_length": 2785.9,
641
+ "completions/max_terminated_length": 2730.1,
642
+ "completions/mean_length": 909.590625,
643
+ "completions/mean_terminated_length": 891.3462585449219,
644
+ "completions/min_length": 190.4,
645
+ "completions/min_terminated_length": 190.4,
646
+ "entropy": 0.32510876506567,
647
+ "epoch": 1.7777777777777777,
648
+ "frac_reward_zero_std": 0.75,
649
+ "grad_norm": 1.0078125,
650
+ "learning_rate": 4.098765432098766e-06,
651
+ "loss": -0.0166,
652
+ "num_tokens": 27687190.0,
653
+ "reward": 0.50625,
654
+ "reward_std": 0.09932401403784752,
655
+ "rewards/qwen_accuracy_reward/mean": 0.50625,
656
+ "rewards/qwen_accuracy_reward/std": 0.48888437151908876,
657
+ "step": 240,
658
+ "step_time": 88.031781095732
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.025,
667
+ "completions/max_length": 3251.9,
668
+ "completions/max_terminated_length": 3199.1,
669
+ "completions/mean_length": 1043.075,
670
+ "completions/mean_terminated_length": 965.6980834960938,
671
+ "completions/min_length": 220.2,
672
+ "completions/min_terminated_length": 220.2,
673
+ "entropy": 0.3173308566212654,
674
+ "epoch": 1.8518518518518519,
675
+ "frac_reward_zero_std": 0.7,
676
+ "grad_norm": 1.078125,
677
+ "learning_rate": 3.851851851851852e-06,
678
+ "loss": 0.0025,
679
+ "num_tokens": 28924038.0,
680
+ "reward": 0.615625,
681
+ "reward_std": 0.13382559418678283,
682
+ "rewards/qwen_accuracy_reward/mean": 0.615625,
683
+ "rewards/qwen_accuracy_reward/std": 0.4652743384242058,
684
+ "step": 250,
685
+ "step_time": 106.19994000922888
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.021875,
694
+ "completions/max_length": 2887.5,
695
+ "completions/max_terminated_length": 2873.7,
696
+ "completions/mean_length": 1157.359375,
697
+ "completions/mean_terminated_length": 1113.9273681640625,
698
+ "completions/min_length": 301.1,
699
+ "completions/min_terminated_length": 301.1,
700
+ "entropy": 0.3402048021554947,
701
+ "epoch": 1.925925925925926,
702
+ "frac_reward_zero_std": 0.8,
703
+ "grad_norm": 0.69921875,
704
+ "learning_rate": 3.6049382716049387e-06,
705
+ "loss": 0.052,
706
+ "num_tokens": 30091337.0,
707
+ "reward": 0.715625,
708
+ "reward_std": 0.0889025278389454,
709
+ "rewards/qwen_accuracy_reward/mean": 0.715625,
710
+ "rewards/qwen_accuracy_reward/std": 0.32325668483972547,
711
+ "step": 260,
712
+ "step_time": 91.37333038905635
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.021875,
721
+ "completions/max_length": 2470.1,
722
+ "completions/max_terminated_length": 2292.8,
723
+ "completions/mean_length": 843.490625,
724
+ "completions/mean_terminated_length": 775.8818176269531,
725
+ "completions/min_length": 177.1,
726
+ "completions/min_terminated_length": 177.1,
727
+ "entropy": 0.2989307105541229,
728
+ "epoch": 2.0,
729
+ "frac_reward_zero_std": 0.825,
730
+ "grad_norm": 0.6875,
731
+ "learning_rate": 3.358024691358025e-06,
732
+ "loss": 0.0466,
733
+ "num_tokens": 31255966.0,
734
+ "reward": 0.603125,
735
+ "reward_std": 0.07963935881853104,
736
+ "rewards/qwen_accuracy_reward/mean": 0.603125,
737
+ "rewards/qwen_accuracy_reward/std": 0.42693530917167666,
738
+ "step": 270,
739
+ "step_time": 89.96300350194797
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.009375,
748
+ "completions/max_length": 2517.0,
749
+ "completions/max_terminated_length": 2420.1,
750
+ "completions/mean_length": 888.171875,
751
+ "completions/mean_terminated_length": 862.066357421875,
752
+ "completions/min_length": 248.3,
753
+ "completions/min_terminated_length": 248.3,
754
+ "entropy": 0.31943089663982394,
755
+ "epoch": 2.074074074074074,
756
+ "frac_reward_zero_std": 0.8,
757
+ "grad_norm": 1.15625,
758
+ "learning_rate": 3.1111111111111116e-06,
759
+ "loss": 0.0098,
760
+ "num_tokens": 32377037.0,
761
+ "reward": 0.690625,
762
+ "reward_std": 0.08301232233643532,
763
+ "rewards/qwen_accuracy_reward/mean": 0.690625,
764
+ "rewards/qwen_accuracy_reward/std": 0.41344006955623624,
765
+ "step": 280,
766
+ "step_time": 89.49578351443634
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.01875,
775
+ "completions/max_length": 2672.4,
776
+ "completions/max_terminated_length": 2588.6,
777
+ "completions/mean_length": 996.834375,
778
+ "completions/mean_terminated_length": 938.0544189453125,
779
+ "completions/min_length": 215.1,
780
+ "completions/min_terminated_length": 215.1,
781
+ "entropy": 0.32308214008808134,
782
+ "epoch": 2.148148148148148,
783
+ "frac_reward_zero_std": 0.725,
784
+ "grad_norm": 0.0,
785
+ "learning_rate": 2.864197530864198e-06,
786
+ "loss": 0.0158,
787
+ "num_tokens": 33522664.0,
788
+ "reward": 0.69375,
789
+ "reward_std": 0.1285673774778843,
790
+ "rewards/qwen_accuracy_reward/mean": 0.69375,
791
+ "rewards/qwen_accuracy_reward/std": 0.37902161926031114,
792
+ "step": 290,
793
+ "step_time": 86.68293683826923
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.00625,
802
+ "completions/max_length": 2608.0,
803
+ "completions/max_terminated_length": 2520.2,
804
+ "completions/mean_length": 946.959375,
805
+ "completions/mean_terminated_length": 928.6271118164062,
806
+ "completions/min_length": 270.5,
807
+ "completions/min_terminated_length": 270.5,
808
+ "entropy": 0.3524158984422684,
809
+ "epoch": 2.2222222222222223,
810
+ "frac_reward_zero_std": 0.7,
811
+ "grad_norm": 0.7890625,
812
+ "learning_rate": 2.617283950617284e-06,
813
+ "loss": -0.0148,
814
+ "num_tokens": 34700627.0,
815
+ "reward": 0.65625,
816
+ "reward_std": 0.11973364129662514,
817
+ "rewards/qwen_accuracy_reward/mean": 0.65625,
818
+ "rewards/qwen_accuracy_reward/std": 0.41356782615184784,
819
+ "step": 300,
820
+ "step_time": 87.42863798243926
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.0125,
829
+ "completions/max_length": 2972.9,
830
+ "completions/max_terminated_length": 2897.5,
831
+ "completions/mean_length": 988.09375,
832
+ "completions/mean_terminated_length": 950.5379272460938,
833
+ "completions/min_length": 178.1,
834
+ "completions/min_terminated_length": 178.1,
835
+ "entropy": 0.35300183594226836,
836
+ "epoch": 2.2962962962962963,
837
+ "frac_reward_zero_std": 0.675,
838
+ "grad_norm": 0.0,
839
+ "learning_rate": 2.3703703703703707e-06,
840
+ "loss": 0.0343,
841
+ "num_tokens": 35737041.0,
842
+ "reward": 0.696875,
843
+ "reward_std": 0.13173072263598443,
844
+ "rewards/qwen_accuracy_reward/mean": 0.696875,
845
+ "rewards/qwen_accuracy_reward/std": 0.3739522725343704,
846
+ "step": 310,
847
+ "step_time": 91.70364078907296
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.015625,
856
+ "completions/max_length": 3188.5,
857
+ "completions/max_terminated_length": 3128.3,
858
+ "completions/mean_length": 1083.1125,
859
+ "completions/mean_terminated_length": 1040.7671630859375,
860
+ "completions/min_length": 210.6,
861
+ "completions/min_terminated_length": 210.6,
862
+ "entropy": 0.3282592862844467,
863
+ "epoch": 2.3703703703703702,
864
+ "frac_reward_zero_std": 0.675,
865
+ "grad_norm": 1.0234375,
866
+ "learning_rate": 2.123456790123457e-06,
867
+ "loss": -0.0189,
868
+ "num_tokens": 37111573.0,
869
+ "reward": 0.55625,
870
+ "reward_std": 0.13625495061278342,
871
+ "rewards/qwen_accuracy_reward/mean": 0.55625,
872
+ "rewards/qwen_accuracy_reward/std": 0.44359574764966964,
873
+ "step": 320,
874
+ "step_time": 111.29351590340957
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": 2530.0,
884
+ "completions/max_terminated_length": 2530.0,
885
+ "completions/mean_length": 861.1625,
886
+ "completions/mean_terminated_length": 861.1625,
887
+ "completions/min_length": 237.2,
888
+ "completions/min_terminated_length": 237.2,
889
+ "entropy": 0.33077896386384964,
890
+ "epoch": 2.4444444444444446,
891
+ "frac_reward_zero_std": 0.85,
892
+ "grad_norm": 1.1328125,
893
+ "learning_rate": 1.8765432098765435e-06,
894
+ "loss": -0.0035,
895
+ "num_tokens": 38235497.0,
896
+ "reward": 0.753125,
897
+ "reward_std": 0.06712496280670166,
898
+ "rewards/qwen_accuracy_reward/mean": 0.753125,
899
+ "rewards/qwen_accuracy_reward/std": 0.3345354929566383,
900
+ "step": 330,
901
+ "step_time": 85.06333898054436
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.015625,
910
+ "completions/max_length": 2847.5,
911
+ "completions/max_terminated_length": 2795.2,
912
+ "completions/mean_length": 959.253125,
913
+ "completions/mean_terminated_length": 913.3017211914063,
914
+ "completions/min_length": 206.6,
915
+ "completions/min_terminated_length": 206.6,
916
+ "entropy": 0.31485441625118255,
917
+ "epoch": 2.5185185185185186,
918
+ "frac_reward_zero_std": 0.725,
919
+ "grad_norm": 0.97265625,
920
+ "learning_rate": 1.62962962962963e-06,
921
+ "loss": -0.0131,
922
+ "num_tokens": 39410138.0,
923
+ "reward": 0.703125,
924
+ "reward_std": 0.11089480444788932,
925
+ "rewards/qwen_accuracy_reward/mean": 0.703125,
926
+ "rewards/qwen_accuracy_reward/std": 0.40059446543455124,
927
+ "step": 340,
928
+ "step_time": 96.2432292709127
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.01875,
937
+ "completions/max_length": 2841.1,
938
+ "completions/max_terminated_length": 2761.6,
939
+ "completions/mean_length": 977.59375,
940
+ "completions/mean_terminated_length": 932.3578735351563,
941
+ "completions/min_length": 218.1,
942
+ "completions/min_terminated_length": 218.1,
943
+ "entropy": 0.32475618124008176,
944
+ "epoch": 2.5925925925925926,
945
+ "frac_reward_zero_std": 0.675,
946
+ "grad_norm": 0.703125,
947
+ "learning_rate": 1.382716049382716e-06,
948
+ "loss": -0.0032,
949
+ "num_tokens": 40474160.0,
950
+ "reward": 0.596875,
951
+ "reward_std": 0.1422400951385498,
952
+ "rewards/qwen_accuracy_reward/mean": 0.596875,
953
+ "rewards/qwen_accuracy_reward/std": 0.44790197908878326,
954
+ "step": 350,
955
+ "step_time": 94.29619938712567
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.0375,
964
+ "completions/max_length": 2836.5,
965
+ "completions/max_terminated_length": 2630.0,
966
+ "completions/mean_length": 953.403125,
967
+ "completions/mean_terminated_length": 836.7918395996094,
968
+ "completions/min_length": 182.6,
969
+ "completions/min_terminated_length": 182.6,
970
+ "entropy": 0.29742794930934907,
971
+ "epoch": 2.6666666666666665,
972
+ "frac_reward_zero_std": 0.7,
973
+ "grad_norm": 1.6171875,
974
+ "learning_rate": 1.1358024691358026e-06,
975
+ "loss": 0.0334,
976
+ "num_tokens": 41924201.0,
977
+ "reward": 0.540625,
978
+ "reward_std": 0.13288394510746002,
979
+ "rewards/qwen_accuracy_reward/mean": 0.540625,
980
+ "rewards/qwen_accuracy_reward/std": 0.4684432566165924,
981
+ "step": 360,
982
+ "step_time": 92.4419061298482
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.009375,
991
+ "completions/max_length": 2586.9,
992
+ "completions/max_terminated_length": 2387.2,
993
+ "completions/mean_length": 884.53125,
994
+ "completions/mean_terminated_length": 859.0074462890625,
995
+ "completions/min_length": 216.4,
996
+ "completions/min_terminated_length": 216.4,
997
+ "entropy": 0.3111660867929459,
998
+ "epoch": 2.7407407407407405,
999
+ "frac_reward_zero_std": 0.65,
1000
+ "grad_norm": 0.9140625,
1001
+ "learning_rate": 8.88888888888889e-07,
1002
+ "loss": 0.0232,
1003
+ "num_tokens": 43079411.0,
1004
+ "reward": 0.678125,
1005
+ "reward_std": 0.15970305502414703,
1006
+ "rewards/qwen_accuracy_reward/mean": 0.678125,
1007
+ "rewards/qwen_accuracy_reward/std": 0.44499066174030305,
1008
+ "step": 370,
1009
+ "step_time": 87.8870439321734
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.015625,
1018
+ "completions/max_length": 2993.8,
1019
+ "completions/max_terminated_length": 2757.8,
1020
+ "completions/mean_length": 884.4375,
1021
+ "completions/mean_terminated_length": 836.5636779785157,
1022
+ "completions/min_length": 203.2,
1023
+ "completions/min_terminated_length": 203.2,
1024
+ "entropy": 0.3149792984127998,
1025
+ "epoch": 2.814814814814815,
1026
+ "frac_reward_zero_std": 0.75,
1027
+ "grad_norm": 1.109375,
1028
+ "learning_rate": 6.419753086419754e-07,
1029
+ "loss": 0.0361,
1030
+ "num_tokens": 44174927.0,
1031
+ "reward": 0.64375,
1032
+ "reward_std": 0.10931411162018775,
1033
+ "rewards/qwen_accuracy_reward/mean": 0.64375,
1034
+ "rewards/qwen_accuracy_reward/std": 0.4142391666769981,
1035
+ "step": 380,
1036
+ "step_time": 102.23014580868184
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.00625,
1045
+ "completions/max_length": 2648.8,
1046
+ "completions/max_terminated_length": 2561.9,
1047
+ "completions/mean_length": 792.796875,
1048
+ "completions/mean_terminated_length": 774.4787231445313,
1049
+ "completions/min_length": 213.6,
1050
+ "completions/min_terminated_length": 213.6,
1051
+ "entropy": 0.3075984627008438,
1052
+ "epoch": 2.888888888888889,
1053
+ "frac_reward_zero_std": 0.775,
1054
+ "grad_norm": 0.7890625,
1055
+ "learning_rate": 3.9506172839506174e-07,
1056
+ "loss": 0.0105,
1057
+ "num_tokens": 45515390.0,
1058
+ "reward": 0.625,
1059
+ "reward_std": 0.09910930022597313,
1060
+ "rewards/qwen_accuracy_reward/mean": 0.625,
1061
+ "rewards/qwen_accuracy_reward/std": 0.4127164900302887,
1062
+ "step": 390,
1063
+ "step_time": 94.27956027435138
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.025,
1072
+ "completions/max_length": 2960.8,
1073
+ "completions/max_terminated_length": 2754.7,
1074
+ "completions/mean_length": 1044.615625,
1075
+ "completions/mean_terminated_length": 961.3511047363281,
1076
+ "completions/min_length": 202.3,
1077
+ "completions/min_terminated_length": 202.3,
1078
+ "entropy": 0.3200776308774948,
1079
+ "epoch": 2.962962962962963,
1080
+ "frac_reward_zero_std": 0.6,
1081
+ "grad_norm": 0.0,
1082
+ "learning_rate": 1.4814814814814817e-07,
1083
+ "loss": 0.0416,
1084
+ "num_tokens": 46797883.0,
1085
+ "reward": 0.690625,
1086
+ "reward_std": 0.18148061260581017,
1087
+ "rewards/qwen_accuracy_reward/mean": 0.690625,
1088
+ "rewards/qwen_accuracy_reward/std": 0.4207667887210846,
1089
+ "step": 400,
1090
+ "step_time": 98.57531574275345
1091
+ }
1092
+ ],
1093
+ "logging_steps": 10,
1094
+ "max_steps": 405,
1095
+ "num_input_tokens_seen": 47401625,
1096
+ "num_train_epochs": 3,
1097
+ "save_steps": 50,
1098
+ "stateful_callbacks": {
1099
+ "TrainerControl": {
1100
+ "args": {
1101
+ "should_epoch_stop": false,
1102
+ "should_evaluate": false,
1103
+ "should_log": false,
1104
+ "should_save": true,
1105
+ "should_training_stop": true
1106
+ },
1107
+ "attributes": {}
1108
+ }
1109
+ },
1110
+ "total_flos": 0.0,
1111
+ "train_batch_size": 4,
1112
+ "trial_name": null,
1113
+ "trial_params": null
1114
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14f568df06f3257638cc297d2262f06ad97dd20fe58e0663dc4e613dd621cb36
3
+ size 7096
vocab.json ADDED
The diff for this file is too large to render. See raw diff