Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am timid enormous eel
trl
genrl-swarm
I am timid_enormous_eel
conversational
text-generation-inference
Instructions to use sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel") model = AutoModelForCausalLM.from_pretrained("sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel", 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 sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel
- SGLang
How to use sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel 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 "sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel" \ --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": "sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel", "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 "sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel" \ --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": "sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel with Docker Model Runner:
docker model run hf.co/sergisimi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_enormous_eel
End of training
Browse files- all_results.json +4 -4
- model.safetensors +1 -1
- train_results.json +4 -4
- trainer_state.json +98 -98
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": 1.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 5.789846181869507e-06,
|
| 4 |
+
"train_runtime": 255.7314,
|
| 5 |
"train_samples": 28,
|
| 6 |
+
"train_samples_per_second": 1.251,
|
| 7 |
+
"train_steps_per_second": 0.078
|
| 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:5637ccbdc49a322f950896b5ae0284d2411eeb0e3a47d19660b4fe7abb5a5d1b
|
| 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": 1.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 5.789846181869507e-06,
|
| 4 |
+
"train_runtime": 255.7314,
|
| 5 |
"train_samples": 28,
|
| 6 |
+
"train_samples_per_second": 1.251,
|
| 7 |
+
"train_steps_per_second": 0.078
|
| 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": 0.
|
| 20 |
-
"reward_std": 0.
|
| 21 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 22 |
"rewards/consensus_reward_func": 0.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.0,
|
| 28 |
-
"rewards/xmlcount_reward_func": 0.
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
-
"completion_length":
|
| 33 |
"epoch": 1.0,
|
| 34 |
-
"grad_norm":
|
| 35 |
-
"kl": 0.
|
| 36 |
"learning_rate": 4.864543104251586e-07,
|
| 37 |
"loss": 0.0,
|
| 38 |
-
"reward": 0.
|
| 39 |
-
"reward_std": 0.
|
| 40 |
"rewards/concensus_correctness_reward_func": 0.0,
|
| 41 |
"rewards/consensus_reward_func": 0.0,
|
| 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.0,
|
| 47 |
-
"rewards/xmlcount_reward_func":
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
-
"completion_length":
|
| 52 |
"epoch": 1.5714285714285714,
|
| 53 |
-
"grad_norm":
|
| 54 |
-
"kl": 0.
|
| 55 |
"learning_rate": 4.472851273490984e-07,
|
| 56 |
"loss": 0.0,
|
| 57 |
-
"reward": 0.
|
| 58 |
-
"reward_std": 0.
|
| 59 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 60 |
-
"rewards/consensus_reward_func": 0.
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
"rewards/final_correctness_reward_func": 0.0,
|
| 63 |
-
"rewards/question_recreation_reward_func": 0.
|
| 64 |
"rewards/soft_format_reward_func": 0.0,
|
| 65 |
"rewards/strict_format_reward_func": 0.0,
|
| 66 |
-
"rewards/xmlcount_reward_func": 0.
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
-
"completion_length":
|
| 71 |
"epoch": 2.0,
|
| 72 |
-
"grad_norm":
|
| 73 |
-
"kl": 0.
|
| 74 |
"learning_rate": 3.867370395306068e-07,
|
| 75 |
"loss": 0.0,
|
| 76 |
-
"reward": 0.
|
| 77 |
-
"reward_std": 0.
|
| 78 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 79 |
"rewards/consensus_reward_func": 0.0,
|
| 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.0,
|
| 85 |
-
"rewards/xmlcount_reward_func": 0.
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
-
"completion_length":
|
| 90 |
"epoch": 2.571428571428571,
|
| 91 |
-
"grad_norm":
|
| 92 |
-
"kl": 0.
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
"loss": 0.0,
|
| 95 |
-
"reward": 0.
|
| 96 |
-
"reward_std": 0.
|
| 97 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 98 |
-
"rewards/consensus_reward_func": 0.
|
| 99 |
"rewards/cumulative_reward_2": 0.0,
|
| 100 |
-
"rewards/final_correctness_reward_func": 0.
|
| 101 |
-
"rewards/question_recreation_reward_func": 0.
|
| 102 |
"rewards/soft_format_reward_func": 0.0,
|
| 103 |
"rewards/strict_format_reward_func": 0.0,
|
| 104 |
-
"rewards/xmlcount_reward_func": 0.
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
-
"completion_length":
|
| 109 |
"epoch": 3.0,
|
| 110 |
-
"grad_norm": 3.
|
| 111 |
-
"kl": 0.
|
| 112 |
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
"loss": 0.0,
|
| 114 |
-
"reward": 0.
|
| 115 |
-
"reward_std": 0.
|
| 116 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 117 |
-
"rewards/consensus_reward_func": 0.
|
| 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.0,
|
| 123 |
-
"rewards/xmlcount_reward_func":
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
-
"completion_length":
|
| 128 |
"epoch": 3.571428571428571,
|
| 129 |
-
"grad_norm":
|
| 130 |
-
"kl": 0.
|
| 131 |
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
"loss": 0.0,
|
| 133 |
-
"reward": 0.
|
| 134 |
-
"reward_std": 0.
|
| 135 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 136 |
"rewards/consensus_reward_func": 0.0,
|
| 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.0,
|
| 142 |
-
"rewards/xmlcount_reward_func":
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
-
"completion_length":
|
| 147 |
"epoch": 4.0,
|
| 148 |
-
"grad_norm":
|
| 149 |
-
"kl": 0.
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
"loss": 0.0,
|
| 152 |
-
"reward": 0.
|
| 153 |
-
"reward_std": 0.
|
| 154 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 155 |
"rewards/consensus_reward_func": 0.08333333333333333,
|
| 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": 0.
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
-
"completion_length":
|
| 166 |
"epoch": 4.571428571428571,
|
| 167 |
-
"grad_norm":
|
| 168 |
-
"kl": 0.
|
| 169 |
"learning_rate": 3.013156219837776e-08,
|
| 170 |
-
"loss": 0.
|
| 171 |
-
"reward": 0.
|
| 172 |
-
"reward_std": 0.
|
| 173 |
"rewards/concensus_correctness_reward_func": 0.0,
|
| 174 |
"rewards/consensus_reward_func": 0.0,
|
| 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.
|
| 179 |
"rewards/strict_format_reward_func": 0.0,
|
| 180 |
-
"rewards/xmlcount_reward_func": 0.
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
-
"completion_length":
|
| 185 |
"epoch": 5.0,
|
| 186 |
-
"grad_norm":
|
| 187 |
-
"kl": 0.
|
| 188 |
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
"loss": 0.0,
|
| 190 |
-
"reward": 0.
|
| 191 |
-
"reward_std": 0.
|
| 192 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 193 |
-
"rewards/consensus_reward_func": 0.
|
| 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.
|
| 198 |
"rewards/strict_format_reward_func": 0.0,
|
| 199 |
-
"rewards/xmlcount_reward_func": 0.
|
| 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": 1.
|
| 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": 365.65625,
|
| 14 |
"epoch": 0.5714285714285714,
|
| 15 |
+
"grad_norm": 14.179405212402344,
|
| 16 |
"kl": 0.0,
|
| 17 |
"learning_rate": 5e-07,
|
| 18 |
+
"loss": 0.0,
|
| 19 |
+
"reward": 0.2427588254213333,
|
| 20 |
+
"reward_std": 0.3749255428556353,
|
| 21 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 22 |
"rewards/consensus_reward_func": 0.0,
|
| 23 |
"rewards/cumulative_reward_2": 0.0,
|
| 24 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 25 |
+
"rewards/question_recreation_reward_func": 0.20150883018504828,
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
"rewards/strict_format_reward_func": 0.0,
|
| 28 |
+
"rewards/xmlcount_reward_func": 0.04124999698251486,
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
+
"completion_length": 406.125,
|
| 33 |
"epoch": 1.0,
|
| 34 |
+
"grad_norm": 3.852626323699951,
|
| 35 |
+
"kl": 0.0011132456468961511,
|
| 36 |
"learning_rate": 4.864543104251586e-07,
|
| 37 |
"loss": 0.0,
|
| 38 |
+
"reward": 0.5863276486440251,
|
| 39 |
+
"reward_std": 0.7326236686979731,
|
| 40 |
"rewards/concensus_correctness_reward_func": 0.0,
|
| 41 |
"rewards/consensus_reward_func": 0.0,
|
| 42 |
"rewards/cumulative_reward_2": 0.0,
|
| 43 |
+
"rewards/final_correctness_reward_func": 0.08333333333333333,
|
| 44 |
+
"rewards/question_recreation_reward_func": 0.2642859707120806,
|
| 45 |
"rewards/soft_format_reward_func": 0.0,
|
| 46 |
"rewards/strict_format_reward_func": 0.0,
|
| 47 |
+
"rewards/xmlcount_reward_func": 0.23870833838979402,
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
+
"completion_length": 452.40625,
|
| 52 |
"epoch": 1.5714285714285714,
|
| 53 |
+
"grad_norm": 6.830471992492676,
|
| 54 |
+
"kl": 0.005372916206397349,
|
| 55 |
"learning_rate": 4.472851273490984e-07,
|
| 56 |
"loss": 0.0,
|
| 57 |
+
"reward": 0.6045340495184064,
|
| 58 |
+
"reward_std": 0.79126639617607,
|
| 59 |
+
"rewards/concensus_correctness_reward_func": 0.03937499923631549,
|
| 60 |
+
"rewards/consensus_reward_func": 0.1875,
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
"rewards/final_correctness_reward_func": 0.0,
|
| 63 |
+
"rewards/question_recreation_reward_func": 0.3784715555375442,
|
| 64 |
"rewards/soft_format_reward_func": 0.0,
|
| 65 |
"rewards/strict_format_reward_func": 0.0,
|
| 66 |
+
"rewards/xmlcount_reward_func": -0.0008125021122395992,
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
+
"completion_length": 380.7083333333333,
|
| 71 |
"epoch": 2.0,
|
| 72 |
+
"grad_norm": 4.8112006187438965,
|
| 73 |
+
"kl": 0.004066859857024004,
|
| 74 |
"learning_rate": 3.867370395306068e-07,
|
| 75 |
"loss": 0.0,
|
| 76 |
+
"reward": 0.535386499017477,
|
| 77 |
+
"reward_std": 0.7797896520545086,
|
| 78 |
+
"rewards/concensus_correctness_reward_func": -0.0014166658123334248,
|
| 79 |
"rewards/consensus_reward_func": 0.0,
|
| 80 |
"rewards/cumulative_reward_2": 0.0,
|
| 81 |
+
"rewards/final_correctness_reward_func": 0.08333333333333333,
|
| 82 |
+
"rewards/question_recreation_reward_func": 0.46805315154294175,
|
| 83 |
"rewards/soft_format_reward_func": 0.0,
|
| 84 |
"rewards/strict_format_reward_func": 0.0,
|
| 85 |
+
"rewards/xmlcount_reward_func": -0.014583330291012922,
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
+
"completion_length": 352.0,
|
| 90 |
"epoch": 2.571428571428571,
|
| 91 |
+
"grad_norm": 8.99525260925293,
|
| 92 |
+
"kl": 0.00560545343614649,
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
"loss": 0.0,
|
| 95 |
+
"reward": 0.5663651821669191,
|
| 96 |
+
"reward_std": 0.6635120917344466,
|
| 97 |
+
"rewards/concensus_correctness_reward_func": 0.028187499847263098,
|
| 98 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 99 |
"rewards/cumulative_reward_2": 0.0,
|
| 100 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 101 |
+
"rewards/question_recreation_reward_func": 0.32061517116380855,
|
| 102 |
"rewards/soft_format_reward_func": 0.0,
|
| 103 |
"rewards/strict_format_reward_func": 0.0,
|
| 104 |
+
"rewards/xmlcount_reward_func": 0.03006250597536564,
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
+
"completion_length": 430.7083333333333,
|
| 109 |
"epoch": 3.0,
|
| 110 |
+
"grad_norm": 3.194183111190796,
|
| 111 |
+
"kl": 0.005021966828887041,
|
| 112 |
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
"loss": 0.0,
|
| 114 |
+
"reward": 0.6885809650023779,
|
| 115 |
+
"reward_std": 0.5730737987905741,
|
| 116 |
+
"rewards/concensus_correctness_reward_func": 0.019916666050752003,
|
| 117 |
+
"rewards/consensus_reward_func": 0.08333333333333333,
|
| 118 |
"rewards/cumulative_reward_2": 0.0,
|
| 119 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 120 |
+
"rewards/question_recreation_reward_func": 0.3595809681961934,
|
| 121 |
"rewards/soft_format_reward_func": 0.0,
|
| 122 |
"rewards/strict_format_reward_func": 0.0,
|
| 123 |
+
"rewards/xmlcount_reward_func": 0.22574999928474426,
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
+
"completion_length": 311.0625,
|
| 128 |
"epoch": 3.571428571428571,
|
| 129 |
+
"grad_norm": 8.51522159576416,
|
| 130 |
+
"kl": 0.008630032287328504,
|
| 131 |
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
"loss": 0.0,
|
| 133 |
+
"reward": 0.6108579719439149,
|
| 134 |
+
"reward_std": 0.4224043536814861,
|
| 135 |
+
"rewards/concensus_correctness_reward_func": 0.012875000014901161,
|
| 136 |
"rewards/consensus_reward_func": 0.0,
|
| 137 |
"rewards/cumulative_reward_2": 0.0,
|
| 138 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 139 |
+
"rewards/question_recreation_reward_func": 0.39929547999054193,
|
| 140 |
"rewards/soft_format_reward_func": 0.0,
|
| 141 |
"rewards/strict_format_reward_func": 0.0,
|
| 142 |
+
"rewards/xmlcount_reward_func": 0.19868750195018947,
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
+
"completion_length": 376.5833333333333,
|
| 147 |
"epoch": 4.0,
|
| 148 |
+
"grad_norm": 8.402838706970215,
|
| 149 |
+
"kl": 0.02474313727968062,
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
"loss": 0.0,
|
| 152 |
+
"reward": 0.5476541705429554,
|
| 153 |
+
"reward_std": 0.7967136573667327,
|
| 154 |
+
"rewards/concensus_correctness_reward_func": 0.020000000173846882,
|
| 155 |
"rewards/consensus_reward_func": 0.08333333333333333,
|
| 156 |
"rewards/cumulative_reward_2": 0.0,
|
| 157 |
+
"rewards/final_correctness_reward_func": 0.16666666666666666,
|
| 158 |
+
"rewards/question_recreation_reward_func": 0.34327918842124444,
|
| 159 |
"rewards/soft_format_reward_func": 0.0,
|
| 160 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 161 |
+
"rewards/xmlcount_reward_func": -0.06562500447034836,
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
+
"completion_length": 424.03125,
|
| 166 |
"epoch": 4.571428571428571,
|
| 167 |
+
"grad_norm": 6.046524524688721,
|
| 168 |
+
"kl": 0.006681103131995769,
|
| 169 |
"learning_rate": 3.013156219837776e-08,
|
| 170 |
+
"loss": 0.0,
|
| 171 |
+
"reward": 0.39081719936802983,
|
| 172 |
+
"reward_std": 0.40696210850728676,
|
| 173 |
"rewards/concensus_correctness_reward_func": 0.0,
|
| 174 |
"rewards/consensus_reward_func": 0.0,
|
| 175 |
"rewards/cumulative_reward_2": 0.0,
|
| 176 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 177 |
+
"rewards/question_recreation_reward_func": 0.4093172032153234,
|
| 178 |
+
"rewards/soft_format_reward_func": 0.015625,
|
| 179 |
"rewards/strict_format_reward_func": 0.0,
|
| 180 |
+
"rewards/xmlcount_reward_func": -0.0341250014025718,
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
+
"completion_length": 398.9583333333333,
|
| 185 |
"epoch": 5.0,
|
| 186 |
+
"grad_norm": 2.623539924621582,
|
| 187 |
+
"kl": 0.007515662601993729,
|
| 188 |
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
"loss": 0.0,
|
| 190 |
+
"reward": 0.8085836459261676,
|
| 191 |
+
"reward_std": 0.8141655756941569,
|
| 192 |
+
"rewards/concensus_correctness_reward_func": 0.03258333293100198,
|
| 193 |
+
"rewards/consensus_reward_func": 0.16666666666666666,
|
| 194 |
"rewards/cumulative_reward_2": 0.0,
|
| 195 |
"rewards/final_correctness_reward_func": 0.0,
|
| 196 |
+
"rewards/question_recreation_reward_func": 0.36983366357162595,
|
| 197 |
+
"rewards/soft_format_reward_func": 0.020833333333333332,
|
| 198 |
"rewards/strict_format_reward_func": 0.0,
|
| 199 |
+
"rewards/xmlcount_reward_func": 0.21866667022307715,
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
"epoch": 5.0,
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
+
"train_loss": 5.789846181869507e-06,
|
| 207 |
+
"train_runtime": 255.7314,
|
| 208 |
+
"train_samples_per_second": 1.251,
|
| 209 |
+
"train_steps_per_second": 0.078
|
| 210 |
}
|
| 211 |
],
|
| 212 |
"logging_steps": 2,
|