Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am endangered gregarious wolf
trl
genrl-swarm
I am endangered_gregarious_wolf
conversational
text-generation-inference
Instructions to use Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf") model = AutoModelForCausalLM.from_pretrained("Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf", 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf
- SGLang
How to use Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf 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 "Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf" \ --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": "Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf", "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 "Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf" \ --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": "Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf with Docker Model Runner:
docker model run hf.co/Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf
End of training
Browse files- all_results.json +3 -3
- model.safetensors +1 -1
- train_results.json +3 -3
- trainer_state.json +114 -114
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.164
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 16.613859914429487,
|
| 4 |
+
"train_runtime": 122.1144,
|
| 5 |
"train_samples": 28,
|
| 6 |
+
"train_samples_per_second": 2.62,
|
| 7 |
"train_steps_per_second": 0.164
|
| 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:4c2d76f456ad84e985e5d185808b71a2d4ccfc7804a4c97ba2760ea4feab8d52
|
| 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.164
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 16.613859914429487,
|
| 4 |
+
"train_runtime": 122.1144,
|
| 5 |
"train_samples": 28,
|
| 6 |
+
"train_samples_per_second": 2.62,
|
| 7 |
"train_steps_per_second": 0.164
|
| 8 |
}
|
trainer_state.json
CHANGED
|
@@ -10,202 +10,202 @@
|
|
| 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": 0.0,
|
| 19 |
-
"reward": 3.
|
| 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.125,
|
| 25 |
-
"rewards/question_recreation_reward_func": 0.
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
"rewards/strict_format_reward_func": 0.15625,
|
| 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": 4.
|
| 39 |
-
"reward_std":
|
| 40 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 41 |
-
"rewards/consensus_reward_func": 1.
|
| 42 |
"rewards/cumulative_reward_2": 0.0,
|
| 43 |
"rewards/final_correctness_reward_func": 0.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":
|
| 57 |
-
"reward": 5.
|
| 58 |
-
"reward_std": 0.
|
| 59 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 60 |
-
"rewards/consensus_reward_func": 1.
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
-
"rewards/final_correctness_reward_func": 0.
|
| 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": 4.
|
| 77 |
-
"reward_std":
|
| 78 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 79 |
-
"rewards/consensus_reward_func": 1.
|
| 80 |
"rewards/cumulative_reward_2": 0.0,
|
| 81 |
"rewards/final_correctness_reward_func": 0.08333333333333333,
|
| 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": 1.
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
-
"completion_length":
|
| 90 |
"epoch": 2.571428571428571,
|
| 91 |
-
"grad_norm":
|
| 92 |
-
"kl":
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
-
"loss":
|
| 95 |
-
"reward":
|
| 96 |
-
"reward_std":
|
| 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": 1.
|
| 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": 4.
|
| 115 |
-
"reward_std":
|
| 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.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": 1.
|
| 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": 4.
|
| 134 |
-
"reward_std":
|
| 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":
|
| 147 |
"epoch": 4.0,
|
| 148 |
-
"grad_norm":
|
| 149 |
-
"kl":
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
-
"loss":
|
| 152 |
-
"reward":
|
| 153 |
-
"reward_std": 0.
|
| 154 |
-
"rewards/concensus_correctness_reward_func": 1.
|
| 155 |
-
"rewards/consensus_reward_func": 1.
|
| 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": 1.
|
| 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":
|
| 171 |
-
"reward": 4.
|
| 172 |
-
"reward_std": 1.
|
| 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":
|
| 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.
|
| 199 |
-
"rewards/xmlcount_reward_func":
|
| 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.164
|
| 210 |
}
|
| 211 |
],
|
|
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"completion_length": 213.375,
|
| 14 |
"epoch": 0.5714285714285714,
|
| 15 |
+
"grad_norm": 83.38453674316406,
|
| 16 |
"kl": 0.0,
|
| 17 |
"learning_rate": 5e-07,
|
| 18 |
"loss": 0.0,
|
| 19 |
+
"reward": 3.2702511064708233,
|
| 20 |
+
"reward_std": 1.6299662222154438,
|
| 21 |
+
"rewards/concensus_correctness_reward_func": 0.7398749957792461,
|
| 22 |
+
"rewards/consensus_reward_func": 0.875,
|
| 23 |
"rewards/cumulative_reward_2": 0.0,
|
| 24 |
"rewards/final_correctness_reward_func": 0.125,
|
| 25 |
+
"rewards/question_recreation_reward_func": 0.6164698153734207,
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
"rewards/strict_format_reward_func": 0.15625,
|
| 28 |
+
"rewards/xmlcount_reward_func": 0.7576562501490116,
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
+
"completion_length": 212.29166666666666,
|
| 33 |
"epoch": 1.0,
|
| 34 |
+
"grad_norm": 27.329761505126953,
|
| 35 |
+
"kl": 4.687201510183513,
|
| 36 |
"learning_rate": 4.864543104251586e-07,
|
| 37 |
+
"loss": 0.0035,
|
| 38 |
+
"reward": 4.18427599966526,
|
| 39 |
+
"reward_std": 1.0136302523314953,
|
| 40 |
+
"rewards/concensus_correctness_reward_func": 1.2149999936421711,
|
| 41 |
+
"rewards/consensus_reward_func": 1.1666666666666667,
|
| 42 |
"rewards/cumulative_reward_2": 0.0,
|
| 43 |
"rewards/final_correctness_reward_func": 0.0,
|
| 44 |
+
"rewards/question_recreation_reward_func": 0.737317735950152,
|
| 45 |
"rewards/soft_format_reward_func": 0.0,
|
| 46 |
+
"rewards/strict_format_reward_func": 0.20833333333333334,
|
| 47 |
+
"rewards/xmlcount_reward_func": 0.8569583396116892,
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
+
"completion_length": 160.25,
|
| 52 |
"epoch": 1.5714285714285714,
|
| 53 |
+
"grad_norm": 201885.9375,
|
| 54 |
+
"kl": 2192.0195257472806,
|
| 55 |
"learning_rate": 4.472851273490984e-07,
|
| 56 |
+
"loss": 2.192,
|
| 57 |
+
"reward": 5.087710991501808,
|
| 58 |
+
"reward_std": 0.8815780063159764,
|
| 59 |
+
"rewards/concensus_correctness_reward_func": 1.46518749371171,
|
| 60 |
+
"rewards/consensus_reward_func": 1.375,
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 63 |
+
"rewards/question_recreation_reward_func": 0.802617306355387,
|
| 64 |
"rewards/soft_format_reward_func": 0.0,
|
| 65 |
+
"rewards/strict_format_reward_func": 0.296875,
|
| 66 |
+
"rewards/xmlcount_reward_func": 1.0855312533676624,
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
+
"completion_length": 195.54166666666666,
|
| 71 |
"epoch": 2.0,
|
| 72 |
+
"grad_norm": 50.0317268371582,
|
| 73 |
+
"kl": 3.5268452602128186,
|
| 74 |
"learning_rate": 3.867370395306068e-07,
|
| 75 |
+
"loss": 0.0026,
|
| 76 |
+
"reward": 4.593563541769981,
|
| 77 |
+
"reward_std": 0.8916728589683771,
|
| 78 |
+
"rewards/concensus_correctness_reward_func": 1.0393333329508703,
|
| 79 |
+
"rewards/consensus_reward_func": 1.3333333333333333,
|
| 80 |
"rewards/cumulative_reward_2": 0.0,
|
| 81 |
"rewards/final_correctness_reward_func": 0.08333333333333333,
|
| 82 |
+
"rewards/question_recreation_reward_func": 0.7292718101137629,
|
| 83 |
"rewards/soft_format_reward_func": 0.0,
|
| 84 |
+
"rewards/strict_format_reward_func": 0.2916666666666667,
|
| 85 |
+
"rewards/xmlcount_reward_func": 1.116625001033147,
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
+
"completion_length": 204.53125,
|
| 90 |
"epoch": 2.571428571428571,
|
| 91 |
+
"grad_norm": 160836.5625,
|
| 92 |
+
"kl": 5804.151155915111,
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
+
"loss": 5.8042,
|
| 95 |
+
"reward": 4.655729368329048,
|
| 96 |
+
"reward_std": 1.402610547374934,
|
| 97 |
+
"rewards/concensus_correctness_reward_func": 1.261187493801117,
|
| 98 |
+
"rewards/consensus_reward_func": 1.25,
|
| 99 |
"rewards/cumulative_reward_2": 0.0,
|
| 100 |
"rewards/final_correctness_reward_func": 0.0,
|
| 101 |
+
"rewards/question_recreation_reward_func": 0.826385635882616,
|
| 102 |
"rewards/soft_format_reward_func": 0.0,
|
| 103 |
+
"rewards/strict_format_reward_func": 0.25,
|
| 104 |
+
"rewards/xmlcount_reward_func": 1.068156249821186,
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
+
"completion_length": 177.75,
|
| 109 |
"epoch": 3.0,
|
| 110 |
+
"grad_norm": 39.7148551940918,
|
| 111 |
+
"kl": 194981.97983492477,
|
| 112 |
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
+
"loss": 146.2365,
|
| 114 |
+
"reward": 4.766051749388377,
|
| 115 |
+
"reward_std": 1.4179468097475667,
|
| 116 |
+
"rewards/concensus_correctness_reward_func": 1.2784999950478475,
|
| 117 |
+
"rewards/consensus_reward_func": 1.3333333333333333,
|
| 118 |
"rewards/cumulative_reward_2": 0.0,
|
| 119 |
"rewards/final_correctness_reward_func": 0.0,
|
| 120 |
+
"rewards/question_recreation_reward_func": 0.7705100451906522,
|
| 121 |
"rewards/soft_format_reward_func": 0.0,
|
| 122 |
+
"rewards/strict_format_reward_func": 0.2708333333333333,
|
| 123 |
+
"rewards/xmlcount_reward_func": 1.1128749946753185,
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
+
"completion_length": 189.9375,
|
| 128 |
"epoch": 3.571428571428571,
|
| 129 |
+
"grad_norm": 3572.9052734375,
|
| 130 |
+
"kl": 128.10682729631662,
|
| 131 |
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
+
"loss": 0.1281,
|
| 133 |
+
"reward": 4.833401307463646,
|
| 134 |
+
"reward_std": 1.2682143065612763,
|
| 135 |
+
"rewards/concensus_correctness_reward_func": 1.1926249926909804,
|
| 136 |
+
"rewards/consensus_reward_func": 1.375,
|
| 137 |
"rewards/cumulative_reward_2": 0.0,
|
| 138 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 139 |
+
"rewards/question_recreation_reward_func": 0.8134013433009386,
|
| 140 |
"rewards/soft_format_reward_func": 0.0,
|
| 141 |
+
"rewards/strict_format_reward_func": 0.265625,
|
| 142 |
+
"rewards/xmlcount_reward_func": 1.0617499984800816,
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
+
"completion_length": 178.08333333333334,
|
| 147 |
"epoch": 4.0,
|
| 148 |
+
"grad_norm": 2833.846435546875,
|
| 149 |
+
"kl": 56.623517076174416,
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
+
"loss": 0.0425,
|
| 152 |
+
"reward": 4.591517438491185,
|
| 153 |
+
"reward_std": 0.6986274433632692,
|
| 154 |
+
"rewards/concensus_correctness_reward_func": 1.2420833359162013,
|
| 155 |
+
"rewards/consensus_reward_func": 1.3333333333333333,
|
| 156 |
"rewards/cumulative_reward_2": 0.0,
|
| 157 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 158 |
+
"rewards/question_recreation_reward_func": 0.7223091561657687,
|
| 159 |
"rewards/soft_format_reward_func": 0.0,
|
| 160 |
+
"rewards/strict_format_reward_func": 0.2916666666666667,
|
| 161 |
+
"rewards/xmlcount_reward_func": 1.0021250049273174,
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
+
"completion_length": 184.53125,
|
| 166 |
"epoch": 4.571428571428571,
|
| 167 |
+
"grad_norm": 21946.189453125,
|
| 168 |
+
"kl": 613.7210371047258,
|
| 169 |
"learning_rate": 3.013156219837776e-08,
|
| 170 |
+
"loss": 0.6137,
|
| 171 |
+
"reward": 4.742913171648979,
|
| 172 |
+
"reward_std": 1.4003411061130464,
|
| 173 |
+
"rewards/concensus_correctness_reward_func": 1.2864374886266887,
|
| 174 |
+
"rewards/consensus_reward_func": 1.375,
|
| 175 |
"rewards/cumulative_reward_2": 0.0,
|
| 176 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 177 |
+
"rewards/question_recreation_reward_func": 0.6600068942643702,
|
| 178 |
"rewards/soft_format_reward_func": 0.0,
|
| 179 |
+
"rewards/strict_format_reward_func": 0.265625,
|
| 180 |
+
"rewards/xmlcount_reward_func": 1.0933437496423721,
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
+
"completion_length": 174.625,
|
| 185 |
"epoch": 5.0,
|
| 186 |
+
"grad_norm": 47.249473571777344,
|
| 187 |
+
"kl": 14820.684090688825,
|
| 188 |
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
+
"loss": 11.1155,
|
| 190 |
+
"reward": 4.722067733605702,
|
| 191 |
+
"reward_std": 0.8547916903917212,
|
| 192 |
+
"rewards/concensus_correctness_reward_func": 1.3415833363930385,
|
| 193 |
+
"rewards/consensus_reward_func": 1.3333333333333333,
|
| 194 |
"rewards/cumulative_reward_2": 0.0,
|
| 195 |
"rewards/final_correctness_reward_func": 0.0,
|
| 196 |
+
"rewards/question_recreation_reward_func": 0.8041510308782259,
|
| 197 |
"rewards/soft_format_reward_func": 0.0,
|
| 198 |
+
"rewards/strict_format_reward_func": 0.22916666666666666,
|
| 199 |
+
"rewards/xmlcount_reward_func": 1.0138333414991696,
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
"epoch": 5.0,
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
+
"train_loss": 16.613859914429487,
|
| 207 |
+
"train_runtime": 122.1144,
|
| 208 |
+
"train_samples_per_second": 2.62,
|
| 209 |
"train_steps_per_second": 0.164
|
| 210 |
}
|
| 211 |
],
|