Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am graceful wary orangutan
unsloth
trl
genrl-swarm
I am graceful_wary_orangutan
conversational
text-generation-inference
Instructions to use elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan") model = AutoModelForMultimodalLM.from_pretrained("elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan") 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan
- SGLang
How to use elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan 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 "elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan" \ --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": "elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan", "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 "elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan" \ --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": "elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan 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 elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan 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 elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan", max_seq_length=2048, ) - Docker Model Runner
How to use elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan with Docker Model Runner:
docker model run hf.co/elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_wary_orangutan
End of training
Browse files- adapter_config.json +5 -5
- adapter_model.safetensors +1 -1
- all_results.json +4 -4
- train_results.json +4 -4
- trainer_state.json +229 -229
adapter_config.json
CHANGED
|
@@ -24,13 +24,13 @@
|
|
| 24 |
"rank_pattern": {},
|
| 25 |
"revision": null,
|
| 26 |
"target_modules": [
|
| 27 |
-
"q_proj",
|
| 28 |
-
"v_proj",
|
| 29 |
-
"o_proj",
|
| 30 |
-
"up_proj",
|
| 31 |
"k_proj",
|
|
|
|
| 32 |
"down_proj",
|
| 33 |
-
"
|
|
|
|
|
|
|
|
|
|
| 34 |
],
|
| 35 |
"task_type": "CAUSAL_LM",
|
| 36 |
"trainable_token_indices": null,
|
|
|
|
| 24 |
"rank_pattern": {},
|
| 25 |
"revision": null,
|
| 26 |
"target_modules": [
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
"k_proj",
|
| 28 |
+
"gate_proj",
|
| 29 |
"down_proj",
|
| 30 |
+
"o_proj",
|
| 31 |
+
"q_proj",
|
| 32 |
+
"v_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 35237104
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ead40382b37ef28866c5216b320811ecf7182ed340ceccf63d8e53db5fc12a0d
|
| 3 |
size 35237104
|
all_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss":
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 36,
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 2.602725280667073e-06,
|
| 4 |
+
"train_runtime": 1884.3714,
|
| 5 |
"train_samples": 36,
|
| 6 |
+
"train_samples_per_second": 0.425,
|
| 7 |
+
"train_steps_per_second": 0.027
|
| 8 |
}
|
train_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss":
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 36,
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 2.602725280667073e-06,
|
| 4 |
+
"train_runtime": 1884.3714,
|
| 5 |
"train_samples": 36,
|
| 6 |
+
"train_samples_per_second": 0.425,
|
| 7 |
+
"train_steps_per_second": 0.027
|
| 8 |
}
|
trainer_state.json
CHANGED
|
@@ -9,488 +9,488 @@
|
|
| 9 |
"is_world_process_zero": true,
|
| 10 |
"log_history": [
|
| 11 |
{
|
| 12 |
-
"completion_length":
|
| 13 |
"epoch": 0.2222222222222222,
|
| 14 |
-
"grad_norm":
|
| 15 |
-
"kl": 0.
|
| 16 |
"learning_rate": 5e-07,
|
| 17 |
"loss": 0.0,
|
| 18 |
-
"reward": 0.
|
| 19 |
-
"reward_std": 0.
|
| 20 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 21 |
"rewards/consensus_reward_func": 0.0625,
|
| 22 |
"rewards/cumulative_reward_2": 0.0,
|
| 23 |
-
"rewards/final_correctness_reward_func": 0.
|
| 24 |
-
"rewards/question_recreation_reward_func": 0.
|
| 25 |
"rewards/soft_format_reward_func": 0.0,
|
| 26 |
"rewards/strict_format_reward_func": 0.0,
|
| 27 |
-
"rewards/xmlcount_reward_func": 0.
|
| 28 |
"step": 2
|
| 29 |
},
|
| 30 |
{
|
| 31 |
-
"completion_length":
|
| 32 |
"epoch": 0.4444444444444444,
|
| 33 |
-
"grad_norm":
|
| 34 |
-
"kl": 0.
|
| 35 |
"learning_rate": 4.978612153434526e-07,
|
| 36 |
"loss": 0.0,
|
| 37 |
-
"reward": 0.
|
| 38 |
-
"reward_std": 0.
|
| 39 |
-
"rewards/concensus_correctness_reward_func": 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.
|
| 44 |
"rewards/soft_format_reward_func": 0.0,
|
| 45 |
"rewards/strict_format_reward_func": 0.0,
|
| 46 |
-
"rewards/xmlcount_reward_func": 0.
|
| 47 |
"step": 4
|
| 48 |
},
|
| 49 |
{
|
| 50 |
-
"completion_length":
|
| 51 |
"epoch": 0.6666666666666666,
|
| 52 |
-
"grad_norm":
|
| 53 |
-
"kl": 0.
|
| 54 |
"learning_rate": 4.91481456572267e-07,
|
| 55 |
"loss": 0.0,
|
| 56 |
-
"reward": 0.
|
| 57 |
-
"reward_std": 0.
|
| 58 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 59 |
"rewards/consensus_reward_func": 0.0625,
|
| 60 |
"rewards/cumulative_reward_2": 0.0,
|
| 61 |
"rewards/final_correctness_reward_func": 0.0625,
|
| 62 |
-
"rewards/question_recreation_reward_func": 0.
|
| 63 |
"rewards/soft_format_reward_func": 0.0,
|
| 64 |
"rewards/strict_format_reward_func": 0.0,
|
| 65 |
-
"rewards/xmlcount_reward_func": 0.
|
| 66 |
"step": 6
|
| 67 |
},
|
| 68 |
{
|
| 69 |
-
"completion_length":
|
| 70 |
"epoch": 0.8888888888888888,
|
| 71 |
-
"grad_norm":
|
| 72 |
-
"kl": 0.
|
| 73 |
"learning_rate": 4.809698831278217e-07,
|
| 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.
|
| 81 |
-
"rewards/question_recreation_reward_func": 0.
|
| 82 |
-
"rewards/soft_format_reward_func": 0.
|
| 83 |
"rewards/strict_format_reward_func": 0.0,
|
| 84 |
-
"rewards/xmlcount_reward_func": 0.
|
| 85 |
"step": 8
|
| 86 |
},
|
| 87 |
{
|
| 88 |
-
"completion_length":
|
| 89 |
"epoch": 1.1111111111111112,
|
| 90 |
-
"grad_norm":
|
| 91 |
-
"kl": 0.
|
| 92 |
"learning_rate": 4.6650635094610966e-07,
|
| 93 |
"loss": 0.0,
|
| 94 |
-
"reward": 1.
|
| 95 |
-
"reward_std": 1.
|
| 96 |
"rewards/concensus_correctness_reward_func": 0.625,
|
| 97 |
"rewards/consensus_reward_func": 0.0,
|
| 98 |
"rewards/cumulative_reward_2": 0.0,
|
| 99 |
-
"rewards/final_correctness_reward_func": 0.
|
| 100 |
-
"rewards/question_recreation_reward_func": 0.
|
| 101 |
"rewards/soft_format_reward_func": 0.0,
|
| 102 |
"rewards/strict_format_reward_func": 0.0,
|
| 103 |
-
"rewards/xmlcount_reward_func": 0.
|
| 104 |
"step": 10
|
| 105 |
},
|
| 106 |
{
|
| 107 |
-
"completion_length":
|
| 108 |
"epoch": 1.3333333333333333,
|
| 109 |
-
"grad_norm":
|
| 110 |
-
"kl": 0.
|
| 111 |
"learning_rate": 4.483383350728088e-07,
|
| 112 |
"loss": 0.0,
|
| 113 |
-
"reward": 1.
|
| 114 |
-
"reward_std": 1.
|
| 115 |
"rewards/concensus_correctness_reward_func": 0.625,
|
| 116 |
-
"rewards/consensus_reward_func": 0.
|
| 117 |
"rewards/cumulative_reward_2": 0.0,
|
| 118 |
"rewards/final_correctness_reward_func": 0.125,
|
| 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": 1.5555555555555556,
|
| 128 |
-
"grad_norm":
|
| 129 |
-
"kl": 0.
|
| 130 |
"learning_rate": 4.2677669529663686e-07,
|
| 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.0,
|
| 140 |
"rewards/strict_format_reward_func": 0.0,
|
| 141 |
-
"rewards/xmlcount_reward_func":
|
| 142 |
"step": 14
|
| 143 |
},
|
| 144 |
{
|
| 145 |
-
"completion_length":
|
| 146 |
"epoch": 1.7777777777777777,
|
| 147 |
-
"grad_norm": 5.
|
| 148 |
-
"kl": 0.
|
| 149 |
"learning_rate": 4.0219035725218013e-07,
|
| 150 |
"loss": 0.0,
|
| 151 |
-
"reward": 0.
|
| 152 |
-
"reward_std": 0.
|
| 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.0625,
|
| 157 |
-
"rewards/question_recreation_reward_func": 0.
|
| 158 |
"rewards/soft_format_reward_func": 0.0,
|
| 159 |
"rewards/strict_format_reward_func": 0.0,
|
| 160 |
-
"rewards/xmlcount_reward_func": 0.
|
| 161 |
"step": 16
|
| 162 |
},
|
| 163 |
{
|
| 164 |
-
"completion_length":
|
| 165 |
"epoch": 2.0,
|
| 166 |
-
"grad_norm":
|
| 167 |
-
"kl": 0.
|
| 168 |
"learning_rate": 3.75e-07,
|
| 169 |
"loss": 0.0,
|
| 170 |
-
"reward": 0.
|
| 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.0,
|
| 179 |
-
"rewards/xmlcount_reward_func": 0.
|
| 180 |
"step": 18
|
| 181 |
},
|
| 182 |
{
|
| 183 |
-
"completion_length":
|
| 184 |
"epoch": 2.2222222222222223,
|
| 185 |
-
"grad_norm":
|
| 186 |
-
"kl": 0.
|
| 187 |
"learning_rate": 3.4567085809127245e-07,
|
| 188 |
"loss": 0.0,
|
| 189 |
-
"reward": 0.
|
| 190 |
-
"reward_std": 0.
|
| 191 |
"rewards/concensus_correctness_reward_func": 0.0,
|
| 192 |
"rewards/consensus_reward_func": 0.0,
|
| 193 |
"rewards/cumulative_reward_2": 0.0,
|
| 194 |
-
"rewards/final_correctness_reward_func": 0.
|
| 195 |
-
"rewards/question_recreation_reward_func": 0.
|
| 196 |
"rewards/soft_format_reward_func": 0.0,
|
| 197 |
"rewards/strict_format_reward_func": 0.0,
|
| 198 |
-
"rewards/xmlcount_reward_func": 0.
|
| 199 |
"step": 20
|
| 200 |
},
|
| 201 |
{
|
| 202 |
-
"completion_length":
|
| 203 |
"epoch": 2.4444444444444446,
|
| 204 |
-
"grad_norm":
|
| 205 |
-
"kl": 0.
|
| 206 |
"learning_rate": 3.147047612756302e-07,
|
| 207 |
"loss": 0.0,
|
| 208 |
-
"reward": 0.
|
| 209 |
-
"reward_std": 0.
|
| 210 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 211 |
-
"rewards/consensus_reward_func": 0.
|
| 212 |
"rewards/cumulative_reward_2": 0.0,
|
| 213 |
-
"rewards/final_correctness_reward_func": 0.
|
| 214 |
-
"rewards/question_recreation_reward_func": 0.
|
| 215 |
"rewards/soft_format_reward_func": 0.0,
|
| 216 |
"rewards/strict_format_reward_func": 0.0,
|
| 217 |
-
"rewards/xmlcount_reward_func":
|
| 218 |
"step": 22
|
| 219 |
},
|
| 220 |
{
|
| 221 |
-
"completion_length":
|
| 222 |
"epoch": 2.6666666666666665,
|
| 223 |
-
"grad_norm":
|
| 224 |
-
"kl": 0.
|
| 225 |
"learning_rate": 2.826315480550129e-07,
|
| 226 |
"loss": 0.0,
|
| 227 |
-
"reward": 1.
|
| 228 |
-
"reward_std":
|
| 229 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 230 |
"rewards/consensus_reward_func": 0.0,
|
| 231 |
"rewards/cumulative_reward_2": 0.0,
|
| 232 |
-
"rewards/final_correctness_reward_func": 0.
|
| 233 |
-
"rewards/question_recreation_reward_func": 0.
|
| 234 |
"rewards/soft_format_reward_func": 0.0,
|
| 235 |
"rewards/strict_format_reward_func": 0.0,
|
| 236 |
-
"rewards/xmlcount_reward_func": 0.
|
| 237 |
"step": 24
|
| 238 |
},
|
| 239 |
{
|
| 240 |
-
"completion_length":
|
| 241 |
"epoch": 2.888888888888889,
|
| 242 |
-
"grad_norm":
|
| 243 |
-
"kl": 0.
|
| 244 |
"learning_rate": 2.5e-07,
|
| 245 |
"loss": 0.0,
|
| 246 |
-
"reward": 0.
|
| 247 |
-
"reward_std": 0.
|
| 248 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 249 |
-
"rewards/consensus_reward_func": 0.
|
| 250 |
"rewards/cumulative_reward_2": 0.0,
|
| 251 |
"rewards/final_correctness_reward_func": 0.0,
|
| 252 |
-
"rewards/question_recreation_reward_func": 0.
|
| 253 |
"rewards/soft_format_reward_func": 0.0,
|
| 254 |
"rewards/strict_format_reward_func": 0.0,
|
| 255 |
-
"rewards/xmlcount_reward_func": 0.
|
| 256 |
"step": 26
|
| 257 |
},
|
| 258 |
{
|
| 259 |
-
"completion_length":
|
| 260 |
"epoch": 3.111111111111111,
|
| 261 |
-
"grad_norm":
|
| 262 |
-
"kl": 0.
|
| 263 |
"learning_rate": 2.1736845194498716e-07,
|
| 264 |
"loss": 0.0,
|
| 265 |
-
"reward": 0.
|
| 266 |
-
"reward_std": 0.
|
| 267 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 268 |
-
"rewards/consensus_reward_func": 0.
|
| 269 |
"rewards/cumulative_reward_2": 0.0,
|
| 270 |
"rewards/final_correctness_reward_func": 0.0,
|
| 271 |
-
"rewards/question_recreation_reward_func": 0.
|
| 272 |
"rewards/soft_format_reward_func": 0.0,
|
| 273 |
"rewards/strict_format_reward_func": 0.0,
|
| 274 |
-
"rewards/xmlcount_reward_func": 0.
|
| 275 |
"step": 28
|
| 276 |
},
|
| 277 |
{
|
| 278 |
-
"completion_length":
|
| 279 |
"epoch": 3.3333333333333335,
|
| 280 |
-
"grad_norm":
|
| 281 |
-
"kl": 0.
|
| 282 |
"learning_rate": 1.8529523872436977e-07,
|
| 283 |
"loss": 0.0,
|
| 284 |
-
"reward": 0.
|
| 285 |
-
"reward_std": 0.
|
| 286 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 287 |
-
"rewards/consensus_reward_func": 0.
|
| 288 |
"rewards/cumulative_reward_2": 0.0,
|
| 289 |
"rewards/final_correctness_reward_func": 0.0,
|
| 290 |
-
"rewards/question_recreation_reward_func": 0.
|
| 291 |
"rewards/soft_format_reward_func": 0.0,
|
| 292 |
"rewards/strict_format_reward_func": 0.0,
|
| 293 |
-
"rewards/xmlcount_reward_func": 0.
|
| 294 |
"step": 30
|
| 295 |
},
|
| 296 |
{
|
| 297 |
-
"completion_length":
|
| 298 |
"epoch": 3.5555555555555554,
|
| 299 |
-
"grad_norm":
|
| 300 |
-
"kl": 0.
|
| 301 |
"learning_rate": 1.5432914190872756e-07,
|
| 302 |
"loss": 0.0,
|
| 303 |
-
"reward": 0.
|
| 304 |
-
"reward_std": 0.
|
| 305 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 306 |
-
"rewards/consensus_reward_func": 0.
|
| 307 |
"rewards/cumulative_reward_2": 0.0,
|
| 308 |
"rewards/final_correctness_reward_func": 0.0,
|
| 309 |
-
"rewards/question_recreation_reward_func": 0.
|
| 310 |
"rewards/soft_format_reward_func": 0.0,
|
| 311 |
"rewards/strict_format_reward_func": 0.0,
|
| 312 |
-
"rewards/xmlcount_reward_func": 0.
|
| 313 |
"step": 32
|
| 314 |
},
|
| 315 |
{
|
| 316 |
-
"completion_length":
|
| 317 |
"epoch": 3.7777777777777777,
|
| 318 |
-
"grad_norm":
|
| 319 |
-
"kl": 0.
|
| 320 |
"learning_rate": 1.2500000000000005e-07,
|
| 321 |
"loss": 0.0,
|
| 322 |
-
"reward": 0.
|
| 323 |
-
"reward_std":
|
| 324 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 325 |
-
"rewards/consensus_reward_func": 0.
|
| 326 |
"rewards/cumulative_reward_2": 0.0,
|
| 327 |
-
"rewards/final_correctness_reward_func": 0.
|
| 328 |
-
"rewards/question_recreation_reward_func": 0.
|
| 329 |
"rewards/soft_format_reward_func": 0.0,
|
| 330 |
"rewards/strict_format_reward_func": 0.0,
|
| 331 |
-
"rewards/xmlcount_reward_func":
|
| 332 |
"step": 34
|
| 333 |
},
|
| 334 |
{
|
| 335 |
-
"completion_length":
|
| 336 |
"epoch": 4.0,
|
| 337 |
-
"grad_norm": 3.
|
| 338 |
-
"kl": 0.
|
| 339 |
"learning_rate": 9.780964274781983e-08,
|
| 340 |
"loss": 0.0,
|
| 341 |
-
"reward": 0.
|
| 342 |
-
"reward_std": 0.
|
| 343 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 344 |
"rewards/consensus_reward_func": 0.0,
|
| 345 |
"rewards/cumulative_reward_2": 0.0,
|
| 346 |
-
"rewards/final_correctness_reward_func": 0.
|
| 347 |
-
"rewards/question_recreation_reward_func": 0.
|
| 348 |
"rewards/soft_format_reward_func": 0.0,
|
| 349 |
"rewards/strict_format_reward_func": 0.0,
|
| 350 |
-
"rewards/xmlcount_reward_func": 0.
|
| 351 |
"step": 36
|
| 352 |
},
|
| 353 |
{
|
| 354 |
-
"completion_length":
|
| 355 |
"epoch": 4.222222222222222,
|
| 356 |
-
"grad_norm":
|
| 357 |
-
"kl": 0.
|
| 358 |
"learning_rate": 7.322330470336313e-08,
|
| 359 |
-
"loss": 0.
|
| 360 |
-
"reward":
|
| 361 |
-
"reward_std":
|
| 362 |
-
"rewards/concensus_correctness_reward_func":
|
| 363 |
"rewards/consensus_reward_func": 0.0,
|
| 364 |
"rewards/cumulative_reward_2": 0.0,
|
| 365 |
-
"rewards/final_correctness_reward_func": 0.
|
| 366 |
-
"rewards/question_recreation_reward_func": 0.
|
| 367 |
"rewards/soft_format_reward_func": 0.0,
|
| 368 |
"rewards/strict_format_reward_func": 0.0,
|
| 369 |
-
"rewards/xmlcount_reward_func": 0.
|
| 370 |
"step": 38
|
| 371 |
},
|
| 372 |
{
|
| 373 |
-
"completion_length":
|
| 374 |
"epoch": 4.444444444444445,
|
| 375 |
-
"grad_norm":
|
| 376 |
-
"kl": 0.
|
| 377 |
"learning_rate": 5.166166492719124e-08,
|
| 378 |
"loss": 0.0,
|
| 379 |
-
"reward":
|
| 380 |
-
"reward_std":
|
| 381 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 382 |
"rewards/consensus_reward_func": 0.0,
|
| 383 |
"rewards/cumulative_reward_2": 0.0,
|
| 384 |
-
"rewards/final_correctness_reward_func": 0.
|
| 385 |
-
"rewards/question_recreation_reward_func": 0.
|
| 386 |
"rewards/soft_format_reward_func": 0.0,
|
| 387 |
"rewards/strict_format_reward_func": 0.0,
|
| 388 |
-
"rewards/xmlcount_reward_func":
|
| 389 |
"step": 40
|
| 390 |
},
|
| 391 |
{
|
| 392 |
-
"completion_length":
|
| 393 |
"epoch": 4.666666666666667,
|
| 394 |
-
"grad_norm":
|
| 395 |
-
"kl": 0.
|
| 396 |
"learning_rate": 3.349364905389032e-08,
|
| 397 |
"loss": 0.0,
|
| 398 |
-
"reward":
|
| 399 |
-
"reward_std":
|
| 400 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 401 |
-
"rewards/consensus_reward_func": 0.
|
| 402 |
"rewards/cumulative_reward_2": 0.0,
|
| 403 |
-
"rewards/final_correctness_reward_func": 0.
|
| 404 |
-
"rewards/question_recreation_reward_func": 0.
|
| 405 |
"rewards/soft_format_reward_func": 0.0,
|
| 406 |
"rewards/strict_format_reward_func": 0.0,
|
| 407 |
-
"rewards/xmlcount_reward_func": 0.
|
| 408 |
"step": 42
|
| 409 |
},
|
| 410 |
{
|
| 411 |
-
"completion_length":
|
| 412 |
"epoch": 4.888888888888889,
|
| 413 |
-
"grad_norm":
|
| 414 |
-
"kl": 0.
|
| 415 |
"learning_rate": 1.9030116872178314e-08,
|
| 416 |
"loss": 0.0,
|
| 417 |
-
"reward": 0.
|
| 418 |
-
"reward_std":
|
| 419 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 420 |
-
"rewards/consensus_reward_func": 0.
|
| 421 |
"rewards/cumulative_reward_2": 0.0,
|
| 422 |
"rewards/final_correctness_reward_func": 0.0625,
|
| 423 |
-
"rewards/question_recreation_reward_func": 0.
|
| 424 |
"rewards/soft_format_reward_func": 0.0,
|
| 425 |
"rewards/strict_format_reward_func": 0.0,
|
| 426 |
-
"rewards/xmlcount_reward_func": 0.
|
| 427 |
"step": 44
|
| 428 |
},
|
| 429 |
{
|
| 430 |
-
"completion_length":
|
| 431 |
"epoch": 5.111111111111111,
|
| 432 |
-
"grad_norm":
|
| 433 |
-
"kl": 0.
|
| 434 |
"learning_rate": 8.518543427732949e-09,
|
| 435 |
"loss": 0.0,
|
| 436 |
-
"reward": 0.
|
| 437 |
-
"reward_std": 0.
|
| 438 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 439 |
"rewards/consensus_reward_func": 0.0,
|
| 440 |
"rewards/cumulative_reward_2": 0.0,
|
| 441 |
"rewards/final_correctness_reward_func": 0.0625,
|
| 442 |
-
"rewards/question_recreation_reward_func": 0.
|
| 443 |
"rewards/soft_format_reward_func": 0.0,
|
| 444 |
"rewards/strict_format_reward_func": 0.0,
|
| 445 |
-
"rewards/xmlcount_reward_func":
|
| 446 |
"step": 46
|
| 447 |
},
|
| 448 |
{
|
| 449 |
-
"completion_length":
|
| 450 |
"epoch": 5.333333333333333,
|
| 451 |
-
"grad_norm":
|
| 452 |
-
"kl": 0.
|
| 453 |
"learning_rate": 2.1387846565474044e-09,
|
| 454 |
"loss": 0.0,
|
| 455 |
-
"reward": 0.
|
| 456 |
-
"reward_std": 0.
|
| 457 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 458 |
"rewards/consensus_reward_func": 0.0,
|
| 459 |
"rewards/cumulative_reward_2": 0.0,
|
| 460 |
-
"rewards/final_correctness_reward_func": 0.
|
| 461 |
-
"rewards/question_recreation_reward_func": 0.
|
| 462 |
"rewards/soft_format_reward_func": 0.0,
|
| 463 |
"rewards/strict_format_reward_func": 0.0,
|
| 464 |
-
"rewards/xmlcount_reward_func": 0.
|
| 465 |
"step": 48
|
| 466 |
},
|
| 467 |
{
|
| 468 |
-
"completion_length":
|
| 469 |
"epoch": 5.555555555555555,
|
| 470 |
-
"grad_norm":
|
| 471 |
-
"kl": 0.
|
| 472 |
"learning_rate": 0.0,
|
| 473 |
"loss": 0.0,
|
| 474 |
-
"reward":
|
| 475 |
-
"reward_std":
|
| 476 |
-
"rewards/concensus_correctness_reward_func":
|
| 477 |
-
"rewards/consensus_reward_func": 0.
|
| 478 |
"rewards/cumulative_reward_2": 0.0,
|
| 479 |
-
"rewards/final_correctness_reward_func": 0.
|
| 480 |
-
"rewards/question_recreation_reward_func": 0.
|
| 481 |
"rewards/soft_format_reward_func": 0.0,
|
| 482 |
"rewards/strict_format_reward_func": 0.0,
|
| 483 |
-
"rewards/xmlcount_reward_func": 0.
|
| 484 |
"step": 50
|
| 485 |
},
|
| 486 |
{
|
| 487 |
"epoch": 5.555555555555555,
|
| 488 |
"step": 50,
|
| 489 |
"total_flos": 0.0,
|
| 490 |
-
"train_loss":
|
| 491 |
-
"train_runtime":
|
| 492 |
-
"train_samples_per_second": 0.
|
| 493 |
-
"train_steps_per_second": 0.
|
| 494 |
}
|
| 495 |
],
|
| 496 |
"logging_steps": 2,
|
|
|
|
| 9 |
"is_world_process_zero": true,
|
| 10 |
"log_history": [
|
| 11 |
{
|
| 12 |
+
"completion_length": 254.0,
|
| 13 |
"epoch": 0.2222222222222222,
|
| 14 |
+
"grad_norm": 2.455533266067505,
|
| 15 |
+
"kl": 0.0016071582067525014,
|
| 16 |
"learning_rate": 5e-07,
|
| 17 |
"loss": 0.0,
|
| 18 |
+
"reward": 0.8821750227361917,
|
| 19 |
+
"reward_std": 0.7979278466664255,
|
| 20 |
+
"rewards/concensus_correctness_reward_func": 0.049937501549720764,
|
| 21 |
"rewards/consensus_reward_func": 0.0625,
|
| 22 |
"rewards/cumulative_reward_2": 0.0,
|
| 23 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
| 24 |
+
"rewards/question_recreation_reward_func": 0.26773752458393574,
|
| 25 |
"rewards/soft_format_reward_func": 0.0,
|
| 26 |
"rewards/strict_format_reward_func": 0.0,
|
| 27 |
+
"rewards/xmlcount_reward_func": 0.1895000054500997,
|
| 28 |
"step": 2
|
| 29 |
},
|
| 30 |
{
|
| 31 |
+
"completion_length": 369.3125,
|
| 32 |
"epoch": 0.4444444444444444,
|
| 33 |
+
"grad_norm": 2.520486354827881,
|
| 34 |
+
"kl": 0.0038820735207991675,
|
| 35 |
"learning_rate": 4.978612153434526e-07,
|
| 36 |
"loss": 0.0,
|
| 37 |
+
"reward": 0.3699257434345782,
|
| 38 |
+
"reward_std": 0.5709783472120762,
|
| 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.19958198571112007,
|
| 44 |
"rewards/soft_format_reward_func": 0.0,
|
| 45 |
"rewards/strict_format_reward_func": 0.0,
|
| 46 |
+
"rewards/xmlcount_reward_func": 0.17034375481307507,
|
| 47 |
"step": 4
|
| 48 |
},
|
| 49 |
{
|
| 50 |
+
"completion_length": 467.875,
|
| 51 |
"epoch": 0.6666666666666666,
|
| 52 |
+
"grad_norm": 1.3698705434799194,
|
| 53 |
+
"kl": 0.0013275225574034266,
|
| 54 |
"learning_rate": 4.91481456572267e-07,
|
| 55 |
"loss": 0.0,
|
| 56 |
+
"reward": 0.6990349255502224,
|
| 57 |
+
"reward_std": 0.9675047248601913,
|
| 58 |
+
"rewards/concensus_correctness_reward_func": 0.046875,
|
| 59 |
"rewards/consensus_reward_func": 0.0625,
|
| 60 |
"rewards/cumulative_reward_2": 0.0,
|
| 61 |
"rewards/final_correctness_reward_func": 0.0625,
|
| 62 |
+
"rewards/question_recreation_reward_func": 0.33225369080901146,
|
| 63 |
"rewards/soft_format_reward_func": 0.0,
|
| 64 |
"rewards/strict_format_reward_func": 0.0,
|
| 65 |
+
"rewards/xmlcount_reward_func": 0.19490624405443668,
|
| 66 |
"step": 6
|
| 67 |
},
|
| 68 |
{
|
| 69 |
+
"completion_length": 323.34375,
|
| 70 |
"epoch": 0.8888888888888888,
|
| 71 |
+
"grad_norm": 2.7056479454040527,
|
| 72 |
+
"kl": 0.00173920994711807,
|
| 73 |
"learning_rate": 4.809698831278217e-07,
|
| 74 |
"loss": 0.0,
|
| 75 |
+
"reward": 0.5385207324288785,
|
| 76 |
+
"reward_std": 0.8355418732389808,
|
| 77 |
+
"rewards/concensus_correctness_reward_func": 0.02787500061094761,
|
| 78 |
+
"rewards/consensus_reward_func": 0.0,
|
| 79 |
"rewards/cumulative_reward_2": 0.0,
|
| 80 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 81 |
+
"rewards/question_recreation_reward_func": 0.2965519982390106,
|
| 82 |
+
"rewards/soft_format_reward_func": 0.015625,
|
| 83 |
"rewards/strict_format_reward_func": 0.0,
|
| 84 |
+
"rewards/xmlcount_reward_func": 0.07346874848008156,
|
| 85 |
"step": 8
|
| 86 |
},
|
| 87 |
{
|
| 88 |
+
"completion_length": 276.09375,
|
| 89 |
"epoch": 1.1111111111111112,
|
| 90 |
+
"grad_norm": 3.8186511993408203,
|
| 91 |
+
"kl": 0.0028932989152963273,
|
| 92 |
"learning_rate": 4.6650635094610966e-07,
|
| 93 |
"loss": 0.0,
|
| 94 |
+
"reward": 1.1083624437451363,
|
| 95 |
+
"reward_std": 1.7071605939418077,
|
| 96 |
"rewards/concensus_correctness_reward_func": 0.625,
|
| 97 |
"rewards/consensus_reward_func": 0.0,
|
| 98 |
"rewards/cumulative_reward_2": 0.0,
|
| 99 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
| 100 |
+
"rewards/question_recreation_reward_func": 0.25786245451308787,
|
| 101 |
"rewards/soft_format_reward_func": 0.0,
|
| 102 |
"rewards/strict_format_reward_func": 0.0,
|
| 103 |
+
"rewards/xmlcount_reward_func": 0.03799999970942736,
|
| 104 |
"step": 10
|
| 105 |
},
|
| 106 |
{
|
| 107 |
+
"completion_length": 255.59375,
|
| 108 |
"epoch": 1.3333333333333333,
|
| 109 |
+
"grad_norm": 34.07455062866211,
|
| 110 |
+
"kl": 0.0037407633935799822,
|
| 111 |
"learning_rate": 4.483383350728088e-07,
|
| 112 |
"loss": 0.0,
|
| 113 |
+
"reward": 1.2880361340939999,
|
| 114 |
+
"reward_std": 1.625240983441472,
|
| 115 |
"rewards/concensus_correctness_reward_func": 0.625,
|
| 116 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 117 |
"rewards/cumulative_reward_2": 0.0,
|
| 118 |
"rewards/final_correctness_reward_func": 0.125,
|
| 119 |
+
"rewards/question_recreation_reward_func": 0.32416112907230854,
|
| 120 |
"rewards/soft_format_reward_func": 0.0,
|
| 121 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 122 |
+
"rewards/xmlcount_reward_func": 0.15137499663978815,
|
| 123 |
"step": 12
|
| 124 |
},
|
| 125 |
{
|
| 126 |
+
"completion_length": 285.21875,
|
| 127 |
"epoch": 1.5555555555555556,
|
| 128 |
+
"grad_norm": 3.052701234817505,
|
| 129 |
+
"kl": 0.002863182016881183,
|
| 130 |
"learning_rate": 4.2677669529663686e-07,
|
| 131 |
"loss": 0.0,
|
| 132 |
+
"reward": 0.607268082909286,
|
| 133 |
+
"reward_std": 0.6088872440159321,
|
| 134 |
+
"rewards/concensus_correctness_reward_func": 0.022187499329447746,
|
| 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.38814307004213333,
|
| 139 |
"rewards/soft_format_reward_func": 0.0,
|
| 140 |
"rewards/strict_format_reward_func": 0.0,
|
| 141 |
+
"rewards/xmlcount_reward_func": 0.19693750143051147,
|
| 142 |
"step": 14
|
| 143 |
},
|
| 144 |
{
|
| 145 |
+
"completion_length": 347.65625,
|
| 146 |
"epoch": 1.7777777777777777,
|
| 147 |
+
"grad_norm": 5.15467643737793,
|
| 148 |
+
"kl": 0.0014800850040046498,
|
| 149 |
"learning_rate": 4.0219035725218013e-07,
|
| 150 |
"loss": 0.0,
|
| 151 |
+
"reward": 0.1809218251146376,
|
| 152 |
+
"reward_std": 0.7999278882052749,
|
| 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.0625,
|
| 157 |
+
"rewards/question_recreation_reward_func": 0.2310780775733292,
|
| 158 |
"rewards/soft_format_reward_func": 0.0,
|
| 159 |
"rewards/strict_format_reward_func": 0.0,
|
| 160 |
+
"rewards/xmlcount_reward_func": -0.112656245008111,
|
| 161 |
"step": 16
|
| 162 |
},
|
| 163 |
{
|
| 164 |
+
"completion_length": 441.25,
|
| 165 |
"epoch": 2.0,
|
| 166 |
+
"grad_norm": 4.815533638000488,
|
| 167 |
+
"kl": 0.0013374313130043447,
|
| 168 |
"learning_rate": 3.75e-07,
|
| 169 |
"loss": 0.0,
|
| 170 |
+
"reward": 0.5386425573378801,
|
| 171 |
+
"reward_std": 0.6832009451463819,
|
| 172 |
+
"rewards/concensus_correctness_reward_func": 0.046875,
|
| 173 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 174 |
"rewards/cumulative_reward_2": 0.0,
|
| 175 |
"rewards/final_correctness_reward_func": 0.0,
|
| 176 |
+
"rewards/question_recreation_reward_func": 0.23683004680788144,
|
| 177 |
"rewards/soft_format_reward_func": 0.0,
|
| 178 |
"rewards/strict_format_reward_func": 0.0,
|
| 179 |
+
"rewards/xmlcount_reward_func": 0.19243750348687172,
|
| 180 |
"step": 18
|
| 181 |
},
|
| 182 |
{
|
| 183 |
+
"completion_length": 437.25,
|
| 184 |
"epoch": 2.2222222222222223,
|
| 185 |
+
"grad_norm": 2.5218758583068848,
|
| 186 |
+
"kl": 0.0015388188403449021,
|
| 187 |
"learning_rate": 3.4567085809127245e-07,
|
| 188 |
"loss": 0.0,
|
| 189 |
+
"reward": 0.7281985133886337,
|
| 190 |
+
"reward_std": 0.6127606704831123,
|
| 191 |
"rewards/concensus_correctness_reward_func": 0.0,
|
| 192 |
"rewards/consensus_reward_func": 0.0,
|
| 193 |
"rewards/cumulative_reward_2": 0.0,
|
| 194 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 195 |
+
"rewards/question_recreation_reward_func": 0.45726102218031883,
|
| 196 |
"rewards/soft_format_reward_func": 0.0,
|
| 197 |
"rewards/strict_format_reward_func": 0.0,
|
| 198 |
+
"rewards/xmlcount_reward_func": 0.2709374986588955,
|
| 199 |
"step": 20
|
| 200 |
},
|
| 201 |
{
|
| 202 |
+
"completion_length": 387.75,
|
| 203 |
"epoch": 2.4444444444444446,
|
| 204 |
+
"grad_norm": 1.3259650468826294,
|
| 205 |
+
"kl": 0.0036219921821611933,
|
| 206 |
"learning_rate": 3.147047612756302e-07,
|
| 207 |
"loss": 0.0,
|
| 208 |
+
"reward": 0.2731318287551403,
|
| 209 |
+
"reward_std": 0.2530765999108553,
|
| 210 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 211 |
+
"rewards/consensus_reward_func": 0.0,
|
| 212 |
"rewards/cumulative_reward_2": 0.0,
|
| 213 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 214 |
+
"rewards/question_recreation_reward_func": 0.20441308384761214,
|
| 215 |
"rewards/soft_format_reward_func": 0.0,
|
| 216 |
"rewards/strict_format_reward_func": 0.0,
|
| 217 |
+
"rewards/xmlcount_reward_func": 0.06871875282377005,
|
| 218 |
"step": 22
|
| 219 |
},
|
| 220 |
{
|
| 221 |
+
"completion_length": 447.09375,
|
| 222 |
"epoch": 2.6666666666666665,
|
| 223 |
+
"grad_norm": 6.329639434814453,
|
| 224 |
+
"kl": 0.0021589112002402544,
|
| 225 |
"learning_rate": 2.826315480550129e-07,
|
| 226 |
"loss": 0.0,
|
| 227 |
+
"reward": 1.2416966576129198,
|
| 228 |
+
"reward_std": 2.0539041608572006,
|
| 229 |
+
"rewards/concensus_correctness_reward_func": 0.625,
|
| 230 |
"rewards/consensus_reward_func": 0.0,
|
| 231 |
"rewards/cumulative_reward_2": 0.0,
|
| 232 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
| 233 |
+
"rewards/question_recreation_reward_func": 0.3013216257095337,
|
| 234 |
"rewards/soft_format_reward_func": 0.0,
|
| 235 |
"rewards/strict_format_reward_func": 0.0,
|
| 236 |
+
"rewards/xmlcount_reward_func": 0.1278750030323863,
|
| 237 |
"step": 24
|
| 238 |
},
|
| 239 |
{
|
| 240 |
+
"completion_length": 301.875,
|
| 241 |
"epoch": 2.888888888888889,
|
| 242 |
+
"grad_norm": 4.056438446044922,
|
| 243 |
+
"kl": 0.0024828215537127107,
|
| 244 |
"learning_rate": 2.5e-07,
|
| 245 |
"loss": 0.0,
|
| 246 |
+
"reward": 0.2829342377372086,
|
| 247 |
+
"reward_std": 0.33365900977514684,
|
| 248 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 249 |
+
"rewards/consensus_reward_func": 0.0,
|
| 250 |
"rewards/cumulative_reward_2": 0.0,
|
| 251 |
"rewards/final_correctness_reward_func": 0.0,
|
| 252 |
+
"rewards/question_recreation_reward_func": 0.1184342410415411,
|
| 253 |
"rewards/soft_format_reward_func": 0.0,
|
| 254 |
"rewards/strict_format_reward_func": 0.0,
|
| 255 |
+
"rewards/xmlcount_reward_func": 0.16449999809265137,
|
| 256 |
"step": 26
|
| 257 |
},
|
| 258 |
{
|
| 259 |
+
"completion_length": 341.15625,
|
| 260 |
"epoch": 3.111111111111111,
|
| 261 |
+
"grad_norm": 2.550891876220703,
|
| 262 |
+
"kl": 0.002100169222103432,
|
| 263 |
"learning_rate": 2.1736845194498716e-07,
|
| 264 |
"loss": 0.0,
|
| 265 |
+
"reward": 0.3925126292742789,
|
| 266 |
+
"reward_std": 0.7323208572342992,
|
| 267 |
+
"rewards/concensus_correctness_reward_func": 0.014562499709427357,
|
| 268 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 269 |
"rewards/cumulative_reward_2": 0.0,
|
| 270 |
"rewards/final_correctness_reward_func": 0.0,
|
| 271 |
+
"rewards/question_recreation_reward_func": 0.29879387514665723,
|
| 272 |
"rewards/soft_format_reward_func": 0.0,
|
| 273 |
"rewards/strict_format_reward_func": 0.0,
|
| 274 |
+
"rewards/xmlcount_reward_func": 0.016656249528750777,
|
| 275 |
"step": 28
|
| 276 |
},
|
| 277 |
{
|
| 278 |
+
"completion_length": 388.03125,
|
| 279 |
"epoch": 3.3333333333333335,
|
| 280 |
+
"grad_norm": 1.4323590993881226,
|
| 281 |
+
"kl": 0.004696541313023772,
|
| 282 |
"learning_rate": 1.8529523872436977e-07,
|
| 283 |
"loss": 0.0,
|
| 284 |
+
"reward": 0.05710854474455118,
|
| 285 |
+
"reward_std": 0.5547531270422041,
|
| 286 |
+
"rewards/concensus_correctness_reward_func": 0.0078125,
|
| 287 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 288 |
"rewards/cumulative_reward_2": 0.0,
|
| 289 |
"rewards/final_correctness_reward_func": 0.0,
|
| 290 |
+
"rewards/question_recreation_reward_func": 0.19385854969732463,
|
| 291 |
"rewards/soft_format_reward_func": 0.0,
|
| 292 |
"rewards/strict_format_reward_func": 0.0,
|
| 293 |
+
"rewards/xmlcount_reward_func": -0.20706249913200736,
|
| 294 |
"step": 30
|
| 295 |
},
|
| 296 |
{
|
| 297 |
+
"completion_length": 352.90625,
|
| 298 |
"epoch": 3.5555555555555554,
|
| 299 |
+
"grad_norm": 2.221634864807129,
|
| 300 |
+
"kl": 0.002907156704168301,
|
| 301 |
"learning_rate": 1.5432914190872756e-07,
|
| 302 |
"loss": 0.0,
|
| 303 |
+
"reward": 0.3871938968077302,
|
| 304 |
+
"reward_std": 0.3934658619109541,
|
| 305 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 306 |
+
"rewards/consensus_reward_func": 0.0,
|
| 307 |
"rewards/cumulative_reward_2": 0.0,
|
| 308 |
"rewards/final_correctness_reward_func": 0.0,
|
| 309 |
+
"rewards/question_recreation_reward_func": 0.2629126524552703,
|
| 310 |
"rewards/soft_format_reward_func": 0.0,
|
| 311 |
"rewards/strict_format_reward_func": 0.0,
|
| 312 |
+
"rewards/xmlcount_reward_func": 0.1242812555283308,
|
| 313 |
"step": 32
|
| 314 |
},
|
| 315 |
{
|
| 316 |
+
"completion_length": 384.375,
|
| 317 |
"epoch": 3.7777777777777777,
|
| 318 |
+
"grad_norm": 2.7794787883758545,
|
| 319 |
+
"kl": 0.001867200349806808,
|
| 320 |
"learning_rate": 1.2500000000000005e-07,
|
| 321 |
"loss": 0.0,
|
| 322 |
+
"reward": 0.9573859982192516,
|
| 323 |
+
"reward_std": 1.0359943909570575,
|
| 324 |
+
"rewards/concensus_correctness_reward_func": 0.11443750280886889,
|
| 325 |
+
"rewards/consensus_reward_func": 0.1875,
|
| 326 |
"rewards/cumulative_reward_2": 0.0,
|
| 327 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 328 |
+
"rewards/question_recreation_reward_func": 0.3830109708942473,
|
| 329 |
"rewards/soft_format_reward_func": 0.0,
|
| 330 |
"rewards/strict_format_reward_func": 0.0,
|
| 331 |
+
"rewards/xmlcount_reward_func": 0.20993749890476465,
|
| 332 |
"step": 34
|
| 333 |
},
|
| 334 |
{
|
| 335 |
+
"completion_length": 361.375,
|
| 336 |
"epoch": 4.0,
|
| 337 |
+
"grad_norm": 3.378568172454834,
|
| 338 |
+
"kl": 0.0019658175588119775,
|
| 339 |
"learning_rate": 9.780964274781983e-08,
|
| 340 |
"loss": 0.0,
|
| 341 |
+
"reward": 0.550561910495162,
|
| 342 |
+
"reward_std": 0.5597149441018701,
|
| 343 |
+
"rewards/concensus_correctness_reward_func": 0.03125,
|
| 344 |
"rewards/consensus_reward_func": 0.0,
|
| 345 |
"rewards/cumulative_reward_2": 0.0,
|
| 346 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 347 |
+
"rewards/question_recreation_reward_func": 0.27071817917749286,
|
| 348 |
"rewards/soft_format_reward_func": 0.0,
|
| 349 |
"rewards/strict_format_reward_func": 0.0,
|
| 350 |
+
"rewards/xmlcount_reward_func": 0.12359375134110451,
|
| 351 |
"step": 36
|
| 352 |
},
|
| 353 |
{
|
| 354 |
+
"completion_length": 282.96875,
|
| 355 |
"epoch": 4.222222222222222,
|
| 356 |
+
"grad_norm": 4.209115505218506,
|
| 357 |
+
"kl": 0.0013284565284266137,
|
| 358 |
"learning_rate": 7.322330470336313e-08,
|
| 359 |
+
"loss": 0.0,
|
| 360 |
+
"reward": 1.8079969780519605,
|
| 361 |
+
"reward_std": 2.005708161741495,
|
| 362 |
+
"rewards/concensus_correctness_reward_func": 1.268062500283122,
|
| 363 |
"rewards/consensus_reward_func": 0.0,
|
| 364 |
"rewards/cumulative_reward_2": 0.0,
|
| 365 |
+
"rewards/final_correctness_reward_func": 0.25,
|
| 366 |
+
"rewards/question_recreation_reward_func": 0.20130947075085714,
|
| 367 |
"rewards/soft_format_reward_func": 0.0,
|
| 368 |
"rewards/strict_format_reward_func": 0.0,
|
| 369 |
+
"rewards/xmlcount_reward_func": 0.08862500544637442,
|
| 370 |
"step": 38
|
| 371 |
},
|
| 372 |
{
|
| 373 |
+
"completion_length": 431.4375,
|
| 374 |
"epoch": 4.444444444444445,
|
| 375 |
+
"grad_norm": 29.043092727661133,
|
| 376 |
+
"kl": 0.003590297739719972,
|
| 377 |
"learning_rate": 5.166166492719124e-08,
|
| 378 |
"loss": 0.0,
|
| 379 |
+
"reward": 0.5267084827646613,
|
| 380 |
+
"reward_std": 0.684504278935492,
|
| 381 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 382 |
"rewards/consensus_reward_func": 0.0,
|
| 383 |
"rewards/cumulative_reward_2": 0.0,
|
| 384 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 385 |
+
"rewards/question_recreation_reward_func": 0.35548973828554153,
|
| 386 |
"rewards/soft_format_reward_func": 0.0,
|
| 387 |
"rewards/strict_format_reward_func": 0.0,
|
| 388 |
+
"rewards/xmlcount_reward_func": 0.10871875286102295,
|
| 389 |
"step": 40
|
| 390 |
},
|
| 391 |
{
|
| 392 |
+
"completion_length": 384.59375,
|
| 393 |
"epoch": 4.666666666666667,
|
| 394 |
+
"grad_norm": 29.70347785949707,
|
| 395 |
+
"kl": 0.001960429195605684,
|
| 396 |
"learning_rate": 3.349364905389032e-08,
|
| 397 |
"loss": 0.0,
|
| 398 |
+
"reward": 1.234227987471968,
|
| 399 |
+
"reward_std": 1.9329941319301724,
|
| 400 |
+
"rewards/concensus_correctness_reward_func": 0.6629374995827675,
|
| 401 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 402 |
"rewards/cumulative_reward_2": 0.0,
|
| 403 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 404 |
+
"rewards/question_recreation_reward_func": 0.257196772727184,
|
| 405 |
"rewards/soft_format_reward_func": 0.0,
|
| 406 |
"rewards/strict_format_reward_func": 0.0,
|
| 407 |
+
"rewards/xmlcount_reward_func": 0.12659375229850411,
|
| 408 |
"step": 42
|
| 409 |
},
|
| 410 |
{
|
| 411 |
+
"completion_length": 364.0625,
|
| 412 |
"epoch": 4.888888888888889,
|
| 413 |
+
"grad_norm": 55.00151062011719,
|
| 414 |
+
"kl": 0.002629825277836062,
|
| 415 |
"learning_rate": 1.9030116872178314e-08,
|
| 416 |
"loss": 0.0,
|
| 417 |
+
"reward": 0.5272765271365643,
|
| 418 |
+
"reward_std": 0.8430194035172462,
|
| 419 |
+
"rewards/concensus_correctness_reward_func": 0.01837499998509884,
|
| 420 |
+
"rewards/consensus_reward_func": 0.0,
|
| 421 |
"rewards/cumulative_reward_2": 0.0,
|
| 422 |
"rewards/final_correctness_reward_func": 0.0625,
|
| 423 |
+
"rewards/question_recreation_reward_func": 0.31580778677016497,
|
| 424 |
"rewards/soft_format_reward_func": 0.0,
|
| 425 |
"rewards/strict_format_reward_func": 0.0,
|
| 426 |
+
"rewards/xmlcount_reward_func": 0.13059375621378422,
|
| 427 |
"step": 44
|
| 428 |
},
|
| 429 |
{
|
| 430 |
+
"completion_length": 304.40625,
|
| 431 |
"epoch": 5.111111111111111,
|
| 432 |
+
"grad_norm": 42.15534973144531,
|
| 433 |
+
"kl": 0.005508741844096221,
|
| 434 |
"learning_rate": 8.518543427732949e-09,
|
| 435 |
"loss": 0.0,
|
| 436 |
+
"reward": 0.4785704296082258,
|
| 437 |
+
"reward_std": 0.8159382930025458,
|
| 438 |
+
"rewards/concensus_correctness_reward_func": 0.01837499998509884,
|
| 439 |
"rewards/consensus_reward_func": 0.0,
|
| 440 |
"rewards/cumulative_reward_2": 0.0,
|
| 441 |
"rewards/final_correctness_reward_func": 0.0625,
|
| 442 |
+
"rewards/question_recreation_reward_func": 0.33713291585445404,
|
| 443 |
"rewards/soft_format_reward_func": 0.0,
|
| 444 |
"rewards/strict_format_reward_func": 0.0,
|
| 445 |
+
"rewards/xmlcount_reward_func": 0.06056249886751175,
|
| 446 |
"step": 46
|
| 447 |
},
|
| 448 |
{
|
| 449 |
+
"completion_length": 353.375,
|
| 450 |
"epoch": 5.333333333333333,
|
| 451 |
+
"grad_norm": 6.933172225952148,
|
| 452 |
+
"kl": 0.002127421241311822,
|
| 453 |
"learning_rate": 2.1387846565474044e-09,
|
| 454 |
"loss": 0.0,
|
| 455 |
+
"reward": 0.6708917245268822,
|
| 456 |
+
"reward_std": 0.9302016571164131,
|
| 457 |
+
"rewards/concensus_correctness_reward_func": 0.006812499836087227,
|
| 458 |
"rewards/consensus_reward_func": 0.0,
|
| 459 |
"rewards/cumulative_reward_2": 0.0,
|
| 460 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
| 461 |
+
"rewards/question_recreation_reward_func": 0.2251729667186737,
|
| 462 |
"rewards/soft_format_reward_func": 0.0,
|
| 463 |
"rewards/strict_format_reward_func": 0.0,
|
| 464 |
+
"rewards/xmlcount_reward_func": 0.1264062523841858,
|
| 465 |
"step": 48
|
| 466 |
},
|
| 467 |
{
|
| 468 |
+
"completion_length": 346.9375,
|
| 469 |
"epoch": 5.555555555555555,
|
| 470 |
+
"grad_norm": 7.681344985961914,
|
| 471 |
+
"kl": 0.0038058556092437357,
|
| 472 |
"learning_rate": 0.0,
|
| 473 |
"loss": 0.0,
|
| 474 |
+
"reward": 0.41686041094362736,
|
| 475 |
+
"reward_std": 0.7147915656678379,
|
| 476 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 477 |
+
"rewards/consensus_reward_func": 0.0,
|
| 478 |
"rewards/cumulative_reward_2": 0.0,
|
| 479 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 480 |
+
"rewards/question_recreation_reward_func": 0.2795791446696967,
|
| 481 |
"rewards/soft_format_reward_func": 0.0,
|
| 482 |
"rewards/strict_format_reward_func": 0.0,
|
| 483 |
+
"rewards/xmlcount_reward_func": 0.13728125765919685,
|
| 484 |
"step": 50
|
| 485 |
},
|
| 486 |
{
|
| 487 |
"epoch": 5.555555555555555,
|
| 488 |
"step": 50,
|
| 489 |
"total_flos": 0.0,
|
| 490 |
+
"train_loss": 2.602725280667073e-06,
|
| 491 |
+
"train_runtime": 1884.3714,
|
| 492 |
+
"train_samples_per_second": 0.425,
|
| 493 |
+
"train_steps_per_second": 0.027
|
| 494 |
}
|
| 495 |
],
|
| 496 |
"logging_steps": 2,
|