Harryllh commited on
Commit
372bae8
·
verified ·
1 Parent(s): bcaccb2

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,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# 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>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\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" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "dtype": "float32",
7
+ "eos_token_id": 151645,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 2048,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 11008,
12
+ "layer_types": [
13
+ "full_attention",
14
+ "full_attention",
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
+ ],
50
+ "max_position_embeddings": 32768,
51
+ "max_window_layers": 36,
52
+ "model_type": "qwen2",
53
+ "num_attention_heads": 16,
54
+ "num_hidden_layers": 36,
55
+ "num_key_value_heads": 2,
56
+ "pad_token_id": 151643,
57
+ "rms_norm_eps": 1e-06,
58
+ "rope_scaling": null,
59
+ "rope_theta": 1000000.0,
60
+ "sliding_window": null,
61
+ "tie_word_embeddings": true,
62
+ "transformers_version": "4.57.3",
63
+ "use_cache": false,
64
+ "use_sliding_window": false,
65
+ "vocab_size": 151936
66
+ }
generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151643
6
+ ],
7
+ "pad_token_id": 151643,
8
+ "repetition_penalty": 1.05,
9
+ "temperature": 0.7,
10
+ "top_k": 20,
11
+ "top_p": 0.8,
12
+ "transformers_version": "4.57.3"
13
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4388d2c83fdd136cded35208f788b099ef385816dadd5f0e22fced44b716f167
3
+ size 4982131536
model-00002-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8743e1a3cd3d3394edf2ae720067f80e2db18a9832a06258e30192d40684a95c
3
+ size 4932949336
model-00003-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13aba45ec781b7d36080055f6359c9320c8ab316fb7d389fed900572b4caf45e
3
+ size 2428723160
model.safetensors.index.json ADDED
@@ -0,0 +1,442 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 3085938688,
4
+ "total_size": 12343754752
5
+ },
6
+ "weight_map": {
7
+ "model.embed_tokens.weight": "model-00001-of-00003.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
13
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
16
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
17
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
18
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
25
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
26
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
27
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
28
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
29
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
30
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
31
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
32
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00003.safetensors",
33
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
34
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
35
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
36
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
37
+ "model.layers.10.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
38
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
39
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
40
+ "model.layers.10.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
41
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
42
+ "model.layers.10.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
43
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
44
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00003.safetensors",
45
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
46
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
47
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
48
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
49
+ "model.layers.11.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
50
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
51
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
52
+ "model.layers.11.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
53
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
54
+ "model.layers.11.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
55
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
56
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
57
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
58
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
59
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
60
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
61
+ "model.layers.12.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
62
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
63
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
64
+ "model.layers.12.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
65
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
66
+ "model.layers.12.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
67
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
68
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
69
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
70
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
71
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
72
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
73
+ "model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
74
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
75
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
76
+ "model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
77
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
78
+ "model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
79
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
80
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
81
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
82
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
83
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
84
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
85
+ "model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
86
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
87
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
88
+ "model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
89
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
90
+ "model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
91
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
92
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
93
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
94
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
95
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
96
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
97
+ "model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
98
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
99
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
100
+ "model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
101
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
102
+ "model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
103
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
104
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
105
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
106
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
107
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
108
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
109
+ "model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
110
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
111
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
112
+ "model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
113
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
114
+ "model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
115
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
116
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
117
+ "model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
118
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
119
+ "model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
120
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
121
+ "model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
122
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
123
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
124
+ "model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
125
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
126
+ "model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
127
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
128
+ "model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
129
+ "model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
130
+ "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
131
+ "model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
132
+ "model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
133
+ "model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
134
+ "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
135
+ "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
136
+ "model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
137
+ "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
138
+ "model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
139
+ "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
140
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
141
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
142
+ "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
143
+ "model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
144
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
145
+ "model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
146
+ "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
147
+ "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
148
+ "model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
149
+ "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
150
+ "model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
151
+ "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
152
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
153
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
154
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
155
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
156
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
157
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
158
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
159
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
160
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
161
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
162
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
163
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
164
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
165
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
166
+ "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
167
+ "model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
168
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
169
+ "model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
170
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
171
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
172
+ "model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
173
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
174
+ "model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
175
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
176
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
177
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
178
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
179
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
180
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
181
+ "model.layers.21.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
182
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
183
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
184
+ "model.layers.21.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
185
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
186
+ "model.layers.21.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
187
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
188
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00003.safetensors",
189
+ "model.layers.22.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
190
+ "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
191
+ "model.layers.22.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
192
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
193
+ "model.layers.22.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
194
+ "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
195
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
196
+ "model.layers.22.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
197
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
198
+ "model.layers.22.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
199
+ "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
200
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00003.safetensors",
201
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
202
+ "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
203
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
204
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
205
+ "model.layers.23.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
206
+ "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
207
+ "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
208
+ "model.layers.23.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
209
+ "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
210
+ "model.layers.23.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
211
+ "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
212
+ "model.layers.24.input_layernorm.weight": "model-00002-of-00003.safetensors",
213
+ "model.layers.24.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
214
+ "model.layers.24.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
215
+ "model.layers.24.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
216
+ "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
217
+ "model.layers.24.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
218
+ "model.layers.24.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
219
+ "model.layers.24.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
220
+ "model.layers.24.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
221
+ "model.layers.24.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
222
+ "model.layers.24.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
223
+ "model.layers.24.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
224
+ "model.layers.25.input_layernorm.weight": "model-00002-of-00003.safetensors",
225
+ "model.layers.25.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
226
+ "model.layers.25.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
227
+ "model.layers.25.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
228
+ "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
229
+ "model.layers.25.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
230
+ "model.layers.25.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
231
+ "model.layers.25.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
232
+ "model.layers.25.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
233
+ "model.layers.25.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
234
+ "model.layers.25.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
235
+ "model.layers.25.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
236
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00003.safetensors",
237
+ "model.layers.26.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
238
+ "model.layers.26.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
239
+ "model.layers.26.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
240
+ "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
241
+ "model.layers.26.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
242
+ "model.layers.26.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
243
+ "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
244
+ "model.layers.26.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
245
+ "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
246
+ "model.layers.26.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
247
+ "model.layers.26.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
248
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00003.safetensors",
249
+ "model.layers.27.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
250
+ "model.layers.27.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
251
+ "model.layers.27.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
252
+ "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
253
+ "model.layers.27.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
254
+ "model.layers.27.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
255
+ "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
256
+ "model.layers.27.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
257
+ "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
258
+ "model.layers.27.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
259
+ "model.layers.27.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
260
+ "model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
261
+ "model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
262
+ "model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
263
+ "model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
264
+ "model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
265
+ "model.layers.28.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
266
+ "model.layers.28.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
267
+ "model.layers.28.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
268
+ "model.layers.28.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
269
+ "model.layers.28.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
270
+ "model.layers.28.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
271
+ "model.layers.28.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
272
+ "model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
273
+ "model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
274
+ "model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
275
+ "model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
276
+ "model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
277
+ "model.layers.29.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
278
+ "model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
279
+ "model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
280
+ "model.layers.29.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
281
+ "model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
282
+ "model.layers.29.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
283
+ "model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
284
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
285
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
286
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
287
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
288
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
289
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
290
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
291
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
292
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
293
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
294
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
295
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
296
+ "model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
297
+ "model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
298
+ "model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
299
+ "model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
300
+ "model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
301
+ "model.layers.30.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
302
+ "model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
303
+ "model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
304
+ "model.layers.30.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
305
+ "model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
306
+ "model.layers.30.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
307
+ "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
308
+ "model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
309
+ "model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
310
+ "model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
311
+ "model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
312
+ "model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
313
+ "model.layers.31.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
314
+ "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
315
+ "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
316
+ "model.layers.31.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
317
+ "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
318
+ "model.layers.31.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
319
+ "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
320
+ "model.layers.32.input_layernorm.weight": "model-00003-of-00003.safetensors",
321
+ "model.layers.32.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
322
+ "model.layers.32.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
323
+ "model.layers.32.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
324
+ "model.layers.32.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
325
+ "model.layers.32.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
326
+ "model.layers.32.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
327
+ "model.layers.32.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
328
+ "model.layers.32.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
329
+ "model.layers.32.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
330
+ "model.layers.32.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
331
+ "model.layers.32.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
332
+ "model.layers.33.input_layernorm.weight": "model-00003-of-00003.safetensors",
333
+ "model.layers.33.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
334
+ "model.layers.33.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
335
+ "model.layers.33.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
336
+ "model.layers.33.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
337
+ "model.layers.33.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
338
+ "model.layers.33.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
339
+ "model.layers.33.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
340
+ "model.layers.33.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
341
+ "model.layers.33.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
342
+ "model.layers.33.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
343
+ "model.layers.33.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
344
+ "model.layers.34.input_layernorm.weight": "model-00003-of-00003.safetensors",
345
+ "model.layers.34.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
346
+ "model.layers.34.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
347
+ "model.layers.34.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
348
+ "model.layers.34.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
349
+ "model.layers.34.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
350
+ "model.layers.34.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
351
+ "model.layers.34.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
352
+ "model.layers.34.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
353
+ "model.layers.34.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
354
+ "model.layers.34.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
355
+ "model.layers.34.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
356
+ "model.layers.35.input_layernorm.weight": "model-00003-of-00003.safetensors",
357
+ "model.layers.35.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
358
+ "model.layers.35.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
359
+ "model.layers.35.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
360
+ "model.layers.35.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
361
+ "model.layers.35.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
362
+ "model.layers.35.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
363
+ "model.layers.35.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
364
+ "model.layers.35.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
365
+ "model.layers.35.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
366
+ "model.layers.35.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
367
+ "model.layers.35.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
368
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
369
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
370
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
371
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
372
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
373
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
374
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
375
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
376
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
377
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
378
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
379
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
380
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
381
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
382
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
383
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
384
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
385
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
386
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
387
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
388
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
389
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
390
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
391
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
392
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
393
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
394
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
395
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
396
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
397
+ "model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
398
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
399
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
400
+ "model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
401
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
402
+ "model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
403
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
404
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
405
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
406
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
407
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
408
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
409
+ "model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
410
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
411
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
412
+ "model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
413
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
414
+ "model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
415
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
416
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
417
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
418
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
419
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
420
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
421
+ "model.layers.8.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
422
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
423
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
424
+ "model.layers.8.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
425
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
426
+ "model.layers.8.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
427
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
428
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
429
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
430
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
431
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
432
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
433
+ "model.layers.9.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
434
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
435
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
436
+ "model.layers.9.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
437
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
438
+ "model.layers.9.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
439
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
440
+ "model.norm.weight": "model-00003-of-00003.safetensors"
441
+ }
442
+ }
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8616a1a46a7e22cf1620ea6e748509d2b9aff5219ee036b8556bb2e377193c5
3
+ size 24687895753
rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:751b65f70f1960660c63c6c89a9653bc88a0ec9f8c868668116fec9c93cae8c8
3
+ size 15365
rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13706c3f5531d0b4e0c1fd53c66ed860a95726fb2e617054e39eee36ad48d66c
3
+ size 15429
rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecb595ae8f86f1c7e192bd456a524197108a8dda218801b4909b6e5b838e6b1c
3
+ size 15429
rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55e706f0324fcf807872d1b9128ff2aecfaa6f18197b081096865474a3b75310
3
+ size 15429
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58f8b6881a432bd2506b4c142d6f9b7b6b337d2665d39a90b132dcb1c80cdc27
3
+ size 1465
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
3
+ size 11421896
tokenizer_config.json ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "clean_up_tokenization_spaces": false,
199
+ "eos_token": "<|im_end|>",
200
+ "errors": "replace",
201
+ "extra_special_tokens": {},
202
+ "model_max_length": 32768,
203
+ "pad_token": "<|endoftext|>",
204
+ "split_special_tokens": false,
205
+ "tokenizer_class": "Qwen2Tokenizer",
206
+ "unk_token": null
207
+ }
trainer_state.json ADDED
@@ -0,0 +1,2434 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.4,
6
+ "eval_steps": 500,
7
+ "global_step": 100,
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.125,
19
+ "completions/max_length": 434.0,
20
+ "completions/max_terminated_length": 434.0,
21
+ "completions/mean_length": 293.75,
22
+ "completions/mean_terminated_length": 335.7142857142857,
23
+ "completions/min_length": 0.0,
24
+ "completions/min_terminated_length": 184.0,
25
+ "epoch": 0.004,
26
+ "format_failures": 0.0,
27
+ "grad_norm": 0.5197089910507202,
28
+ "kl": 0.0,
29
+ "learning_rate": 0.0,
30
+ "loss": 0.0278,
31
+ "num_tokens": 9800.0,
32
+ "reward": 0.3660714328289032,
33
+ "reward_std": 0.36236491799354553,
34
+ "step": 1
35
+ },
36
+ {
37
+ "clip_ratio/high_max": 0.0,
38
+ "clip_ratio/high_mean": 0.0,
39
+ "clip_ratio/low_mean": 0.0,
40
+ "clip_ratio/low_min": 0.0,
41
+ "clip_ratio/region_mean": 0.0,
42
+ "completions/clipped_ratio": 0.125,
43
+ "completions/max_length": 278.0,
44
+ "completions/max_terminated_length": 278.0,
45
+ "completions/mean_length": 134.875,
46
+ "completions/mean_terminated_length": 154.14285714285714,
47
+ "completions/min_length": 0.0,
48
+ "completions/min_terminated_length": 51.0,
49
+ "epoch": 0.008,
50
+ "format_failures": 0.0,
51
+ "grad_norm": 1.8656461238861084,
52
+ "kl": 0.0,
53
+ "learning_rate": 1e-06,
54
+ "loss": 0.1584,
55
+ "num_tokens": 19920.0,
56
+ "reward": 0.34375,
57
+ "reward_std": 0.48065245151519775,
58
+ "step": 2
59
+ },
60
+ {
61
+ "clip_ratio/high_max": 0.0,
62
+ "clip_ratio/high_mean": 0.0,
63
+ "clip_ratio/low_mean": 0.0,
64
+ "clip_ratio/low_min": 0.0,
65
+ "clip_ratio/region_mean": 0.0,
66
+ "completions/clipped_ratio": 0.125,
67
+ "completions/max_length": 261.0,
68
+ "completions/max_terminated_length": 261.0,
69
+ "completions/mean_length": 176.625,
70
+ "completions/mean_terminated_length": 201.85714285714286,
71
+ "completions/min_length": 0.0,
72
+ "completions/min_terminated_length": 138.0,
73
+ "epoch": 0.012,
74
+ "format_failures": 0.0,
75
+ "grad_norm": 7.7805867195129395,
76
+ "kl": 1.0173164680600166,
77
+ "learning_rate": 1e-06,
78
+ "loss": 0.0063,
79
+ "num_tokens": 28896.0,
80
+ "reward": 0.0,
81
+ "reward_std": 0.0,
82
+ "step": 3
83
+ },
84
+ {
85
+ "clip_ratio/high_max": 0.0,
86
+ "clip_ratio/high_mean": 0.0,
87
+ "clip_ratio/low_mean": 0.0,
88
+ "clip_ratio/low_min": 0.0,
89
+ "clip_ratio/region_mean": 0.0,
90
+ "completions/clipped_ratio": 0.125,
91
+ "completions/max_length": 332.0,
92
+ "completions/max_terminated_length": 332.0,
93
+ "completions/mean_length": 216.625,
94
+ "completions/mean_terminated_length": 247.57142857142858,
95
+ "completions/min_length": 0.0,
96
+ "completions/min_terminated_length": 190.0,
97
+ "epoch": 0.016,
98
+ "format_failures": 0.0,
99
+ "grad_norm": 0.34460729360580444,
100
+ "kl": 0.005293647991493344,
101
+ "learning_rate": 1e-06,
102
+ "loss": 0.0149,
103
+ "num_tokens": 35688.0,
104
+ "reward": 0.316850483417511,
105
+ "reward_std": 0.19629573822021484,
106
+ "step": 4
107
+ },
108
+ {
109
+ "clip_ratio/high_max": 0.0,
110
+ "clip_ratio/high_mean": 0.0,
111
+ "clip_ratio/low_mean": 0.0,
112
+ "clip_ratio/low_min": 0.0,
113
+ "clip_ratio/region_mean": 0.0,
114
+ "completions/clipped_ratio": 0.125,
115
+ "completions/max_length": 141.0,
116
+ "completions/max_terminated_length": 141.0,
117
+ "completions/mean_length": 107.75,
118
+ "completions/mean_terminated_length": 123.14285714285714,
119
+ "completions/min_length": 0.0,
120
+ "completions/min_terminated_length": 109.0,
121
+ "epoch": 0.02,
122
+ "format_failures": 0.0,
123
+ "grad_norm": 1.950016975402832,
124
+ "kl": 0.19140876829624176,
125
+ "learning_rate": 1e-06,
126
+ "loss": -0.0265,
127
+ "num_tokens": 44320.0,
128
+ "reward": 0.25,
129
+ "reward_std": 0.4629100561141968,
130
+ "step": 5
131
+ },
132
+ {
133
+ "clip_ratio/high_max": 0.0,
134
+ "clip_ratio/high_mean": 0.0,
135
+ "clip_ratio/low_mean": 0.0,
136
+ "clip_ratio/low_min": 0.0,
137
+ "clip_ratio/region_mean": 0.0,
138
+ "completions/clipped_ratio": 0.125,
139
+ "completions/max_length": 480.0,
140
+ "completions/max_terminated_length": 480.0,
141
+ "completions/mean_length": 347.375,
142
+ "completions/mean_terminated_length": 397.0,
143
+ "completions/min_length": 0.0,
144
+ "completions/min_terminated_length": 316.0,
145
+ "epoch": 0.024,
146
+ "format_failures": 0.0,
147
+ "grad_norm": 0.27606070041656494,
148
+ "kl": 0.004609360825270414,
149
+ "learning_rate": 1e-06,
150
+ "loss": 0.019,
151
+ "num_tokens": 55480.0,
152
+ "reward": 0.20555555820465088,
153
+ "reward_std": 0.22662308812141418,
154
+ "step": 6
155
+ },
156
+ {
157
+ "clip_ratio/high_max": 0.0,
158
+ "clip_ratio/high_mean": 0.0,
159
+ "clip_ratio/low_mean": 0.0,
160
+ "clip_ratio/low_min": 0.0,
161
+ "clip_ratio/region_mean": 0.0,
162
+ "completions/clipped_ratio": 0.125,
163
+ "completions/max_length": 98.0,
164
+ "completions/max_terminated_length": 98.0,
165
+ "completions/mean_length": 54.75,
166
+ "completions/mean_terminated_length": 62.57142857142857,
167
+ "completions/min_length": 0.0,
168
+ "completions/min_terminated_length": 36.0,
169
+ "epoch": 0.028,
170
+ "format_failures": 0.0,
171
+ "grad_norm": 1.512669563293457,
172
+ "kl": 0.0004560185334412381,
173
+ "learning_rate": 1e-06,
174
+ "loss": 0.1926,
175
+ "num_tokens": 76568.0,
176
+ "reward": 0.0416666679084301,
177
+ "reward_std": 0.1178511381149292,
178
+ "step": 7
179
+ },
180
+ {
181
+ "clip_ratio/high_max": 0.0,
182
+ "clip_ratio/high_mean": 0.0,
183
+ "clip_ratio/low_mean": 0.0,
184
+ "clip_ratio/low_min": 0.0,
185
+ "clip_ratio/region_mean": 0.0,
186
+ "completions/clipped_ratio": 0.125,
187
+ "completions/max_length": 380.0,
188
+ "completions/max_terminated_length": 380.0,
189
+ "completions/mean_length": 189.75,
190
+ "completions/mean_terminated_length": 216.85714285714286,
191
+ "completions/min_length": 0.0,
192
+ "completions/min_terminated_length": 94.0,
193
+ "epoch": 0.032,
194
+ "format_failures": 0.0,
195
+ "grad_norm": 1.6258090734481812,
196
+ "kl": 0.133640818297863,
197
+ "learning_rate": 1e-06,
198
+ "loss": 0.0094,
199
+ "num_tokens": 88120.0,
200
+ "reward": 0.05000000074505806,
201
+ "reward_std": 0.1414213478565216,
202
+ "step": 8
203
+ },
204
+ {
205
+ "clip_ratio/high_max": 0.0,
206
+ "clip_ratio/high_mean": 0.0,
207
+ "clip_ratio/low_mean": 0.0,
208
+ "clip_ratio/low_min": 0.0,
209
+ "clip_ratio/region_mean": 0.0,
210
+ "completions/clipped_ratio": 0.125,
211
+ "completions/max_length": 1412.0,
212
+ "completions/max_terminated_length": 1412.0,
213
+ "completions/mean_length": 426.125,
214
+ "completions/mean_terminated_length": 487.0,
215
+ "completions/min_length": 0.0,
216
+ "completions/min_terminated_length": 218.0,
217
+ "epoch": 0.036,
218
+ "format_failures": 1.0,
219
+ "grad_norm": 0.3745494782924652,
220
+ "kl": 0.0010488361003808677,
221
+ "learning_rate": 1e-06,
222
+ "loss": -0.1003,
223
+ "num_tokens": 110584.0,
224
+ "reward": 0.05859375,
225
+ "reward_std": 0.1657281517982483,
226
+ "step": 9
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.125,
235
+ "completions/max_length": 62.0,
236
+ "completions/max_terminated_length": 62.0,
237
+ "completions/mean_length": 41.25,
238
+ "completions/mean_terminated_length": 47.142857142857146,
239
+ "completions/min_length": 0.0,
240
+ "completions/min_terminated_length": 35.0,
241
+ "epoch": 0.04,
242
+ "format_failures": 0.0,
243
+ "grad_norm": 6.635150909423828,
244
+ "kl": 1.000607669353485,
245
+ "learning_rate": 1e-06,
246
+ "loss": -0.0558,
247
+ "num_tokens": 115888.0,
248
+ "reward": 0.125,
249
+ "reward_std": 0.3535533845424652,
250
+ "step": 10
251
+ },
252
+ {
253
+ "clip_ratio/high_max": 0.0,
254
+ "clip_ratio/high_mean": 0.0,
255
+ "clip_ratio/low_mean": 0.0,
256
+ "clip_ratio/low_min": 0.0,
257
+ "clip_ratio/region_mean": 0.0,
258
+ "completions/clipped_ratio": 0.375,
259
+ "completions/max_length": 126.0,
260
+ "completions/max_terminated_length": 126.0,
261
+ "completions/mean_length": 60.25,
262
+ "completions/mean_terminated_length": 96.4,
263
+ "completions/min_length": 0.0,
264
+ "completions/min_terminated_length": 62.0,
265
+ "epoch": 0.044,
266
+ "format_failures": 0.0,
267
+ "grad_norm": 5.5436906814575195,
268
+ "kl": 0.534478023648262,
269
+ "learning_rate": 1e-06,
270
+ "loss": -0.1301,
271
+ "num_tokens": 123984.0,
272
+ "reward": 0.375,
273
+ "reward_std": 0.5175491571426392,
274
+ "step": 11
275
+ },
276
+ {
277
+ "clip_ratio/high_max": 0.0,
278
+ "clip_ratio/high_mean": 0.0,
279
+ "clip_ratio/low_mean": 0.0,
280
+ "clip_ratio/low_min": 0.0,
281
+ "clip_ratio/region_mean": 0.0,
282
+ "completions/clipped_ratio": 0.25,
283
+ "completions/max_length": 2047.0,
284
+ "completions/max_terminated_length": 2047.0,
285
+ "completions/mean_length": 702.625,
286
+ "completions/mean_terminated_length": 936.8333333333334,
287
+ "completions/min_length": 0.0,
288
+ "completions/min_terminated_length": 341.0,
289
+ "epoch": 0.048,
290
+ "format_failures": 0.0,
291
+ "grad_norm": 0.34704723954200745,
292
+ "kl": 0.0009783765999600291,
293
+ "learning_rate": 1e-06,
294
+ "loss": 0.0431,
295
+ "num_tokens": 146192.0,
296
+ "reward": 0.38749998807907104,
297
+ "reward_std": 0.4181165099143982,
298
+ "step": 12
299
+ },
300
+ {
301
+ "clip_ratio/high_max": 0.0,
302
+ "clip_ratio/high_mean": 0.0,
303
+ "clip_ratio/low_mean": 0.0,
304
+ "clip_ratio/low_min": 0.0,
305
+ "clip_ratio/region_mean": 0.0,
306
+ "completions/clipped_ratio": 0.125,
307
+ "completions/max_length": 122.0,
308
+ "completions/max_terminated_length": 122.0,
309
+ "completions/mean_length": 40.375,
310
+ "completions/mean_terminated_length": 46.142857142857146,
311
+ "completions/min_length": 0.0,
312
+ "completions/min_terminated_length": 20.0,
313
+ "epoch": 0.052,
314
+ "format_failures": 0.0,
315
+ "grad_norm": 0.004240340553224087,
316
+ "kl": 0.004628603579476476,
317
+ "learning_rate": 1e-06,
318
+ "loss": 0.0,
319
+ "num_tokens": 166896.0,
320
+ "reward": 0.0,
321
+ "reward_std": 0.0,
322
+ "step": 13
323
+ },
324
+ {
325
+ "clip_ratio/high_max": 0.0,
326
+ "clip_ratio/high_mean": 0.0,
327
+ "clip_ratio/low_mean": 0.0,
328
+ "clip_ratio/low_min": 0.0,
329
+ "clip_ratio/region_mean": 0.0,
330
+ "completions/clipped_ratio": 0.125,
331
+ "completions/max_length": 973.0,
332
+ "completions/max_terminated_length": 973.0,
333
+ "completions/mean_length": 452.5,
334
+ "completions/mean_terminated_length": 517.1428571428571,
335
+ "completions/min_length": 0.0,
336
+ "completions/min_terminated_length": 275.0,
337
+ "epoch": 0.056,
338
+ "format_failures": 0.0,
339
+ "grad_norm": 0.18779706954956055,
340
+ "kl": 0.0052806169260293245,
341
+ "learning_rate": 1e-06,
342
+ "loss": 0.0313,
343
+ "num_tokens": 185392.0,
344
+ "reward": 0.11513157933950424,
345
+ "reward_std": 0.16955535113811493,
346
+ "step": 14
347
+ },
348
+ {
349
+ "clip_ratio/high_max": 0.0,
350
+ "clip_ratio/high_mean": 0.0,
351
+ "clip_ratio/low_mean": 0.0,
352
+ "clip_ratio/low_min": 0.0,
353
+ "clip_ratio/region_mean": 0.0,
354
+ "completions/clipped_ratio": 0.125,
355
+ "completions/max_length": 304.0,
356
+ "completions/max_terminated_length": 304.0,
357
+ "completions/mean_length": 202.0,
358
+ "completions/mean_terminated_length": 230.85714285714286,
359
+ "completions/min_length": 0.0,
360
+ "completions/min_terminated_length": 113.0,
361
+ "epoch": 0.06,
362
+ "format_failures": 0.0,
363
+ "grad_norm": 0.6387383341789246,
364
+ "kl": 0.02643415331840515,
365
+ "learning_rate": 1e-06,
366
+ "loss": 0.0717,
367
+ "num_tokens": 193056.0,
368
+ "reward": 0.53125,
369
+ "reward_std": 0.31045761704444885,
370
+ "step": 15
371
+ },
372
+ {
373
+ "clip_ratio/high_max": 0.0,
374
+ "clip_ratio/high_mean": 0.0,
375
+ "clip_ratio/low_mean": 0.0,
376
+ "clip_ratio/low_min": 0.0,
377
+ "clip_ratio/region_mean": 0.0,
378
+ "completions/clipped_ratio": 0.125,
379
+ "completions/max_length": 203.0,
380
+ "completions/max_terminated_length": 203.0,
381
+ "completions/mean_length": 151.25,
382
+ "completions/mean_terminated_length": 172.85714285714286,
383
+ "completions/min_length": 0.0,
384
+ "completions/min_terminated_length": 160.0,
385
+ "epoch": 0.064,
386
+ "format_failures": 0.0,
387
+ "grad_norm": 0.2569343149662018,
388
+ "kl": 0.09986447170376778,
389
+ "learning_rate": 1e-06,
390
+ "loss": 0.0006,
391
+ "num_tokens": 201256.0,
392
+ "reward": 0.0,
393
+ "reward_std": 0.0,
394
+ "step": 16
395
+ },
396
+ {
397
+ "clip_ratio/high_max": 0.0,
398
+ "clip_ratio/high_mean": 0.0,
399
+ "clip_ratio/low_mean": 0.0,
400
+ "clip_ratio/low_min": 0.0,
401
+ "clip_ratio/region_mean": 0.0,
402
+ "completions/clipped_ratio": 0.125,
403
+ "completions/max_length": 295.0,
404
+ "completions/max_terminated_length": 295.0,
405
+ "completions/mean_length": 192.0,
406
+ "completions/mean_terminated_length": 219.42857142857142,
407
+ "completions/min_length": 0.0,
408
+ "completions/min_terminated_length": 22.0,
409
+ "epoch": 0.068,
410
+ "format_failures": 1.0,
411
+ "grad_norm": 0.04395958036184311,
412
+ "kl": 0.027548893354833126,
413
+ "learning_rate": 1e-06,
414
+ "loss": 0.0001,
415
+ "num_tokens": 209920.0,
416
+ "reward": 0.0,
417
+ "reward_std": 0.0,
418
+ "step": 17
419
+ },
420
+ {
421
+ "clip_ratio/high_max": 0.0,
422
+ "clip_ratio/high_mean": 0.0,
423
+ "clip_ratio/low_mean": 0.0,
424
+ "clip_ratio/low_min": 0.0,
425
+ "clip_ratio/region_mean": 0.0,
426
+ "completions/clipped_ratio": 0.5,
427
+ "completions/max_length": 44.0,
428
+ "completions/max_terminated_length": 44.0,
429
+ "completions/mean_length": 20.125,
430
+ "completions/mean_terminated_length": 40.25,
431
+ "completions/min_length": 0.0,
432
+ "completions/min_terminated_length": 39.0,
433
+ "epoch": 0.072,
434
+ "format_failures": 0.0,
435
+ "grad_norm": 0.16681237518787384,
436
+ "kl": 0.03394318092614412,
437
+ "learning_rate": 1e-06,
438
+ "loss": 0.0009,
439
+ "num_tokens": 214144.0,
440
+ "reward": 0.0,
441
+ "reward_std": 0.0,
442
+ "step": 18
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.125,
451
+ "completions/max_length": 527.0,
452
+ "completions/max_terminated_length": 527.0,
453
+ "completions/mean_length": 215.75,
454
+ "completions/mean_terminated_length": 246.57142857142858,
455
+ "completions/min_length": 0.0,
456
+ "completions/min_terminated_length": 18.0,
457
+ "epoch": 0.076,
458
+ "format_failures": 0.0,
459
+ "grad_norm": 0.5867045521736145,
460
+ "kl": 0.00954199954867363,
461
+ "learning_rate": 1e-06,
462
+ "loss": -0.2047,
463
+ "num_tokens": 234096.0,
464
+ "reward": 0.1666666716337204,
465
+ "reward_std": 0.35634833574295044,
466
+ "step": 19
467
+ },
468
+ {
469
+ "clip_ratio/high_max": 0.0,
470
+ "clip_ratio/high_mean": 0.0,
471
+ "clip_ratio/low_mean": 0.0,
472
+ "clip_ratio/low_min": 0.0,
473
+ "clip_ratio/region_mean": 0.0,
474
+ "completions/clipped_ratio": 0.125,
475
+ "completions/max_length": 169.0,
476
+ "completions/max_terminated_length": 169.0,
477
+ "completions/mean_length": 91.75,
478
+ "completions/mean_terminated_length": 104.85714285714286,
479
+ "completions/min_length": 0.0,
480
+ "completions/min_terminated_length": 66.0,
481
+ "epoch": 0.08,
482
+ "format_failures": 0.0,
483
+ "grad_norm": 2.331188917160034,
484
+ "kl": 0.05314544588327408,
485
+ "learning_rate": 1e-06,
486
+ "loss": 0.048,
487
+ "num_tokens": 243464.0,
488
+ "reward": 0.21875,
489
+ "reward_std": 0.36443448066711426,
490
+ "step": 20
491
+ },
492
+ {
493
+ "clip_ratio/high_max": 0.0,
494
+ "clip_ratio/high_mean": 0.0,
495
+ "clip_ratio/low_mean": 0.0,
496
+ "clip_ratio/low_min": 0.0,
497
+ "clip_ratio/region_mean": 0.0,
498
+ "completions/clipped_ratio": 0.125,
499
+ "completions/max_length": 130.0,
500
+ "completions/max_terminated_length": 130.0,
501
+ "completions/mean_length": 81.25,
502
+ "completions/mean_terminated_length": 92.85714285714286,
503
+ "completions/min_length": 0.0,
504
+ "completions/min_terminated_length": 57.0,
505
+ "epoch": 0.084,
506
+ "format_failures": 0.0,
507
+ "grad_norm": 1.2006300687789917,
508
+ "kl": 0.07363329455256462,
509
+ "learning_rate": 1e-06,
510
+ "loss": 0.0094,
511
+ "num_tokens": 250720.0,
512
+ "reward": 0.21875,
513
+ "reward_std": 0.33905068039894104,
514
+ "step": 21
515
+ },
516
+ {
517
+ "clip_ratio/high_max": 0.0,
518
+ "clip_ratio/high_mean": 0.0,
519
+ "clip_ratio/low_mean": 0.0,
520
+ "clip_ratio/low_min": 0.0,
521
+ "clip_ratio/region_mean": 0.0,
522
+ "completions/clipped_ratio": 0.125,
523
+ "completions/max_length": 197.0,
524
+ "completions/max_terminated_length": 197.0,
525
+ "completions/mean_length": 82.0,
526
+ "completions/mean_terminated_length": 93.71428571428571,
527
+ "completions/min_length": 0.0,
528
+ "completions/min_terminated_length": 27.0,
529
+ "epoch": 0.088,
530
+ "format_failures": 0.0,
531
+ "grad_norm": 1.3736180067062378,
532
+ "kl": 0.04446508176624775,
533
+ "learning_rate": 1e-06,
534
+ "loss": -0.0541,
535
+ "num_tokens": 257944.0,
536
+ "reward": 0.0535714291036129,
537
+ "reward_std": 0.15152288973331451,
538
+ "step": 22
539
+ },
540
+ {
541
+ "clip_ratio/high_max": 0.0,
542
+ "clip_ratio/high_mean": 0.0,
543
+ "clip_ratio/low_mean": 0.0,
544
+ "clip_ratio/low_min": 0.0,
545
+ "clip_ratio/region_mean": 0.0,
546
+ "completions/clipped_ratio": 0.125,
547
+ "completions/max_length": 544.0,
548
+ "completions/max_terminated_length": 544.0,
549
+ "completions/mean_length": 242.75,
550
+ "completions/mean_terminated_length": 277.42857142857144,
551
+ "completions/min_length": 0.0,
552
+ "completions/min_terminated_length": 38.0,
553
+ "epoch": 0.092,
554
+ "format_failures": 0.0,
555
+ "grad_norm": 0.9332400560379028,
556
+ "kl": 0.026759919710457325,
557
+ "learning_rate": 1e-06,
558
+ "loss": -0.0979,
559
+ "num_tokens": 270512.0,
560
+ "reward": 0.17383432388305664,
561
+ "reward_std": 0.5423066020011902,
562
+ "step": 23
563
+ },
564
+ {
565
+ "clip_ratio/high_max": 0.0,
566
+ "clip_ratio/high_mean": 0.0,
567
+ "clip_ratio/low_mean": 0.0,
568
+ "clip_ratio/low_min": 0.0,
569
+ "clip_ratio/region_mean": 0.0,
570
+ "completions/clipped_ratio": 0.125,
571
+ "completions/max_length": 334.0,
572
+ "completions/max_terminated_length": 334.0,
573
+ "completions/mean_length": 193.875,
574
+ "completions/mean_terminated_length": 221.57142857142858,
575
+ "completions/min_length": 0.0,
576
+ "completions/min_terminated_length": 114.0,
577
+ "epoch": 0.096,
578
+ "format_failures": 0.0,
579
+ "grad_norm": 0.5741273164749146,
580
+ "kl": 0.061491173692047596,
581
+ "learning_rate": 1e-06,
582
+ "loss": 0.0724,
583
+ "num_tokens": 279544.0,
584
+ "reward": 0.3214285969734192,
585
+ "reward_std": 0.3162277638912201,
586
+ "step": 24
587
+ },
588
+ {
589
+ "clip_ratio/high_max": 0.0,
590
+ "clip_ratio/high_mean": 0.0,
591
+ "clip_ratio/low_mean": 0.0,
592
+ "clip_ratio/low_min": 0.0,
593
+ "clip_ratio/region_mean": 0.0,
594
+ "completions/clipped_ratio": 0.125,
595
+ "completions/max_length": 191.0,
596
+ "completions/max_terminated_length": 191.0,
597
+ "completions/mean_length": 131.625,
598
+ "completions/mean_terminated_length": 150.42857142857142,
599
+ "completions/min_length": 0.0,
600
+ "completions/min_terminated_length": 109.0,
601
+ "epoch": 0.1,
602
+ "format_failures": 0.0,
603
+ "grad_norm": 0.8438379168510437,
604
+ "kl": 0.10757053177803755,
605
+ "learning_rate": 1e-06,
606
+ "loss": -0.0168,
607
+ "num_tokens": 285872.0,
608
+ "reward": 0.3083333373069763,
609
+ "reward_std": 0.3443548381328583,
610
+ "step": 25
611
+ },
612
+ {
613
+ "clip_ratio/high_max": 0.0,
614
+ "clip_ratio/high_mean": 0.0,
615
+ "clip_ratio/low_mean": 0.0,
616
+ "clip_ratio/low_min": 0.0,
617
+ "clip_ratio/region_mean": 0.0,
618
+ "completions/clipped_ratio": 0.125,
619
+ "completions/max_length": 345.0,
620
+ "completions/max_terminated_length": 345.0,
621
+ "completions/mean_length": 224.0,
622
+ "completions/mean_terminated_length": 256.0,
623
+ "completions/min_length": 0.0,
624
+ "completions/min_terminated_length": 151.0,
625
+ "epoch": 0.104,
626
+ "format_failures": 0.0,
627
+ "grad_norm": 0.6450461149215698,
628
+ "kl": 0.04460714943706989,
629
+ "learning_rate": 1e-06,
630
+ "loss": 0.0276,
631
+ "num_tokens": 293816.0,
632
+ "reward": 0.3494505286216736,
633
+ "reward_std": 0.3268265724182129,
634
+ "step": 26
635
+ },
636
+ {
637
+ "clip_ratio/high_max": 0.0,
638
+ "clip_ratio/high_mean": 0.0,
639
+ "clip_ratio/low_mean": 0.0,
640
+ "clip_ratio/low_min": 0.0,
641
+ "clip_ratio/region_mean": 0.0,
642
+ "completions/clipped_ratio": 0.125,
643
+ "completions/max_length": 210.0,
644
+ "completions/max_terminated_length": 210.0,
645
+ "completions/mean_length": 110.375,
646
+ "completions/mean_terminated_length": 126.14285714285714,
647
+ "completions/min_length": 0.0,
648
+ "completions/min_terminated_length": 68.0,
649
+ "epoch": 0.108,
650
+ "format_failures": 0.0,
651
+ "grad_norm": 0.17123964428901672,
652
+ "kl": 0.09914526715874672,
653
+ "learning_rate": 1e-06,
654
+ "loss": 0.0006,
655
+ "num_tokens": 300160.0,
656
+ "reward": 0.0,
657
+ "reward_std": 0.0,
658
+ "step": 27
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.125,
667
+ "completions/max_length": 128.0,
668
+ "completions/max_terminated_length": 128.0,
669
+ "completions/mean_length": 82.5,
670
+ "completions/mean_terminated_length": 94.28571428571429,
671
+ "completions/min_length": 0.0,
672
+ "completions/min_terminated_length": 86.0,
673
+ "epoch": 0.112,
674
+ "format_failures": 0.0,
675
+ "grad_norm": 0.9953401684761047,
676
+ "kl": 0.18897472321987152,
677
+ "learning_rate": 1e-06,
678
+ "loss": 0.002,
679
+ "num_tokens": 307720.0,
680
+ "reward": 0.0,
681
+ "reward_std": 0.0,
682
+ "step": 28
683
+ },
684
+ {
685
+ "clip_ratio/high_max": 0.0,
686
+ "clip_ratio/high_mean": 0.0,
687
+ "clip_ratio/low_mean": 0.0,
688
+ "clip_ratio/low_min": 0.0,
689
+ "clip_ratio/region_mean": 0.0,
690
+ "completions/clipped_ratio": 0.125,
691
+ "completions/max_length": 335.0,
692
+ "completions/max_terminated_length": 335.0,
693
+ "completions/mean_length": 229.375,
694
+ "completions/mean_terminated_length": 262.14285714285717,
695
+ "completions/min_length": 0.0,
696
+ "completions/min_terminated_length": 187.0,
697
+ "epoch": 0.116,
698
+ "format_failures": 0.0,
699
+ "grad_norm": 2.1179044246673584,
700
+ "kl": 0.013377793598920107,
701
+ "learning_rate": 1e-06,
702
+ "loss": 0.3156,
703
+ "num_tokens": 328920.0,
704
+ "reward": 0.3519230782985687,
705
+ "reward_std": 0.3794543743133545,
706
+ "step": 29
707
+ },
708
+ {
709
+ "clip_ratio/high_max": 0.0,
710
+ "clip_ratio/high_mean": 0.0,
711
+ "clip_ratio/low_mean": 0.0,
712
+ "clip_ratio/low_min": 0.0,
713
+ "clip_ratio/region_mean": 0.0,
714
+ "completions/clipped_ratio": 0.125,
715
+ "completions/max_length": 184.0,
716
+ "completions/max_terminated_length": 184.0,
717
+ "completions/mean_length": 131.375,
718
+ "completions/mean_terminated_length": 150.14285714285714,
719
+ "completions/min_length": 0.0,
720
+ "completions/min_terminated_length": 14.0,
721
+ "epoch": 0.12,
722
+ "format_failures": 0.0,
723
+ "grad_norm": 1.2885483503341675,
724
+ "kl": 0.009146903175860643,
725
+ "learning_rate": 1e-06,
726
+ "loss": -0.0387,
727
+ "num_tokens": 335880.0,
728
+ "reward": 0.25,
729
+ "reward_std": 0.4629100561141968,
730
+ "step": 30
731
+ },
732
+ {
733
+ "clip_ratio/high_max": 0.0,
734
+ "clip_ratio/high_mean": 0.0,
735
+ "clip_ratio/low_mean": 0.0,
736
+ "clip_ratio/low_min": 0.0,
737
+ "clip_ratio/region_mean": 0.0,
738
+ "completions/clipped_ratio": 0.125,
739
+ "completions/max_length": 1936.0,
740
+ "completions/max_terminated_length": 1936.0,
741
+ "completions/mean_length": 410.0,
742
+ "completions/mean_terminated_length": 468.57142857142856,
743
+ "completions/min_length": 0.0,
744
+ "completions/min_terminated_length": 15.0,
745
+ "epoch": 0.124,
746
+ "format_failures": 1.0,
747
+ "grad_norm": 1.5897152423858643,
748
+ "kl": 0.06828754395246506,
749
+ "learning_rate": 1e-06,
750
+ "loss": 0.0215,
751
+ "num_tokens": 358104.0,
752
+ "reward": 0.45494991540908813,
753
+ "reward_std": 0.48848965764045715,
754
+ "step": 31
755
+ },
756
+ {
757
+ "clip_ratio/high_max": 0.0,
758
+ "clip_ratio/high_mean": 0.0,
759
+ "clip_ratio/low_mean": 0.0,
760
+ "clip_ratio/low_min": 0.0,
761
+ "clip_ratio/region_mean": 0.0,
762
+ "completions/clipped_ratio": 0.125,
763
+ "completions/max_length": 366.0,
764
+ "completions/max_terminated_length": 366.0,
765
+ "completions/mean_length": 202.375,
766
+ "completions/mean_terminated_length": 231.28571428571428,
767
+ "completions/min_length": 0.0,
768
+ "completions/min_terminated_length": 122.0,
769
+ "epoch": 0.128,
770
+ "format_failures": 0.0,
771
+ "grad_norm": 0.8364682793617249,
772
+ "kl": 0.12048156931996346,
773
+ "learning_rate": 1e-06,
774
+ "loss": 0.0898,
775
+ "num_tokens": 365656.0,
776
+ "reward": 0.4521104097366333,
777
+ "reward_std": 0.2924821972846985,
778
+ "step": 32
779
+ },
780
+ {
781
+ "clip_ratio/high_max": 0.0,
782
+ "clip_ratio/high_mean": 0.0,
783
+ "clip_ratio/low_mean": 0.0,
784
+ "clip_ratio/low_min": 0.0,
785
+ "clip_ratio/region_mean": 0.0,
786
+ "completions/clipped_ratio": 0.125,
787
+ "completions/max_length": 68.0,
788
+ "completions/max_terminated_length": 68.0,
789
+ "completions/mean_length": 48.875,
790
+ "completions/mean_terminated_length": 55.857142857142854,
791
+ "completions/min_length": 0.0,
792
+ "completions/min_terminated_length": 46.0,
793
+ "epoch": 0.132,
794
+ "format_failures": 0.0,
795
+ "grad_norm": 1.7178492546081543,
796
+ "kl": 0.13572826609015465,
797
+ "learning_rate": 1e-06,
798
+ "loss": -0.0249,
799
+ "num_tokens": 371392.0,
800
+ "reward": 0.125,
801
+ "reward_std": 0.3535533845424652,
802
+ "step": 33
803
+ },
804
+ {
805
+ "clip_ratio/high_max": 0.0,
806
+ "clip_ratio/high_mean": 0.0,
807
+ "clip_ratio/low_mean": 0.0,
808
+ "clip_ratio/low_min": 0.0,
809
+ "clip_ratio/region_mean": 0.0,
810
+ "completions/clipped_ratio": 0.125,
811
+ "completions/max_length": 435.0,
812
+ "completions/max_terminated_length": 435.0,
813
+ "completions/mean_length": 293.5,
814
+ "completions/mean_terminated_length": 335.42857142857144,
815
+ "completions/min_length": 0.0,
816
+ "completions/min_terminated_length": 210.0,
817
+ "epoch": 0.136,
818
+ "format_failures": 1.0,
819
+ "grad_norm": 0.9806227087974548,
820
+ "kl": 0.012222900055348873,
821
+ "learning_rate": 1e-06,
822
+ "loss": 0.3233,
823
+ "num_tokens": 392240.0,
824
+ "reward": 0.47658732533454895,
825
+ "reward_std": 0.4081757962703705,
826
+ "step": 34
827
+ },
828
+ {
829
+ "clip_ratio/high_max": 0.0,
830
+ "clip_ratio/high_mean": 0.0,
831
+ "clip_ratio/low_mean": 0.0,
832
+ "clip_ratio/low_min": 0.0,
833
+ "clip_ratio/region_mean": 0.0,
834
+ "completions/clipped_ratio": 0.125,
835
+ "completions/max_length": 97.0,
836
+ "completions/max_terminated_length": 97.0,
837
+ "completions/mean_length": 64.875,
838
+ "completions/mean_terminated_length": 74.14285714285714,
839
+ "completions/min_length": 0.0,
840
+ "completions/min_terminated_length": 43.0,
841
+ "epoch": 0.14,
842
+ "format_failures": 0.0,
843
+ "grad_norm": 0.8304542303085327,
844
+ "kl": 0.031799230724573135,
845
+ "learning_rate": 1e-06,
846
+ "loss": 0.0113,
847
+ "num_tokens": 396792.0,
848
+ "reward": 0.6166666746139526,
849
+ "reward_std": 0.31773003935813904,
850
+ "step": 35
851
+ },
852
+ {
853
+ "clip_ratio/high_max": 0.0,
854
+ "clip_ratio/high_mean": 0.0,
855
+ "clip_ratio/low_mean": 0.0,
856
+ "clip_ratio/low_min": 0.0,
857
+ "clip_ratio/region_mean": 0.0,
858
+ "completions/clipped_ratio": 0.125,
859
+ "completions/max_length": 265.0,
860
+ "completions/max_terminated_length": 265.0,
861
+ "completions/mean_length": 114.25,
862
+ "completions/mean_terminated_length": 130.57142857142858,
863
+ "completions/min_length": 0.0,
864
+ "completions/min_terminated_length": 39.0,
865
+ "epoch": 0.144,
866
+ "format_failures": 0.0,
867
+ "grad_norm": 1.793579339981079,
868
+ "kl": 0.6158746182918549,
869
+ "learning_rate": 1e-06,
870
+ "loss": 0.0043,
871
+ "num_tokens": 404472.0,
872
+ "reward": 0.0,
873
+ "reward_std": 0.0,
874
+ "step": 36
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.125,
883
+ "completions/max_length": 233.0,
884
+ "completions/max_terminated_length": 233.0,
885
+ "completions/mean_length": 169.75,
886
+ "completions/mean_terminated_length": 194.0,
887
+ "completions/min_length": 0.0,
888
+ "completions/min_terminated_length": 122.0,
889
+ "epoch": 0.148,
890
+ "format_failures": 0.0,
891
+ "grad_norm": 0.3936280906200409,
892
+ "kl": 0.04245052766054869,
893
+ "learning_rate": 1e-06,
894
+ "loss": -0.0153,
895
+ "num_tokens": 411600.0,
896
+ "reward": 0.5294643044471741,
897
+ "reward_std": 0.21430060267448425,
898
+ "step": 37
899
+ },
900
+ {
901
+ "clip_ratio/high_max": 0.0,
902
+ "clip_ratio/high_mean": 0.0,
903
+ "clip_ratio/low_mean": 0.0,
904
+ "clip_ratio/low_min": 0.0,
905
+ "clip_ratio/region_mean": 0.0,
906
+ "completions/clipped_ratio": 0.125,
907
+ "completions/max_length": 152.0,
908
+ "completions/max_terminated_length": 152.0,
909
+ "completions/mean_length": 74.625,
910
+ "completions/mean_terminated_length": 85.28571428571429,
911
+ "completions/min_length": 0.0,
912
+ "completions/min_terminated_length": 59.0,
913
+ "epoch": 0.152,
914
+ "format_failures": 0.0,
915
+ "grad_norm": 0.592628002166748,
916
+ "kl": 0.14406441897153854,
917
+ "learning_rate": 1e-06,
918
+ "loss": -0.0363,
919
+ "num_tokens": 417456.0,
920
+ "reward": 0.0555555559694767,
921
+ "reward_std": 0.11878278106451035,
922
+ "step": 38
923
+ },
924
+ {
925
+ "clip_ratio/high_max": 0.0,
926
+ "clip_ratio/high_mean": 0.0,
927
+ "clip_ratio/low_mean": 0.0,
928
+ "clip_ratio/low_min": 0.0,
929
+ "clip_ratio/region_mean": 0.0,
930
+ "completions/clipped_ratio": 0.125,
931
+ "completions/max_length": 726.0,
932
+ "completions/max_terminated_length": 726.0,
933
+ "completions/mean_length": 330.25,
934
+ "completions/mean_terminated_length": 377.42857142857144,
935
+ "completions/min_length": 0.0,
936
+ "completions/min_terminated_length": 196.0,
937
+ "epoch": 0.156,
938
+ "format_failures": 0.0,
939
+ "grad_norm": 0.7340777516365051,
940
+ "kl": 0.02144559659063816,
941
+ "learning_rate": 1e-06,
942
+ "loss": 0.0557,
943
+ "num_tokens": 439208.0,
944
+ "reward": 0.10000000149011612,
945
+ "reward_std": 0.2828426957130432,
946
+ "step": 39
947
+ },
948
+ {
949
+ "clip_ratio/high_max": 0.0,
950
+ "clip_ratio/high_mean": 0.0,
951
+ "clip_ratio/low_mean": 0.0,
952
+ "clip_ratio/low_min": 0.0,
953
+ "clip_ratio/region_mean": 0.0,
954
+ "completions/clipped_ratio": 0.125,
955
+ "completions/max_length": 625.0,
956
+ "completions/max_terminated_length": 625.0,
957
+ "completions/mean_length": 336.0,
958
+ "completions/mean_terminated_length": 384.0,
959
+ "completions/min_length": 0.0,
960
+ "completions/min_terminated_length": 175.0,
961
+ "epoch": 0.16,
962
+ "format_failures": 0.0,
963
+ "grad_norm": 0.32950443029403687,
964
+ "kl": 0.018678720109164715,
965
+ "learning_rate": 1e-06,
966
+ "loss": 0.1579,
967
+ "num_tokens": 464616.0,
968
+ "reward": 0.68376624584198,
969
+ "reward_std": 0.16028425097465515,
970
+ "step": 40
971
+ },
972
+ {
973
+ "clip_ratio/high_max": 0.0,
974
+ "clip_ratio/high_mean": 0.0,
975
+ "clip_ratio/low_mean": 0.0,
976
+ "clip_ratio/low_min": 0.0,
977
+ "clip_ratio/region_mean": 0.0,
978
+ "completions/clipped_ratio": 0.125,
979
+ "completions/max_length": 91.0,
980
+ "completions/max_terminated_length": 91.0,
981
+ "completions/mean_length": 53.75,
982
+ "completions/mean_terminated_length": 61.42857142857143,
983
+ "completions/min_length": 0.0,
984
+ "completions/min_terminated_length": 39.0,
985
+ "epoch": 0.164,
986
+ "format_failures": 0.0,
987
+ "grad_norm": 15.617924690246582,
988
+ "kl": 2.1802964210510254,
989
+ "learning_rate": 1e-06,
990
+ "loss": -0.1623,
991
+ "num_tokens": 473272.0,
992
+ "reward": 0.4464285671710968,
993
+ "reward_std": 0.49744242429733276,
994
+ "step": 41
995
+ },
996
+ {
997
+ "clip_ratio/high_max": 0.0,
998
+ "clip_ratio/high_mean": 0.0,
999
+ "clip_ratio/low_mean": 0.0,
1000
+ "clip_ratio/low_min": 0.0,
1001
+ "clip_ratio/region_mean": 0.0,
1002
+ "completions/clipped_ratio": 0.125,
1003
+ "completions/max_length": 74.0,
1004
+ "completions/max_terminated_length": 74.0,
1005
+ "completions/mean_length": 62.625,
1006
+ "completions/mean_terminated_length": 71.57142857142857,
1007
+ "completions/min_length": 0.0,
1008
+ "completions/min_terminated_length": 69.0,
1009
+ "epoch": 0.168,
1010
+ "format_failures": 0.0,
1011
+ "grad_norm": 0.5167672634124756,
1012
+ "kl": 0.192179337143898,
1013
+ "learning_rate": 1e-06,
1014
+ "loss": 0.0018,
1015
+ "num_tokens": 477896.0,
1016
+ "reward": 0.0,
1017
+ "reward_std": 0.0,
1018
+ "step": 42
1019
+ },
1020
+ {
1021
+ "clip_ratio/high_max": 0.0,
1022
+ "clip_ratio/high_mean": 0.0,
1023
+ "clip_ratio/low_mean": 0.0,
1024
+ "clip_ratio/low_min": 0.0,
1025
+ "clip_ratio/region_mean": 0.0,
1026
+ "completions/clipped_ratio": 0.125,
1027
+ "completions/max_length": 187.0,
1028
+ "completions/max_terminated_length": 187.0,
1029
+ "completions/mean_length": 124.625,
1030
+ "completions/mean_terminated_length": 142.42857142857142,
1031
+ "completions/min_length": 0.0,
1032
+ "completions/min_terminated_length": 57.0,
1033
+ "epoch": 0.172,
1034
+ "format_failures": 1.0,
1035
+ "grad_norm": 1.7434178590774536,
1036
+ "kl": 0.43839313089847565,
1037
+ "learning_rate": 1e-06,
1038
+ "loss": -0.0081,
1039
+ "num_tokens": 485584.0,
1040
+ "reward": 0.1041666716337204,
1041
+ "reward_std": 0.19795581698417664,
1042
+ "step": 43
1043
+ },
1044
+ {
1045
+ "clip_ratio/high_max": 0.0,
1046
+ "clip_ratio/high_mean": 0.0,
1047
+ "clip_ratio/low_mean": 0.0,
1048
+ "clip_ratio/low_min": 0.0,
1049
+ "clip_ratio/region_mean": 0.0,
1050
+ "completions/clipped_ratio": 0.5,
1051
+ "completions/max_length": 53.0,
1052
+ "completions/max_terminated_length": 53.0,
1053
+ "completions/mean_length": 21.5,
1054
+ "completions/mean_terminated_length": 43.0,
1055
+ "completions/min_length": 0.0,
1056
+ "completions/min_terminated_length": 33.0,
1057
+ "epoch": 0.176,
1058
+ "format_failures": 0.0,
1059
+ "grad_norm": 0.19118274748325348,
1060
+ "kl": 0.021482082083821297,
1061
+ "learning_rate": 1e-06,
1062
+ "loss": 0.0007,
1063
+ "num_tokens": 491072.0,
1064
+ "reward": 0.0,
1065
+ "reward_std": 0.0,
1066
+ "step": 44
1067
+ },
1068
+ {
1069
+ "clip_ratio/high_max": 0.0,
1070
+ "clip_ratio/high_mean": 0.0,
1071
+ "clip_ratio/low_mean": 0.0,
1072
+ "clip_ratio/low_min": 0.0,
1073
+ "clip_ratio/region_mean": 0.0,
1074
+ "completions/clipped_ratio": 0.125,
1075
+ "completions/max_length": 184.0,
1076
+ "completions/max_terminated_length": 184.0,
1077
+ "completions/mean_length": 101.375,
1078
+ "completions/mean_terminated_length": 115.85714285714286,
1079
+ "completions/min_length": 0.0,
1080
+ "completions/min_terminated_length": 64.0,
1081
+ "epoch": 0.18,
1082
+ "format_failures": 0.0,
1083
+ "grad_norm": 0.5414936542510986,
1084
+ "kl": 0.23846322298049927,
1085
+ "learning_rate": 1e-06,
1086
+ "loss": 0.0026,
1087
+ "num_tokens": 501048.0,
1088
+ "reward": 0.0,
1089
+ "reward_std": 0.0,
1090
+ "step": 45
1091
+ },
1092
+ {
1093
+ "clip_ratio/high_max": 0.0,
1094
+ "clip_ratio/high_mean": 0.0,
1095
+ "clip_ratio/low_mean": 0.0,
1096
+ "clip_ratio/low_min": 0.0,
1097
+ "clip_ratio/region_mean": 0.0,
1098
+ "completions/clipped_ratio": 0.125,
1099
+ "completions/max_length": 184.0,
1100
+ "completions/max_terminated_length": 184.0,
1101
+ "completions/mean_length": 105.25,
1102
+ "completions/mean_terminated_length": 120.28571428571429,
1103
+ "completions/min_length": 0.0,
1104
+ "completions/min_terminated_length": 60.0,
1105
+ "epoch": 0.184,
1106
+ "format_failures": 0.0,
1107
+ "grad_norm": 1.3124736547470093,
1108
+ "kl": 0.02640421688556671,
1109
+ "learning_rate": 1e-06,
1110
+ "loss": 0.0418,
1111
+ "num_tokens": 509688.0,
1112
+ "reward": 0.3333333432674408,
1113
+ "reward_std": 0.35634833574295044,
1114
+ "step": 46
1115
+ },
1116
+ {
1117
+ "clip_ratio/high_max": 0.0,
1118
+ "clip_ratio/high_mean": 0.0,
1119
+ "clip_ratio/low_mean": 0.0,
1120
+ "clip_ratio/low_min": 0.0,
1121
+ "clip_ratio/region_mean": 0.0,
1122
+ "completions/clipped_ratio": 0.125,
1123
+ "completions/max_length": 308.0,
1124
+ "completions/max_terminated_length": 308.0,
1125
+ "completions/mean_length": 222.625,
1126
+ "completions/mean_terminated_length": 254.42857142857142,
1127
+ "completions/min_length": 0.0,
1128
+ "completions/min_terminated_length": 140.0,
1129
+ "epoch": 0.188,
1130
+ "format_failures": 0.0,
1131
+ "grad_norm": 0.6642023324966431,
1132
+ "kl": 0.038137754425406456,
1133
+ "learning_rate": 1e-06,
1134
+ "loss": -0.0281,
1135
+ "num_tokens": 516136.0,
1136
+ "reward": 0.5722222328186035,
1137
+ "reward_std": 0.3752013146877289,
1138
+ "step": 47
1139
+ },
1140
+ {
1141
+ "clip_ratio/high_max": 0.0,
1142
+ "clip_ratio/high_mean": 0.0,
1143
+ "clip_ratio/low_mean": 0.0,
1144
+ "clip_ratio/low_min": 0.0,
1145
+ "clip_ratio/region_mean": 0.0,
1146
+ "completions/clipped_ratio": 0.125,
1147
+ "completions/max_length": 220.0,
1148
+ "completions/max_terminated_length": 220.0,
1149
+ "completions/mean_length": 139.0,
1150
+ "completions/mean_terminated_length": 158.85714285714286,
1151
+ "completions/min_length": 0.0,
1152
+ "completions/min_terminated_length": 52.0,
1153
+ "epoch": 0.192,
1154
+ "format_failures": 0.0,
1155
+ "grad_norm": 1.5801048278808594,
1156
+ "kl": 0.31588232330977917,
1157
+ "learning_rate": 1e-06,
1158
+ "loss": -0.0356,
1159
+ "num_tokens": 525216.0,
1160
+ "reward": 0.16785714030265808,
1161
+ "reward_std": 0.3453776240348816,
1162
+ "step": 48
1163
+ },
1164
+ {
1165
+ "clip_ratio/high_max": 0.0,
1166
+ "clip_ratio/high_mean": 0.0,
1167
+ "clip_ratio/low_mean": 0.0,
1168
+ "clip_ratio/low_min": 0.0,
1169
+ "clip_ratio/region_mean": 0.0,
1170
+ "completions/clipped_ratio": 0.125,
1171
+ "completions/max_length": 142.0,
1172
+ "completions/max_terminated_length": 142.0,
1173
+ "completions/mean_length": 103.0,
1174
+ "completions/mean_terminated_length": 117.71428571428571,
1175
+ "completions/min_length": 0.0,
1176
+ "completions/min_terminated_length": 72.0,
1177
+ "epoch": 0.196,
1178
+ "format_failures": 0.0,
1179
+ "grad_norm": 1.5228773355484009,
1180
+ "kl": 0.3656068593263626,
1181
+ "learning_rate": 1e-06,
1182
+ "loss": -0.0299,
1183
+ "num_tokens": 532920.0,
1184
+ "reward": 0.0833333358168602,
1185
+ "reward_std": 0.15430335700511932,
1186
+ "step": 49
1187
+ },
1188
+ {
1189
+ "clip_ratio/high_max": 0.0,
1190
+ "clip_ratio/high_mean": 0.0,
1191
+ "clip_ratio/low_mean": 0.0,
1192
+ "clip_ratio/low_min": 0.0,
1193
+ "clip_ratio/region_mean": 0.0,
1194
+ "completions/clipped_ratio": 0.125,
1195
+ "completions/max_length": 167.0,
1196
+ "completions/max_terminated_length": 167.0,
1197
+ "completions/mean_length": 58.625,
1198
+ "completions/mean_terminated_length": 67.0,
1199
+ "completions/min_length": 0.0,
1200
+ "completions/min_terminated_length": 23.0,
1201
+ "epoch": 0.2,
1202
+ "format_failures": 0.0,
1203
+ "grad_norm": 2.357253074645996,
1204
+ "kl": 0.021084215957671404,
1205
+ "learning_rate": 1e-06,
1206
+ "loss": -0.1241,
1207
+ "num_tokens": 539800.0,
1208
+ "reward": 0.24715909361839294,
1209
+ "reward_std": 0.3969031274318695,
1210
+ "step": 50
1211
+ },
1212
+ {
1213
+ "clip_ratio/high_max": 0.0,
1214
+ "clip_ratio/high_mean": 0.0,
1215
+ "clip_ratio/low_mean": 0.0,
1216
+ "clip_ratio/low_min": 0.0,
1217
+ "clip_ratio/region_mean": 0.0,
1218
+ "completions/clipped_ratio": 0.375,
1219
+ "completions/max_length": 79.0,
1220
+ "completions/max_terminated_length": 79.0,
1221
+ "completions/mean_length": 47.5,
1222
+ "completions/mean_terminated_length": 76.0,
1223
+ "completions/min_length": 0.0,
1224
+ "completions/min_terminated_length": 74.0,
1225
+ "epoch": 0.204,
1226
+ "format_failures": 0.0,
1227
+ "grad_norm": 3.9780025482177734,
1228
+ "kl": 0.04299665614962578,
1229
+ "learning_rate": 1e-06,
1230
+ "loss": -0.0066,
1231
+ "num_tokens": 547080.0,
1232
+ "reward": 0.75,
1233
+ "reward_std": 0.38832157850265503,
1234
+ "step": 51
1235
+ },
1236
+ {
1237
+ "clip_ratio/high_max": 0.0,
1238
+ "clip_ratio/high_mean": 0.0,
1239
+ "clip_ratio/low_mean": 0.0,
1240
+ "clip_ratio/low_min": 0.0,
1241
+ "clip_ratio/region_mean": 0.0,
1242
+ "completions/clipped_ratio": 0.125,
1243
+ "completions/max_length": 377.0,
1244
+ "completions/max_terminated_length": 377.0,
1245
+ "completions/mean_length": 245.0,
1246
+ "completions/mean_terminated_length": 280.0,
1247
+ "completions/min_length": 0.0,
1248
+ "completions/min_terminated_length": 236.0,
1249
+ "epoch": 0.208,
1250
+ "format_failures": 0.0,
1251
+ "grad_norm": 0.824322521686554,
1252
+ "kl": 0.04343542829155922,
1253
+ "learning_rate": 1e-06,
1254
+ "loss": -0.394,
1255
+ "num_tokens": 565368.0,
1256
+ "reward": 0.3678571581840515,
1257
+ "reward_std": 0.38505232334136963,
1258
+ "step": 52
1259
+ },
1260
+ {
1261
+ "clip_ratio/high_max": 0.0,
1262
+ "clip_ratio/high_mean": 0.0,
1263
+ "clip_ratio/low_mean": 0.0,
1264
+ "clip_ratio/low_min": 0.0,
1265
+ "clip_ratio/region_mean": 0.0,
1266
+ "completions/clipped_ratio": 0.125,
1267
+ "completions/max_length": 313.0,
1268
+ "completions/max_terminated_length": 313.0,
1269
+ "completions/mean_length": 223.5,
1270
+ "completions/mean_terminated_length": 255.42857142857142,
1271
+ "completions/min_length": 0.0,
1272
+ "completions/min_terminated_length": 229.0,
1273
+ "epoch": 0.212,
1274
+ "format_failures": 0.0,
1275
+ "grad_norm": 0.8966130018234253,
1276
+ "kl": 0.022847690619528294,
1277
+ "learning_rate": 1e-06,
1278
+ "loss": 0.0523,
1279
+ "num_tokens": 584552.0,
1280
+ "reward": 0.09375,
1281
+ "reward_std": 0.2651650309562683,
1282
+ "step": 53
1283
+ },
1284
+ {
1285
+ "clip_ratio/high_max": 0.0,
1286
+ "clip_ratio/high_mean": 0.0,
1287
+ "clip_ratio/low_mean": 0.0,
1288
+ "clip_ratio/low_min": 0.0,
1289
+ "clip_ratio/region_mean": 0.0,
1290
+ "completions/clipped_ratio": 0.125,
1291
+ "completions/max_length": 463.0,
1292
+ "completions/max_terminated_length": 463.0,
1293
+ "completions/mean_length": 301.75,
1294
+ "completions/mean_terminated_length": 344.85714285714283,
1295
+ "completions/min_length": 0.0,
1296
+ "completions/min_terminated_length": 222.0,
1297
+ "epoch": 0.216,
1298
+ "format_failures": 0.0,
1299
+ "grad_norm": 0.5948707461357117,
1300
+ "kl": 0.0344517957419157,
1301
+ "learning_rate": 1e-06,
1302
+ "loss": -0.0372,
1303
+ "num_tokens": 605144.0,
1304
+ "reward": 0.3611606955528259,
1305
+ "reward_std": 0.24707795679569244,
1306
+ "step": 54
1307
+ },
1308
+ {
1309
+ "clip_ratio/high_max": 0.0,
1310
+ "clip_ratio/high_mean": 0.0,
1311
+ "clip_ratio/low_mean": 0.0,
1312
+ "clip_ratio/low_min": 0.0,
1313
+ "clip_ratio/region_mean": 0.0,
1314
+ "completions/clipped_ratio": 0.125,
1315
+ "completions/max_length": 183.0,
1316
+ "completions/max_terminated_length": 183.0,
1317
+ "completions/mean_length": 99.75,
1318
+ "completions/mean_terminated_length": 114.0,
1319
+ "completions/min_length": 0.0,
1320
+ "completions/min_terminated_length": 69.0,
1321
+ "epoch": 0.22,
1322
+ "format_failures": 0.0,
1323
+ "grad_norm": 2.431544065475464,
1324
+ "kl": 0.39844033867120743,
1325
+ "learning_rate": 1e-06,
1326
+ "loss": 0.0435,
1327
+ "num_tokens": 612304.0,
1328
+ "reward": 0.3895833492279053,
1329
+ "reward_std": 0.4363391399383545,
1330
+ "step": 55
1331
+ },
1332
+ {
1333
+ "clip_ratio/high_max": 0.0,
1334
+ "clip_ratio/high_mean": 0.0,
1335
+ "clip_ratio/low_mean": 0.0,
1336
+ "clip_ratio/low_min": 0.0,
1337
+ "clip_ratio/region_mean": 0.0,
1338
+ "completions/clipped_ratio": 0.125,
1339
+ "completions/max_length": 189.0,
1340
+ "completions/max_terminated_length": 189.0,
1341
+ "completions/mean_length": 158.875,
1342
+ "completions/mean_terminated_length": 181.57142857142858,
1343
+ "completions/min_length": 0.0,
1344
+ "completions/min_terminated_length": 170.0,
1345
+ "epoch": 0.224,
1346
+ "format_failures": 0.0,
1347
+ "grad_norm": 3.419069528579712,
1348
+ "kl": 0.18863588571548462,
1349
+ "learning_rate": 1e-06,
1350
+ "loss": -0.0102,
1351
+ "num_tokens": 619832.0,
1352
+ "reward": 0.3333333432674408,
1353
+ "reward_std": 0.4714045226573944,
1354
+ "step": 56
1355
+ },
1356
+ {
1357
+ "clip_ratio/high_max": 0.0,
1358
+ "clip_ratio/high_mean": 0.0,
1359
+ "clip_ratio/low_mean": 0.0,
1360
+ "clip_ratio/low_min": 0.0,
1361
+ "clip_ratio/region_mean": 0.0,
1362
+ "completions/clipped_ratio": 0.125,
1363
+ "completions/max_length": 560.0,
1364
+ "completions/max_terminated_length": 560.0,
1365
+ "completions/mean_length": 250.5,
1366
+ "completions/mean_terminated_length": 286.2857142857143,
1367
+ "completions/min_length": 0.0,
1368
+ "completions/min_terminated_length": 112.0,
1369
+ "epoch": 0.228,
1370
+ "format_failures": 0.0,
1371
+ "grad_norm": 0.0427495501935482,
1372
+ "kl": 0.06415125727653503,
1373
+ "learning_rate": 1e-06,
1374
+ "loss": 0.0002,
1375
+ "num_tokens": 632688.0,
1376
+ "reward": 0.0,
1377
+ "reward_std": 0.0,
1378
+ "step": 57
1379
+ },
1380
+ {
1381
+ "clip_ratio/high_max": 0.0,
1382
+ "clip_ratio/high_mean": 0.0,
1383
+ "clip_ratio/low_mean": 0.0,
1384
+ "clip_ratio/low_min": 0.0,
1385
+ "clip_ratio/region_mean": 0.0,
1386
+ "completions/clipped_ratio": 0.125,
1387
+ "completions/max_length": 95.0,
1388
+ "completions/max_terminated_length": 95.0,
1389
+ "completions/mean_length": 62.0,
1390
+ "completions/mean_terminated_length": 70.85714285714286,
1391
+ "completions/min_length": 0.0,
1392
+ "completions/min_terminated_length": 55.0,
1393
+ "epoch": 0.232,
1394
+ "format_failures": 0.0,
1395
+ "grad_norm": 1.9774202108383179,
1396
+ "kl": 0.05197676923125982,
1397
+ "learning_rate": 1e-06,
1398
+ "loss": -0.0204,
1399
+ "num_tokens": 637680.0,
1400
+ "reward": 0.125,
1401
+ "reward_std": 0.3535533845424652,
1402
+ "step": 58
1403
+ },
1404
+ {
1405
+ "clip_ratio/high_max": 0.0,
1406
+ "clip_ratio/high_mean": 0.0,
1407
+ "clip_ratio/low_mean": 0.0,
1408
+ "clip_ratio/low_min": 0.0,
1409
+ "clip_ratio/region_mean": 0.0,
1410
+ "completions/clipped_ratio": 0.125,
1411
+ "completions/max_length": 1235.0,
1412
+ "completions/max_terminated_length": 1235.0,
1413
+ "completions/mean_length": 317.5,
1414
+ "completions/mean_terminated_length": 362.85714285714283,
1415
+ "completions/min_length": 0.0,
1416
+ "completions/min_terminated_length": 29.0,
1417
+ "epoch": 0.236,
1418
+ "format_failures": 0.0,
1419
+ "grad_norm": 0.3588317036628723,
1420
+ "kl": 0.008119639242067933,
1421
+ "learning_rate": 1e-06,
1422
+ "loss": 0.0679,
1423
+ "num_tokens": 662240.0,
1424
+ "reward": 0.0625,
1425
+ "reward_std": 0.1767766922712326,
1426
+ "step": 59
1427
+ },
1428
+ {
1429
+ "clip_ratio/high_max": 0.0,
1430
+ "clip_ratio/high_mean": 0.0,
1431
+ "clip_ratio/low_mean": 0.0,
1432
+ "clip_ratio/low_min": 0.0,
1433
+ "clip_ratio/region_mean": 0.0,
1434
+ "completions/clipped_ratio": 0.125,
1435
+ "completions/max_length": 482.0,
1436
+ "completions/max_terminated_length": 482.0,
1437
+ "completions/mean_length": 302.625,
1438
+ "completions/mean_terminated_length": 345.85714285714283,
1439
+ "completions/min_length": 0.0,
1440
+ "completions/min_terminated_length": 224.0,
1441
+ "epoch": 0.24,
1442
+ "format_failures": 0.0,
1443
+ "grad_norm": 0.43694156408309937,
1444
+ "kl": 0.13442928344011307,
1445
+ "learning_rate": 1e-06,
1446
+ "loss": 0.035,
1447
+ "num_tokens": 671136.0,
1448
+ "reward": 0.4389880895614624,
1449
+ "reward_std": 0.314676970243454,
1450
+ "step": 60
1451
+ },
1452
+ {
1453
+ "clip_ratio/high_max": 0.0,
1454
+ "clip_ratio/high_mean": 0.0,
1455
+ "clip_ratio/low_mean": 0.0,
1456
+ "clip_ratio/low_min": 0.0,
1457
+ "clip_ratio/region_mean": 0.0,
1458
+ "completions/clipped_ratio": 0.125,
1459
+ "completions/max_length": 155.0,
1460
+ "completions/max_terminated_length": 155.0,
1461
+ "completions/mean_length": 76.625,
1462
+ "completions/mean_terminated_length": 87.57142857142857,
1463
+ "completions/min_length": 0.0,
1464
+ "completions/min_terminated_length": 62.0,
1465
+ "epoch": 0.244,
1466
+ "format_failures": 0.0,
1467
+ "grad_norm": 2.0356831550598145,
1468
+ "kl": 0.10412658751010895,
1469
+ "learning_rate": 1e-06,
1470
+ "loss": 0.0941,
1471
+ "num_tokens": 678296.0,
1472
+ "reward": 0.2856481671333313,
1473
+ "reward_std": 0.44585946202278137,
1474
+ "step": 61
1475
+ },
1476
+ {
1477
+ "clip_ratio/high_max": 0.0,
1478
+ "clip_ratio/high_mean": 0.0,
1479
+ "clip_ratio/low_mean": 0.0,
1480
+ "clip_ratio/low_min": 0.0,
1481
+ "clip_ratio/region_mean": 0.0,
1482
+ "completions/clipped_ratio": 0.125,
1483
+ "completions/max_length": 526.0,
1484
+ "completions/max_terminated_length": 526.0,
1485
+ "completions/mean_length": 302.125,
1486
+ "completions/mean_terminated_length": 345.2857142857143,
1487
+ "completions/min_length": 0.0,
1488
+ "completions/min_terminated_length": 173.0,
1489
+ "epoch": 0.248,
1490
+ "format_failures": 0.0,
1491
+ "grad_norm": 0.2828364074230194,
1492
+ "kl": 0.06026838719844818,
1493
+ "learning_rate": 1e-06,
1494
+ "loss": 0.0307,
1495
+ "num_tokens": 688328.0,
1496
+ "reward": 0.37730082869529724,
1497
+ "reward_std": 0.22057875990867615,
1498
+ "step": 62
1499
+ },
1500
+ {
1501
+ "clip_ratio/high_max": 0.0,
1502
+ "clip_ratio/high_mean": 0.0,
1503
+ "clip_ratio/low_mean": 0.0,
1504
+ "clip_ratio/low_min": 0.0,
1505
+ "clip_ratio/region_mean": 0.0,
1506
+ "completions/clipped_ratio": 0.125,
1507
+ "completions/max_length": 1564.0,
1508
+ "completions/max_terminated_length": 1564.0,
1509
+ "completions/mean_length": 436.5,
1510
+ "completions/mean_terminated_length": 498.85714285714283,
1511
+ "completions/min_length": 0.0,
1512
+ "completions/min_terminated_length": 278.0,
1513
+ "epoch": 0.252,
1514
+ "format_failures": 0.0,
1515
+ "grad_norm": 0.460735559463501,
1516
+ "kl": 0.03187366481870413,
1517
+ "learning_rate": 1e-06,
1518
+ "loss": 0.3464,
1519
+ "num_tokens": 710552.0,
1520
+ "reward": 0.7753968238830566,
1521
+ "reward_std": 0.3274153470993042,
1522
+ "step": 63
1523
+ },
1524
+ {
1525
+ "clip_ratio/high_max": 0.0,
1526
+ "clip_ratio/high_mean": 0.0,
1527
+ "clip_ratio/low_mean": 0.0,
1528
+ "clip_ratio/low_min": 0.0,
1529
+ "clip_ratio/region_mean": 0.0,
1530
+ "completions/clipped_ratio": 0.125,
1531
+ "completions/max_length": 183.0,
1532
+ "completions/max_terminated_length": 183.0,
1533
+ "completions/mean_length": 112.0,
1534
+ "completions/mean_terminated_length": 128.0,
1535
+ "completions/min_length": 0.0,
1536
+ "completions/min_terminated_length": 77.0,
1537
+ "epoch": 0.256,
1538
+ "format_failures": 0.0,
1539
+ "grad_norm": 0.9710547924041748,
1540
+ "kl": 0.056045059114694595,
1541
+ "learning_rate": 1e-06,
1542
+ "loss": 0.397,
1543
+ "num_tokens": 730936.0,
1544
+ "reward": 0.4721861779689789,
1545
+ "reward_std": 0.31307727098464966,
1546
+ "step": 64
1547
+ },
1548
+ {
1549
+ "clip_ratio/high_max": 0.0,
1550
+ "clip_ratio/high_mean": 0.0,
1551
+ "clip_ratio/low_mean": 0.0,
1552
+ "clip_ratio/low_min": 0.0,
1553
+ "clip_ratio/region_mean": 0.0,
1554
+ "completions/clipped_ratio": 0.125,
1555
+ "completions/max_length": 282.0,
1556
+ "completions/max_terminated_length": 282.0,
1557
+ "completions/mean_length": 181.25,
1558
+ "completions/mean_terminated_length": 207.14285714285714,
1559
+ "completions/min_length": 0.0,
1560
+ "completions/min_terminated_length": 115.0,
1561
+ "epoch": 0.26,
1562
+ "format_failures": 0.0,
1563
+ "grad_norm": 0.5494914054870605,
1564
+ "kl": 0.17688407003879547,
1565
+ "learning_rate": 1e-06,
1566
+ "loss": 0.0636,
1567
+ "num_tokens": 737640.0,
1568
+ "reward": 0.4345238208770752,
1569
+ "reward_std": 0.24914170801639557,
1570
+ "step": 65
1571
+ },
1572
+ {
1573
+ "clip_ratio/high_max": 0.0,
1574
+ "clip_ratio/high_mean": 0.0,
1575
+ "clip_ratio/low_mean": 0.0,
1576
+ "clip_ratio/low_min": 0.0,
1577
+ "clip_ratio/region_mean": 0.0,
1578
+ "completions/clipped_ratio": 0.125,
1579
+ "completions/max_length": 782.0,
1580
+ "completions/max_terminated_length": 782.0,
1581
+ "completions/mean_length": 442.625,
1582
+ "completions/mean_terminated_length": 505.85714285714283,
1583
+ "completions/min_length": 0.0,
1584
+ "completions/min_terminated_length": 371.0,
1585
+ "epoch": 0.264,
1586
+ "format_failures": 0.0,
1587
+ "grad_norm": 0.2535926103591919,
1588
+ "kl": 0.027257385663688183,
1589
+ "learning_rate": 1e-06,
1590
+ "loss": 0.0455,
1591
+ "num_tokens": 749424.0,
1592
+ "reward": 0.4035714268684387,
1593
+ "reward_std": 0.21609759330749512,
1594
+ "step": 66
1595
+ },
1596
+ {
1597
+ "clip_ratio/high_max": 0.0,
1598
+ "clip_ratio/high_mean": 0.0,
1599
+ "clip_ratio/low_mean": 0.0,
1600
+ "clip_ratio/low_min": 0.0,
1601
+ "clip_ratio/region_mean": 0.0,
1602
+ "completions/clipped_ratio": 0.125,
1603
+ "completions/max_length": 536.0,
1604
+ "completions/max_terminated_length": 536.0,
1605
+ "completions/mean_length": 360.375,
1606
+ "completions/mean_terminated_length": 411.85714285714283,
1607
+ "completions/min_length": 0.0,
1608
+ "completions/min_terminated_length": 286.0,
1609
+ "epoch": 0.268,
1610
+ "format_failures": 0.0,
1611
+ "grad_norm": 0.2211979627609253,
1612
+ "kl": 0.03450755029916763,
1613
+ "learning_rate": 1e-06,
1614
+ "loss": -0.0173,
1615
+ "num_tokens": 758368.0,
1616
+ "reward": 0.26453372836112976,
1617
+ "reward_std": 0.18241503834724426,
1618
+ "step": 67
1619
+ },
1620
+ {
1621
+ "clip_ratio/high_max": 0.0,
1622
+ "clip_ratio/high_mean": 0.0,
1623
+ "clip_ratio/low_mean": 0.0,
1624
+ "clip_ratio/low_min": 0.0,
1625
+ "clip_ratio/region_mean": 0.0,
1626
+ "completions/clipped_ratio": 0.125,
1627
+ "completions/max_length": 324.0,
1628
+ "completions/max_terminated_length": 324.0,
1629
+ "completions/mean_length": 171.0,
1630
+ "completions/mean_terminated_length": 195.42857142857142,
1631
+ "completions/min_length": 0.0,
1632
+ "completions/min_terminated_length": 64.0,
1633
+ "epoch": 0.272,
1634
+ "format_failures": 0.0,
1635
+ "grad_norm": 1.1518077850341797,
1636
+ "kl": 0.7764540687203407,
1637
+ "learning_rate": 1e-06,
1638
+ "loss": 0.0543,
1639
+ "num_tokens": 769808.0,
1640
+ "reward": 0.20863094925880432,
1641
+ "reward_std": 0.1800907701253891,
1642
+ "step": 68
1643
+ },
1644
+ {
1645
+ "clip_ratio/high_max": 0.0,
1646
+ "clip_ratio/high_mean": 0.0,
1647
+ "clip_ratio/low_mean": 0.0,
1648
+ "clip_ratio/low_min": 0.0,
1649
+ "clip_ratio/region_mean": 0.0,
1650
+ "completions/clipped_ratio": 0.125,
1651
+ "completions/max_length": 255.0,
1652
+ "completions/max_terminated_length": 255.0,
1653
+ "completions/mean_length": 146.875,
1654
+ "completions/mean_terminated_length": 167.85714285714286,
1655
+ "completions/min_length": 0.0,
1656
+ "completions/min_terminated_length": 90.0,
1657
+ "epoch": 0.276,
1658
+ "format_failures": 0.0,
1659
+ "grad_norm": 1.4199182987213135,
1660
+ "kl": 0.03853025659918785,
1661
+ "learning_rate": 1e-06,
1662
+ "loss": -0.3424,
1663
+ "num_tokens": 787960.0,
1664
+ "reward": 0.29305553436279297,
1665
+ "reward_std": 0.3426187038421631,
1666
+ "step": 69
1667
+ },
1668
+ {
1669
+ "clip_ratio/high_max": 0.0,
1670
+ "clip_ratio/high_mean": 0.0,
1671
+ "clip_ratio/low_mean": 0.0,
1672
+ "clip_ratio/low_min": 0.0,
1673
+ "clip_ratio/region_mean": 0.0,
1674
+ "completions/clipped_ratio": 0.125,
1675
+ "completions/max_length": 497.0,
1676
+ "completions/max_terminated_length": 497.0,
1677
+ "completions/mean_length": 260.25,
1678
+ "completions/mean_terminated_length": 297.42857142857144,
1679
+ "completions/min_length": 0.0,
1680
+ "completions/min_terminated_length": 193.0,
1681
+ "epoch": 0.28,
1682
+ "format_failures": 0.0,
1683
+ "grad_norm": 0.95790034532547,
1684
+ "kl": 0.04087948985397816,
1685
+ "learning_rate": 1e-06,
1686
+ "loss": -0.0072,
1687
+ "num_tokens": 808840.0,
1688
+ "reward": 0.30420100688934326,
1689
+ "reward_std": 0.21492989361286163,
1690
+ "step": 70
1691
+ },
1692
+ {
1693
+ "clip_ratio/high_max": 0.0,
1694
+ "clip_ratio/high_mean": 0.0,
1695
+ "clip_ratio/low_mean": 0.0,
1696
+ "clip_ratio/low_min": 0.0,
1697
+ "clip_ratio/region_mean": 0.0,
1698
+ "completions/clipped_ratio": 0.125,
1699
+ "completions/max_length": 457.0,
1700
+ "completions/max_terminated_length": 457.0,
1701
+ "completions/mean_length": 277.125,
1702
+ "completions/mean_terminated_length": 316.7142857142857,
1703
+ "completions/min_length": 0.0,
1704
+ "completions/min_terminated_length": 222.0,
1705
+ "epoch": 0.284,
1706
+ "format_failures": 0.0,
1707
+ "grad_norm": 0.6122504472732544,
1708
+ "kl": 0.043809447437524796,
1709
+ "learning_rate": 1e-06,
1710
+ "loss": 0.0844,
1711
+ "num_tokens": 820184.0,
1712
+ "reward": 0.4826388657093048,
1713
+ "reward_std": 0.40854451060295105,
1714
+ "step": 71
1715
+ },
1716
+ {
1717
+ "clip_ratio/high_max": 0.0,
1718
+ "clip_ratio/high_mean": 0.0,
1719
+ "clip_ratio/low_mean": 0.0,
1720
+ "clip_ratio/low_min": 0.0,
1721
+ "clip_ratio/region_mean": 0.0,
1722
+ "completions/clipped_ratio": 0.625,
1723
+ "completions/max_length": 130.0,
1724
+ "completions/max_terminated_length": 130.0,
1725
+ "completions/mean_length": 31.875,
1726
+ "completions/mean_terminated_length": 85.0,
1727
+ "completions/min_length": 0.0,
1728
+ "completions/min_terminated_length": 62.0,
1729
+ "epoch": 0.288,
1730
+ "format_failures": 0.0,
1731
+ "grad_norm": 3.6429221630096436,
1732
+ "kl": 0.14530150592327118,
1733
+ "learning_rate": 1e-06,
1734
+ "loss": -0.3358,
1735
+ "num_tokens": 828280.0,
1736
+ "reward": 0.625,
1737
+ "reward_std": 0.41547447443008423,
1738
+ "step": 72
1739
+ },
1740
+ {
1741
+ "clip_ratio/high_max": 0.0,
1742
+ "clip_ratio/high_mean": 0.0,
1743
+ "clip_ratio/low_mean": 0.0,
1744
+ "clip_ratio/low_min": 0.0,
1745
+ "clip_ratio/region_mean": 0.0,
1746
+ "completions/clipped_ratio": 0.125,
1747
+ "completions/max_length": 2028.0,
1748
+ "completions/max_terminated_length": 2028.0,
1749
+ "completions/mean_length": 568.375,
1750
+ "completions/mean_terminated_length": 649.5714285714286,
1751
+ "completions/min_length": 0.0,
1752
+ "completions/min_terminated_length": 233.0,
1753
+ "epoch": 0.292,
1754
+ "format_failures": 0.0,
1755
+ "grad_norm": 0.340351402759552,
1756
+ "kl": 0.04210643842816353,
1757
+ "learning_rate": 1e-06,
1758
+ "loss": 0.1705,
1759
+ "num_tokens": 850536.0,
1760
+ "reward": 0.255952388048172,
1761
+ "reward_std": 0.28989601135253906,
1762
+ "step": 73
1763
+ },
1764
+ {
1765
+ "clip_ratio/high_max": 0.0,
1766
+ "clip_ratio/high_mean": 0.0,
1767
+ "clip_ratio/low_mean": 0.0,
1768
+ "clip_ratio/low_min": 0.0,
1769
+ "clip_ratio/region_mean": 0.0,
1770
+ "completions/clipped_ratio": 0.125,
1771
+ "completions/max_length": 298.0,
1772
+ "completions/max_terminated_length": 298.0,
1773
+ "completions/mean_length": 243.5,
1774
+ "completions/mean_terminated_length": 278.2857142857143,
1775
+ "completions/min_length": 0.0,
1776
+ "completions/min_terminated_length": 271.0,
1777
+ "epoch": 0.296,
1778
+ "format_failures": 0.0,
1779
+ "grad_norm": 16.964588165283203,
1780
+ "kl": 2.3798545002937317,
1781
+ "learning_rate": 1e-06,
1782
+ "loss": 0.0303,
1783
+ "num_tokens": 861552.0,
1784
+ "reward": 0.5833333730697632,
1785
+ "reward_std": 0.4629100263118744,
1786
+ "step": 74
1787
+ },
1788
+ {
1789
+ "clip_ratio/high_max": 0.0,
1790
+ "clip_ratio/high_mean": 0.0,
1791
+ "clip_ratio/low_mean": 0.0,
1792
+ "clip_ratio/low_min": 0.0,
1793
+ "clip_ratio/region_mean": 0.0,
1794
+ "completions/clipped_ratio": 0.125,
1795
+ "completions/max_length": 545.0,
1796
+ "completions/max_terminated_length": 545.0,
1797
+ "completions/mean_length": 225.375,
1798
+ "completions/mean_terminated_length": 257.57142857142856,
1799
+ "completions/min_length": 0.0,
1800
+ "completions/min_terminated_length": 163.0,
1801
+ "epoch": 0.3,
1802
+ "format_failures": 0.0,
1803
+ "grad_norm": 0.23826824128627777,
1804
+ "kl": 0.033232852816581726,
1805
+ "learning_rate": 1e-06,
1806
+ "loss": 0.0132,
1807
+ "num_tokens": 872312.0,
1808
+ "reward": 0.20226716995239258,
1809
+ "reward_std": 0.15315401554107666,
1810
+ "step": 75
1811
+ },
1812
+ {
1813
+ "clip_ratio/high_max": 0.0,
1814
+ "clip_ratio/high_mean": 0.0,
1815
+ "clip_ratio/low_mean": 0.0,
1816
+ "clip_ratio/low_min": 0.0,
1817
+ "clip_ratio/region_mean": 0.0,
1818
+ "completions/clipped_ratio": 0.125,
1819
+ "completions/max_length": 222.0,
1820
+ "completions/max_terminated_length": 222.0,
1821
+ "completions/mean_length": 145.75,
1822
+ "completions/mean_terminated_length": 166.57142857142858,
1823
+ "completions/min_length": 0.0,
1824
+ "completions/min_terminated_length": 62.0,
1825
+ "epoch": 0.304,
1826
+ "format_failures": 0.0,
1827
+ "grad_norm": 1.913487434387207,
1828
+ "kl": 1.3894951939582825,
1829
+ "learning_rate": 1e-06,
1830
+ "loss": -0.0165,
1831
+ "num_tokens": 879880.0,
1832
+ "reward": 0.17698413133621216,
1833
+ "reward_std": 0.1964721530675888,
1834
+ "step": 76
1835
+ },
1836
+ {
1837
+ "clip_ratio/high_max": 0.0,
1838
+ "clip_ratio/high_mean": 0.0,
1839
+ "clip_ratio/low_mean": 0.0,
1840
+ "clip_ratio/low_min": 0.0,
1841
+ "clip_ratio/region_mean": 0.0,
1842
+ "completions/clipped_ratio": 0.125,
1843
+ "completions/max_length": 264.0,
1844
+ "completions/max_terminated_length": 264.0,
1845
+ "completions/mean_length": 155.0,
1846
+ "completions/mean_terminated_length": 177.14285714285714,
1847
+ "completions/min_length": 0.0,
1848
+ "completions/min_terminated_length": 92.0,
1849
+ "epoch": 0.308,
1850
+ "format_failures": 0.0,
1851
+ "grad_norm": 2.5412757396698,
1852
+ "kl": 1.028398334980011,
1853
+ "learning_rate": 1e-06,
1854
+ "loss": 0.0962,
1855
+ "num_tokens": 887960.0,
1856
+ "reward": 0.45376986265182495,
1857
+ "reward_std": 0.3097318112850189,
1858
+ "step": 77
1859
+ },
1860
+ {
1861
+ "clip_ratio/high_max": 0.0,
1862
+ "clip_ratio/high_mean": 0.0,
1863
+ "clip_ratio/low_mean": 0.0,
1864
+ "clip_ratio/low_min": 0.0,
1865
+ "clip_ratio/region_mean": 0.0,
1866
+ "completions/clipped_ratio": 0.125,
1867
+ "completions/max_length": 536.0,
1868
+ "completions/max_terminated_length": 536.0,
1869
+ "completions/mean_length": 286.375,
1870
+ "completions/mean_terminated_length": 327.2857142857143,
1871
+ "completions/min_length": 0.0,
1872
+ "completions/min_terminated_length": 176.0,
1873
+ "epoch": 0.312,
1874
+ "format_failures": 0.0,
1875
+ "grad_norm": 0.6730135679244995,
1876
+ "kl": 0.0538824163377285,
1877
+ "learning_rate": 1e-06,
1878
+ "loss": 0.1157,
1879
+ "num_tokens": 898928.0,
1880
+ "reward": 0.20416666567325592,
1881
+ "reward_std": 0.3781481683254242,
1882
+ "step": 78
1883
+ },
1884
+ {
1885
+ "clip_ratio/high_max": 0.0,
1886
+ "clip_ratio/high_mean": 0.0,
1887
+ "clip_ratio/low_mean": 0.0,
1888
+ "clip_ratio/low_min": 0.0,
1889
+ "clip_ratio/region_mean": 0.0,
1890
+ "completions/clipped_ratio": 0.375,
1891
+ "completions/max_length": 188.0,
1892
+ "completions/max_terminated_length": 188.0,
1893
+ "completions/mean_length": 99.25,
1894
+ "completions/mean_terminated_length": 158.8,
1895
+ "completions/min_length": 0.0,
1896
+ "completions/min_terminated_length": 48.0,
1897
+ "epoch": 0.316,
1898
+ "format_failures": 0.0,
1899
+ "grad_norm": 1.8478459119796753,
1900
+ "kl": 0.015719112940132618,
1901
+ "learning_rate": 1e-06,
1902
+ "loss": -0.134,
1903
+ "num_tokens": 908336.0,
1904
+ "reward": 0.75,
1905
+ "reward_std": 0.4629100561141968,
1906
+ "step": 79
1907
+ },
1908
+ {
1909
+ "clip_ratio/high_max": 0.0,
1910
+ "clip_ratio/high_mean": 0.0,
1911
+ "clip_ratio/low_mean": 0.0,
1912
+ "clip_ratio/low_min": 0.0,
1913
+ "clip_ratio/region_mean": 0.0,
1914
+ "completions/clipped_ratio": 0.125,
1915
+ "completions/max_length": 290.0,
1916
+ "completions/max_terminated_length": 290.0,
1917
+ "completions/mean_length": 218.0,
1918
+ "completions/mean_terminated_length": 249.14285714285714,
1919
+ "completions/min_length": 0.0,
1920
+ "completions/min_terminated_length": 111.0,
1921
+ "epoch": 0.32,
1922
+ "format_failures": 0.0,
1923
+ "grad_norm": 4.647150039672852,
1924
+ "kl": 1.3871727883815765,
1925
+ "learning_rate": 1e-06,
1926
+ "loss": 0.0114,
1927
+ "num_tokens": 919144.0,
1928
+ "reward": 0.515625,
1929
+ "reward_std": 0.5194326043128967,
1930
+ "step": 80
1931
+ },
1932
+ {
1933
+ "clip_ratio/high_max": 0.0,
1934
+ "clip_ratio/high_mean": 0.0,
1935
+ "clip_ratio/low_mean": 0.0,
1936
+ "clip_ratio/low_min": 0.0,
1937
+ "clip_ratio/region_mean": 0.0,
1938
+ "completions/clipped_ratio": 0.125,
1939
+ "completions/max_length": 61.0,
1940
+ "completions/max_terminated_length": 61.0,
1941
+ "completions/mean_length": 44.75,
1942
+ "completions/mean_terminated_length": 51.142857142857146,
1943
+ "completions/min_length": 0.0,
1944
+ "completions/min_terminated_length": 42.0,
1945
+ "epoch": 0.324,
1946
+ "format_failures": 0.0,
1947
+ "grad_norm": 4.4413957595825195,
1948
+ "kl": 1.4963605403900146,
1949
+ "learning_rate": 1e-06,
1950
+ "loss": 0.0199,
1951
+ "num_tokens": 924120.0,
1952
+ "reward": 0.0,
1953
+ "reward_std": 0.0,
1954
+ "step": 81
1955
+ },
1956
+ {
1957
+ "clip_ratio/high_max": 0.0,
1958
+ "clip_ratio/high_mean": 0.0,
1959
+ "clip_ratio/low_mean": 0.0,
1960
+ "clip_ratio/low_min": 0.0,
1961
+ "clip_ratio/region_mean": 0.0,
1962
+ "completions/clipped_ratio": 0.125,
1963
+ "completions/max_length": 158.0,
1964
+ "completions/max_terminated_length": 158.0,
1965
+ "completions/mean_length": 114.0,
1966
+ "completions/mean_terminated_length": 130.28571428571428,
1967
+ "completions/min_length": 0.0,
1968
+ "completions/min_terminated_length": 70.0,
1969
+ "epoch": 0.328,
1970
+ "format_failures": 0.0,
1971
+ "grad_norm": 0.7050689458847046,
1972
+ "kl": 0.046199409291148186,
1973
+ "learning_rate": 1e-06,
1974
+ "loss": 0.0456,
1975
+ "num_tokens": 930960.0,
1976
+ "reward": 0.5011904835700989,
1977
+ "reward_std": 0.24937564134597778,
1978
+ "step": 82
1979
+ },
1980
+ {
1981
+ "clip_ratio/high_max": 0.0,
1982
+ "clip_ratio/high_mean": 0.0,
1983
+ "clip_ratio/low_mean": 0.0,
1984
+ "clip_ratio/low_min": 0.0,
1985
+ "clip_ratio/region_mean": 0.0,
1986
+ "completions/clipped_ratio": 0.125,
1987
+ "completions/max_length": 518.0,
1988
+ "completions/max_terminated_length": 518.0,
1989
+ "completions/mean_length": 449.875,
1990
+ "completions/mean_terminated_length": 514.1428571428571,
1991
+ "completions/min_length": 0.0,
1992
+ "completions/min_terminated_length": 509.0,
1993
+ "epoch": 0.332,
1994
+ "format_failures": 0.0,
1995
+ "grad_norm": 0.26836591958999634,
1996
+ "kl": 0.006152217974886298,
1997
+ "learning_rate": 1e-06,
1998
+ "loss": -0.0312,
1999
+ "num_tokens": 948424.0,
2000
+ "reward": 0.7916666865348816,
2001
+ "reward_std": 0.39591163396835327,
2002
+ "step": 83
2003
+ },
2004
+ {
2005
+ "clip_ratio/high_max": 0.0,
2006
+ "clip_ratio/high_mean": 0.0,
2007
+ "clip_ratio/low_mean": 0.0,
2008
+ "clip_ratio/low_min": 0.0,
2009
+ "clip_ratio/region_mean": 0.0,
2010
+ "completions/clipped_ratio": 0.125,
2011
+ "completions/max_length": 246.0,
2012
+ "completions/max_terminated_length": 246.0,
2013
+ "completions/mean_length": 138.625,
2014
+ "completions/mean_terminated_length": 158.42857142857142,
2015
+ "completions/min_length": 0.0,
2016
+ "completions/min_terminated_length": 130.0,
2017
+ "epoch": 0.336,
2018
+ "format_failures": 0.0,
2019
+ "grad_norm": 1.0764328241348267,
2020
+ "kl": 0.07650505751371384,
2021
+ "learning_rate": 1e-06,
2022
+ "loss": -0.0964,
2023
+ "num_tokens": 956768.0,
2024
+ "reward": 0.3864583373069763,
2025
+ "reward_std": 0.3207734227180481,
2026
+ "step": 84
2027
+ },
2028
+ {
2029
+ "clip_ratio/high_max": 0.0,
2030
+ "clip_ratio/high_mean": 0.0,
2031
+ "clip_ratio/low_mean": 0.0,
2032
+ "clip_ratio/low_min": 0.0,
2033
+ "clip_ratio/region_mean": 0.0,
2034
+ "completions/clipped_ratio": 0.125,
2035
+ "completions/max_length": 531.0,
2036
+ "completions/max_terminated_length": 531.0,
2037
+ "completions/mean_length": 292.0,
2038
+ "completions/mean_terminated_length": 333.7142857142857,
2039
+ "completions/min_length": 0.0,
2040
+ "completions/min_terminated_length": 178.0,
2041
+ "epoch": 0.34,
2042
+ "format_failures": 0.0,
2043
+ "grad_norm": 0.5540055632591248,
2044
+ "kl": 0.054012734442949295,
2045
+ "learning_rate": 1e-06,
2046
+ "loss": -0.1183,
2047
+ "num_tokens": 966600.0,
2048
+ "reward": 0.34756946563720703,
2049
+ "reward_std": 0.300673246383667,
2050
+ "step": 85
2051
+ },
2052
+ {
2053
+ "clip_ratio/high_max": 0.0,
2054
+ "clip_ratio/high_mean": 0.0,
2055
+ "clip_ratio/low_mean": 0.0,
2056
+ "clip_ratio/low_min": 0.0,
2057
+ "clip_ratio/region_mean": 0.0,
2058
+ "completions/clipped_ratio": 0.125,
2059
+ "completions/max_length": 153.0,
2060
+ "completions/max_terminated_length": 153.0,
2061
+ "completions/mean_length": 126.0,
2062
+ "completions/mean_terminated_length": 144.0,
2063
+ "completions/min_length": 0.0,
2064
+ "completions/min_terminated_length": 104.0,
2065
+ "epoch": 0.344,
2066
+ "format_failures": 0.0,
2067
+ "grad_norm": 2.176490306854248,
2068
+ "kl": 0.14486993476748466,
2069
+ "learning_rate": 1e-06,
2070
+ "loss": 0.044,
2071
+ "num_tokens": 974040.0,
2072
+ "reward": 0.6666666269302368,
2073
+ "reward_std": 0.4714045226573944,
2074
+ "step": 86
2075
+ },
2076
+ {
2077
+ "clip_ratio/high_max": 0.0,
2078
+ "clip_ratio/high_mean": 0.0,
2079
+ "clip_ratio/low_mean": 0.0,
2080
+ "clip_ratio/low_min": 0.0,
2081
+ "clip_ratio/region_mean": 0.0,
2082
+ "completions/clipped_ratio": 0.125,
2083
+ "completions/max_length": 163.0,
2084
+ "completions/max_terminated_length": 163.0,
2085
+ "completions/mean_length": 139.875,
2086
+ "completions/mean_terminated_length": 159.85714285714286,
2087
+ "completions/min_length": 0.0,
2088
+ "completions/min_terminated_length": 154.0,
2089
+ "epoch": 0.348,
2090
+ "format_failures": 0.0,
2091
+ "grad_norm": 3.048673391342163,
2092
+ "kl": 0.05823306553065777,
2093
+ "learning_rate": 1e-06,
2094
+ "loss": 1.0611,
2095
+ "num_tokens": 995888.0,
2096
+ "reward": 0.625,
2097
+ "reward_std": 0.5175491571426392,
2098
+ "step": 87
2099
+ },
2100
+ {
2101
+ "clip_ratio/high_max": 0.0,
2102
+ "clip_ratio/high_mean": 0.0,
2103
+ "clip_ratio/low_mean": 0.0,
2104
+ "clip_ratio/low_min": 0.0,
2105
+ "clip_ratio/region_mean": 0.0,
2106
+ "completions/clipped_ratio": 0.25,
2107
+ "completions/max_length": 281.0,
2108
+ "completions/max_terminated_length": 281.0,
2109
+ "completions/mean_length": 101.125,
2110
+ "completions/mean_terminated_length": 134.83333333333334,
2111
+ "completions/min_length": 0.0,
2112
+ "completions/min_terminated_length": 75.0,
2113
+ "epoch": 0.352,
2114
+ "format_failures": 0.0,
2115
+ "grad_norm": 1.9394124746322632,
2116
+ "kl": 0.09709636494517326,
2117
+ "learning_rate": 1e-06,
2118
+ "loss": 0.3171,
2119
+ "num_tokens": 1016272.0,
2120
+ "reward": 0.47559523582458496,
2121
+ "reward_std": 0.2696917653083801,
2122
+ "step": 88
2123
+ },
2124
+ {
2125
+ "clip_ratio/high_max": 0.0,
2126
+ "clip_ratio/high_mean": 0.0,
2127
+ "clip_ratio/low_mean": 0.0,
2128
+ "clip_ratio/low_min": 0.0,
2129
+ "clip_ratio/region_mean": 0.0,
2130
+ "completions/clipped_ratio": 0.125,
2131
+ "completions/max_length": 160.0,
2132
+ "completions/max_terminated_length": 160.0,
2133
+ "completions/mean_length": 92.375,
2134
+ "completions/mean_terminated_length": 105.57142857142857,
2135
+ "completions/min_length": 0.0,
2136
+ "completions/min_terminated_length": 64.0,
2137
+ "epoch": 0.356,
2138
+ "format_failures": 0.0,
2139
+ "grad_norm": 1.0850152969360352,
2140
+ "kl": 0.11065866611897945,
2141
+ "learning_rate": 1e-06,
2142
+ "loss": -0.0191,
2143
+ "num_tokens": 1022584.0,
2144
+ "reward": 0.027205882593989372,
2145
+ "reward_std": 0.050595808774232864,
2146
+ "step": 89
2147
+ },
2148
+ {
2149
+ "clip_ratio/high_max": 0.0,
2150
+ "clip_ratio/high_mean": 0.0,
2151
+ "clip_ratio/low_mean": 0.0,
2152
+ "clip_ratio/low_min": 0.0,
2153
+ "clip_ratio/region_mean": 0.0,
2154
+ "completions/clipped_ratio": 0.125,
2155
+ "completions/max_length": 238.0,
2156
+ "completions/max_terminated_length": 238.0,
2157
+ "completions/mean_length": 152.125,
2158
+ "completions/mean_terminated_length": 173.85714285714286,
2159
+ "completions/min_length": 0.0,
2160
+ "completions/min_terminated_length": 129.0,
2161
+ "epoch": 0.36,
2162
+ "format_failures": 0.0,
2163
+ "grad_norm": 0.7975893020629883,
2164
+ "kl": 0.4505193531513214,
2165
+ "learning_rate": 1e-06,
2166
+ "loss": 0.0489,
2167
+ "num_tokens": 1028024.0,
2168
+ "reward": 0.4837797284126282,
2169
+ "reward_std": 0.3459106385707855,
2170
+ "step": 90
2171
+ },
2172
+ {
2173
+ "clip_ratio/high_max": 0.0,
2174
+ "clip_ratio/high_mean": 0.0,
2175
+ "clip_ratio/low_mean": 0.0,
2176
+ "clip_ratio/low_min": 0.0,
2177
+ "clip_ratio/region_mean": 0.0,
2178
+ "completions/clipped_ratio": 0.375,
2179
+ "completions/max_length": 198.0,
2180
+ "completions/max_terminated_length": 198.0,
2181
+ "completions/mean_length": 122.875,
2182
+ "completions/mean_terminated_length": 196.6,
2183
+ "completions/min_length": 0.0,
2184
+ "completions/min_terminated_length": 195.0,
2185
+ "epoch": 0.364,
2186
+ "format_failures": 0.0,
2187
+ "grad_norm": 0.371446430683136,
2188
+ "kl": 0.017493599094450474,
2189
+ "learning_rate": 1e-06,
2190
+ "loss": -0.0009,
2191
+ "num_tokens": 1039176.0,
2192
+ "reward": 0.7916666865348816,
2193
+ "reward_std": 0.39591163396835327,
2194
+ "step": 91
2195
+ },
2196
+ {
2197
+ "clip_ratio/high_max": 0.0,
2198
+ "clip_ratio/high_mean": 0.0,
2199
+ "clip_ratio/low_mean": 0.0,
2200
+ "clip_ratio/low_min": 0.0,
2201
+ "clip_ratio/region_mean": 0.0,
2202
+ "completions/clipped_ratio": 0.125,
2203
+ "completions/max_length": 368.0,
2204
+ "completions/max_terminated_length": 368.0,
2205
+ "completions/mean_length": 228.5,
2206
+ "completions/mean_terminated_length": 261.14285714285717,
2207
+ "completions/min_length": 0.0,
2208
+ "completions/min_terminated_length": 132.0,
2209
+ "epoch": 0.368,
2210
+ "format_failures": 0.0,
2211
+ "grad_norm": 1.6181436777114868,
2212
+ "kl": 1.322296380996704,
2213
+ "learning_rate": 1e-06,
2214
+ "loss": -0.0419,
2215
+ "num_tokens": 1047784.0,
2216
+ "reward": 0.2874999940395355,
2217
+ "reward_std": 0.39957815408706665,
2218
+ "step": 92
2219
+ },
2220
+ {
2221
+ "clip_ratio/high_max": 0.0,
2222
+ "clip_ratio/high_mean": 0.0,
2223
+ "clip_ratio/low_mean": 0.0,
2224
+ "clip_ratio/low_min": 0.0,
2225
+ "clip_ratio/region_mean": 0.0,
2226
+ "completions/clipped_ratio": 0.125,
2227
+ "completions/max_length": 445.0,
2228
+ "completions/max_terminated_length": 445.0,
2229
+ "completions/mean_length": 250.125,
2230
+ "completions/mean_terminated_length": 285.85714285714283,
2231
+ "completions/min_length": 0.0,
2232
+ "completions/min_terminated_length": 206.0,
2233
+ "epoch": 0.372,
2234
+ "format_failures": 0.0,
2235
+ "grad_norm": 0.4590940773487091,
2236
+ "kl": 0.03011018969118595,
2237
+ "learning_rate": 1e-06,
2238
+ "loss": -0.0477,
2239
+ "num_tokens": 1058760.0,
2240
+ "reward": 0.38749998807907104,
2241
+ "reward_std": 0.3058944642543793,
2242
+ "step": 93
2243
+ },
2244
+ {
2245
+ "clip_ratio/high_max": 0.0,
2246
+ "clip_ratio/high_mean": 0.0,
2247
+ "clip_ratio/low_mean": 0.0,
2248
+ "clip_ratio/low_min": 0.0,
2249
+ "clip_ratio/region_mean": 0.0,
2250
+ "completions/clipped_ratio": 0.125,
2251
+ "completions/max_length": 64.0,
2252
+ "completions/max_terminated_length": 64.0,
2253
+ "completions/mean_length": 55.75,
2254
+ "completions/mean_terminated_length": 63.714285714285715,
2255
+ "completions/min_length": 0.0,
2256
+ "completions/min_terminated_length": 62.0,
2257
+ "epoch": 0.376,
2258
+ "format_failures": 0.0,
2259
+ "grad_norm": 3.706254720687866,
2260
+ "kl": 0.022694013081490993,
2261
+ "learning_rate": 1e-06,
2262
+ "loss": 0.4609,
2263
+ "num_tokens": 1069792.0,
2264
+ "reward": 0.5052083730697632,
2265
+ "reward_std": 0.25630685687065125,
2266
+ "step": 94
2267
+ },
2268
+ {
2269
+ "clip_ratio/high_max": 0.0,
2270
+ "clip_ratio/high_mean": 0.0,
2271
+ "clip_ratio/low_mean": 0.0,
2272
+ "clip_ratio/low_min": 0.0,
2273
+ "clip_ratio/region_mean": 0.0,
2274
+ "completions/clipped_ratio": 0.125,
2275
+ "completions/max_length": 297.0,
2276
+ "completions/max_terminated_length": 297.0,
2277
+ "completions/mean_length": 155.75,
2278
+ "completions/mean_terminated_length": 178.0,
2279
+ "completions/min_length": 0.0,
2280
+ "completions/min_terminated_length": 101.0,
2281
+ "epoch": 0.38,
2282
+ "format_failures": 0.0,
2283
+ "grad_norm": 1.6162223815917969,
2284
+ "kl": 0.43194980919361115,
2285
+ "learning_rate": 1e-06,
2286
+ "loss": -0.0132,
2287
+ "num_tokens": 1079864.0,
2288
+ "reward": 0.21741071343421936,
2289
+ "reward_std": 0.28225868940353394,
2290
+ "step": 95
2291
+ },
2292
+ {
2293
+ "clip_ratio/high_max": 0.0,
2294
+ "clip_ratio/high_mean": 0.0,
2295
+ "clip_ratio/low_mean": 0.0,
2296
+ "clip_ratio/low_min": 0.0,
2297
+ "clip_ratio/region_mean": 0.0,
2298
+ "completions/clipped_ratio": 0.125,
2299
+ "completions/max_length": 141.0,
2300
+ "completions/max_terminated_length": 141.0,
2301
+ "completions/mean_length": 120.125,
2302
+ "completions/mean_terminated_length": 137.28571428571428,
2303
+ "completions/min_length": 0.0,
2304
+ "completions/min_terminated_length": 134.0,
2305
+ "epoch": 0.384,
2306
+ "format_failures": 0.0,
2307
+ "grad_norm": 18.852705001831055,
2308
+ "kl": 4.019676446914673,
2309
+ "learning_rate": 1e-06,
2310
+ "loss": 0.0359,
2311
+ "num_tokens": 1088416.0,
2312
+ "reward": 0.90625,
2313
+ "reward_std": 0.1293872892856598,
2314
+ "step": 96
2315
+ },
2316
+ {
2317
+ "clip_ratio/high_max": 0.0,
2318
+ "clip_ratio/high_mean": 0.0,
2319
+ "clip_ratio/low_mean": 0.0,
2320
+ "clip_ratio/low_min": 0.0,
2321
+ "clip_ratio/region_mean": 0.0,
2322
+ "completions/clipped_ratio": 0.125,
2323
+ "completions/max_length": 81.0,
2324
+ "completions/max_terminated_length": 81.0,
2325
+ "completions/mean_length": 65.125,
2326
+ "completions/mean_terminated_length": 74.42857142857143,
2327
+ "completions/min_length": 0.0,
2328
+ "completions/min_terminated_length": 72.0,
2329
+ "epoch": 0.388,
2330
+ "format_failures": 0.0,
2331
+ "grad_norm": 0.17805831134319305,
2332
+ "kl": 0.0494217723608017,
2333
+ "learning_rate": 1e-06,
2334
+ "loss": 0.0198,
2335
+ "num_tokens": 1095056.0,
2336
+ "reward": 0.984375,
2337
+ "reward_std": 0.04419417306780815,
2338
+ "step": 97
2339
+ },
2340
+ {
2341
+ "clip_ratio/high_max": 0.0,
2342
+ "clip_ratio/high_mean": 0.0,
2343
+ "clip_ratio/low_mean": 0.0,
2344
+ "clip_ratio/low_min": 0.0,
2345
+ "clip_ratio/region_mean": 0.0,
2346
+ "completions/clipped_ratio": 0.125,
2347
+ "completions/max_length": 63.0,
2348
+ "completions/max_terminated_length": 63.0,
2349
+ "completions/mean_length": 34.75,
2350
+ "completions/mean_terminated_length": 39.714285714285715,
2351
+ "completions/min_length": 0.0,
2352
+ "completions/min_terminated_length": 20.0,
2353
+ "epoch": 0.392,
2354
+ "format_failures": 0.0,
2355
+ "grad_norm": 1.5279428958892822,
2356
+ "kl": 0.29206034541130066,
2357
+ "learning_rate": 1e-06,
2358
+ "loss": -0.0386,
2359
+ "num_tokens": 1100752.0,
2360
+ "reward": 0.0416666679084301,
2361
+ "reward_std": 0.1178511381149292,
2362
+ "step": 98
2363
+ },
2364
+ {
2365
+ "clip_ratio/high_max": 0.0,
2366
+ "clip_ratio/high_mean": 0.0,
2367
+ "clip_ratio/low_mean": 0.0,
2368
+ "clip_ratio/low_min": 0.0,
2369
+ "clip_ratio/region_mean": 0.0,
2370
+ "completions/clipped_ratio": 0.125,
2371
+ "completions/max_length": 351.0,
2372
+ "completions/max_terminated_length": 351.0,
2373
+ "completions/mean_length": 249.375,
2374
+ "completions/mean_terminated_length": 285.0,
2375
+ "completions/min_length": 0.0,
2376
+ "completions/min_terminated_length": 212.0,
2377
+ "epoch": 0.396,
2378
+ "format_failures": 0.0,
2379
+ "grad_norm": 0.56284499168396,
2380
+ "kl": 0.11262823268771172,
2381
+ "learning_rate": 1e-06,
2382
+ "loss": 0.0758,
2383
+ "num_tokens": 1112056.0,
2384
+ "reward": 0.5658119916915894,
2385
+ "reward_std": 0.2206362932920456,
2386
+ "step": 99
2387
+ },
2388
+ {
2389
+ "clip_ratio/high_max": 0.0,
2390
+ "clip_ratio/high_mean": 0.0,
2391
+ "clip_ratio/low_mean": 0.0,
2392
+ "clip_ratio/low_min": 0.0,
2393
+ "clip_ratio/region_mean": 0.0,
2394
+ "completions/clipped_ratio": 0.125,
2395
+ "completions/max_length": 194.0,
2396
+ "completions/max_terminated_length": 194.0,
2397
+ "completions/mean_length": 149.5,
2398
+ "completions/mean_terminated_length": 170.85714285714286,
2399
+ "completions/min_length": 0.0,
2400
+ "completions/min_terminated_length": 52.0,
2401
+ "epoch": 0.4,
2402
+ "format_failures": 0.0,
2403
+ "grad_norm": 2.1969668865203857,
2404
+ "kl": 0.0690736249089241,
2405
+ "learning_rate": 1e-06,
2406
+ "loss": -0.001,
2407
+ "num_tokens": 1121104.0,
2408
+ "reward": 0.75,
2409
+ "reward_std": 0.4629100561141968,
2410
+ "step": 100
2411
+ }
2412
+ ],
2413
+ "logging_steps": 1,
2414
+ "max_steps": 1000,
2415
+ "num_input_tokens_seen": 1121104,
2416
+ "num_train_epochs": 4,
2417
+ "save_steps": 500,
2418
+ "stateful_callbacks": {
2419
+ "TrainerControl": {
2420
+ "args": {
2421
+ "should_epoch_stop": false,
2422
+ "should_evaluate": false,
2423
+ "should_log": false,
2424
+ "should_save": false,
2425
+ "should_training_stop": false
2426
+ },
2427
+ "attributes": {}
2428
+ }
2429
+ },
2430
+ "total_flos": 0.0,
2431
+ "train_batch_size": 2,
2432
+ "trial_name": null,
2433
+ "trial_params": null
2434
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5508d5c26f3e35e616710da82bd5168b5fca1aa70e31a96b8fddecf6347edd5a
3
+ size 7697
vocab.json ADDED
The diff for this file is too large to render. See raw diff