Siddeshwar1625 commited on
Commit
ec03a37
·
verified ·
1 Parent(s): 96bc43b

Intermediate checkpoint upload step=30 (answerer_train)

Browse files
.gitattributes CHANGED
@@ -77,3 +77,4 @@ self_play_hf_l40s_full/round_004/generator_train/checkpoint-60/tokenizer.json fi
77
  self_play_hf_l40s_full/round_004/generator_train/checkpoint-90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
78
  self_play_hf_l40s_full/round_004/generator_train/checkpoint-120/tokenizer.json filter=lfs diff=lfs merge=lfs -text
79
  self_play_hf_l40s_full/round_004/generator_train/final_model/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
77
  self_play_hf_l40s_full/round_004/generator_train/checkpoint-90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
78
  self_play_hf_l40s_full/round_004/generator_train/checkpoint-120/tokenizer.json filter=lfs diff=lfs merge=lfs -text
79
  self_play_hf_l40s_full/round_004/generator_train/final_model/tokenizer.json filter=lfs diff=lfs merge=lfs -text
80
+ self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/tokenizer.json filter=lfs diff=lfs merge=lfs -text
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/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 %}
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": null,
7
+ "dtype": "float32",
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 896,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 4864,
13
+ "layer_types": [
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
+ ],
39
+ "max_position_embeddings": 32768,
40
+ "max_window_layers": 21,
41
+ "model_type": "qwen2",
42
+ "num_attention_heads": 14,
43
+ "num_hidden_layers": 24,
44
+ "num_key_value_heads": 2,
45
+ "pad_token_id": 151643,
46
+ "rms_norm_eps": 1e-06,
47
+ "rope_parameters": {
48
+ "rope_theta": 1000000.0,
49
+ "rope_type": "default"
50
+ },
51
+ "sliding_window": null,
52
+ "tie_word_embeddings": true,
53
+ "transformers_version": "5.6.2",
54
+ "use_cache": false,
55
+ "use_sliding_window": false,
56
+ "vocab_size": 151936
57
+ }
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/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.1,
9
+ "temperature": 0.7,
10
+ "top_k": 20,
11
+ "top_p": 0.8,
12
+ "transformers_version": "5.6.2"
13
+ }
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4434d499be453481cc4949f13e4bb6cc992c79d8917820ed523e37c94d36314b
3
+ size 1976163472
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:587c05dfa1afe1edf120afdbb959a9d1c26b20775c232da93fb30f5d714f2094
3
+ size 3952509771
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:070d5c1950a26cfcd5df4765ae2725e8200eb5262c804cd56a4c234d632aa75d
3
+ size 14645
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:033725bd02f3539a4b6f560d16722203511817145243446dac37b991c5ad61b8
3
+ size 1465
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/tokenizer_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "local_files_only": false,
25
+ "model_max_length": 131072,
26
+ "pad_token": "<|endoftext|>",
27
+ "padding_side": "left",
28
+ "split_special_tokens": false,
29
+ "tokenizer_class": "Qwen2Tokenizer",
30
+ "truncation_side": "left",
31
+ "unk_token": null
32
+ }
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/trainer_state.json ADDED
@@ -0,0 +1,588 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.75,
6
+ "eval_steps": 500,
7
+ "global_step": 30,
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": 1.0,
19
+ "completions/max_length": 256.0,
20
+ "completions/max_terminated_length": 0.0,
21
+ "completions/mean_length": 256.0,
22
+ "completions/mean_terminated_length": 0.0,
23
+ "completions/min_length": 256.0,
24
+ "completions/min_terminated_length": 0.0,
25
+ "entropy": 1.808485507965088,
26
+ "epoch": 0.025,
27
+ "frac_reward_zero_std": 0.75,
28
+ "grad_norm": 1.511763095855713,
29
+ "kl": 0.0,
30
+ "learning_rate": 3e-06,
31
+ "loss": -0.062454625964164734,
32
+ "num_tokens": 10016.0,
33
+ "reward": 0.796283483505249,
34
+ "reward_std": 0.15437306463718414,
35
+ "rewards/AnswererRewardFunction/mean": 0.796283483505249,
36
+ "rewards/AnswererRewardFunction/std": 0.15437307953834534,
37
+ "step": 1,
38
+ "step_time": 7.744606889000352
39
+ },
40
+ {
41
+ "clip_ratio/high_max": 0.0,
42
+ "clip_ratio/high_mean": 0.0,
43
+ "clip_ratio/low_mean": 0.0,
44
+ "clip_ratio/low_min": 0.0,
45
+ "clip_ratio/region_mean": 0.0,
46
+ "entropy": 2.061605215072632,
47
+ "epoch": 0.05,
48
+ "grad_norm": 0.030779404565691948,
49
+ "kl": 0.023394376039505005,
50
+ "learning_rate": 2.9750000000000003e-06,
51
+ "loss": 5.848593355040066e-05,
52
+ "step": 2,
53
+ "step_time": 0.11778782400051568
54
+ },
55
+ {
56
+ "clip_ratio/high_max": 0.0,
57
+ "clip_ratio/high_mean": 0.0,
58
+ "clip_ratio/low_mean": 0.029296875,
59
+ "clip_ratio/low_min": 0.029296875,
60
+ "clip_ratio/region_mean": 0.029296875,
61
+ "entropy": 2.177046537399292,
62
+ "epoch": 0.075,
63
+ "grad_norm": 3.1303863525390625,
64
+ "kl": 0.08087262511253357,
65
+ "learning_rate": 2.9499999999999997e-06,
66
+ "loss": 0.09753571450710297,
67
+ "step": 3,
68
+ "step_time": 0.1114002790000086
69
+ },
70
+ {
71
+ "clip_ratio/high_max": 0.0361328125,
72
+ "clip_ratio/high_mean": 0.0361328125,
73
+ "clip_ratio/low_mean": 0.0,
74
+ "clip_ratio/low_min": 0.0,
75
+ "clip_ratio/region_mean": 0.0361328125,
76
+ "entropy": 2.0383293628692627,
77
+ "epoch": 0.1,
78
+ "grad_norm": 0.9711113572120667,
79
+ "kl": 0.13760070502758026,
80
+ "learning_rate": 2.925e-06,
81
+ "loss": -0.030087757855653763,
82
+ "step": 4,
83
+ "step_time": 0.11656204800056003
84
+ },
85
+ {
86
+ "clip_ratio/high_max": 0.0,
87
+ "clip_ratio/high_mean": 0.0,
88
+ "clip_ratio/low_mean": 0.0,
89
+ "clip_ratio/low_min": 0.0,
90
+ "clip_ratio/region_mean": 0.0,
91
+ "completions/clipped_ratio": 1.0,
92
+ "completions/max_length": 256.0,
93
+ "completions/max_terminated_length": 0.0,
94
+ "completions/mean_length": 256.0,
95
+ "completions/mean_terminated_length": 0.0,
96
+ "completions/min_length": 256.0,
97
+ "completions/min_terminated_length": 0.0,
98
+ "entropy": 2.2891623973846436,
99
+ "epoch": 0.125,
100
+ "frac_reward_zero_std": 0.25,
101
+ "grad_norm": 3.584872007369995,
102
+ "kl": 0.0656374841928482,
103
+ "learning_rate": 2.9e-06,
104
+ "loss": -0.00024243921507149935,
105
+ "num_tokens": 19780.0,
106
+ "reward": 0.7218090295791626,
107
+ "reward_std": 0.14923875033855438,
108
+ "rewards/AnswererRewardFunction/mean": 0.7218090295791626,
109
+ "rewards/AnswererRewardFunction/std": 0.14923876523971558,
110
+ "step": 5,
111
+ "step_time": 7.795673902999624
112
+ },
113
+ {
114
+ "clip_ratio/high_max": 0.0078125,
115
+ "clip_ratio/high_mean": 0.0078125,
116
+ "clip_ratio/low_mean": 0.0,
117
+ "clip_ratio/low_min": 0.0,
118
+ "clip_ratio/region_mean": 0.0078125,
119
+ "entropy": 2.2073974609375,
120
+ "epoch": 0.15,
121
+ "grad_norm": 0.9116904139518738,
122
+ "kl": 0.08468662202358246,
123
+ "learning_rate": 2.875e-06,
124
+ "loss": -0.031071916222572327,
125
+ "step": 6,
126
+ "step_time": 0.1147218090000024
127
+ },
128
+ {
129
+ "clip_ratio/high_max": 0.0458984375,
130
+ "clip_ratio/high_mean": 0.0458984375,
131
+ "clip_ratio/low_mean": 0.0048828125,
132
+ "clip_ratio/low_min": 0.0048828125,
133
+ "clip_ratio/region_mean": 0.05078125,
134
+ "entropy": 1.828927755355835,
135
+ "epoch": 0.175,
136
+ "grad_norm": 2.9821267127990723,
137
+ "kl": 0.10931183397769928,
138
+ "learning_rate": 2.85e-06,
139
+ "loss": -0.052874594926834106,
140
+ "step": 7,
141
+ "step_time": 0.11118124299991905
142
+ },
143
+ {
144
+ "clip_ratio/high_max": 0.060546875,
145
+ "clip_ratio/high_mean": 0.060546875,
146
+ "clip_ratio/low_mean": 0.0693359375,
147
+ "clip_ratio/low_min": 0.0693359375,
148
+ "clip_ratio/region_mean": 0.1298828125,
149
+ "entropy": 2.239431619644165,
150
+ "epoch": 0.2,
151
+ "grad_norm": 3.761061668395996,
152
+ "kl": 0.11145439743995667,
153
+ "learning_rate": 2.825e-06,
154
+ "loss": 0.08703643828630447,
155
+ "step": 8,
156
+ "step_time": 0.11017163199994684
157
+ },
158
+ {
159
+ "clip_ratio/high_max": 0.001953125,
160
+ "clip_ratio/high_mean": 0.001953125,
161
+ "clip_ratio/low_mean": 0.0,
162
+ "clip_ratio/low_min": 0.0,
163
+ "clip_ratio/region_mean": 0.001953125,
164
+ "completions/clipped_ratio": 1.0,
165
+ "completions/max_length": 256.0,
166
+ "completions/max_terminated_length": 0.0,
167
+ "completions/mean_length": 256.0,
168
+ "completions/mean_terminated_length": 0.0,
169
+ "completions/min_length": 256.0,
170
+ "completions/min_terminated_length": 0.0,
171
+ "entropy": 2.2865660190582275,
172
+ "epoch": 0.225,
173
+ "frac_reward_zero_std": 0.25,
174
+ "grad_norm": 1.6357184648513794,
175
+ "kl": 0.10884629935026169,
176
+ "learning_rate": 2.8000000000000003e-06,
177
+ "loss": 0.03159352019429207,
178
+ "num_tokens": 29592.0,
179
+ "reward": 0.6900650858879089,
180
+ "reward_std": 0.1505999118089676,
181
+ "rewards/AnswererRewardFunction/mean": 0.6900650858879089,
182
+ "rewards/AnswererRewardFunction/std": 0.1505999118089676,
183
+ "step": 9,
184
+ "step_time": 7.738351545999649
185
+ },
186
+ {
187
+ "clip_ratio/high_max": 0.001953125,
188
+ "clip_ratio/high_mean": 0.001953125,
189
+ "clip_ratio/low_mean": 0.0078125,
190
+ "clip_ratio/low_min": 0.0078125,
191
+ "clip_ratio/region_mean": 0.009765625,
192
+ "entropy": 2.2734012603759766,
193
+ "epoch": 0.25,
194
+ "grad_norm": 4.225009918212891,
195
+ "kl": 0.14073708653450012,
196
+ "learning_rate": 2.775e-06,
197
+ "loss": 0.1410004049539566,
198
+ "step": 10,
199
+ "step_time": 0.1489122450002469
200
+ },
201
+ {
202
+ "clip_ratio/high_max": 0.0263671875,
203
+ "clip_ratio/high_mean": 0.0263671875,
204
+ "clip_ratio/low_mean": 0.015625,
205
+ "clip_ratio/low_min": 0.015625,
206
+ "clip_ratio/region_mean": 0.0419921875,
207
+ "entropy": 2.2513952255249023,
208
+ "epoch": 0.275,
209
+ "grad_norm": 3.980247735977173,
210
+ "kl": 0.12798824906349182,
211
+ "learning_rate": 2.75e-06,
212
+ "loss": -0.13872209191322327,
213
+ "step": 11,
214
+ "step_time": 0.11282693799967092
215
+ },
216
+ {
217
+ "clip_ratio/high_max": 0.0244140625,
218
+ "clip_ratio/high_mean": 0.0244140625,
219
+ "clip_ratio/low_mean": 0.0,
220
+ "clip_ratio/low_min": 0.0,
221
+ "clip_ratio/region_mean": 0.0244140625,
222
+ "entropy": 2.080702781677246,
223
+ "epoch": 0.3,
224
+ "grad_norm": 0.9219491481781006,
225
+ "kl": 0.12932462990283966,
226
+ "learning_rate": 2.725e-06,
227
+ "loss": -0.0311975609511137,
228
+ "step": 12,
229
+ "step_time": 0.11239939000006416
230
+ },
231
+ {
232
+ "clip_ratio/high_max": 0.0,
233
+ "clip_ratio/high_mean": 0.0,
234
+ "clip_ratio/low_mean": 0.0,
235
+ "clip_ratio/low_min": 0.0,
236
+ "clip_ratio/region_mean": 0.0,
237
+ "completions/clipped_ratio": 1.0,
238
+ "completions/max_length": 256.0,
239
+ "completions/max_terminated_length": 0.0,
240
+ "completions/mean_length": 256.0,
241
+ "completions/mean_terminated_length": 0.0,
242
+ "completions/min_length": 256.0,
243
+ "completions/min_terminated_length": 0.0,
244
+ "entropy": 1.9584801197052002,
245
+ "epoch": 0.325,
246
+ "frac_reward_zero_std": 0.75,
247
+ "grad_norm": 0.03335069492459297,
248
+ "kl": 0.1676618754863739,
249
+ "learning_rate": 2.7e-06,
250
+ "loss": 0.0004191546468064189,
251
+ "num_tokens": 39564.0,
252
+ "reward": 0.8116456270217896,
253
+ "reward_std": 0.11149715632200241,
254
+ "rewards/AnswererRewardFunction/mean": 0.8116456270217896,
255
+ "rewards/AnswererRewardFunction/std": 0.11149716377258301,
256
+ "step": 13,
257
+ "step_time": 7.745207232000212
258
+ },
259
+ {
260
+ "clip_ratio/high_max": 0.0,
261
+ "clip_ratio/high_mean": 0.0,
262
+ "clip_ratio/low_mean": 0.0,
263
+ "clip_ratio/low_min": 0.0,
264
+ "clip_ratio/region_mean": 0.0,
265
+ "entropy": 2.2673592567443848,
266
+ "epoch": 0.35,
267
+ "grad_norm": 0.04296092316508293,
268
+ "kl": 0.1360304206609726,
269
+ "learning_rate": 2.6750000000000002e-06,
270
+ "loss": 0.0003400760469958186,
271
+ "step": 14,
272
+ "step_time": 0.11098732899972674
273
+ },
274
+ {
275
+ "clip_ratio/high_max": 0.0029296875,
276
+ "clip_ratio/high_mean": 0.0029296875,
277
+ "clip_ratio/low_mean": 0.0,
278
+ "clip_ratio/low_min": 0.0,
279
+ "clip_ratio/region_mean": 0.0029296875,
280
+ "entropy": 2.088756799697876,
281
+ "epoch": 0.375,
282
+ "grad_norm": 0.9206492900848389,
283
+ "kl": 0.1489439606666565,
284
+ "learning_rate": 2.65e-06,
285
+ "loss": -0.031076664105057716,
286
+ "step": 15,
287
+ "step_time": 0.11077636499976506
288
+ },
289
+ {
290
+ "clip_ratio/high_max": 0.0263671875,
291
+ "clip_ratio/high_mean": 0.0263671875,
292
+ "clip_ratio/low_mean": 0.0078125,
293
+ "clip_ratio/low_min": 0.0078125,
294
+ "clip_ratio/region_mean": 0.0341796875,
295
+ "entropy": 2.237659454345703,
296
+ "epoch": 0.4,
297
+ "grad_norm": 3.1504709720611572,
298
+ "kl": 0.16802266240119934,
299
+ "learning_rate": 2.6250000000000003e-06,
300
+ "loss": 0.03298211842775345,
301
+ "step": 16,
302
+ "step_time": 0.11010160100067878
303
+ },
304
+ {
305
+ "clip_ratio/high_max": 0.0,
306
+ "clip_ratio/high_mean": 0.0,
307
+ "clip_ratio/low_mean": 0.0,
308
+ "clip_ratio/low_min": 0.0,
309
+ "clip_ratio/region_mean": 0.0,
310
+ "completions/clipped_ratio": 1.0,
311
+ "completions/max_length": 256.0,
312
+ "completions/max_terminated_length": 0.0,
313
+ "completions/mean_length": 256.0,
314
+ "completions/mean_terminated_length": 0.0,
315
+ "completions/min_length": 256.0,
316
+ "completions/min_terminated_length": 0.0,
317
+ "entropy": 2.0111589431762695,
318
+ "epoch": 0.425,
319
+ "frac_reward_zero_std": 1.0,
320
+ "grad_norm": 0.06525206565856934,
321
+ "kl": 0.15062233805656433,
322
+ "learning_rate": 2.6e-06,
323
+ "loss": 0.0003765558358281851,
324
+ "num_tokens": 49924.0,
325
+ "reward": 0.9323133230209351,
326
+ "reward_std": 0.0,
327
+ "rewards/AnswererRewardFunction/mean": 0.9323133230209351,
328
+ "rewards/AnswererRewardFunction/std": 0.0,
329
+ "step": 17,
330
+ "step_time": 7.76931892399989
331
+ },
332
+ {
333
+ "clip_ratio/high_max": 0.0,
334
+ "clip_ratio/high_mean": 0.0,
335
+ "clip_ratio/low_mean": 0.0,
336
+ "clip_ratio/low_min": 0.0,
337
+ "clip_ratio/region_mean": 0.0,
338
+ "entropy": 1.9240071773529053,
339
+ "epoch": 0.45,
340
+ "grad_norm": 0.03619404137134552,
341
+ "kl": 0.1399194598197937,
342
+ "learning_rate": 2.575e-06,
343
+ "loss": 0.0003497986472211778,
344
+ "step": 18,
345
+ "step_time": 0.11182963699957327
346
+ },
347
+ {
348
+ "clip_ratio/high_max": 0.0,
349
+ "clip_ratio/high_mean": 0.0,
350
+ "clip_ratio/low_mean": 0.0,
351
+ "clip_ratio/low_min": 0.0,
352
+ "clip_ratio/region_mean": 0.0,
353
+ "entropy": 1.7755590677261353,
354
+ "epoch": 0.475,
355
+ "grad_norm": 0.046630166471004486,
356
+ "kl": 0.1555626392364502,
357
+ "learning_rate": 2.55e-06,
358
+ "loss": 0.00038890657015144825,
359
+ "step": 19,
360
+ "step_time": 0.11152786100046796
361
+ },
362
+ {
363
+ "clip_ratio/high_max": 0.0,
364
+ "clip_ratio/high_mean": 0.0,
365
+ "clip_ratio/low_mean": 0.0,
366
+ "clip_ratio/low_min": 0.0,
367
+ "clip_ratio/region_mean": 0.0,
368
+ "entropy": 2.1256823539733887,
369
+ "epoch": 0.5,
370
+ "grad_norm": 0.04450196027755737,
371
+ "kl": 0.1300331950187683,
372
+ "learning_rate": 2.525e-06,
373
+ "loss": 0.0003250829759053886,
374
+ "step": 20,
375
+ "step_time": 0.11261919400021725
376
+ },
377
+ {
378
+ "clip_ratio/high_max": 0.0,
379
+ "clip_ratio/high_mean": 0.0,
380
+ "clip_ratio/low_mean": 0.0,
381
+ "clip_ratio/low_min": 0.0,
382
+ "clip_ratio/region_mean": 0.0,
383
+ "completions/clipped_ratio": 1.0,
384
+ "completions/max_length": 256.0,
385
+ "completions/max_terminated_length": 0.0,
386
+ "completions/mean_length": 256.0,
387
+ "completions/mean_terminated_length": 0.0,
388
+ "completions/min_length": 256.0,
389
+ "completions/min_terminated_length": 0.0,
390
+ "entropy": 2.0368661880493164,
391
+ "epoch": 0.525,
392
+ "frac_reward_zero_std": 1.0,
393
+ "grad_norm": 0.03705684095621109,
394
+ "kl": 0.16164252161979675,
395
+ "learning_rate": 2.5e-06,
396
+ "loss": 0.00040410630754195154,
397
+ "num_tokens": 60044.0,
398
+ "reward": 0.819347620010376,
399
+ "reward_std": 0.11957820504903793,
400
+ "rewards/AnswererRewardFunction/mean": 0.819347620010376,
401
+ "rewards/AnswererRewardFunction/std": 0.11957821249961853,
402
+ "step": 21,
403
+ "step_time": 7.867706271000316
404
+ },
405
+ {
406
+ "clip_ratio/high_max": 0.0,
407
+ "clip_ratio/high_mean": 0.0,
408
+ "clip_ratio/low_mean": 0.0,
409
+ "clip_ratio/low_min": 0.0,
410
+ "clip_ratio/region_mean": 0.0,
411
+ "entropy": 1.8853070735931396,
412
+ "epoch": 0.55,
413
+ "grad_norm": 0.055804409086704254,
414
+ "kl": 0.16001088917255402,
415
+ "learning_rate": 2.475e-06,
416
+ "loss": 0.00040002723108045757,
417
+ "step": 22,
418
+ "step_time": 0.11128929000005883
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
+ "entropy": 1.9584823846817017,
427
+ "epoch": 0.575,
428
+ "grad_norm": 0.04979805648326874,
429
+ "kl": 0.16607147455215454,
430
+ "learning_rate": 2.45e-06,
431
+ "loss": 0.00041517868521623313,
432
+ "step": 23,
433
+ "step_time": 0.11279742299939244
434
+ },
435
+ {
436
+ "clip_ratio/high_max": 0.0,
437
+ "clip_ratio/high_mean": 0.0,
438
+ "clip_ratio/low_mean": 0.0,
439
+ "clip_ratio/low_min": 0.0,
440
+ "clip_ratio/region_mean": 0.0,
441
+ "entropy": 1.9190866947174072,
442
+ "epoch": 0.6,
443
+ "grad_norm": 0.03331170231103897,
444
+ "kl": 0.1263861209154129,
445
+ "learning_rate": 2.425e-06,
446
+ "loss": 0.00031596526969224215,
447
+ "step": 24,
448
+ "step_time": 0.11192457400011335
449
+ },
450
+ {
451
+ "clip_ratio/high_max": 0.0,
452
+ "clip_ratio/high_mean": 0.0,
453
+ "clip_ratio/low_mean": 0.0,
454
+ "clip_ratio/low_min": 0.0,
455
+ "clip_ratio/region_mean": 0.0,
456
+ "completions/clipped_ratio": 1.0,
457
+ "completions/max_length": 256.0,
458
+ "completions/max_terminated_length": 0.0,
459
+ "completions/mean_length": 256.0,
460
+ "completions/mean_terminated_length": 0.0,
461
+ "completions/min_length": 256.0,
462
+ "completions/min_terminated_length": 0.0,
463
+ "entropy": 1.9539425373077393,
464
+ "epoch": 0.625,
465
+ "frac_reward_zero_std": 0.75,
466
+ "grad_norm": 1.0814502239227295,
467
+ "kl": 0.17089709639549255,
468
+ "learning_rate": 2.4000000000000003e-06,
469
+ "loss": 0.03165344148874283,
470
+ "num_tokens": 70048.0,
471
+ "reward": 0.8298832774162292,
472
+ "reward_std": 0.12205864489078522,
473
+ "rewards/AnswererRewardFunction/mean": 0.8298832774162292,
474
+ "rewards/AnswererRewardFunction/std": 0.12205864489078522,
475
+ "step": 25,
476
+ "step_time": 7.7907283719996485
477
+ },
478
+ {
479
+ "clip_ratio/high_max": 0.0,
480
+ "clip_ratio/high_mean": 0.0,
481
+ "clip_ratio/low_mean": 0.001953125,
482
+ "clip_ratio/low_min": 0.001953125,
483
+ "clip_ratio/region_mean": 0.001953125,
484
+ "entropy": 1.988601565361023,
485
+ "epoch": 0.65,
486
+ "grad_norm": 1.3814729452133179,
487
+ "kl": 0.18201372027397156,
488
+ "learning_rate": 2.375e-06,
489
+ "loss": 0.06283903121948242,
490
+ "step": 26,
491
+ "step_time": 0.11003638100009994
492
+ },
493
+ {
494
+ "clip_ratio/high_max": 0.001953125,
495
+ "clip_ratio/high_mean": 0.001953125,
496
+ "clip_ratio/low_mean": 0.0,
497
+ "clip_ratio/low_min": 0.0,
498
+ "clip_ratio/region_mean": 0.001953125,
499
+ "entropy": 2.075544834136963,
500
+ "epoch": 0.675,
501
+ "grad_norm": 3.0482325553894043,
502
+ "kl": 0.18647681176662445,
503
+ "learning_rate": 2.35e-06,
504
+ "loss": -0.09349231421947479,
505
+ "step": 27,
506
+ "step_time": 0.11002873100005672
507
+ },
508
+ {
509
+ "clip_ratio/high_max": 0.0,
510
+ "clip_ratio/high_mean": 0.0,
511
+ "clip_ratio/low_mean": 0.0,
512
+ "clip_ratio/low_min": 0.0,
513
+ "clip_ratio/region_mean": 0.0,
514
+ "entropy": 2.125493049621582,
515
+ "epoch": 0.7,
516
+ "grad_norm": 0.04627307131886482,
517
+ "kl": 0.19537895917892456,
518
+ "learning_rate": 2.325e-06,
519
+ "loss": 0.000488447374664247,
520
+ "step": 28,
521
+ "step_time": 0.1143881190000684
522
+ },
523
+ {
524
+ "clip_ratio/high_max": 0.0,
525
+ "clip_ratio/high_mean": 0.0,
526
+ "clip_ratio/low_mean": 0.0,
527
+ "clip_ratio/low_min": 0.0,
528
+ "clip_ratio/region_mean": 0.0,
529
+ "completions/clipped_ratio": 1.0,
530
+ "completions/max_length": 256.0,
531
+ "completions/max_terminated_length": 0.0,
532
+ "completions/mean_length": 256.0,
533
+ "completions/mean_terminated_length": 0.0,
534
+ "completions/min_length": 256.0,
535
+ "completions/min_terminated_length": 0.0,
536
+ "entropy": 2.03523588180542,
537
+ "epoch": 0.725,
538
+ "frac_reward_zero_std": 0.75,
539
+ "grad_norm": 1.3853849172592163,
540
+ "kl": 0.1463131308555603,
541
+ "learning_rate": 2.3000000000000004e-06,
542
+ "loss": -0.06208648160099983,
543
+ "num_tokens": 80268.0,
544
+ "reward": 0.8684389591217041,
545
+ "reward_std": 0.09924228489398956,
546
+ "rewards/AnswererRewardFunction/mean": 0.8684389591217041,
547
+ "rewards/AnswererRewardFunction/std": 0.09924228489398956,
548
+ "step": 29,
549
+ "step_time": 7.750608561000263
550
+ },
551
+ {
552
+ "clip_ratio/high_max": 0.0,
553
+ "clip_ratio/high_mean": 0.0,
554
+ "clip_ratio/low_mean": 0.0,
555
+ "clip_ratio/low_min": 0.0,
556
+ "clip_ratio/region_mean": 0.0,
557
+ "entropy": 2.0841426849365234,
558
+ "epoch": 0.75,
559
+ "grad_norm": 2.837942361831665,
560
+ "kl": 0.1490478813648224,
561
+ "learning_rate": 2.275e-06,
562
+ "loss": 0.09484589099884033,
563
+ "step": 30,
564
+ "step_time": 0.11101365800004714
565
+ }
566
+ ],
567
+ "logging_steps": 1,
568
+ "max_steps": 120,
569
+ "num_input_tokens_seen": 80268,
570
+ "num_train_epochs": 3,
571
+ "save_steps": 30,
572
+ "stateful_callbacks": {
573
+ "TrainerControl": {
574
+ "args": {
575
+ "should_epoch_stop": false,
576
+ "should_evaluate": false,
577
+ "should_log": false,
578
+ "should_save": true,
579
+ "should_training_stop": false
580
+ },
581
+ "attributes": {}
582
+ }
583
+ },
584
+ "total_flos": 0.0,
585
+ "train_batch_size": 4,
586
+ "trial_name": null,
587
+ "trial_params": null
588
+ }
self_play_hf_l40s_full/round_004/answerer_train/checkpoint-30/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d1ca30827c82daaee74796a91c1d74f1cbf0768a07df4d6cf7d927229c515d1
3
+ size 7249