Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am giant pale ferret
unsloth
trl
genrl-swarm
I am giant_pale_ferret
conversational
text-generation-inference
Instructions to use moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret") model = AutoModelForCausalLM.from_pretrained("moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret
- SGLang
How to use moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret", max_seq_length=2048, ) - Docker Model Runner
How to use moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret with Docker Model Runner:
docker model run hf.co/moscowx21/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-giant_pale_ferret
aawwssdddwdwd commited on
End of training
Browse files- adapter_config.json +5 -5
- adapter_model.safetensors +1 -1
- all_results.json +5 -5
- train_results.json +5 -5
- trainer_state.json +1370 -135
- training_args.bin +1 -1
adapter_config.json
CHANGED
|
@@ -24,13 +24,13 @@
|
|
| 24 |
"rank_pattern": {},
|
| 25 |
"revision": null,
|
| 26 |
"target_modules": [
|
| 27 |
-
"
|
| 28 |
-
"
|
| 29 |
-
"q_proj",
|
| 30 |
"v_proj",
|
|
|
|
| 31 |
"o_proj",
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
],
|
| 35 |
"task_type": "CAUSAL_LM",
|
| 36 |
"trainable_token_indices": null,
|
|
|
|
| 24 |
"rank_pattern": {},
|
| 25 |
"revision": null,
|
| 26 |
"target_modules": [
|
| 27 |
+
"gate_proj",
|
| 28 |
+
"down_proj",
|
|
|
|
| 29 |
"v_proj",
|
| 30 |
+
"q_proj",
|
| 31 |
"o_proj",
|
| 32 |
+
"k_proj",
|
| 33 |
+
"up_proj"
|
| 34 |
],
|
| 35 |
"task_type": "CAUSAL_LM",
|
| 36 |
"trainable_token_indices": null,
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 73911112
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:025841bf1ac076e4b501a79e977a79ab09ff20b8504cade6de506be0931e287f
|
| 3 |
size 73911112
|
all_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss":
|
| 4 |
-
"train_runtime":
|
| 5 |
-
"train_samples":
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 4.005705436611606e-06,
|
| 4 |
+
"train_runtime": 2512.4216,
|
| 5 |
+
"train_samples": 35,
|
| 6 |
+
"train_samples_per_second": 0.716,
|
| 7 |
+
"train_steps_per_second": 0.06
|
| 8 |
}
|
train_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss":
|
| 4 |
-
"train_runtime":
|
| 5 |
-
"train_samples":
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 4.005705436611606e-06,
|
| 4 |
+
"train_runtime": 2512.4216,
|
| 5 |
+
"train_samples": 35,
|
| 6 |
+
"train_samples_per_second": 0.716,
|
| 7 |
+
"train_steps_per_second": 0.06
|
| 8 |
}
|
trainer_state.json
CHANGED
|
@@ -1,218 +1,1453 @@
|
|
| 1 |
{
|
| 2 |
"best_metric": null,
|
| 3 |
"best_model_checkpoint": null,
|
| 4 |
-
"epoch":
|
| 5 |
"eval_steps": 500,
|
| 6 |
-
"global_step":
|
| 7 |
"is_hyper_param_search": false,
|
| 8 |
"is_local_process_zero": true,
|
| 9 |
"is_world_process_zero": true,
|
| 10 |
"log_history": [
|
| 11 |
{
|
| 12 |
-
"completion_length":
|
| 13 |
-
"epoch":
|
| 14 |
-
"grad_norm": 0.
|
| 15 |
-
"kl": 0.
|
| 16 |
-
"learning_rate":
|
| 17 |
"loss": 0.0,
|
| 18 |
-
"reward":
|
| 19 |
-
"reward_std":
|
| 20 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 21 |
-
"rewards/consensus_reward_func": 0.
|
| 22 |
"rewards/cumulative_reward_2": 0.0,
|
| 23 |
"rewards/final_correctness_reward_func": 0.0,
|
| 24 |
-
"rewards/question_recreation_reward_func": 0.
|
| 25 |
-
"rewards/soft_format_reward_func": 0.
|
| 26 |
-
"rewards/strict_format_reward_func": 0.
|
| 27 |
-
"rewards/xmlcount_reward_func": 0.
|
| 28 |
"step": 2
|
| 29 |
},
|
| 30 |
{
|
| 31 |
-
"completion_length":
|
| 32 |
-
"epoch":
|
| 33 |
-
"grad_norm": 0.
|
| 34 |
-
"kl": 0.
|
| 35 |
-
"learning_rate":
|
| 36 |
"loss": 0.0,
|
| 37 |
-
"reward":
|
| 38 |
-
"reward_std": 0.
|
| 39 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 40 |
-
"rewards/consensus_reward_func": 0.
|
| 41 |
"rewards/cumulative_reward_2": 0.0,
|
| 42 |
-
"rewards/final_correctness_reward_func": 0.
|
| 43 |
-
"rewards/question_recreation_reward_func": 0.
|
| 44 |
"rewards/soft_format_reward_func": 0.0,
|
| 45 |
-
"rewards/strict_format_reward_func": 0.
|
| 46 |
-
"rewards/xmlcount_reward_func": 0.
|
| 47 |
"step": 4
|
| 48 |
},
|
| 49 |
{
|
| 50 |
-
"completion_length":
|
| 51 |
-
"epoch":
|
| 52 |
-
"grad_norm": 0.
|
| 53 |
-
"kl": 0.
|
| 54 |
-
"learning_rate": 4.
|
| 55 |
"loss": 0.0,
|
| 56 |
-
"reward": 1.
|
| 57 |
-
"reward_std": 0.
|
| 58 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 59 |
-
"rewards/consensus_reward_func": 0.
|
| 60 |
"rewards/cumulative_reward_2": 0.0,
|
| 61 |
"rewards/final_correctness_reward_func": 0.0,
|
| 62 |
-
"rewards/question_recreation_reward_func": 0.
|
| 63 |
-
"rewards/soft_format_reward_func": 0.
|
| 64 |
-
"rewards/strict_format_reward_func": 0.
|
| 65 |
-
"rewards/xmlcount_reward_func": 0.
|
| 66 |
"step": 6
|
| 67 |
},
|
| 68 |
{
|
| 69 |
-
"completion_length":
|
| 70 |
-
"epoch":
|
| 71 |
-
"grad_norm": 0.
|
| 72 |
-
"kl": 0.
|
| 73 |
-
"learning_rate":
|
| 74 |
"loss": 0.0,
|
| 75 |
-
"reward": 0.
|
| 76 |
-
"reward_std": 0.
|
| 77 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 78 |
-
"rewards/consensus_reward_func": 0.
|
| 79 |
"rewards/cumulative_reward_2": 0.0,
|
| 80 |
"rewards/final_correctness_reward_func": 0.0,
|
| 81 |
-
"rewards/question_recreation_reward_func": 0.
|
| 82 |
"rewards/soft_format_reward_func": 0.0,
|
| 83 |
-
"rewards/strict_format_reward_func": 0.
|
| 84 |
-
"rewards/xmlcount_reward_func": 0.
|
| 85 |
"step": 8
|
| 86 |
},
|
| 87 |
{
|
| 88 |
-
"completion_length":
|
| 89 |
-
"epoch":
|
| 90 |
-
"grad_norm": 0.
|
| 91 |
-
"kl": 0.
|
| 92 |
-
"learning_rate":
|
| 93 |
"loss": 0.0,
|
| 94 |
-
"reward":
|
| 95 |
-
"reward_std":
|
| 96 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 97 |
-
"rewards/consensus_reward_func": 0.
|
| 98 |
"rewards/cumulative_reward_2": 0.0,
|
| 99 |
"rewards/final_correctness_reward_func": 0.0,
|
| 100 |
-
"rewards/question_recreation_reward_func": 0.
|
| 101 |
"rewards/soft_format_reward_func": 0.0,
|
| 102 |
-
"rewards/strict_format_reward_func": 0.
|
| 103 |
-
"rewards/xmlcount_reward_func": 0.
|
| 104 |
"step": 10
|
| 105 |
},
|
| 106 |
{
|
| 107 |
-
"completion_length":
|
| 108 |
-
"epoch":
|
| 109 |
-
"grad_norm": 0.
|
| 110 |
-
"kl": 0.
|
| 111 |
-
"learning_rate":
|
| 112 |
"loss": 0.0,
|
| 113 |
-
"reward": 0.
|
| 114 |
-
"reward_std": 0.
|
| 115 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 116 |
-
"rewards/consensus_reward_func": 0.
|
| 117 |
"rewards/cumulative_reward_2": 0.0,
|
| 118 |
"rewards/final_correctness_reward_func": 0.0,
|
| 119 |
-
"rewards/question_recreation_reward_func": 0.
|
| 120 |
"rewards/soft_format_reward_func": 0.0,
|
| 121 |
-
"rewards/strict_format_reward_func": 0.
|
| 122 |
-
"rewards/xmlcount_reward_func": 0.
|
| 123 |
"step": 12
|
| 124 |
},
|
| 125 |
{
|
| 126 |
-
"completion_length":
|
| 127 |
-
"epoch":
|
| 128 |
-
"grad_norm":
|
| 129 |
-
"kl": 0.
|
| 130 |
-
"learning_rate":
|
| 131 |
"loss": 0.0,
|
| 132 |
-
"reward": 0.
|
| 133 |
-
"reward_std": 0.
|
| 134 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 135 |
-
"rewards/consensus_reward_func": 0.
|
| 136 |
"rewards/cumulative_reward_2": 0.0,
|
| 137 |
"rewards/final_correctness_reward_func": 0.0,
|
| 138 |
-
"rewards/question_recreation_reward_func": 0.
|
| 139 |
-
"rewards/soft_format_reward_func": 0.
|
| 140 |
-
"rewards/strict_format_reward_func": 0.
|
| 141 |
-
"rewards/xmlcount_reward_func": 0.
|
| 142 |
"step": 14
|
| 143 |
},
|
| 144 |
{
|
| 145 |
-
"completion_length":
|
| 146 |
-
"epoch":
|
| 147 |
-
"grad_norm": 0.
|
| 148 |
-
"kl": 0.
|
| 149 |
-
"learning_rate":
|
| 150 |
"loss": 0.0,
|
| 151 |
-
"reward":
|
| 152 |
-
"reward_std": 0.
|
| 153 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 154 |
-
"rewards/consensus_reward_func": 0.
|
| 155 |
"rewards/cumulative_reward_2": 0.0,
|
| 156 |
"rewards/final_correctness_reward_func": 0.0,
|
| 157 |
-
"rewards/question_recreation_reward_func": 0.
|
| 158 |
"rewards/soft_format_reward_func": 0.0,
|
| 159 |
-
"rewards/strict_format_reward_func": 0.
|
| 160 |
-
"rewards/xmlcount_reward_func": 0.
|
| 161 |
"step": 16
|
| 162 |
},
|
| 163 |
{
|
| 164 |
-
"completion_length":
|
| 165 |
-
"epoch":
|
| 166 |
-
"grad_norm": 0.
|
| 167 |
-
"kl": 0.
|
| 168 |
-
"learning_rate":
|
| 169 |
"loss": 0.0,
|
| 170 |
-
"reward":
|
| 171 |
-
"reward_std": 0.
|
| 172 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 173 |
-
"rewards/consensus_reward_func": 0.
|
| 174 |
"rewards/cumulative_reward_2": 0.0,
|
| 175 |
"rewards/final_correctness_reward_func": 0.0,
|
| 176 |
-
"rewards/question_recreation_reward_func": 0.
|
| 177 |
"rewards/soft_format_reward_func": 0.0,
|
| 178 |
-
"rewards/strict_format_reward_func": 0.
|
| 179 |
-
"rewards/xmlcount_reward_func": 0.
|
| 180 |
"step": 18
|
| 181 |
},
|
| 182 |
{
|
| 183 |
-
"completion_length":
|
| 184 |
-
"epoch":
|
| 185 |
-
"grad_norm": 0.
|
| 186 |
-
"kl": 0.
|
| 187 |
-
"learning_rate":
|
| 188 |
"loss": 0.0,
|
| 189 |
-
"reward":
|
| 190 |
-
"reward_std":
|
| 191 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 192 |
-
"rewards/consensus_reward_func": 0.
|
| 193 |
"rewards/cumulative_reward_2": 0.0,
|
| 194 |
"rewards/final_correctness_reward_func": 0.0,
|
| 195 |
-
"rewards/question_recreation_reward_func": 0.
|
| 196 |
"rewards/soft_format_reward_func": 0.0,
|
| 197 |
-
"rewards/strict_format_reward_func": 0.
|
| 198 |
-
"rewards/xmlcount_reward_func": 0.
|
| 199 |
"step": 20
|
| 200 |
},
|
| 201 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
"epoch": 20.0,
|
| 203 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
"total_flos": 0.0,
|
| 205 |
-
"train_loss":
|
| 206 |
-
"train_runtime":
|
| 207 |
-
"train_samples_per_second": 0.
|
| 208 |
-
"train_steps_per_second": 0.
|
| 209 |
}
|
| 210 |
],
|
| 211 |
"logging_steps": 2,
|
| 212 |
-
"max_steps":
|
| 213 |
"num_input_tokens_seen": 0,
|
| 214 |
-
"num_train_epochs":
|
| 215 |
-
"save_steps":
|
| 216 |
"stateful_callbacks": {
|
| 217 |
"TrainerControl": {
|
| 218 |
"args": {
|
|
@@ -226,7 +1461,7 @@
|
|
| 226 |
}
|
| 227 |
},
|
| 228 |
"total_flos": 0.0,
|
| 229 |
-
"train_batch_size":
|
| 230 |
"trial_name": null,
|
| 231 |
"trial_params": null
|
| 232 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"best_metric": null,
|
| 3 |
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 25.0,
|
| 5 |
"eval_steps": 500,
|
| 6 |
+
"global_step": 150,
|
| 7 |
"is_hyper_param_search": false,
|
| 8 |
"is_local_process_zero": true,
|
| 9 |
"is_world_process_zero": true,
|
| 10 |
"log_history": [
|
| 11 |
{
|
| 12 |
+
"completion_length": 243.9583396911621,
|
| 13 |
+
"epoch": 0.3333333333333333,
|
| 14 |
+
"grad_norm": 0.23586256802082062,
|
| 15 |
+
"kl": 0.001098359382012859,
|
| 16 |
+
"learning_rate": 2e-07,
|
| 17 |
"loss": 0.0,
|
| 18 |
+
"reward": 0.8912999480962753,
|
| 19 |
+
"reward_std": 0.2599460817873478,
|
| 20 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 21 |
+
"rewards/consensus_reward_func": 0.0,
|
| 22 |
"rewards/cumulative_reward_2": 0.0,
|
| 23 |
"rewards/final_correctness_reward_func": 0.0,
|
| 24 |
+
"rewards/question_recreation_reward_func": 0.2947999183088541,
|
| 25 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 26 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 27 |
+
"rewards/xmlcount_reward_func": 0.575666680932045,
|
| 28 |
"step": 2
|
| 29 |
},
|
| 30 |
{
|
| 31 |
+
"completion_length": 250.33333587646484,
|
| 32 |
+
"epoch": 0.6666666666666666,
|
| 33 |
+
"grad_norm": 0.23456373810768127,
|
| 34 |
+
"kl": 0.001041582232574001,
|
| 35 |
+
"learning_rate": 4e-07,
|
| 36 |
"loss": 0.0,
|
| 37 |
+
"reward": 0.7571422457695007,
|
| 38 |
+
"reward_std": 0.3700219392776489,
|
| 39 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 40 |
+
"rewards/consensus_reward_func": 0.0,
|
| 41 |
"rewards/cumulative_reward_2": 0.0,
|
| 42 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 43 |
+
"rewards/question_recreation_reward_func": 0.17472553998231888,
|
| 44 |
"rewards/soft_format_reward_func": 0.0,
|
| 45 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 46 |
+
"rewards/xmlcount_reward_func": 0.5824166685342789,
|
| 47 |
"step": 4
|
| 48 |
},
|
| 49 |
{
|
| 50 |
+
"completion_length": 251.41666793823242,
|
| 51 |
+
"epoch": 1.0,
|
| 52 |
+
"grad_norm": 0.2602273225784302,
|
| 53 |
+
"kl": 0.0009062251629075035,
|
| 54 |
+
"learning_rate": 4.99941324504621e-07,
|
| 55 |
"loss": 0.0,
|
| 56 |
+
"reward": 1.3463366031646729,
|
| 57 |
+
"reward_std": 0.5522305034101009,
|
| 58 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 59 |
+
"rewards/consensus_reward_func": 0.5000000223517418,
|
| 60 |
"rewards/cumulative_reward_2": 0.0,
|
| 61 |
"rewards/final_correctness_reward_func": 0.0,
|
| 62 |
+
"rewards/question_recreation_reward_func": 0.3054823987185955,
|
| 63 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 64 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 65 |
+
"rewards/xmlcount_reward_func": 0.5408541858196259,
|
| 66 |
"step": 6
|
| 67 |
},
|
| 68 |
{
|
| 69 |
+
"completion_length": 249.2916717529297,
|
| 70 |
+
"epoch": 1.3333333333333333,
|
| 71 |
+
"grad_norm": 0.22653937339782715,
|
| 72 |
+
"kl": 0.0009439304994884878,
|
| 73 |
+
"learning_rate": 4.99472085783721e-07,
|
| 74 |
"loss": 0.0,
|
| 75 |
+
"reward": 0.868863582611084,
|
| 76 |
+
"reward_std": 0.409902460873127,
|
| 77 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 78 |
+
"rewards/consensus_reward_func": 0.0,
|
| 79 |
"rewards/cumulative_reward_2": 0.0,
|
| 80 |
"rewards/final_correctness_reward_func": 0.0,
|
| 81 |
+
"rewards/question_recreation_reward_func": 0.21953026205301285,
|
| 82 |
"rewards/soft_format_reward_func": 0.0,
|
| 83 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 84 |
+
"rewards/xmlcount_reward_func": 0.6493333578109741,
|
| 85 |
"step": 8
|
| 86 |
},
|
| 87 |
{
|
| 88 |
+
"completion_length": 245.79166793823242,
|
| 89 |
+
"epoch": 1.6666666666666665,
|
| 90 |
+
"grad_norm": 0.22448210418224335,
|
| 91 |
+
"kl": 0.0011687759833876044,
|
| 92 |
+
"learning_rate": 4.985344892885899e-07,
|
| 93 |
"loss": 0.0,
|
| 94 |
+
"reward": 1.0392787605524063,
|
| 95 |
+
"reward_std": 0.5154697671532631,
|
| 96 |
+
"rewards/concensus_correctness_reward_func": 0.07125000655651093,
|
| 97 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 98 |
"rewards/cumulative_reward_2": 0.0,
|
| 99 |
"rewards/final_correctness_reward_func": 0.0,
|
| 100 |
+
"rewards/question_recreation_reward_func": 0.25507040694355965,
|
| 101 |
"rewards/soft_format_reward_func": 0.0,
|
| 102 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 103 |
+
"rewards/xmlcount_reward_func": 0.5462916940450668,
|
| 104 |
"step": 10
|
| 105 |
},
|
| 106 |
{
|
| 107 |
+
"completion_length": 255.75,
|
| 108 |
+
"epoch": 2.0,
|
| 109 |
+
"grad_norm": 0.2590133547782898,
|
| 110 |
+
"kl": 0.0010423234780319035,
|
| 111 |
+
"learning_rate": 4.971302952586796e-07,
|
| 112 |
"loss": 0.0,
|
| 113 |
+
"reward": 0.6098116040229797,
|
| 114 |
+
"reward_std": 0.437416672706604,
|
| 115 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 116 |
+
"rewards/consensus_reward_func": 0.0,
|
| 117 |
"rewards/cumulative_reward_2": 0.0,
|
| 118 |
"rewards/final_correctness_reward_func": 0.0,
|
| 119 |
+
"rewards/question_recreation_reward_func": 0.1546240784227848,
|
| 120 |
"rewards/soft_format_reward_func": 0.0,
|
| 121 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 122 |
+
"rewards/xmlcount_reward_func": 0.44477084279060364,
|
| 123 |
"step": 12
|
| 124 |
},
|
| 125 |
{
|
| 126 |
+
"completion_length": 248.20833587646484,
|
| 127 |
+
"epoch": 2.3333333333333335,
|
| 128 |
+
"grad_norm": 0.24884550273418427,
|
| 129 |
+
"kl": 0.0009182853827951476,
|
| 130 |
+
"learning_rate": 4.952621399215597e-07,
|
| 131 |
"loss": 0.0,
|
| 132 |
+
"reward": 0.940536618232727,
|
| 133 |
+
"reward_std": 0.2838931605219841,
|
| 134 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 135 |
+
"rewards/consensus_reward_func": 0.0,
|
| 136 |
"rewards/cumulative_reward_2": 0.0,
|
| 137 |
"rewards/final_correctness_reward_func": 0.0,
|
| 138 |
+
"rewards/question_recreation_reward_func": 0.2979949302971363,
|
| 139 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 140 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 141 |
+
"rewards/xmlcount_reward_func": 0.63212501257658,
|
| 142 |
"step": 14
|
| 143 |
},
|
| 144 |
{
|
| 145 |
+
"completion_length": 245.0833396911621,
|
| 146 |
+
"epoch": 2.6666666666666665,
|
| 147 |
+
"grad_norm": 0.2338993400335312,
|
| 148 |
+
"kl": 0.0010259418486384675,
|
| 149 |
+
"learning_rate": 4.929335305436764e-07,
|
| 150 |
"loss": 0.0,
|
| 151 |
+
"reward": 0.7932935208082199,
|
| 152 |
+
"reward_std": 0.4369620755314827,
|
| 153 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 154 |
+
"rewards/consensus_reward_func": 0.0,
|
| 155 |
"rewards/cumulative_reward_2": 0.0,
|
| 156 |
"rewards/final_correctness_reward_func": 0.0,
|
| 157 |
+
"rewards/question_recreation_reward_func": 0.20591850765049458,
|
| 158 |
"rewards/soft_format_reward_func": 0.0,
|
| 159 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 160 |
+
"rewards/xmlcount_reward_func": 0.5665416866540909,
|
| 161 |
"step": 16
|
| 162 |
},
|
| 163 |
{
|
| 164 |
+
"completion_length": 252.50000381469727,
|
| 165 |
+
"epoch": 3.0,
|
| 166 |
+
"grad_norm": 0.24362091720104218,
|
| 167 |
+
"kl": 0.0009753270860528573,
|
| 168 |
+
"learning_rate": 4.901488388458247e-07,
|
| 169 |
"loss": 0.0,
|
| 170 |
+
"reward": 1.042687565088272,
|
| 171 |
+
"reward_std": 0.7606733236461878,
|
| 172 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 173 |
+
"rewards/consensus_reward_func": 0.2500000074505806,
|
| 174 |
"rewards/cumulative_reward_2": 0.0,
|
| 175 |
"rewards/final_correctness_reward_func": 0.0,
|
| 176 |
+
"rewards/question_recreation_reward_func": 0.26568757742643356,
|
| 177 |
"rewards/soft_format_reward_func": 0.0,
|
| 178 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 179 |
+
"rewards/xmlcount_reward_func": 0.5270000323653221,
|
| 180 |
"step": 18
|
| 181 |
},
|
| 182 |
{
|
| 183 |
+
"completion_length": 244.54166793823242,
|
| 184 |
+
"epoch": 3.3333333333333335,
|
| 185 |
+
"grad_norm": 0.2889133095741272,
|
| 186 |
+
"kl": 0.0010776016279123724,
|
| 187 |
+
"learning_rate": 4.869132927957006e-07,
|
| 188 |
"loss": 0.0,
|
| 189 |
+
"reward": 0.9227994382381439,
|
| 190 |
+
"reward_std": 0.3747098818421364,
|
| 191 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 192 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 193 |
"rewards/cumulative_reward_2": 0.0,
|
| 194 |
"rewards/final_correctness_reward_func": 0.0,
|
| 195 |
+
"rewards/question_recreation_reward_func": 0.21304943412542343,
|
| 196 |
"rewards/soft_format_reward_func": 0.0,
|
| 197 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 198 |
+
"rewards/xmlcount_reward_func": 0.6055833548307419,
|
| 199 |
"step": 20
|
| 200 |
},
|
| 201 |
{
|
| 202 |
+
"completion_length": 247.25,
|
| 203 |
+
"epoch": 3.6666666666666665,
|
| 204 |
+
"grad_norm": 0.23984657227993011,
|
| 205 |
+
"kl": 0.0009606060775695369,
|
| 206 |
+
"learning_rate": 4.832329667929376e-07,
|
| 207 |
+
"loss": 0.0,
|
| 208 |
+
"reward": 1.008092075586319,
|
| 209 |
+
"reward_std": 0.4960784874856472,
|
| 210 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 211 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 212 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 213 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 214 |
+
"rewards/question_recreation_reward_func": 0.21671707555651665,
|
| 215 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 216 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 217 |
+
"rewards/xmlcount_reward_func": 0.6872083470225334,
|
| 218 |
+
"step": 22
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"completion_length": 243.0416717529297,
|
| 222 |
+
"epoch": 4.0,
|
| 223 |
+
"grad_norm": 0.30041074752807617,
|
| 224 |
+
"kl": 0.0009601146884961054,
|
| 225 |
+
"learning_rate": 4.791147702650565e-07,
|
| 226 |
+
"loss": 0.0,
|
| 227 |
+
"reward": 0.9435153305530548,
|
| 228 |
+
"reward_std": 0.5804080665111542,
|
| 229 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 230 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 231 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 232 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 233 |
+
"rewards/question_recreation_reward_func": 0.3101403061300516,
|
| 234 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 235 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 236 |
+
"rewards/xmlcount_reward_func": 0.518791675567627,
|
| 237 |
+
"step": 24
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"completion_length": 253.50000381469727,
|
| 241 |
+
"epoch": 4.333333333333333,
|
| 242 |
+
"grad_norm": 0.21704967319965363,
|
| 243 |
+
"kl": 0.000969748682109639,
|
| 244 |
+
"learning_rate": 4.745664346957361e-07,
|
| 245 |
+
"loss": 0.0,
|
| 246 |
+
"reward": 0.9164519011974335,
|
| 247 |
+
"reward_std": 0.5521265864372253,
|
| 248 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 249 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 250 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 251 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 252 |
+
"rewards/question_recreation_reward_func": 0.21370190009474754,
|
| 253 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 254 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 255 |
+
"rewards/xmlcount_reward_func": 0.5256666839122772,
|
| 256 |
+
"step": 26
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"completion_length": 239.12500381469727,
|
| 260 |
+
"epoch": 4.666666666666667,
|
| 261 |
+
"grad_norm": 0.30419400334358215,
|
| 262 |
+
"kl": 0.001113584148697555,
|
| 263 |
+
"learning_rate": 4.695964991097616e-07,
|
| 264 |
+
"loss": 0.0,
|
| 265 |
+
"reward": 0.7989022731781006,
|
| 266 |
+
"reward_std": 0.25462955236434937,
|
| 267 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 268 |
+
"rewards/consensus_reward_func": 0.0,
|
| 269 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 270 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 271 |
+
"rewards/question_recreation_reward_func": 0.22277722135186195,
|
| 272 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 273 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 274 |
+
"rewards/xmlcount_reward_func": 0.5761250033974648,
|
| 275 |
+
"step": 28
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"completion_length": 248.54166793823242,
|
| 279 |
+
"epoch": 5.0,
|
| 280 |
+
"grad_norm": 0.2773168683052063,
|
| 281 |
+
"kl": 0.001008832361549139,
|
| 282 |
+
"learning_rate": 4.642142940418973e-07,
|
| 283 |
+
"loss": 0.0,
|
| 284 |
+
"reward": 1.0309449434280396,
|
| 285 |
+
"reward_std": 0.5466796979308128,
|
| 286 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 287 |
+
"rewards/consensus_reward_func": 0.2500000074505806,
|
| 288 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 289 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 290 |
+
"rewards/question_recreation_reward_func": 0.30559077858924866,
|
| 291 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 292 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 293 |
+
"rewards/xmlcount_reward_func": 0.4753541797399521,
|
| 294 |
+
"step": 30
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"completion_length": 232.5833396911621,
|
| 298 |
+
"epoch": 5.333333333333333,
|
| 299 |
+
"grad_norm": 0.23351286351680756,
|
| 300 |
+
"kl": 0.0009582913771737367,
|
| 301 |
+
"learning_rate": 4.5842992401978256e-07,
|
| 302 |
+
"loss": 0.0,
|
| 303 |
+
"reward": 1.0708215832710266,
|
| 304 |
+
"reward_std": 0.29593051224946976,
|
| 305 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 306 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 307 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 308 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 309 |
+
"rewards/question_recreation_reward_func": 0.2096132254227996,
|
| 310 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 311 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 312 |
+
"rewards/xmlcount_reward_func": 0.6945417001843452,
|
| 313 |
+
"step": 32
|
| 314 |
+
},
|
| 315 |
+
{
|
| 316 |
+
"completion_length": 256.0,
|
| 317 |
+
"epoch": 5.666666666666667,
|
| 318 |
+
"grad_norm": 0.2183801531791687,
|
| 319 |
+
"kl": 0.0009512502729194239,
|
| 320 |
+
"learning_rate": 4.5225424859373684e-07,
|
| 321 |
+
"loss": 0.0,
|
| 322 |
+
"reward": 0.7803274691104889,
|
| 323 |
+
"reward_std": 0.5050432272255421,
|
| 324 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 325 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 326 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 327 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 328 |
+
"rewards/question_recreation_reward_func": 0.14595245476812124,
|
| 329 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 330 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 331 |
+
"rewards/xmlcount_reward_func": 0.4677083436399698,
|
| 332 |
+
"step": 34
|
| 333 |
+
},
|
| 334 |
+
{
|
| 335 |
+
"completion_length": 252.29166793823242,
|
| 336 |
+
"epoch": 6.0,
|
| 337 |
+
"grad_norm": 0.30777090787887573,
|
| 338 |
+
"kl": 0.001077517168596387,
|
| 339 |
+
"learning_rate": 4.456988619490889e-07,
|
| 340 |
+
"loss": 0.0,
|
| 341 |
+
"reward": 0.6541076973080635,
|
| 342 |
+
"reward_std": 0.23607416450977325,
|
| 343 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 344 |
+
"rewards/consensus_reward_func": 0.0,
|
| 345 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 346 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 347 |
+
"rewards/question_recreation_reward_func": 0.20950352400541306,
|
| 348 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 349 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 350 |
+
"rewards/xmlcount_reward_func": 0.44460418447852135,
|
| 351 |
+
"step": 36
|
| 352 |
+
},
|
| 353 |
+
{
|
| 354 |
+
"completion_length": 252.45833587646484,
|
| 355 |
+
"epoch": 6.333333333333333,
|
| 356 |
+
"grad_norm": 0.23970821499824524,
|
| 357 |
+
"kl": 0.0009026254410855472,
|
| 358 |
+
"learning_rate": 4.3877607113930516e-07,
|
| 359 |
+
"loss": 0.0,
|
| 360 |
+
"reward": 0.7649316936731339,
|
| 361 |
+
"reward_std": 0.6210936903953552,
|
| 362 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 363 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 364 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 365 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 366 |
+
"rewards/question_recreation_reward_func": 0.16676498856395483,
|
| 367 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 368 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 369 |
+
"rewards/xmlcount_reward_func": 0.514833353459835,
|
| 370 |
+
"step": 38
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"completion_length": 249.25000381469727,
|
| 374 |
+
"epoch": 6.666666666666667,
|
| 375 |
+
"grad_norm": 0.2450600117444992,
|
| 376 |
+
"kl": 0.0009458353306399658,
|
| 377 |
+
"learning_rate": 4.314988729807827e-07,
|
| 378 |
+
"loss": 0.0,
|
| 379 |
+
"reward": 1.0382067561149597,
|
| 380 |
+
"reward_std": 0.6295727044343948,
|
| 381 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 382 |
+
"rewards/consensus_reward_func": 0.5,
|
| 383 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 384 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 385 |
+
"rewards/question_recreation_reward_func": 0.09437341336160898,
|
| 386 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 387 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 388 |
+
"rewards/xmlcount_reward_func": 0.4438333362340927,
|
| 389 |
+
"step": 40
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"completion_length": 244.8333396911621,
|
| 393 |
+
"epoch": 7.0,
|
| 394 |
+
"grad_norm": 0.2953910529613495,
|
| 395 |
+
"kl": 0.0009223672968801111,
|
| 396 |
+
"learning_rate": 4.238809296526846e-07,
|
| 397 |
+
"loss": 0.0,
|
| 398 |
+
"reward": 1.0418670028448105,
|
| 399 |
+
"reward_std": 0.5014088153839111,
|
| 400 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 401 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 402 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 403 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 404 |
+
"rewards/question_recreation_reward_func": 0.22415870800614357,
|
| 405 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 406 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 407 |
+
"rewards/xmlcount_reward_func": 0.6510416716337204,
|
| 408 |
+
"step": 42
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"completion_length": 237.91666793823242,
|
| 412 |
+
"epoch": 7.333333333333333,
|
| 413 |
+
"grad_norm": 0.2422342747449875,
|
| 414 |
+
"kl": 0.0009755256760399789,
|
| 415 |
+
"learning_rate": 4.159365430476261e-07,
|
| 416 |
+
"loss": 0.0,
|
| 417 |
+
"reward": 0.8328549861907959,
|
| 418 |
+
"reward_std": 0.42648887261748314,
|
| 419 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 420 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 421 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 422 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 423 |
+
"rewards/question_recreation_reward_func": 0.10818830132484436,
|
| 424 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 425 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 426 |
+
"rewards/xmlcount_reward_func": 0.5580000206828117,
|
| 427 |
+
"step": 44
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"completion_length": 235.5833396911621,
|
| 431 |
+
"epoch": 7.666666666666667,
|
| 432 |
+
"grad_norm": 0.29116472601890564,
|
| 433 |
+
"kl": 0.0009618218464311212,
|
| 434 |
+
"learning_rate": 4.076806279213655e-07,
|
| 435 |
+
"loss": 0.0,
|
| 436 |
+
"reward": 0.8638769537210464,
|
| 437 |
+
"reward_std": 0.33969054371118546,
|
| 438 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 439 |
+
"rewards/consensus_reward_func": 0.0,
|
| 440 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 441 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 442 |
+
"rewards/question_recreation_reward_func": 0.16271025501191616,
|
| 443 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 444 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 445 |
+
"rewards/xmlcount_reward_func": 0.6803333610296249,
|
| 446 |
+
"step": 46
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"completion_length": 255.45833587646484,
|
| 450 |
+
"epoch": 8.0,
|
| 451 |
+
"grad_norm": 0.24302349984645844,
|
| 452 |
+
"kl": 0.0008998525445349514,
|
| 453 |
+
"learning_rate": 3.991286838919086e-07,
|
| 454 |
+
"loss": 0.0,
|
| 455 |
+
"reward": 0.7139967754483223,
|
| 456 |
+
"reward_std": 0.4492686055600643,
|
| 457 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 458 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 459 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 460 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 461 |
+
"rewards/question_recreation_reward_func": 0.13420509733259678,
|
| 462 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 463 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 464 |
+
"rewards/xmlcount_reward_func": 0.49645835161209106,
|
| 465 |
+
"step": 48
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"completion_length": 251.25000381469727,
|
| 469 |
+
"epoch": 8.333333333333334,
|
| 470 |
+
"grad_norm": 0.2608531415462494,
|
| 471 |
+
"kl": 0.0009744187555043027,
|
| 472 |
+
"learning_rate": 3.902967663405956e-07,
|
| 473 |
+
"loss": 0.0,
|
| 474 |
+
"reward": 0.9686365872621536,
|
| 475 |
+
"reward_std": 0.43999840691685677,
|
| 476 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 477 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 478 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 479 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 480 |
+
"rewards/question_recreation_reward_func": 0.24667825177311897,
|
| 481 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 482 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 483 |
+
"rewards/xmlcount_reward_func": 0.5552916750311852,
|
| 484 |
+
"step": 50
|
| 485 |
+
},
|
| 486 |
+
{
|
| 487 |
+
"completion_length": 241.20833587646484,
|
| 488 |
+
"epoch": 8.666666666666666,
|
| 489 |
+
"grad_norm": 0.30811837315559387,
|
| 490 |
+
"kl": 0.0010436592565383762,
|
| 491 |
+
"learning_rate": 3.8120145626980015e-07,
|
| 492 |
+
"loss": 0.0,
|
| 493 |
+
"reward": 0.9686652719974518,
|
| 494 |
+
"reward_std": 0.7263502180576324,
|
| 495 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 496 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 497 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 498 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 499 |
+
"rewards/question_recreation_reward_func": 0.3276236057281494,
|
| 500 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 501 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 502 |
+
"rewards/xmlcount_reward_func": 0.45354165881872177,
|
| 503 |
+
"step": 52
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"completion_length": 243.54166793823242,
|
| 507 |
+
"epoch": 9.0,
|
| 508 |
+
"grad_norm": 0.29206618666648865,
|
| 509 |
+
"kl": 0.0009239439386874437,
|
| 510 |
+
"learning_rate": 3.718598291738298e-07,
|
| 511 |
+
"loss": 0.0,
|
| 512 |
+
"reward": 1.0735424309968948,
|
| 513 |
+
"reward_std": 0.7325034886598587,
|
| 514 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 515 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 516 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 517 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 518 |
+
"rewards/question_recreation_reward_func": 0.19197986833751202,
|
| 519 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 520 |
+
"rewards/strict_format_reward_func": 0.0416666679084301,
|
| 521 |
+
"rewards/xmlcount_reward_func": 0.6315625160932541,
|
| 522 |
+
"step": 54
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"completion_length": 237.00000381469727,
|
| 526 |
+
"epoch": 9.333333333333334,
|
| 527 |
+
"grad_norm": 0.2532391846179962,
|
| 528 |
+
"kl": 0.0010295536485500634,
|
| 529 |
+
"learning_rate": 3.622894229814698e-07,
|
| 530 |
+
"loss": 0.0,
|
| 531 |
+
"reward": 1.081029787659645,
|
| 532 |
+
"reward_std": 0.3188396841287613,
|
| 533 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 534 |
+
"rewards/consensus_reward_func": 0.25,
|
| 535 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 536 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 537 |
+
"rewards/question_recreation_reward_func": 0.21769641619175673,
|
| 538 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 539 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 540 |
+
"rewards/xmlcount_reward_func": 0.5925000235438347,
|
| 541 |
+
"step": 56
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"completion_length": 231.12500381469727,
|
| 545 |
+
"epoch": 9.666666666666666,
|
| 546 |
+
"grad_norm": 0.28410038352012634,
|
| 547 |
+
"kl": 0.0010245468729408458,
|
| 548 |
+
"learning_rate": 3.52508205130354e-07,
|
| 549 |
+
"loss": 0.0,
|
| 550 |
+
"reward": 0.8574095070362091,
|
| 551 |
+
"reward_std": 0.4760412946343422,
|
| 552 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 553 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 554 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 555 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 556 |
+
"rewards/question_recreation_reward_func": 0.2542011570185423,
|
| 557 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 558 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 559 |
+
"rewards/xmlcount_reward_func": 0.43654169887304306,
|
| 560 |
+
"step": 58
|
| 561 |
+
},
|
| 562 |
+
{
|
| 563 |
+
"completion_length": 249.87500381469727,
|
| 564 |
+
"epoch": 10.0,
|
| 565 |
+
"grad_norm": 0.2931140661239624,
|
| 566 |
+
"kl": 0.001108055905206129,
|
| 567 |
+
"learning_rate": 3.4253453883497864e-07,
|
| 568 |
+
"loss": 0.0,
|
| 569 |
+
"reward": 0.7035448998212814,
|
| 570 |
+
"reward_std": 0.463116317987442,
|
| 571 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 572 |
+
"rewards/consensus_reward_func": 0.0,
|
| 573 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 574 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 575 |
+
"rewards/question_recreation_reward_func": 0.18133653653785586,
|
| 576 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 577 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 578 |
+
"rewards/xmlcount_reward_func": 0.5222083479166031,
|
| 579 |
+
"step": 60
|
| 580 |
+
},
|
| 581 |
+
{
|
| 582 |
+
"completion_length": 249.4166717529297,
|
| 583 |
+
"epoch": 10.333333333333334,
|
| 584 |
+
"grad_norm": 0.2339998483657837,
|
| 585 |
+
"kl": 0.0010156262433156371,
|
| 586 |
+
"learning_rate": 3.323871486116851e-07,
|
| 587 |
+
"loss": 0.0,
|
| 588 |
+
"reward": 1.0926494300365448,
|
| 589 |
+
"reward_std": 0.8358982801437378,
|
| 590 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 591 |
+
"rewards/consensus_reward_func": 0.3333333358168602,
|
| 592 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 593 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 594 |
+
"rewards/question_recreation_reward_func": 0.2077327612787485,
|
| 595 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 596 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 597 |
+
"rewards/xmlcount_reward_func": 0.5411666706204414,
|
| 598 |
+
"step": 62
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"completion_length": 241.125,
|
| 602 |
+
"epoch": 10.666666666666666,
|
| 603 |
+
"grad_norm": 0.2425372451543808,
|
| 604 |
+
"kl": 0.0010399544844403863,
|
| 605 |
+
"learning_rate": 3.220850851253377e-07,
|
| 606 |
+
"loss": 0.0,
|
| 607 |
+
"reward": 0.6774226725101471,
|
| 608 |
+
"reward_std": 0.15603318624198437,
|
| 609 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 610 |
+
"rewards/consensus_reward_func": 0.0,
|
| 611 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 612 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 613 |
+
"rewards/question_recreation_reward_func": 0.10921429842710495,
|
| 614 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 615 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 616 |
+
"rewards/xmlcount_reward_func": 0.5682083368301392,
|
| 617 |
+
"step": 64
|
| 618 |
+
},
|
| 619 |
+
{
|
| 620 |
+
"completion_length": 251.91666793823242,
|
| 621 |
+
"epoch": 11.0,
|
| 622 |
+
"grad_norm": 0.23354342579841614,
|
| 623 |
+
"kl": 0.0008322933135787025,
|
| 624 |
+
"learning_rate": 3.1164768942369053e-07,
|
| 625 |
+
"loss": 0.0,
|
| 626 |
+
"reward": 1.1510787606239319,
|
| 627 |
+
"reward_std": 0.351579736918211,
|
| 628 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 629 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 630 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 631 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 632 |
+
"rewards/question_recreation_reward_func": 0.3893912173807621,
|
| 633 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 634 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 635 |
+
"rewards/xmlcount_reward_func": 0.5741875097155571,
|
| 636 |
+
"step": 66
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"completion_length": 250.6666717529297,
|
| 640 |
+
"epoch": 11.333333333333334,
|
| 641 |
+
"grad_norm": 0.23890496790409088,
|
| 642 |
+
"kl": 0.0008501187694491819,
|
| 643 |
+
"learning_rate": 3.010945566265912e-07,
|
| 644 |
+
"loss": 0.0,
|
| 645 |
+
"reward": 1.362295776605606,
|
| 646 |
+
"reward_std": 0.8761751502752304,
|
| 647 |
+
"rewards/concensus_correctness_reward_func": 0.04475000128149986,
|
| 648 |
+
"rewards/consensus_reward_func": 0.3333333432674408,
|
| 649 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 650 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 651 |
+
"rewards/question_recreation_reward_func": 0.2828373648226261,
|
| 652 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 653 |
+
"rewards/strict_format_reward_func": 0.06250000186264515,
|
| 654 |
+
"rewards/xmlcount_reward_func": 0.6388750001788139,
|
| 655 |
+
"step": 68
|
| 656 |
+
},
|
| 657 |
+
{
|
| 658 |
+
"completion_length": 237.7916717529297,
|
| 659 |
+
"epoch": 11.666666666666666,
|
| 660 |
+
"grad_norm": 0.32228681445121765,
|
| 661 |
+
"kl": 0.0010085924150189385,
|
| 662 |
+
"learning_rate": 2.9044549913819124e-07,
|
| 663 |
+
"loss": 0.0,
|
| 664 |
+
"reward": 0.854033350944519,
|
| 665 |
+
"reward_std": 0.45660512894392014,
|
| 666 |
+
"rewards/concensus_correctness_reward_func": 0.08166667353361845,
|
| 667 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 668 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 669 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 670 |
+
"rewards/question_recreation_reward_func": 0.2169082798063755,
|
| 671 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 672 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 673 |
+
"rewards/xmlcount_reward_func": 0.38879168033599854,
|
| 674 |
+
"step": 70
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"completion_length": 244.2291717529297,
|
| 678 |
+
"epoch": 12.0,
|
| 679 |
+
"grad_norm": 0.34781065583229065,
|
| 680 |
+
"kl": 0.0010221569682471454,
|
| 681 |
+
"learning_rate": 2.797205094512266e-07,
|
| 682 |
+
"loss": 0.0,
|
| 683 |
+
"reward": 0.763754477724433,
|
| 684 |
+
"reward_std": 0.5146888792514801,
|
| 685 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 686 |
+
"rewards/consensus_reward_func": 0.125,
|
| 687 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 688 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 689 |
+
"rewards/question_recreation_reward_func": 0.1701919911429286,
|
| 690 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 691 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 692 |
+
"rewards/xmlcount_reward_func": 0.46856251172721386,
|
| 693 |
+
"step": 72
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"completion_length": 250.5416717529297,
|
| 697 |
+
"epoch": 12.333333333333334,
|
| 698 |
+
"grad_norm": 0.26079338788986206,
|
| 699 |
+
"kl": 0.0009046219201991335,
|
| 700 |
+
"learning_rate": 2.6893972261320264e-07,
|
| 701 |
+
"loss": 0.0,
|
| 702 |
+
"reward": 1.0650671422481537,
|
| 703 |
+
"reward_std": 0.72061388194561,
|
| 704 |
+
"rewards/concensus_correctness_reward_func": 0.04475000128149986,
|
| 705 |
+
"rewards/consensus_reward_func": 0.2500000074505806,
|
| 706 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 707 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 708 |
+
"rewards/question_recreation_reward_func": 0.3010254316031933,
|
| 709 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 710 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 711 |
+
"rewards/xmlcount_reward_func": 0.46929167956113815,
|
| 712 |
+
"step": 74
|
| 713 |
+
},
|
| 714 |
+
{
|
| 715 |
+
"completion_length": 238.79166793823242,
|
| 716 |
+
"epoch": 12.666666666666666,
|
| 717 |
+
"grad_norm": 0.25841179490089417,
|
| 718 |
+
"kl": 0.0009440975554753095,
|
| 719 |
+
"learning_rate": 2.5812337842494516e-07,
|
| 720 |
+
"loss": 0.0,
|
| 721 |
+
"reward": 0.9689909741282463,
|
| 722 |
+
"reward_std": 0.5216221660375595,
|
| 723 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 724 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 725 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 726 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 727 |
+
"rewards/question_recreation_reward_func": 0.25732426159083843,
|
| 728 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 729 |
+
"rewards/strict_format_reward_func": 0.0416666679084301,
|
| 730 |
+
"rewards/xmlcount_reward_func": 0.5762500017881393,
|
| 731 |
+
"step": 76
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"completion_length": 247.08333587646484,
|
| 735 |
+
"epoch": 13.0,
|
| 736 |
+
"grad_norm": 0.295762836933136,
|
| 737 |
+
"kl": 0.0008411942981183529,
|
| 738 |
+
"learning_rate": 2.4729178344249006e-07,
|
| 739 |
+
"loss": 0.0,
|
| 740 |
+
"reward": 0.7745198309421539,
|
| 741 |
+
"reward_std": 0.40021975338459015,
|
| 742 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 743 |
+
"rewards/consensus_reward_func": 0.0,
|
| 744 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 745 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 746 |
+
"rewards/question_recreation_reward_func": 0.17797815427184105,
|
| 747 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 748 |
+
"rewards/strict_format_reward_func": 0.03125,
|
| 749 |
+
"rewards/xmlcount_reward_func": 0.565291665494442,
|
| 750 |
+
"step": 78
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"completion_length": 241.125,
|
| 754 |
+
"epoch": 13.333333333333334,
|
| 755 |
+
"grad_norm": 0.2495446801185608,
|
| 756 |
+
"kl": 0.0009230001014657319,
|
| 757 |
+
"learning_rate": 2.3646527285364563e-07,
|
| 758 |
+
"loss": 0.0,
|
| 759 |
+
"reward": 0.8283002823591232,
|
| 760 |
+
"reward_std": 0.3567834421992302,
|
| 761 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 762 |
+
"rewards/consensus_reward_func": 0.0,
|
| 763 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 764 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 765 |
+
"rewards/question_recreation_reward_func": 0.3017169274389744,
|
| 766 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 767 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 768 |
+
"rewards/xmlcount_reward_func": 0.5265833511948586,
|
| 769 |
+
"step": 80
|
| 770 |
+
},
|
| 771 |
+
{
|
| 772 |
+
"completion_length": 240.75000381469727,
|
| 773 |
+
"epoch": 13.666666666666666,
|
| 774 |
+
"grad_norm": 0.23679904639720917,
|
| 775 |
+
"kl": 0.0009740922250784934,
|
| 776 |
+
"learning_rate": 2.256641723008026e-07,
|
| 777 |
+
"loss": 0.0,
|
| 778 |
+
"reward": 0.9943374246358871,
|
| 779 |
+
"reward_std": 0.5632965341210365,
|
| 780 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 781 |
+
"rewards/consensus_reward_func": 0.2500000074505806,
|
| 782 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 783 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 784 |
+
"rewards/question_recreation_reward_func": 0.20533735305070877,
|
| 785 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 786 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 787 |
+
"rewards/xmlcount_reward_func": 0.539000004529953,
|
| 788 |
+
"step": 82
|
| 789 |
+
},
|
| 790 |
+
{
|
| 791 |
+
"completion_length": 245.37500381469727,
|
| 792 |
+
"epoch": 14.0,
|
| 793 |
+
"grad_norm": 0.27654239535331726,
|
| 794 |
+
"kl": 0.0010249131155433133,
|
| 795 |
+
"learning_rate": 2.1490875972166393e-07,
|
| 796 |
+
"loss": 0.0,
|
| 797 |
+
"reward": 0.870885506272316,
|
| 798 |
+
"reward_std": 0.37735576182603836,
|
| 799 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 800 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 801 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 802 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 803 |
+
"rewards/question_recreation_reward_func": 0.20246883248910308,
|
| 804 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 805 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 806 |
+
"rewards/xmlcount_reward_func": 0.48091667145490646,
|
| 807 |
+
"step": 84
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"completion_length": 239.6666717529297,
|
| 811 |
+
"epoch": 14.333333333333334,
|
| 812 |
+
"grad_norm": 0.2376907616853714,
|
| 813 |
+
"kl": 0.0009535926801618189,
|
| 814 |
+
"learning_rate": 2.0421922727953595e-07,
|
| 815 |
+
"loss": 0.0,
|
| 816 |
+
"reward": 0.6692031770944595,
|
| 817 |
+
"reward_std": 0.3753516748547554,
|
| 818 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 819 |
+
"rewards/consensus_reward_func": 0.0,
|
| 820 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 821 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 822 |
+
"rewards/question_recreation_reward_func": 0.11624482274055481,
|
| 823 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 824 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 825 |
+
"rewards/xmlcount_reward_func": 0.5321250110864639,
|
| 826 |
+
"step": 86
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"completion_length": 239.54166793823242,
|
| 830 |
+
"epoch": 14.666666666666666,
|
| 831 |
+
"grad_norm": 0.33387479186058044,
|
| 832 |
+
"kl": 0.001069716177880764,
|
| 833 |
+
"learning_rate": 1.9361564345465145e-07,
|
| 834 |
+
"loss": 0.0,
|
| 835 |
+
"reward": 0.9065132290124893,
|
| 836 |
+
"reward_std": 0.43948036059737206,
|
| 837 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 838 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 839 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 840 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 841 |
+
"rewards/question_recreation_reward_func": 0.24497149419039488,
|
| 842 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 843 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 844 |
+
"rewards/xmlcount_reward_func": 0.5573750212788582,
|
| 845 |
+
"step": 88
|
| 846 |
+
},
|
| 847 |
+
{
|
| 848 |
+
"completion_length": 251.87500381469727,
|
| 849 |
+
"epoch": 15.0,
|
| 850 |
+
"grad_norm": 10.691461563110352,
|
| 851 |
+
"kl": 0.0026971843908540905,
|
| 852 |
+
"learning_rate": 1.8311791536769483e-07,
|
| 853 |
+
"loss": 0.0,
|
| 854 |
+
"reward": 0.8780257403850555,
|
| 855 |
+
"reward_std": 0.35077016800642014,
|
| 856 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 857 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 858 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 859 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 860 |
+
"rewards/question_recreation_reward_func": 0.15740068443119526,
|
| 861 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 862 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 863 |
+
"rewards/xmlcount_reward_func": 0.5539583414793015,
|
| 864 |
+
"step": 90
|
| 865 |
+
},
|
| 866 |
+
{
|
| 867 |
+
"completion_length": 237.12500381469727,
|
| 868 |
+
"epoch": 15.333333333333334,
|
| 869 |
+
"grad_norm": 0.2563934922218323,
|
| 870 |
+
"kl": 0.001029187420499511,
|
| 871 |
+
"learning_rate": 1.7274575140626315e-07,
|
| 872 |
+
"loss": 0.0,
|
| 873 |
+
"reward": 1.044521152973175,
|
| 874 |
+
"reward_std": 0.6668648347258568,
|
| 875 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 876 |
+
"rewards/consensus_reward_func": 0.4166666716337204,
|
| 877 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 878 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 879 |
+
"rewards/question_recreation_reward_func": 0.18302111141383648,
|
| 880 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 881 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 882 |
+
"rewards/xmlcount_reward_func": 0.44483335316181183,
|
| 883 |
+
"step": 92
|
| 884 |
+
},
|
| 885 |
+
{
|
| 886 |
+
"completion_length": 250.37500381469727,
|
| 887 |
+
"epoch": 15.666666666666666,
|
| 888 |
+
"grad_norm": 0.19243191182613373,
|
| 889 |
+
"kl": 0.0009831937932176515,
|
| 890 |
+
"learning_rate": 1.6251862422442788e-07,
|
| 891 |
+
"loss": 0.0,
|
| 892 |
+
"reward": 0.9626381397247314,
|
| 893 |
+
"reward_std": 0.48763278126716614,
|
| 894 |
+
"rewards/concensus_correctness_reward_func": 0.0663333348929882,
|
| 895 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 896 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 897 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 898 |
+
"rewards/question_recreation_reward_func": 0.22267980594187975,
|
| 899 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 900 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 901 |
+
"rewards/xmlcount_reward_func": 0.5902916640043259,
|
| 902 |
+
"step": 94
|
| 903 |
+
},
|
| 904 |
+
{
|
| 905 |
+
"completion_length": 247.62500381469727,
|
| 906 |
+
"epoch": 16.0,
|
| 907 |
+
"grad_norm": 0.31039178371429443,
|
| 908 |
+
"kl": 0.0009879204735625535,
|
| 909 |
+
"learning_rate": 1.5245573418486135e-07,
|
| 910 |
+
"loss": 0.0,
|
| 911 |
+
"reward": 0.9554285407066345,
|
| 912 |
+
"reward_std": 0.14843177422881126,
|
| 913 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 914 |
+
"rewards/consensus_reward_func": 0.0,
|
| 915 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 916 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 917 |
+
"rewards/question_recreation_reward_func": 0.2345951907336712,
|
| 918 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 919 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 920 |
+
"rewards/xmlcount_reward_func": 0.7208333611488342,
|
| 921 |
+
"step": 96
|
| 922 |
+
},
|
| 923 |
+
{
|
| 924 |
+
"completion_length": 246.91666793823242,
|
| 925 |
+
"epoch": 16.333333333333332,
|
| 926 |
+
"grad_norm": 0.25648194551467896,
|
| 927 |
+
"kl": 0.0009462093003094196,
|
| 928 |
+
"learning_rate": 1.4257597331216208e-07,
|
| 929 |
+
"loss": 0.0,
|
| 930 |
+
"reward": 0.8551813066005707,
|
| 931 |
+
"reward_std": 0.42093783617019653,
|
| 932 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 933 |
+
"rewards/consensus_reward_func": 0.0,
|
| 934 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 935 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 936 |
+
"rewards/question_recreation_reward_func": 0.1955562625080347,
|
| 937 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 938 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 939 |
+
"rewards/xmlcount_reward_func": 0.6387916654348373,
|
| 940 |
+
"step": 98
|
| 941 |
+
},
|
| 942 |
+
{
|
| 943 |
+
"completion_length": 246.91666793823242,
|
| 944 |
+
"epoch": 16.666666666666668,
|
| 945 |
+
"grad_norm": 0.2276257574558258,
|
| 946 |
+
"kl": 0.0008919332904042676,
|
| 947 |
+
"learning_rate": 1.328978898250525e-07,
|
| 948 |
+
"loss": 0.0,
|
| 949 |
+
"reward": 1.0227466598153114,
|
| 950 |
+
"reward_std": 0.5311935096979141,
|
| 951 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 952 |
+
"rewards/consensus_reward_func": 0.25,
|
| 953 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 954 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 955 |
+
"rewards/question_recreation_reward_func": 0.26124666444957256,
|
| 956 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 957 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 958 |
+
"rewards/xmlcount_reward_func": 0.4906666874885559,
|
| 959 |
+
"step": 100
|
| 960 |
+
},
|
| 961 |
+
{
|
| 962 |
+
"completion_length": 230.1666717529297,
|
| 963 |
+
"epoch": 17.0,
|
| 964 |
+
"grad_norm": 0.28276175260543823,
|
| 965 |
+
"kl": 0.0009856357210082933,
|
| 966 |
+
"learning_rate": 1.234396533140365e-07,
|
| 967 |
+
"loss": 0.0,
|
| 968 |
+
"reward": 0.8042420297861099,
|
| 969 |
+
"reward_std": 0.5668299272656441,
|
| 970 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 971 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 972 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 973 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 974 |
+
"rewards/question_recreation_reward_func": 0.04959618765860796,
|
| 975 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 976 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 977 |
+
"rewards/xmlcount_reward_func": 0.5567291676998138,
|
| 978 |
+
"step": 102
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"completion_length": 252.95833587646484,
|
| 982 |
+
"epoch": 17.333333333333332,
|
| 983 |
+
"grad_norm": 0.24145229160785675,
|
| 984 |
+
"kl": 0.0010389972885604948,
|
| 985 |
+
"learning_rate": 1.1421902062989178e-07,
|
| 986 |
+
"loss": 0.0,
|
| 987 |
+
"reward": 0.8800064772367477,
|
| 988 |
+
"reward_std": 0.4219862353056669,
|
| 989 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 990 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 991 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 992 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 993 |
+
"rewards/question_recreation_reward_func": 0.12479815538972616,
|
| 994 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 995 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 996 |
+
"rewards/xmlcount_reward_func": 0.661458358168602,
|
| 997 |
+
"step": 104
|
| 998 |
+
},
|
| 999 |
+
{
|
| 1000 |
+
"completion_length": 238.2083396911621,
|
| 1001 |
+
"epoch": 17.666666666666668,
|
| 1002 |
+
"grad_norm": 0.2690638303756714,
|
| 1003 |
+
"kl": 0.0009289942245231941,
|
| 1004 |
+
"learning_rate": 1.0525330254703788e-07,
|
| 1005 |
+
"loss": 0.0,
|
| 1006 |
+
"reward": 1.0552653521299362,
|
| 1007 |
+
"reward_std": 0.47432762011885643,
|
| 1008 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1009 |
+
"rewards/consensus_reward_func": 0.3333333358168602,
|
| 1010 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1011 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1012 |
+
"rewards/question_recreation_reward_func": 0.1660986514762044,
|
| 1013 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1014 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1015 |
+
"rewards/xmlcount_reward_func": 0.5558333694934845,
|
| 1016 |
+
"step": 106
|
| 1017 |
+
},
|
| 1018 |
+
{
|
| 1019 |
+
"completion_length": 233.02083587646484,
|
| 1020 |
+
"epoch": 18.0,
|
| 1021 |
+
"grad_norm": 2.029247522354126,
|
| 1022 |
+
"kl": 0.0012233417219249532,
|
| 1023 |
+
"learning_rate": 9.655933126436563e-08,
|
| 1024 |
+
"loss": 0.0,
|
| 1025 |
+
"reward": 0.8586884886026382,
|
| 1026 |
+
"reward_std": 0.41075659915804863,
|
| 1027 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1028 |
+
"rewards/consensus_reward_func": 0.125,
|
| 1029 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1030 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1031 |
+
"rewards/question_recreation_reward_func": 0.17650096770375967,
|
| 1032 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1033 |
+
"rewards/strict_format_reward_func": 0.0416666679084301,
|
| 1034 |
+
"rewards/xmlcount_reward_func": 0.515520840883255,
|
| 1035 |
+
"step": 108
|
| 1036 |
+
},
|
| 1037 |
+
{
|
| 1038 |
+
"completion_length": 255.33333587646484,
|
| 1039 |
+
"epoch": 18.333333333333332,
|
| 1040 |
+
"grad_norm": 0.2518994212150574,
|
| 1041 |
+
"kl": 0.0009219197236234322,
|
| 1042 |
+
"learning_rate": 8.81534288045431e-08,
|
| 1043 |
+
"loss": 0.0,
|
| 1044 |
+
"reward": 0.8517690300941467,
|
| 1045 |
+
"reward_std": 0.5377568677067757,
|
| 1046 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1047 |
+
"rewards/consensus_reward_func": 0.2500000074505806,
|
| 1048 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1049 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1050 |
+
"rewards/question_recreation_reward_func": 0.14772731950506568,
|
| 1051 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1052 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1053 |
+
"rewards/xmlcount_reward_func": 0.45404166728258133,
|
| 1054 |
+
"step": 110
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"completion_length": 230.91666793823242,
|
| 1058 |
+
"epoch": 18.666666666666668,
|
| 1059 |
+
"grad_norm": 0.44778749346733093,
|
| 1060 |
+
"kl": 0.0011147863697260618,
|
| 1061 |
+
"learning_rate": 8.005137637112302e-08,
|
| 1062 |
+
"loss": 0.0,
|
| 1063 |
+
"reward": 0.8284278735518456,
|
| 1064 |
+
"reward_std": 0.5220160707831383,
|
| 1065 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1066 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 1067 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1068 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1069 |
+
"rewards/question_recreation_reward_func": 0.17305286042392254,
|
| 1070 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1071 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1072 |
+
"rewards/xmlcount_reward_func": 0.551208358258009,
|
| 1073 |
+
"step": 112
|
| 1074 |
+
},
|
| 1075 |
+
{
|
| 1076 |
+
"completion_length": 248.52083587646484,
|
| 1077 |
+
"epoch": 19.0,
|
| 1078 |
+
"grad_norm": 0.27239030599594116,
|
| 1079 |
+
"kl": 0.0010450754780322313,
|
| 1080 |
+
"learning_rate": 7.226838472098237e-08,
|
| 1081 |
+
"loss": 0.0,
|
| 1082 |
+
"reward": 1.0394659638404846,
|
| 1083 |
+
"reward_std": 0.39139912091195583,
|
| 1084 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1085 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 1086 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1087 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1088 |
+
"rewards/question_recreation_reward_func": 0.27873678505420685,
|
| 1089 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1090 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1091 |
+
"rewards/xmlcount_reward_func": 0.6773958578705788,
|
| 1092 |
+
"step": 114
|
| 1093 |
+
},
|
| 1094 |
+
{
|
| 1095 |
+
"completion_length": 247.12500381469727,
|
| 1096 |
+
"epoch": 19.333333333333332,
|
| 1097 |
+
"grad_norm": 0.2705827057361603,
|
| 1098 |
+
"kl": 0.000944676372455433,
|
| 1099 |
+
"learning_rate": 6.481906560771524e-08,
|
| 1100 |
+
"loss": 0.0,
|
| 1101 |
+
"reward": 1.1934748440980911,
|
| 1102 |
+
"reward_std": 0.6195695661008358,
|
| 1103 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1104 |
+
"rewards/consensus_reward_func": 0.4166666716337204,
|
| 1105 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1106 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1107 |
+
"rewards/question_recreation_reward_func": 0.22809979785233736,
|
| 1108 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1109 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1110 |
+
"rewards/xmlcount_reward_func": 0.5278749987483025,
|
| 1111 |
+
"step": 116
|
| 1112 |
+
},
|
| 1113 |
+
{
|
| 1114 |
+
"completion_length": 244.16666793823242,
|
| 1115 |
+
"epoch": 19.666666666666668,
|
| 1116 |
+
"grad_norm": 0.3459849953651428,
|
| 1117 |
+
"kl": 0.001006613762001507,
|
| 1118 |
+
"learning_rate": 5.771740434959277e-08,
|
| 1119 |
+
"loss": 0.0,
|
| 1120 |
+
"reward": 0.9170785397291183,
|
| 1121 |
+
"reward_std": 0.30866917595267296,
|
| 1122 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1123 |
+
"rewards/consensus_reward_func": 0.0,
|
| 1124 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1125 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1126 |
+
"rewards/question_recreation_reward_func": 0.21616187877953053,
|
| 1127 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1128 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1129 |
+
"rewards/xmlcount_reward_func": 0.6800833642482758,
|
| 1130 |
+
"step": 118
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"completion_length": 248.79166793823242,
|
| 1134 |
"epoch": 20.0,
|
| 1135 |
+
"grad_norm": 0.28259551525115967,
|
| 1136 |
+
"kl": 0.0010699233243940398,
|
| 1137 |
+
"learning_rate": 5.097673357358906e-08,
|
| 1138 |
+
"loss": 0.0,
|
| 1139 |
+
"reward": 0.7739865928888321,
|
| 1140 |
+
"reward_std": 0.2533000372350216,
|
| 1141 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1142 |
+
"rewards/consensus_reward_func": 0.0,
|
| 1143 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1144 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1145 |
+
"rewards/question_recreation_reward_func": 0.1705698948353529,
|
| 1146 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1147 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1148 |
+
"rewards/xmlcount_reward_func": 0.6034166738390923,
|
| 1149 |
+
"step": 120
|
| 1150 |
+
},
|
| 1151 |
+
{
|
| 1152 |
+
"completion_length": 241.5416717529297,
|
| 1153 |
+
"epoch": 20.333333333333332,
|
| 1154 |
+
"grad_norm": 0.25206458568573,
|
| 1155 |
+
"kl": 0.0010052528668893501,
|
| 1156 |
+
"learning_rate": 4.460970818476717e-08,
|
| 1157 |
+
"loss": 0.0,
|
| 1158 |
+
"reward": 1.283503606915474,
|
| 1159 |
+
"reward_std": 0.740435317158699,
|
| 1160 |
+
"rewards/concensus_correctness_reward_func": 0.010416666977107525,
|
| 1161 |
+
"rewards/consensus_reward_func": 0.3333333432674408,
|
| 1162 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1163 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1164 |
+
"rewards/question_recreation_reward_func": 0.2532535642385483,
|
| 1165 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1166 |
+
"rewards/strict_format_reward_func": 0.0416666679084301,
|
| 1167 |
+
"rewards/xmlcount_reward_func": 0.6448333784937859,
|
| 1168 |
+
"step": 122
|
| 1169 |
+
},
|
| 1170 |
+
{
|
| 1171 |
+
"completion_length": 245.50000762939453,
|
| 1172 |
+
"epoch": 20.666666666666668,
|
| 1173 |
+
"grad_norm": 0.2550675868988037,
|
| 1174 |
+
"kl": 0.0010486233804840595,
|
| 1175 |
+
"learning_rate": 3.8628281608017065e-08,
|
| 1176 |
+
"loss": 0.0,
|
| 1177 |
+
"reward": 0.7773748189210892,
|
| 1178 |
+
"reward_std": 0.3785080909729004,
|
| 1179 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1180 |
+
"rewards/consensus_reward_func": 0.0,
|
| 1181 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1182 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1183 |
+
"rewards/question_recreation_reward_func": 0.2198331318795681,
|
| 1184 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1185 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1186 |
+
"rewards/xmlcount_reward_func": 0.5575416684150696,
|
| 1187 |
+
"step": 124
|
| 1188 |
+
},
|
| 1189 |
+
{
|
| 1190 |
+
"completion_length": 252.125,
|
| 1191 |
+
"epoch": 21.0,
|
| 1192 |
+
"grad_norm": 0.25815054774284363,
|
| 1193 |
+
"kl": 0.0008713365532457829,
|
| 1194 |
+
"learning_rate": 3.304368334674965e-08,
|
| 1195 |
+
"loss": 0.0,
|
| 1196 |
+
"reward": 0.9102632999420166,
|
| 1197 |
+
"reward_std": 0.3166055828332901,
|
| 1198 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1199 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 1200 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1201 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1202 |
+
"rewards/question_recreation_reward_func": 0.22522159665822983,
|
| 1203 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1204 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1205 |
+
"rewards/xmlcount_reward_func": 0.5183750167489052,
|
| 1206 |
+
"step": 126
|
| 1207 |
+
},
|
| 1208 |
+
{
|
| 1209 |
+
"completion_length": 254.0,
|
| 1210 |
+
"epoch": 21.333333333333332,
|
| 1211 |
+
"grad_norm": 0.19974423944950104,
|
| 1212 |
+
"kl": 0.0009994291613111272,
|
| 1213 |
+
"learning_rate": 2.7866397900677185e-08,
|
| 1214 |
+
"loss": 0.0,
|
| 1215 |
+
"reward": 0.9313755556941032,
|
| 1216 |
+
"reward_std": 0.47402798384428024,
|
| 1217 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1218 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 1219 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1220 |
+
"rewards/final_correctness_reward_func": 0.0833333358168602,
|
| 1221 |
+
"rewards/question_recreation_reward_func": 0.2305004969239235,
|
| 1222 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1223 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1224 |
+
"rewards/xmlcount_reward_func": 0.5342083647847176,
|
| 1225 |
+
"step": 128
|
| 1226 |
+
},
|
| 1227 |
+
{
|
| 1228 |
+
"completion_length": 236.75000381469727,
|
| 1229 |
+
"epoch": 21.666666666666668,
|
| 1230 |
+
"grad_norm": 0.37588945031166077,
|
| 1231 |
+
"kl": 0.0010261698334943503,
|
| 1232 |
+
"learning_rate": 2.3106145082260774e-08,
|
| 1233 |
+
"loss": 0.0,
|
| 1234 |
+
"reward": 0.9061668962240219,
|
| 1235 |
+
"reward_std": 0.5161278247833252,
|
| 1236 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1237 |
+
"rewards/consensus_reward_func": 0.0,
|
| 1238 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1239 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1240 |
+
"rewards/question_recreation_reward_func": 0.18883355520665646,
|
| 1241 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1242 |
+
"rewards/strict_format_reward_func": 0.0416666679084301,
|
| 1243 |
+
"rewards/xmlcount_reward_func": 0.6756666973233223,
|
| 1244 |
+
"step": 130
|
| 1245 |
+
},
|
| 1246 |
+
{
|
| 1247 |
+
"completion_length": 240.95833587646484,
|
| 1248 |
+
"epoch": 22.0,
|
| 1249 |
+
"grad_norm": 0.33937975764274597,
|
| 1250 |
+
"kl": 0.0009526331414235756,
|
| 1251 |
+
"learning_rate": 1.877186176877779e-08,
|
| 1252 |
+
"loss": 0.0,
|
| 1253 |
+
"reward": 0.7365991473197937,
|
| 1254 |
+
"reward_std": 0.3077675364911556,
|
| 1255 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1256 |
+
"rewards/consensus_reward_func": 0.0,
|
| 1257 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1258 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1259 |
+
"rewards/question_recreation_reward_func": 0.3288283236324787,
|
| 1260 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1261 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1262 |
+
"rewards/xmlcount_reward_func": 0.4077708423137665,
|
| 1263 |
+
"step": 132
|
| 1264 |
+
},
|
| 1265 |
+
{
|
| 1266 |
+
"completion_length": 241.41666793823242,
|
| 1267 |
+
"epoch": 22.333333333333332,
|
| 1268 |
+
"grad_norm": 0.2997651994228363,
|
| 1269 |
+
"kl": 0.0010459028271725401,
|
| 1270 |
+
"learning_rate": 1.4871685124269007e-08,
|
| 1271 |
+
"loss": 0.0,
|
| 1272 |
+
"reward": 1.064703717827797,
|
| 1273 |
+
"reward_std": 0.7619387805461884,
|
| 1274 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1275 |
+
"rewards/consensus_reward_func": 0.3333333358168602,
|
| 1276 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1277 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1278 |
+
"rewards/question_recreation_reward_func": 0.15341205522418022,
|
| 1279 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1280 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1281 |
+
"rewards/xmlcount_reward_func": 0.5571250021457672,
|
| 1282 |
+
"step": 134
|
| 1283 |
+
},
|
| 1284 |
+
{
|
| 1285 |
+
"completion_length": 237.54167556762695,
|
| 1286 |
+
"epoch": 22.666666666666668,
|
| 1287 |
+
"grad_norm": 0.2647048532962799,
|
| 1288 |
+
"kl": 0.0010394936834927648,
|
| 1289 |
+
"learning_rate": 1.141293732286297e-08,
|
| 1290 |
+
"loss": 0.0,
|
| 1291 |
+
"reward": 0.7999026626348495,
|
| 1292 |
+
"reward_std": 0.673773281276226,
|
| 1293 |
+
"rewards/concensus_correctness_reward_func": 0.0403333343565464,
|
| 1294 |
+
"rewards/consensus_reward_func": 0.1666666716337204,
|
| 1295 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1296 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1297 |
+
"rewards/question_recreation_reward_func": 0.06627767626196146,
|
| 1298 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1299 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1300 |
+
"rewards/xmlcount_reward_func": 0.5266250036656857,
|
| 1301 |
+
"step": 136
|
| 1302 |
+
},
|
| 1303 |
+
{
|
| 1304 |
+
"completion_length": 248.08333587646484,
|
| 1305 |
+
"epoch": 23.0,
|
| 1306 |
+
"grad_norm": 0.24097177386283875,
|
| 1307 |
+
"kl": 0.0007808299997122958,
|
| 1308 |
+
"learning_rate": 8.402111802159412e-09,
|
| 1309 |
+
"loss": 0.0,
|
| 1310 |
+
"reward": 0.8799475729465485,
|
| 1311 |
+
"reward_std": 0.412565840408206,
|
| 1312 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1313 |
+
"rewards/consensus_reward_func": 0.0,
|
| 1314 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1315 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1316 |
+
"rewards/question_recreation_reward_func": 0.2921558953821659,
|
| 1317 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1318 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1319 |
+
"rewards/xmlcount_reward_func": 0.5877916663885117,
|
| 1320 |
+
"step": 138
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"completion_length": 229.5416717529297,
|
| 1324 |
+
"epoch": 23.333333333333332,
|
| 1325 |
+
"grad_norm": 0.21611253917217255,
|
| 1326 |
+
"kl": 0.0010441301274113357,
|
| 1327 |
+
"learning_rate": 5.844861072478335e-09,
|
| 1328 |
+
"loss": 0.0,
|
| 1329 |
+
"reward": 1.2775923311710358,
|
| 1330 |
+
"reward_std": 0.6640586405992508,
|
| 1331 |
+
"rewards/concensus_correctness_reward_func": 0.014833333902060986,
|
| 1332 |
+
"rewards/consensus_reward_func": 0.416666679084301,
|
| 1333 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1334 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1335 |
+
"rewards/question_recreation_reward_func": 0.22671727556735277,
|
| 1336 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1337 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1338 |
+
"rewards/xmlcount_reward_func": 0.5985416918992996,
|
| 1339 |
+
"step": 140
|
| 1340 |
+
},
|
| 1341 |
+
{
|
| 1342 |
+
"completion_length": 252.29166793823242,
|
| 1343 |
+
"epoch": 23.666666666666668,
|
| 1344 |
+
"grad_norm": 0.25495585799217224,
|
| 1345 |
+
"kl": 0.0009842409199336544,
|
| 1346 |
+
"learning_rate": 3.745986104862903e-09,
|
| 1347 |
+
"loss": 0.0,
|
| 1348 |
+
"reward": 1.1931225955486298,
|
| 1349 |
+
"reward_std": 1.0680770799517632,
|
| 1350 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1351 |
+
"rewards/consensus_reward_func": 0.4166666716337204,
|
| 1352 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1353 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1354 |
+
"rewards/question_recreation_reward_func": 0.17362259328365326,
|
| 1355 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1356 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1357 |
+
"rewards/xmlcount_reward_func": 0.5820000022649765,
|
| 1358 |
+
"step": 142
|
| 1359 |
+
},
|
| 1360 |
+
{
|
| 1361 |
+
"completion_length": 235.29166793823242,
|
| 1362 |
+
"epoch": 24.0,
|
| 1363 |
+
"grad_norm": 0.25490984320640564,
|
| 1364 |
+
"kl": 0.0009585395600879565,
|
| 1365 |
+
"learning_rate": 2.1094273177576505e-09,
|
| 1366 |
+
"loss": 0.0,
|
| 1367 |
+
"reward": 1.3230770230293274,
|
| 1368 |
+
"reward_std": 0.5727710947394371,
|
| 1369 |
+
"rewards/concensus_correctness_reward_func": 0.03125,
|
| 1370 |
+
"rewards/consensus_reward_func": 0.4166666716337204,
|
| 1371 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1372 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1373 |
+
"rewards/question_recreation_reward_func": 0.27359780576080084,
|
| 1374 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1375 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1376 |
+
"rewards/xmlcount_reward_func": 0.5807291641831398,
|
| 1377 |
+
"step": 144
|
| 1378 |
+
},
|
| 1379 |
+
{
|
| 1380 |
+
"completion_length": 245.08333587646484,
|
| 1381 |
+
"epoch": 24.333333333333332,
|
| 1382 |
+
"grad_norm": 0.24701599776744843,
|
| 1383 |
+
"kl": 0.0010237596870865673,
|
| 1384 |
+
"learning_rate": 9.38257179284696e-10,
|
| 1385 |
+
"loss": 0.0,
|
| 1386 |
+
"reward": 1.1041172742843628,
|
| 1387 |
+
"reward_std": 0.3621603213250637,
|
| 1388 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1389 |
+
"rewards/consensus_reward_func": 0.2500000074505806,
|
| 1390 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1391 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1392 |
+
"rewards/question_recreation_reward_func": 0.20274224504828453,
|
| 1393 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1394 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1395 |
+
"rewards/xmlcount_reward_func": 0.6513750404119492,
|
| 1396 |
+
"step": 146
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"completion_length": 239.62500381469727,
|
| 1400 |
+
"epoch": 24.666666666666668,
|
| 1401 |
+
"grad_norm": 0.2657899260520935,
|
| 1402 |
+
"kl": 0.0011027540458599105,
|
| 1403 |
+
"learning_rate": 2.3467443900582197e-10,
|
| 1404 |
+
"loss": 0.0,
|
| 1405 |
+
"reward": 0.9250312894582748,
|
| 1406 |
+
"reward_std": 0.40416907519102097,
|
| 1407 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1408 |
+
"rewards/consensus_reward_func": 0.0833333358168602,
|
| 1409 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1410 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1411 |
+
"rewards/question_recreation_reward_func": 0.18794792797416449,
|
| 1412 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1413 |
+
"rewards/strict_format_reward_func": 0.02083333395421505,
|
| 1414 |
+
"rewards/xmlcount_reward_func": 0.6329167112708092,
|
| 1415 |
+
"step": 148
|
| 1416 |
+
},
|
| 1417 |
+
{
|
| 1418 |
+
"completion_length": 233.75000381469727,
|
| 1419 |
+
"epoch": 25.0,
|
| 1420 |
+
"grad_norm": 0.2480180859565735,
|
| 1421 |
+
"kl": 0.000958686214289628,
|
| 1422 |
+
"learning_rate": 0.0,
|
| 1423 |
+
"loss": 0.0,
|
| 1424 |
+
"reward": 0.9879210442304611,
|
| 1425 |
+
"reward_std": 0.1771667394787073,
|
| 1426 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 1427 |
+
"rewards/consensus_reward_func": 0.0,
|
| 1428 |
+
"rewards/cumulative_reward_2": 0.0,
|
| 1429 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 1430 |
+
"rewards/question_recreation_reward_func": 0.2838585525751114,
|
| 1431 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 1432 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 1433 |
+
"rewards/xmlcount_reward_func": 0.7040625363588333,
|
| 1434 |
+
"step": 150
|
| 1435 |
+
},
|
| 1436 |
+
{
|
| 1437 |
+
"epoch": 25.0,
|
| 1438 |
+
"step": 150,
|
| 1439 |
"total_flos": 0.0,
|
| 1440 |
+
"train_loss": 4.005705436611606e-06,
|
| 1441 |
+
"train_runtime": 2512.4216,
|
| 1442 |
+
"train_samples_per_second": 0.716,
|
| 1443 |
+
"train_steps_per_second": 0.06
|
| 1444 |
}
|
| 1445 |
],
|
| 1446 |
"logging_steps": 2,
|
| 1447 |
+
"max_steps": 150,
|
| 1448 |
"num_input_tokens_seen": 0,
|
| 1449 |
+
"num_train_epochs": 25,
|
| 1450 |
+
"save_steps": 150,
|
| 1451 |
"stateful_callbacks": {
|
| 1452 |
"TrainerControl": {
|
| 1453 |
"args": {
|
|
|
|
| 1461 |
}
|
| 1462 |
},
|
| 1463 |
"total_flos": 0.0,
|
| 1464 |
+
"train_batch_size": 6,
|
| 1465 |
"trial_name": null,
|
| 1466 |
"trial_params": null
|
| 1467 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 5944
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:398e7787674623c0106e25a413b941a6dafdb584fe48bbd5293f71aa5461a1c5
|
| 3 |
size 5944
|