Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am quiet hulking shrew
trl
conversational
text-generation-inference
Instructions to use xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew") model = AutoModelForCausalLM.from_pretrained("xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew", 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 xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew
- SGLang
How to use xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew 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 "xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew" \ --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": "xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew", "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 "xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew" \ --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": "xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew with Docker Model Runner:
docker model run hf.co/xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew
End of training
Browse files- all_results.json +4 -4
- model.safetensors +1 -1
- train_results.json +4 -4
- trainer_state.json +117 -117
all_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss":
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 28,
|
| 6 |
-
"train_samples_per_second": 2.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 7414045297408.011,
|
| 4 |
+
"train_runtime": 138.0454,
|
| 5 |
"train_samples": 28,
|
| 6 |
+
"train_samples_per_second": 2.318,
|
| 7 |
+
"train_steps_per_second": 0.145
|
| 8 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 1976163472
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4086f4aade2b60e7dd20a1f4e228e875875f8c8a99508a2109229f82264a0498
|
| 3 |
size 1976163472
|
train_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss":
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 28,
|
| 6 |
-
"train_samples_per_second": 2.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 7414045297408.011,
|
| 4 |
+
"train_runtime": 138.0454,
|
| 5 |
"train_samples": 28,
|
| 6 |
+
"train_samples_per_second": 2.318,
|
| 7 |
+
"train_steps_per_second": 0.145
|
| 8 |
}
|
trainer_state.json
CHANGED
|
@@ -10,203 +10,203 @@
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"completion_length":
|
| 14 |
"epoch": 0.5714285714285714,
|
| 15 |
-
"grad_norm":
|
| 16 |
"kl": 0.0,
|
| 17 |
"learning_rate": 5e-07,
|
| 18 |
-
"loss":
|
| 19 |
-
"reward":
|
| 20 |
-
"reward_std":
|
| 21 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 22 |
-
"rewards/consensus_reward_func": 0.
|
| 23 |
"rewards/cumulative_reward_2": 0.0,
|
| 24 |
-
"rewards/final_correctness_reward_func": 0.
|
| 25 |
-
"rewards/question_recreation_reward_func": 0.
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
"rewards/strict_format_reward_func": 0.125,
|
| 28 |
-
"rewards/xmlcount_reward_func": 0.
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
-
"completion_length":
|
| 33 |
"epoch": 1.0,
|
| 34 |
-
"grad_norm":
|
| 35 |
-
"kl":
|
| 36 |
"learning_rate": 4.864543104251586e-07,
|
| 37 |
-
"loss": 0.
|
| 38 |
-
"reward":
|
| 39 |
-
"reward_std":
|
| 40 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 41 |
-
"rewards/consensus_reward_func":
|
| 42 |
"rewards/cumulative_reward_2": 0.0,
|
| 43 |
-
"rewards/final_correctness_reward_func": 0.
|
| 44 |
-
"rewards/question_recreation_reward_func": 0.
|
| 45 |
"rewards/soft_format_reward_func": 0.0,
|
| 46 |
-
"rewards/strict_format_reward_func": 0.
|
| 47 |
-
"rewards/xmlcount_reward_func":
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
-
"completion_length":
|
| 52 |
"epoch": 1.5714285714285714,
|
| 53 |
-
"grad_norm":
|
| 54 |
-
"kl":
|
| 55 |
"learning_rate": 4.472851273490984e-07,
|
| 56 |
-
"loss": 0.
|
| 57 |
-
"reward": 5.
|
| 58 |
-
"reward_std":
|
| 59 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 60 |
"rewards/consensus_reward_func": 1.375,
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
"rewards/final_correctness_reward_func": 0.125,
|
| 63 |
-
"rewards/question_recreation_reward_func": 0.
|
| 64 |
"rewards/soft_format_reward_func": 0.0,
|
| 65 |
-
"rewards/strict_format_reward_func": 0.
|
| 66 |
-
"rewards/xmlcount_reward_func": 1.
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
-
"completion_length":
|
| 71 |
"epoch": 2.0,
|
| 72 |
-
"grad_norm":
|
| 73 |
-
"kl":
|
| 74 |
"learning_rate": 3.867370395306068e-07,
|
| 75 |
-
"loss": 0.
|
| 76 |
-
"reward":
|
| 77 |
-
"reward_std": 1.
|
| 78 |
-
"rewards/concensus_correctness_reward_func":
|
| 79 |
-
"rewards/consensus_reward_func":
|
| 80 |
"rewards/cumulative_reward_2": 0.0,
|
| 81 |
-
"rewards/final_correctness_reward_func": 0.
|
| 82 |
-
"rewards/question_recreation_reward_func": 0.
|
| 83 |
"rewards/soft_format_reward_func": 0.0,
|
| 84 |
-
"rewards/strict_format_reward_func": 0.
|
| 85 |
-
"rewards/xmlcount_reward_func":
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
-
"completion_length": 124.
|
| 90 |
"epoch": 2.571428571428571,
|
| 91 |
-
"grad_norm":
|
| 92 |
-
"kl":
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
-
"loss":
|
| 95 |
-
"reward": 4.
|
| 96 |
-
"reward_std": 0.
|
| 97 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 98 |
-
"rewards/consensus_reward_func": 1.
|
| 99 |
"rewards/cumulative_reward_2": 0.0,
|
| 100 |
"rewards/final_correctness_reward_func": 0.0,
|
| 101 |
-
"rewards/question_recreation_reward_func": 0.
|
| 102 |
"rewards/soft_format_reward_func": 0.0,
|
| 103 |
-
"rewards/strict_format_reward_func": 0.
|
| 104 |
-
"rewards/xmlcount_reward_func":
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
-
"completion_length":
|
| 109 |
"epoch": 3.0,
|
| 110 |
-
"grad_norm":
|
| 111 |
-
"kl":
|
| 112 |
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
-
"loss":
|
| 114 |
-
"reward": 5.
|
| 115 |
-
"reward_std": 1.
|
| 116 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 117 |
-
"rewards/consensus_reward_func": 1.
|
| 118 |
"rewards/cumulative_reward_2": 0.0,
|
| 119 |
-
"rewards/final_correctness_reward_func": 0.
|
| 120 |
-
"rewards/question_recreation_reward_func": 0.
|
| 121 |
"rewards/soft_format_reward_func": 0.0,
|
| 122 |
-
"rewards/strict_format_reward_func": 0.
|
| 123 |
-
"rewards/xmlcount_reward_func":
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
-
"completion_length":
|
| 128 |
"epoch": 3.571428571428571,
|
| 129 |
-
"grad_norm":
|
| 130 |
-
"kl":
|
| 131 |
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
-
"loss":
|
| 133 |
-
"reward":
|
| 134 |
-
"reward_std": 0.
|
| 135 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 136 |
-
"rewards/consensus_reward_func": 1.
|
| 137 |
"rewards/cumulative_reward_2": 0.0,
|
| 138 |
-
"rewards/final_correctness_reward_func": 0.
|
| 139 |
-
"rewards/question_recreation_reward_func": 0.
|
| 140 |
"rewards/soft_format_reward_func": 0.0,
|
| 141 |
-
"rewards/strict_format_reward_func": 0.
|
| 142 |
-
"rewards/xmlcount_reward_func": 1.
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
-
"completion_length": 122.
|
| 147 |
"epoch": 4.0,
|
| 148 |
-
"grad_norm":
|
| 149 |
-
"kl":
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
-
"loss": 0.
|
| 152 |
-
"reward":
|
| 153 |
-
"reward_std": 0.
|
| 154 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 155 |
-
"rewards/consensus_reward_func":
|
| 156 |
"rewards/cumulative_reward_2": 0.0,
|
| 157 |
-
"rewards/final_correctness_reward_func": 0.
|
| 158 |
-
"rewards/question_recreation_reward_func": 0.
|
| 159 |
"rewards/soft_format_reward_func": 0.0,
|
| 160 |
-
"rewards/strict_format_reward_func": 0.
|
| 161 |
-
"rewards/xmlcount_reward_func":
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
-
"completion_length":
|
| 166 |
"epoch": 4.571428571428571,
|
| 167 |
-
"grad_norm":
|
| 168 |
-
"kl":
|
| 169 |
"learning_rate": 3.013156219837776e-08,
|
| 170 |
-
"loss": 0.
|
| 171 |
-
"reward":
|
| 172 |
-
"reward_std":
|
| 173 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 174 |
-
"rewards/consensus_reward_func": 1.
|
| 175 |
"rewards/cumulative_reward_2": 0.0,
|
| 176 |
-
"rewards/final_correctness_reward_func": 0.
|
| 177 |
-
"rewards/question_recreation_reward_func": 0.
|
| 178 |
"rewards/soft_format_reward_func": 0.0,
|
| 179 |
-
"rewards/strict_format_reward_func": 0.
|
| 180 |
-
"rewards/xmlcount_reward_func": 1.
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
-
"completion_length":
|
| 185 |
"epoch": 5.0,
|
| 186 |
-
"grad_norm":
|
| 187 |
-
"kl":
|
| 188 |
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
-
"loss":
|
| 190 |
-
"reward": 4.
|
| 191 |
-
"reward_std": 0.
|
| 192 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 193 |
-
"rewards/consensus_reward_func": 1.
|
| 194 |
"rewards/cumulative_reward_2": 0.0,
|
| 195 |
"rewards/final_correctness_reward_func": 0.0,
|
| 196 |
-
"rewards/question_recreation_reward_func": 0.
|
| 197 |
"rewards/soft_format_reward_func": 0.0,
|
| 198 |
"rewards/strict_format_reward_func": 0.3125,
|
| 199 |
-
"rewards/xmlcount_reward_func": 1.
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
"epoch": 5.0,
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
-
"train_loss":
|
| 207 |
-
"train_runtime":
|
| 208 |
-
"train_samples_per_second": 2.
|
| 209 |
-
"train_steps_per_second": 0.
|
| 210 |
}
|
| 211 |
],
|
| 212 |
"logging_steps": 2,
|
|
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"completion_length": 220.40625,
|
| 14 |
"epoch": 0.5714285714285714,
|
| 15 |
+
"grad_norm": 370.6959228515625,
|
| 16 |
"kl": 0.0,
|
| 17 |
"learning_rate": 5e-07,
|
| 18 |
+
"loss": 0.0,
|
| 19 |
+
"reward": 3.158231223002076,
|
| 20 |
+
"reward_std": 2.3540359642356634,
|
| 21 |
+
"rewards/concensus_correctness_reward_func": 0.7574374969117343,
|
| 22 |
+
"rewards/consensus_reward_func": 0.875,
|
| 23 |
"rewards/cumulative_reward_2": 0.0,
|
| 24 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 25 |
+
"rewards/question_recreation_reward_func": 0.5939812306314707,
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
"rewards/strict_format_reward_func": 0.125,
|
| 28 |
+
"rewards/xmlcount_reward_func": 0.7443124949932098,
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
+
"completion_length": 133.33333333333334,
|
| 33 |
"epoch": 1.0,
|
| 34 |
+
"grad_norm": 38.79075241088867,
|
| 35 |
+
"kl": 5.331876152127127,
|
| 36 |
"learning_rate": 4.864543104251586e-07,
|
| 37 |
+
"loss": 0.004,
|
| 38 |
+
"reward": 5.233374044299126,
|
| 39 |
+
"reward_std": 0.8660089472929636,
|
| 40 |
+
"rewards/concensus_correctness_reward_func": 1.5560000042120616,
|
| 41 |
+
"rewards/consensus_reward_func": 1.25,
|
| 42 |
"rewards/cumulative_reward_2": 0.0,
|
| 43 |
+
"rewards/final_correctness_reward_func": 0.16666666666666666,
|
| 44 |
+
"rewards/question_recreation_reward_func": 0.7919573835097253,
|
| 45 |
"rewards/soft_format_reward_func": 0.0,
|
| 46 |
+
"rewards/strict_format_reward_func": 0.375,
|
| 47 |
+
"rewards/xmlcount_reward_func": 1.09375,
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
+
"completion_length": 126.09375,
|
| 52 |
"epoch": 1.5714285714285714,
|
| 53 |
+
"grad_norm": 122.4796371459961,
|
| 54 |
+
"kl": 4.008211376552936,
|
| 55 |
"learning_rate": 4.472851273490984e-07,
|
| 56 |
+
"loss": 0.004,
|
| 57 |
+
"reward": 5.296303015202284,
|
| 58 |
+
"reward_std": 0.6576162387646036,
|
| 59 |
+
"rewards/concensus_correctness_reward_func": 1.5581875033676624,
|
| 60 |
"rewards/consensus_reward_func": 1.375,
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
"rewards/final_correctness_reward_func": 0.125,
|
| 63 |
+
"rewards/question_recreation_reward_func": 0.8373342980630696,
|
| 64 |
"rewards/soft_format_reward_func": 0.0,
|
| 65 |
+
"rewards/strict_format_reward_func": 0.328125,
|
| 66 |
+
"rewards/xmlcount_reward_func": 1.0726562459021807,
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
+
"completion_length": 135.16666666666666,
|
| 71 |
"epoch": 2.0,
|
| 72 |
+
"grad_norm": 116.60319519042969,
|
| 73 |
+
"kl": 72.46203918956842,
|
| 74 |
"learning_rate": 3.867370395306068e-07,
|
| 75 |
+
"loss": 0.0543,
|
| 76 |
+
"reward": 4.962096472581227,
|
| 77 |
+
"reward_std": 1.3264382254953186,
|
| 78 |
+
"rewards/concensus_correctness_reward_func": 1.2855833172798157,
|
| 79 |
+
"rewards/consensus_reward_func": 1.3333333333333333,
|
| 80 |
"rewards/cumulative_reward_2": 0.0,
|
| 81 |
+
"rewards/final_correctness_reward_func": 0.16666666666666666,
|
| 82 |
+
"rewards/question_recreation_reward_func": 0.8027631565928459,
|
| 83 |
"rewards/soft_format_reward_func": 0.0,
|
| 84 |
+
"rewards/strict_format_reward_func": 0.3333333333333333,
|
| 85 |
+
"rewards/xmlcount_reward_func": 1.0404166678587596,
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
+
"completion_length": 124.125,
|
| 90 |
"epoch": 2.571428571428571,
|
| 91 |
+
"grad_norm": 3.246325260877824e+16,
|
| 92 |
+
"kl": 4467538332384663.5,
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
+
"loss": 4467538788352.0,
|
| 95 |
+
"reward": 4.5928835310041904,
|
| 96 |
+
"reward_std": 0.8666829236244666,
|
| 97 |
+
"rewards/concensus_correctness_reward_func": 1.259687501937151,
|
| 98 |
+
"rewards/consensus_reward_func": 1.1875,
|
| 99 |
"rewards/cumulative_reward_2": 0.0,
|
| 100 |
"rewards/final_correctness_reward_func": 0.0,
|
| 101 |
+
"rewards/question_recreation_reward_func": 0.794633528450504,
|
| 102 |
"rewards/soft_format_reward_func": 0.0,
|
| 103 |
+
"rewards/strict_format_reward_func": 0.3125,
|
| 104 |
+
"rewards/xmlcount_reward_func": 1.038562498986721,
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
+
"completion_length": 136.20833333333334,
|
| 109 |
"epoch": 3.0,
|
| 110 |
+
"grad_norm": 27328237273088.0,
|
| 111 |
+
"kl": 9.273817938508731e+16,
|
| 112 |
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
+
"loss": 69553639915520.0,
|
| 114 |
+
"reward": 5.450516646107038,
|
| 115 |
+
"reward_std": 1.0470037174236495,
|
| 116 |
+
"rewards/concensus_correctness_reward_func": 1.5939166539659102,
|
| 117 |
+
"rewards/consensus_reward_func": 1.4166666666666667,
|
| 118 |
"rewards/cumulative_reward_2": 0.0,
|
| 119 |
+
"rewards/final_correctness_reward_func": 0.3333333333333333,
|
| 120 |
+
"rewards/question_recreation_reward_func": 0.7107667277256647,
|
| 121 |
"rewards/soft_format_reward_func": 0.0,
|
| 122 |
+
"rewards/strict_format_reward_func": 0.3333333333333333,
|
| 123 |
+
"rewards/xmlcount_reward_func": 1.0625,
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
+
"completion_length": 136.0,
|
| 128 |
"epoch": 3.571428571428571,
|
| 129 |
+
"grad_norm": 662111554371584.0,
|
| 130 |
+
"kl": 114505841377290.19,
|
| 131 |
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
+
"loss": 114505850880.0,
|
| 133 |
+
"reward": 5.673261195421219,
|
| 134 |
+
"reward_std": 0.344359127106145,
|
| 135 |
+
"rewards/concensus_correctness_reward_func": 1.7128124977461994,
|
| 136 |
+
"rewards/consensus_reward_func": 1.5625,
|
| 137 |
"rewards/cumulative_reward_2": 0.0,
|
| 138 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 139 |
+
"rewards/question_recreation_reward_func": 0.7814487130381167,
|
| 140 |
"rewards/soft_format_reward_func": 0.0,
|
| 141 |
+
"rewards/strict_format_reward_func": 0.34375,
|
| 142 |
+
"rewards/xmlcount_reward_func": 1.1477500051259995,
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
+
"completion_length": 122.0,
|
| 147 |
"epoch": 4.0,
|
| 148 |
+
"grad_norm": 116.89218139648438,
|
| 149 |
+
"kl": 51.65798989799805,
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
+
"loss": 0.0387,
|
| 152 |
+
"reward": 4.060450504223506,
|
| 153 |
+
"reward_std": 0.8071012394114708,
|
| 154 |
+
"rewards/concensus_correctness_reward_func": 1.0406666646401088,
|
| 155 |
+
"rewards/consensus_reward_func": 1.0,
|
| 156 |
"rewards/cumulative_reward_2": 0.0,
|
| 157 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 158 |
+
"rewards/question_recreation_reward_func": 0.7489505461417139,
|
| 159 |
"rewards/soft_format_reward_func": 0.0,
|
| 160 |
+
"rewards/strict_format_reward_func": 0.2708333333333333,
|
| 161 |
+
"rewards/xmlcount_reward_func": 1.0,
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
+
"completion_length": 154.71875,
|
| 166 |
"epoch": 4.571428571428571,
|
| 167 |
+
"grad_norm": 150.25718688964844,
|
| 168 |
+
"kl": 18.977649124339223,
|
| 169 |
"learning_rate": 3.013156219837776e-08,
|
| 170 |
+
"loss": 0.019,
|
| 171 |
+
"reward": 5.8731399923563,
|
| 172 |
+
"reward_std": 0.9883110183291137,
|
| 173 |
+
"rewards/concensus_correctness_reward_func": 1.6851874883286655,
|
| 174 |
+
"rewards/consensus_reward_func": 1.625,
|
| 175 |
"rewards/cumulative_reward_2": 0.0,
|
| 176 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 177 |
+
"rewards/question_recreation_reward_func": 0.9194212518632412,
|
| 178 |
"rewards/soft_format_reward_func": 0.0,
|
| 179 |
+
"rewards/strict_format_reward_func": 0.34375,
|
| 180 |
+
"rewards/xmlcount_reward_func": 1.174781247973442,
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
+
"completion_length": 141.95833333333334,
|
| 185 |
"epoch": 5.0,
|
| 186 |
+
"grad_norm": 16.426393508911133,
|
| 187 |
+
"kl": 6357892377798.195,
|
| 188 |
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
+
"loss": 4768419328.0,
|
| 190 |
+
"reward": 4.353968332211177,
|
| 191 |
+
"reward_std": 0.8190002473032413,
|
| 192 |
+
"rewards/concensus_correctness_reward_func": 1.137750009695689,
|
| 193 |
+
"rewards/consensus_reward_func": 1.0,
|
| 194 |
"rewards/cumulative_reward_2": 0.0,
|
| 195 |
"rewards/final_correctness_reward_func": 0.0,
|
| 196 |
+
"rewards/question_recreation_reward_func": 0.8203849969431758,
|
| 197 |
"rewards/soft_format_reward_func": 0.0,
|
| 198 |
"rewards/strict_format_reward_func": 0.3125,
|
| 199 |
+
"rewards/xmlcount_reward_func": 1.0833333333333333,
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
"epoch": 5.0,
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
+
"train_loss": 7414045297408.011,
|
| 207 |
+
"train_runtime": 138.0454,
|
| 208 |
+
"train_samples_per_second": 2.318,
|
| 209 |
+
"train_steps_per_second": 0.145
|
| 210 |
}
|
| 211 |
],
|
| 212 |
"logging_steps": 2,
|