Intermediate checkpoint upload step=30 (answerer_train)
Browse files- .gitattributes +1 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/chat_template.jinja +54 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/config.json +57 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/generation_config.json +13 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/model.safetensors +3 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/optimizer.pt +3 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/rng_state.pth +3 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/scheduler.pt +3 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/tokenizer.json +3 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/tokenizer_config.json +32 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/trainer_state.json +588 -0
- self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,4 @@ self_play_hf_l40s_full/round_002/generator_train/checkpoint-60/tokenizer.json fi
|
|
| 57 |
self_play_hf_l40s_full/round_002/generator_train/checkpoint-90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 58 |
self_play_hf_l40s_full/round_002/generator_train/checkpoint-120/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 59 |
self_play_hf_l40s_full/round_002/generator_train/final_model/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 57 |
self_play_hf_l40s_full/round_002/generator_train/checkpoint-90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 58 |
self_play_hf_l40s_full/round_002/generator_train/checkpoint-120/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 59 |
self_play_hf_l40s_full/round_002/generator_train/final_model/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
self_play_hf_l40s_full/round_002/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_002/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_002/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_002/answerer_train/checkpoint-30/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0e56d1be2a3a12f72ceb661d264f74254d6e1e12e08ab4ea30d200f318525d9
|
| 3 |
+
size 1976163472
|
self_play_hf_l40s_full/round_002/answerer_train/checkpoint-30/optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6b4065ca7eea4fbf0a1f181edc7cf2f38d93faccda3a22db798e84b942a43ef
|
| 3 |
+
size 3952509771
|
self_play_hf_l40s_full/round_002/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_002/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_002/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_002/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_002/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.1812694072723389,
|
| 26 |
+
"epoch": 0.025,
|
| 27 |
+
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 3.56195330619812,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 3e-06,
|
| 31 |
+
"loss": 0.12478145956993103,
|
| 32 |
+
"num_tokens": 9980.0,
|
| 33 |
+
"reward": 0.49252849817276,
|
| 34 |
+
"reward_std": 0.12672561407089233,
|
| 35 |
+
"rewards/AnswererRewardFunction/mean": 0.49252849817276,
|
| 36 |
+
"rewards/AnswererRewardFunction/std": 0.12672561407089233,
|
| 37 |
+
"step": 1,
|
| 38 |
+
"step_time": 8.06768666500011
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"clip_ratio/high_max": 0.0244140625,
|
| 42 |
+
"clip_ratio/high_mean": 0.0244140625,
|
| 43 |
+
"clip_ratio/low_mean": 0.03125,
|
| 44 |
+
"clip_ratio/low_min": 0.03125,
|
| 45 |
+
"clip_ratio/region_mean": 0.0556640625,
|
| 46 |
+
"entropy": 1.0541718006134033,
|
| 47 |
+
"epoch": 0.05,
|
| 48 |
+
"grad_norm": 3.2018611431121826,
|
| 49 |
+
"kl": 0.07901028543710709,
|
| 50 |
+
"learning_rate": 2.9750000000000003e-06,
|
| 51 |
+
"loss": -0.11482742428779602,
|
| 52 |
+
"step": 2,
|
| 53 |
+
"step_time": 0.117666047000057
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"clip_ratio/high_max": 0.0341796875,
|
| 57 |
+
"clip_ratio/high_mean": 0.0341796875,
|
| 58 |
+
"clip_ratio/low_mean": 0.056640625,
|
| 59 |
+
"clip_ratio/low_min": 0.056640625,
|
| 60 |
+
"clip_ratio/region_mean": 0.0908203125,
|
| 61 |
+
"entropy": 1.2944715023040771,
|
| 62 |
+
"epoch": 0.075,
|
| 63 |
+
"grad_norm": 3.514223575592041,
|
| 64 |
+
"kl": 0.32789888978004456,
|
| 65 |
+
"learning_rate": 2.9499999999999997e-06,
|
| 66 |
+
"loss": 0.06260380148887634,
|
| 67 |
+
"step": 3,
|
| 68 |
+
"step_time": 0.11041338499990161
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"clip_ratio/high_max": 0.0400390625,
|
| 72 |
+
"clip_ratio/high_mean": 0.0400390625,
|
| 73 |
+
"clip_ratio/low_mean": 0.05859375,
|
| 74 |
+
"clip_ratio/low_min": 0.05859375,
|
| 75 |
+
"clip_ratio/region_mean": 0.0986328125,
|
| 76 |
+
"entropy": 1.2256050109863281,
|
| 77 |
+
"epoch": 0.1,
|
| 78 |
+
"grad_norm": 3.100332260131836,
|
| 79 |
+
"kl": 0.21089623868465424,
|
| 80 |
+
"learning_rate": 2.925e-06,
|
| 81 |
+
"loss": -0.05488990247249603,
|
| 82 |
+
"step": 4,
|
| 83 |
+
"step_time": 0.11791598300033002
|
| 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": 0.769734263420105,
|
| 99 |
+
"epoch": 0.125,
|
| 100 |
+
"frac_reward_zero_std": 0.5,
|
| 101 |
+
"grad_norm": 0.6963396668434143,
|
| 102 |
+
"kl": 0.026502244174480438,
|
| 103 |
+
"learning_rate": 2.9e-06,
|
| 104 |
+
"loss": 0.03130355477333069,
|
| 105 |
+
"num_tokens": 19780.0,
|
| 106 |
+
"reward": 0.4761159420013428,
|
| 107 |
+
"reward_std": 0.14743122458457947,
|
| 108 |
+
"rewards/AnswererRewardFunction/mean": 0.4761159420013428,
|
| 109 |
+
"rewards/AnswererRewardFunction/std": 0.14743123948574066,
|
| 110 |
+
"step": 5,
|
| 111 |
+
"step_time": 7.967737137000313
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"clip_ratio/high_max": 0.0126953125,
|
| 115 |
+
"clip_ratio/high_mean": 0.0126953125,
|
| 116 |
+
"clip_ratio/low_mean": 0.0029296875,
|
| 117 |
+
"clip_ratio/low_min": 0.0029296875,
|
| 118 |
+
"clip_ratio/region_mean": 0.015625,
|
| 119 |
+
"entropy": 1.4138596057891846,
|
| 120 |
+
"epoch": 0.15,
|
| 121 |
+
"grad_norm": 3.238894462585449,
|
| 122 |
+
"kl": 0.047499917447566986,
|
| 123 |
+
"learning_rate": 2.875e-06,
|
| 124 |
+
"loss": -0.05275709182024002,
|
| 125 |
+
"step": 6,
|
| 126 |
+
"step_time": 0.1440943980001066
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"clip_ratio/high_max": 0.0,
|
| 130 |
+
"clip_ratio/high_mean": 0.0,
|
| 131 |
+
"clip_ratio/low_mean": 0.005859375,
|
| 132 |
+
"clip_ratio/low_min": 0.005859375,
|
| 133 |
+
"clip_ratio/region_mean": 0.005859375,
|
| 134 |
+
"entropy": 1.1906815767288208,
|
| 135 |
+
"epoch": 0.175,
|
| 136 |
+
"grad_norm": 1.7127066850662231,
|
| 137 |
+
"kl": 0.06469351053237915,
|
| 138 |
+
"learning_rate": 2.85e-06,
|
| 139 |
+
"loss": 0.05530916154384613,
|
| 140 |
+
"step": 7,
|
| 141 |
+
"step_time": 0.11163456800022686
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"clip_ratio/high_max": 0.0166015625,
|
| 145 |
+
"clip_ratio/high_mean": 0.0166015625,
|
| 146 |
+
"clip_ratio/low_mean": 0.0576171875,
|
| 147 |
+
"clip_ratio/low_min": 0.0576171875,
|
| 148 |
+
"clip_ratio/region_mean": 0.07421875,
|
| 149 |
+
"entropy": 1.191636323928833,
|
| 150 |
+
"epoch": 0.2,
|
| 151 |
+
"grad_norm": 2.787623643875122,
|
| 152 |
+
"kl": 0.048633381724357605,
|
| 153 |
+
"learning_rate": 2.825e-06,
|
| 154 |
+
"loss": -0.03133530914783478,
|
| 155 |
+
"step": 8,
|
| 156 |
+
"step_time": 0.11240155399991636
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"clip_ratio/high_max": 0.0,
|
| 160 |
+
"clip_ratio/high_mean": 0.0,
|
| 161 |
+
"clip_ratio/low_mean": 0.0,
|
| 162 |
+
"clip_ratio/low_min": 0.0,
|
| 163 |
+
"clip_ratio/region_mean": 0.0,
|
| 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": 1.061751127243042,
|
| 172 |
+
"epoch": 0.225,
|
| 173 |
+
"frac_reward_zero_std": 0.25,
|
| 174 |
+
"grad_norm": 3.077267646789551,
|
| 175 |
+
"kl": 0.06591981649398804,
|
| 176 |
+
"learning_rate": 2.8000000000000003e-06,
|
| 177 |
+
"loss": 0.025028277188539505,
|
| 178 |
+
"num_tokens": 29540.0,
|
| 179 |
+
"reward": 0.530171275138855,
|
| 180 |
+
"reward_std": 0.12436192482709885,
|
| 181 |
+
"rewards/AnswererRewardFunction/mean": 0.530171275138855,
|
| 182 |
+
"rewards/AnswererRewardFunction/std": 0.12436193227767944,
|
| 183 |
+
"step": 9,
|
| 184 |
+
"step_time": 8.047823582000092
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"clip_ratio/high_max": 0.0029296875,
|
| 188 |
+
"clip_ratio/high_mean": 0.0029296875,
|
| 189 |
+
"clip_ratio/low_mean": 0.0029296875,
|
| 190 |
+
"clip_ratio/low_min": 0.0029296875,
|
| 191 |
+
"clip_ratio/region_mean": 0.005859375,
|
| 192 |
+
"entropy": 1.1717921495437622,
|
| 193 |
+
"epoch": 0.25,
|
| 194 |
+
"grad_norm": 1.6465528011322021,
|
| 195 |
+
"kl": 0.08923725038766861,
|
| 196 |
+
"learning_rate": 2.775e-06,
|
| 197 |
+
"loss": 0.016560696065425873,
|
| 198 |
+
"step": 10,
|
| 199 |
+
"step_time": 0.11130034100006014
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"clip_ratio/high_max": 0.01171875,
|
| 203 |
+
"clip_ratio/high_mean": 0.01171875,
|
| 204 |
+
"clip_ratio/low_mean": 0.0166015625,
|
| 205 |
+
"clip_ratio/low_min": 0.0166015625,
|
| 206 |
+
"clip_ratio/region_mean": 0.0283203125,
|
| 207 |
+
"entropy": 1.2988202571868896,
|
| 208 |
+
"epoch": 0.275,
|
| 209 |
+
"grad_norm": 4.246798515319824,
|
| 210 |
+
"kl": 0.1189119964838028,
|
| 211 |
+
"learning_rate": 2.75e-06,
|
| 212 |
+
"loss": 0.0765266865491867,
|
| 213 |
+
"step": 11,
|
| 214 |
+
"step_time": 0.1099475139999413
|
| 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": 1.2800407409667969,
|
| 223 |
+
"epoch": 0.3,
|
| 224 |
+
"grad_norm": 2.2184503078460693,
|
| 225 |
+
"kl": 0.12053709477186203,
|
| 226 |
+
"learning_rate": 2.725e-06,
|
| 227 |
+
"loss": -0.11435238271951675,
|
| 228 |
+
"step": 12,
|
| 229 |
+
"step_time": 0.11112866800021948
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"clip_ratio/high_max": 0.0009765625,
|
| 233 |
+
"clip_ratio/high_mean": 0.0009765625,
|
| 234 |
+
"clip_ratio/low_mean": 0.0,
|
| 235 |
+
"clip_ratio/low_min": 0.0,
|
| 236 |
+
"clip_ratio/region_mean": 0.0009765625,
|
| 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.1048344373703003,
|
| 245 |
+
"epoch": 0.325,
|
| 246 |
+
"frac_reward_zero_std": 0.0,
|
| 247 |
+
"grad_norm": 2.5493807792663574,
|
| 248 |
+
"kl": 0.10315192490816116,
|
| 249 |
+
"learning_rate": 2.7e-06,
|
| 250 |
+
"loss": -0.14281664788722992,
|
| 251 |
+
"num_tokens": 39576.0,
|
| 252 |
+
"reward": 0.5976681113243103,
|
| 253 |
+
"reward_std": 0.13136300444602966,
|
| 254 |
+
"rewards/AnswererRewardFunction/mean": 0.5976681113243103,
|
| 255 |
+
"rewards/AnswererRewardFunction/std": 0.13136300444602966,
|
| 256 |
+
"step": 13,
|
| 257 |
+
"step_time": 8.073091011000088
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"clip_ratio/high_max": 0.0078125,
|
| 261 |
+
"clip_ratio/high_mean": 0.0078125,
|
| 262 |
+
"clip_ratio/low_mean": 0.001953125,
|
| 263 |
+
"clip_ratio/low_min": 0.001953125,
|
| 264 |
+
"clip_ratio/region_mean": 0.009765625,
|
| 265 |
+
"entropy": 1.0296664237976074,
|
| 266 |
+
"epoch": 0.35,
|
| 267 |
+
"grad_norm": 3.767220973968506,
|
| 268 |
+
"kl": 0.07366035133600235,
|
| 269 |
+
"learning_rate": 2.6750000000000002e-06,
|
| 270 |
+
"loss": 0.05409611761569977,
|
| 271 |
+
"step": 14,
|
| 272 |
+
"step_time": 0.11164900099993247
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"clip_ratio/high_max": 0.0400390625,
|
| 276 |
+
"clip_ratio/high_mean": 0.0400390625,
|
| 277 |
+
"clip_ratio/low_mean": 0.0048828125,
|
| 278 |
+
"clip_ratio/low_min": 0.0048828125,
|
| 279 |
+
"clip_ratio/region_mean": 0.044921875,
|
| 280 |
+
"entropy": 1.0058298110961914,
|
| 281 |
+
"epoch": 0.375,
|
| 282 |
+
"grad_norm": 2.3384571075439453,
|
| 283 |
+
"kl": 0.08770984411239624,
|
| 284 |
+
"learning_rate": 2.65e-06,
|
| 285 |
+
"loss": -0.029884662479162216,
|
| 286 |
+
"step": 15,
|
| 287 |
+
"step_time": 0.11125424400006523
|
| 288 |
+
},
|
| 289 |
+
{
|
| 290 |
+
"clip_ratio/high_max": 0.03125,
|
| 291 |
+
"clip_ratio/high_mean": 0.03125,
|
| 292 |
+
"clip_ratio/low_mean": 0.0087890625,
|
| 293 |
+
"clip_ratio/low_min": 0.0087890625,
|
| 294 |
+
"clip_ratio/region_mean": 0.0400390625,
|
| 295 |
+
"entropy": 1.0768989324569702,
|
| 296 |
+
"epoch": 0.4,
|
| 297 |
+
"grad_norm": 4.1971917152404785,
|
| 298 |
+
"kl": 0.10156311094760895,
|
| 299 |
+
"learning_rate": 2.6250000000000003e-06,
|
| 300 |
+
"loss": 0.12216067314147949,
|
| 301 |
+
"step": 16,
|
| 302 |
+
"step_time": 0.11126710500002446
|
| 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": 0.9591922760009766,
|
| 318 |
+
"epoch": 0.425,
|
| 319 |
+
"frac_reward_zero_std": 0.0,
|
| 320 |
+
"grad_norm": 3.6558687686920166,
|
| 321 |
+
"kl": 0.07310992479324341,
|
| 322 |
+
"learning_rate": 2.6e-06,
|
| 323 |
+
"loss": -0.07063402235507965,
|
| 324 |
+
"num_tokens": 49936.0,
|
| 325 |
+
"reward": 0.5328114032745361,
|
| 326 |
+
"reward_std": 0.13155435025691986,
|
| 327 |
+
"rewards/AnswererRewardFunction/mean": 0.5328114032745361,
|
| 328 |
+
"rewards/AnswererRewardFunction/std": 0.13155436515808105,
|
| 329 |
+
"step": 17,
|
| 330 |
+
"step_time": 8.044399631000033
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"clip_ratio/high_max": 0.0,
|
| 334 |
+
"clip_ratio/high_mean": 0.0,
|
| 335 |
+
"clip_ratio/low_mean": 0.0107421875,
|
| 336 |
+
"clip_ratio/low_min": 0.0107421875,
|
| 337 |
+
"clip_ratio/region_mean": 0.0107421875,
|
| 338 |
+
"entropy": 0.7852188944816589,
|
| 339 |
+
"epoch": 0.45,
|
| 340 |
+
"grad_norm": 2.870166540145874,
|
| 341 |
+
"kl": 0.13418066501617432,
|
| 342 |
+
"learning_rate": 2.575e-06,
|
| 343 |
+
"loss": 0.1557493656873703,
|
| 344 |
+
"step": 18,
|
| 345 |
+
"step_time": 0.11281930699988152
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"clip_ratio/high_max": 0.01953125,
|
| 349 |
+
"clip_ratio/high_mean": 0.01953125,
|
| 350 |
+
"clip_ratio/low_mean": 0.0126953125,
|
| 351 |
+
"clip_ratio/low_min": 0.0126953125,
|
| 352 |
+
"clip_ratio/region_mean": 0.0322265625,
|
| 353 |
+
"entropy": 1.009390115737915,
|
| 354 |
+
"epoch": 0.475,
|
| 355 |
+
"grad_norm": 2.2228500843048096,
|
| 356 |
+
"kl": 0.11547495424747467,
|
| 357 |
+
"learning_rate": 2.55e-06,
|
| 358 |
+
"loss": -0.05351074039936066,
|
| 359 |
+
"step": 19,
|
| 360 |
+
"step_time": 0.1127072539998153
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"clip_ratio/high_max": 0.015625,
|
| 364 |
+
"clip_ratio/high_mean": 0.015625,
|
| 365 |
+
"clip_ratio/low_mean": 0.03125,
|
| 366 |
+
"clip_ratio/low_min": 0.03125,
|
| 367 |
+
"clip_ratio/region_mean": 0.046875,
|
| 368 |
+
"entropy": 1.210716962814331,
|
| 369 |
+
"epoch": 0.5,
|
| 370 |
+
"grad_norm": 3.261709213256836,
|
| 371 |
+
"kl": 0.17568016052246094,
|
| 372 |
+
"learning_rate": 2.525e-06,
|
| 373 |
+
"loss": -0.03016088344156742,
|
| 374 |
+
"step": 20,
|
| 375 |
+
"step_time": 0.11370289600017713
|
| 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": 1.0023118257522583,
|
| 391 |
+
"epoch": 0.525,
|
| 392 |
+
"frac_reward_zero_std": 0.0,
|
| 393 |
+
"grad_norm": 3.9749913215637207,
|
| 394 |
+
"kl": 0.2008446753025055,
|
| 395 |
+
"learning_rate": 2.5e-06,
|
| 396 |
+
"loss": -0.1282912790775299,
|
| 397 |
+
"num_tokens": 60108.0,
|
| 398 |
+
"reward": 0.6376597881317139,
|
| 399 |
+
"reward_std": 0.1541692167520523,
|
| 400 |
+
"rewards/AnswererRewardFunction/mean": 0.6376597881317139,
|
| 401 |
+
"rewards/AnswererRewardFunction/std": 0.1541692018508911,
|
| 402 |
+
"step": 21,
|
| 403 |
+
"step_time": 7.979511771000034
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"clip_ratio/high_max": 0.0009765625,
|
| 407 |
+
"clip_ratio/high_mean": 0.0009765625,
|
| 408 |
+
"clip_ratio/low_mean": 0.0078125,
|
| 409 |
+
"clip_ratio/low_min": 0.0078125,
|
| 410 |
+
"clip_ratio/region_mean": 0.0087890625,
|
| 411 |
+
"entropy": 0.9689664840698242,
|
| 412 |
+
"epoch": 0.55,
|
| 413 |
+
"grad_norm": 1.8822933435440063,
|
| 414 |
+
"kl": 0.1251663863658905,
|
| 415 |
+
"learning_rate": 2.475e-06,
|
| 416 |
+
"loss": 0.06288938969373703,
|
| 417 |
+
"step": 22,
|
| 418 |
+
"step_time": 0.11127889299996241
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"clip_ratio/high_max": 0.0068359375,
|
| 422 |
+
"clip_ratio/high_mean": 0.0068359375,
|
| 423 |
+
"clip_ratio/low_mean": 0.0205078125,
|
| 424 |
+
"clip_ratio/low_min": 0.0205078125,
|
| 425 |
+
"clip_ratio/region_mean": 0.02734375,
|
| 426 |
+
"entropy": 0.9676262140274048,
|
| 427 |
+
"epoch": 0.575,
|
| 428 |
+
"grad_norm": 3.6209120750427246,
|
| 429 |
+
"kl": 0.1173456609249115,
|
| 430 |
+
"learning_rate": 2.45e-06,
|
| 431 |
+
"loss": 0.07742585241794586,
|
| 432 |
+
"step": 23,
|
| 433 |
+
"step_time": 0.11072158999968451
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"clip_ratio/high_max": 0.017578125,
|
| 437 |
+
"clip_ratio/high_mean": 0.017578125,
|
| 438 |
+
"clip_ratio/low_mean": 0.0283203125,
|
| 439 |
+
"clip_ratio/low_min": 0.0283203125,
|
| 440 |
+
"clip_ratio/region_mean": 0.0458984375,
|
| 441 |
+
"entropy": 0.9444276094436646,
|
| 442 |
+
"epoch": 0.6,
|
| 443 |
+
"grad_norm": 2.653747320175171,
|
| 444 |
+
"kl": 0.19196566939353943,
|
| 445 |
+
"learning_rate": 2.425e-06,
|
| 446 |
+
"loss": -0.010297899134457111,
|
| 447 |
+
"step": 24,
|
| 448 |
+
"step_time": 0.11332796499982578
|
| 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.0263278484344482,
|
| 464 |
+
"epoch": 0.625,
|
| 465 |
+
"frac_reward_zero_std": 0.0,
|
| 466 |
+
"grad_norm": 3.7951908111572266,
|
| 467 |
+
"kl": 0.13174787163734436,
|
| 468 |
+
"learning_rate": 2.4000000000000003e-06,
|
| 469 |
+
"loss": -0.0016784188337624073,
|
| 470 |
+
"num_tokens": 70020.0,
|
| 471 |
+
"reward": 0.7374376058578491,
|
| 472 |
+
"reward_std": 0.1732868254184723,
|
| 473 |
+
"rewards/AnswererRewardFunction/mean": 0.7374376058578491,
|
| 474 |
+
"rewards/AnswererRewardFunction/std": 0.1732868254184723,
|
| 475 |
+
"step": 25,
|
| 476 |
+
"step_time": 7.9698032609999245
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"clip_ratio/high_max": 0.0029296875,
|
| 480 |
+
"clip_ratio/high_mean": 0.0029296875,
|
| 481 |
+
"clip_ratio/low_mean": 0.0048828125,
|
| 482 |
+
"clip_ratio/low_min": 0.0048828125,
|
| 483 |
+
"clip_ratio/region_mean": 0.0078125,
|
| 484 |
+
"entropy": 1.0938024520874023,
|
| 485 |
+
"epoch": 0.65,
|
| 486 |
+
"grad_norm": 1.8259835243225098,
|
| 487 |
+
"kl": 0.15534526109695435,
|
| 488 |
+
"learning_rate": 2.375e-06,
|
| 489 |
+
"loss": 0.06504079699516296,
|
| 490 |
+
"step": 26,
|
| 491 |
+
"step_time": 0.11241862999986552
|
| 492 |
+
},
|
| 493 |
+
{
|
| 494 |
+
"clip_ratio/high_max": 0.0126953125,
|
| 495 |
+
"clip_ratio/high_mean": 0.0126953125,
|
| 496 |
+
"clip_ratio/low_mean": 0.0087890625,
|
| 497 |
+
"clip_ratio/low_min": 0.0087890625,
|
| 498 |
+
"clip_ratio/region_mean": 0.021484375,
|
| 499 |
+
"entropy": 0.9784930348396301,
|
| 500 |
+
"epoch": 0.675,
|
| 501 |
+
"grad_norm": 1.7331888675689697,
|
| 502 |
+
"kl": 0.1776759773492813,
|
| 503 |
+
"learning_rate": 2.35e-06,
|
| 504 |
+
"loss": -0.06545304507017136,
|
| 505 |
+
"step": 27,
|
| 506 |
+
"step_time": 0.11266273999990517
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"clip_ratio/high_max": 0.0224609375,
|
| 510 |
+
"clip_ratio/high_mean": 0.0224609375,
|
| 511 |
+
"clip_ratio/low_mean": 0.0185546875,
|
| 512 |
+
"clip_ratio/low_min": 0.0185546875,
|
| 513 |
+
"clip_ratio/region_mean": 0.041015625,
|
| 514 |
+
"entropy": 0.8833986520767212,
|
| 515 |
+
"epoch": 0.7,
|
| 516 |
+
"grad_norm": 3.654691219329834,
|
| 517 |
+
"kl": 0.17693831026554108,
|
| 518 |
+
"learning_rate": 2.325e-06,
|
| 519 |
+
"loss": 0.005695457104593515,
|
| 520 |
+
"step": 28,
|
| 521 |
+
"step_time": 0.11081353399958971
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"clip_ratio/high_max": 0.0,
|
| 525 |
+
"clip_ratio/high_mean": 0.0,
|
| 526 |
+
"clip_ratio/low_mean": 0.0009765625,
|
| 527 |
+
"clip_ratio/low_min": 0.0009765625,
|
| 528 |
+
"clip_ratio/region_mean": 0.0009765625,
|
| 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": 0.9469633102416992,
|
| 537 |
+
"epoch": 0.725,
|
| 538 |
+
"frac_reward_zero_std": 0.0,
|
| 539 |
+
"grad_norm": 4.039062023162842,
|
| 540 |
+
"kl": 0.1610972285270691,
|
| 541 |
+
"learning_rate": 2.3000000000000004e-06,
|
| 542 |
+
"loss": 0.12820656597614288,
|
| 543 |
+
"num_tokens": 80300.0,
|
| 544 |
+
"reward": 0.77821946144104,
|
| 545 |
+
"reward_std": 0.19161619246006012,
|
| 546 |
+
"rewards/AnswererRewardFunction/mean": 0.77821946144104,
|
| 547 |
+
"rewards/AnswererRewardFunction/std": 0.19161619246006012,
|
| 548 |
+
"step": 29,
|
| 549 |
+
"step_time": 8.035392143000081
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"clip_ratio/high_max": 0.0068359375,
|
| 553 |
+
"clip_ratio/high_mean": 0.0068359375,
|
| 554 |
+
"clip_ratio/low_mean": 0.0009765625,
|
| 555 |
+
"clip_ratio/low_min": 0.0009765625,
|
| 556 |
+
"clip_ratio/region_mean": 0.0078125,
|
| 557 |
+
"entropy": 1.054987907409668,
|
| 558 |
+
"epoch": 0.75,
|
| 559 |
+
"grad_norm": 3.0317585468292236,
|
| 560 |
+
"kl": 0.1419621706008911,
|
| 561 |
+
"learning_rate": 2.275e-06,
|
| 562 |
+
"loss": -0.03360540792346001,
|
| 563 |
+
"step": 30,
|
| 564 |
+
"step_time": 0.11271856700022909
|
| 565 |
+
}
|
| 566 |
+
],
|
| 567 |
+
"logging_steps": 1,
|
| 568 |
+
"max_steps": 120,
|
| 569 |
+
"num_input_tokens_seen": 80300,
|
| 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_002/answerer_train/checkpoint-30/training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07f752d454d10dde5c777669d2fdda366c9140734be3a0440014e6c662b1b868
|
| 3 |
+
size 7249
|