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_model.safetensors +1 -1
- all_results.json +4 -4
- train_results.json +4 -4
- trainer_state.json +157 -157
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:d23003d951dfe0fe85203d809ee9331314bd8897ab3b9ff0206192b2b1c0a1f8
|
| 3 |
size 35237104
|
all_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss": 2.
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 24,
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 2.5961448712526666e-05,
|
| 4 |
+
"train_runtime": 902.7895,
|
| 5 |
"train_samples": 24,
|
| 6 |
+
"train_samples_per_second": 0.532,
|
| 7 |
+
"train_steps_per_second": 0.033
|
| 8 |
}
|
train_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss": 2.
|
| 4 |
-
"train_runtime":
|
| 5 |
"train_samples": 24,
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 2.5961448712526666e-05,
|
| 4 |
+
"train_runtime": 902.7895,
|
| 5 |
"train_samples": 24,
|
| 6 |
+
"train_samples_per_second": 0.532,
|
| 7 |
+
"train_steps_per_second": 0.033
|
| 8 |
}
|
trainer_state.json
CHANGED
|
@@ -9,298 +9,298 @@
|
|
| 9 |
"is_world_process_zero": true,
|
| 10 |
"log_history": [
|
| 11 |
{
|
| 12 |
-
"completion_length":
|
| 13 |
"epoch": 0.3333333333333333,
|
| 14 |
-
"grad_norm":
|
| 15 |
-
"kl": 0.
|
| 16 |
"learning_rate": 4.985344892885899e-07,
|
| 17 |
"loss": 0.0,
|
| 18 |
-
"reward": 1.
|
| 19 |
-
"reward_std":
|
| 20 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 21 |
-
"rewards/consensus_reward_func": 0.
|
| 22 |
"rewards/cumulative_reward_2": 0.0,
|
| 23 |
-
"rewards/final_correctness_reward_func": 0.
|
| 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.6666666666666666,
|
| 33 |
-
"grad_norm":
|
| 34 |
-
"kl": 0.
|
| 35 |
"learning_rate": 4.869132927957006e-07,
|
| 36 |
"loss": 0.0,
|
| 37 |
-
"reward": 1.
|
| 38 |
-
"reward_std":
|
| 39 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 40 |
-
"rewards/consensus_reward_func": 0.
|
| 41 |
"rewards/cumulative_reward_2": 0.0,
|
| 42 |
-
"rewards/final_correctness_reward_func": 0.
|
| 43 |
-
"rewards/question_recreation_reward_func": 0.
|
| 44 |
"rewards/soft_format_reward_func": 0.0,
|
| 45 |
"rewards/strict_format_reward_func": 0.0,
|
| 46 |
-
"rewards/xmlcount_reward_func": 0.
|
| 47 |
"step": 4
|
| 48 |
},
|
| 49 |
{
|
| 50 |
-
"completion_length":
|
| 51 |
"epoch": 1.0,
|
| 52 |
-
"grad_norm":
|
| 53 |
-
"kl": 0.
|
| 54 |
"learning_rate": 4.642142940418973e-07,
|
| 55 |
"loss": 0.0,
|
| 56 |
-
"reward": 0.
|
| 57 |
-
"reward_std": 1.
|
| 58 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 59 |
-
"rewards/consensus_reward_func": 0.
|
| 60 |
"rewards/cumulative_reward_2": 0.0,
|
| 61 |
-
"rewards/final_correctness_reward_func": 0.
|
| 62 |
-
"rewards/question_recreation_reward_func": 0.
|
| 63 |
"rewards/soft_format_reward_func": 0.0,
|
| 64 |
-
"rewards/strict_format_reward_func": 0.
|
| 65 |
-
"rewards/xmlcount_reward_func": 0.
|
| 66 |
"step": 6
|
| 67 |
},
|
| 68 |
{
|
| 69 |
-
"completion_length":
|
| 70 |
"epoch": 1.3333333333333333,
|
| 71 |
-
"grad_norm":
|
| 72 |
-
"kl": 0.
|
| 73 |
"learning_rate": 4.314988729807827e-07,
|
| 74 |
"loss": 0.0,
|
| 75 |
-
"reward":
|
| 76 |
-
"reward_std": 1.
|
| 77 |
-
"rewards/concensus_correctness_reward_func":
|
| 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.
|
| 84 |
-
"rewards/xmlcount_reward_func": 0.
|
| 85 |
"step": 8
|
| 86 |
},
|
| 87 |
{
|
| 88 |
-
"completion_length":
|
| 89 |
"epoch": 1.6666666666666665,
|
| 90 |
-
"grad_norm":
|
| 91 |
-
"kl": 0.
|
| 92 |
"learning_rate": 3.902967663405956e-07,
|
| 93 |
"loss": 0.0,
|
| 94 |
-
"reward": 1.
|
| 95 |
-
"reward_std": 2.
|
| 96 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 97 |
-
"rewards/consensus_reward_func": 0.
|
| 98 |
"rewards/cumulative_reward_2": 0.0,
|
| 99 |
-
"rewards/final_correctness_reward_func": 0.
|
| 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": 2.0,
|
| 109 |
-
"grad_norm": 2.
|
| 110 |
-
"kl": 0.
|
| 111 |
"learning_rate": 3.4253453883497864e-07,
|
| 112 |
"loss": 0.0,
|
| 113 |
-
"reward":
|
| 114 |
-
"reward_std":
|
| 115 |
-
"rewards/concensus_correctness_reward_func":
|
| 116 |
-
"rewards/consensus_reward_func": 0.
|
| 117 |
"rewards/cumulative_reward_2": 0.0,
|
| 118 |
-
"rewards/final_correctness_reward_func": 0.
|
| 119 |
-
"rewards/question_recreation_reward_func": 0.
|
| 120 |
"rewards/soft_format_reward_func": 0.0,
|
| 121 |
"rewards/strict_format_reward_func": 0.0,
|
| 122 |
-
"rewards/xmlcount_reward_func": 0.
|
| 123 |
"step": 12
|
| 124 |
},
|
| 125 |
{
|
| 126 |
-
"completion_length":
|
| 127 |
"epoch": 2.3333333333333335,
|
| 128 |
-
"grad_norm":
|
| 129 |
-
"kl": 0.
|
| 130 |
"learning_rate": 2.9044549913819124e-07,
|
| 131 |
"loss": 0.0,
|
| 132 |
-
"reward":
|
| 133 |
-
"reward_std": 0.
|
| 134 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 135 |
"rewards/consensus_reward_func": 0.125,
|
| 136 |
"rewards/cumulative_reward_2": 0.0,
|
| 137 |
-
"rewards/final_correctness_reward_func": 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": 0.
|
| 142 |
"step": 14
|
| 143 |
},
|
| 144 |
{
|
| 145 |
-
"completion_length":
|
| 146 |
"epoch": 2.6666666666666665,
|
| 147 |
-
"grad_norm":
|
| 148 |
-
"kl": 0.
|
| 149 |
"learning_rate": 2.3646527285364563e-07,
|
| 150 |
"loss": 0.0,
|
| 151 |
-
"reward": 1.
|
| 152 |
-
"reward_std":
|
| 153 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 154 |
-
"rewards/consensus_reward_func": 0.
|
| 155 |
"rewards/cumulative_reward_2": 0.0,
|
| 156 |
-
"rewards/final_correctness_reward_func": 0.
|
| 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": 3.0,
|
| 166 |
-
"grad_norm": 1.
|
| 167 |
-
"kl": 0.
|
| 168 |
"learning_rate": 1.8311791536769483e-07,
|
| 169 |
"loss": 0.0,
|
| 170 |
-
"reward":
|
| 171 |
-
"reward_std": 1.
|
| 172 |
-
"rewards/concensus_correctness_reward_func":
|
| 173 |
-
"rewards/consensus_reward_func": 0.
|
| 174 |
"rewards/cumulative_reward_2": 0.0,
|
| 175 |
-
"rewards/final_correctness_reward_func": 0.
|
| 176 |
-
"rewards/question_recreation_reward_func": 0.
|
| 177 |
-
"rewards/soft_format_reward_func": 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": 3.3333333333333335,
|
| 185 |
-
"grad_norm": 1.
|
| 186 |
-
"kl": 0.
|
| 187 |
"learning_rate": 1.328978898250525e-07,
|
| 188 |
"loss": 0.0,
|
| 189 |
-
"reward":
|
| 190 |
-
"reward_std":
|
| 191 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 192 |
-
"rewards/consensus_reward_func": 0.
|
| 193 |
"rewards/cumulative_reward_2": 0.0,
|
| 194 |
-
"rewards/final_correctness_reward_func": 0.
|
| 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": 3.6666666666666665,
|
| 204 |
-
"grad_norm":
|
| 205 |
-
"kl": 0.
|
| 206 |
"learning_rate": 8.81534288045431e-08,
|
| 207 |
"loss": 0.0,
|
| 208 |
-
"reward": 0.
|
| 209 |
-
"reward_std": 1.
|
| 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.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": 0.
|
| 218 |
"step": 22
|
| 219 |
},
|
| 220 |
{
|
| 221 |
-
"completion_length":
|
| 222 |
"epoch": 4.0,
|
| 223 |
-
"grad_norm":
|
| 224 |
-
"kl": 0.
|
| 225 |
"learning_rate": 5.097673357358906e-08,
|
| 226 |
"loss": 0.0,
|
| 227 |
-
"reward":
|
| 228 |
-
"reward_std": 1.
|
| 229 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 230 |
-
"rewards/consensus_reward_func": 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": 4.333333333333333,
|
| 242 |
-
"grad_norm":
|
| 243 |
-
"kl": 0.
|
| 244 |
"learning_rate": 2.3106145082260774e-08,
|
| 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.
|
| 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": 4.666666666666667,
|
| 261 |
-
"grad_norm":
|
| 262 |
-
"kl": 0.
|
| 263 |
"learning_rate": 5.844861072478335e-09,
|
| 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.
|
| 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": 5.0,
|
| 280 |
-
"grad_norm":
|
| 281 |
-
"kl": 0.
|
| 282 |
"learning_rate": 0.0,
|
| 283 |
"loss": 0.0,
|
| 284 |
-
"reward": 1.
|
| 285 |
-
"reward_std":
|
| 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.
|
| 290 |
-
"rewards/question_recreation_reward_func": 0.
|
| 291 |
"rewards/soft_format_reward_func": 0.0,
|
| 292 |
-
"rewards/strict_format_reward_func": 0.
|
| 293 |
-
"rewards/xmlcount_reward_func": 0.
|
| 294 |
"step": 30
|
| 295 |
},
|
| 296 |
{
|
| 297 |
"epoch": 5.0,
|
| 298 |
"step": 30,
|
| 299 |
"total_flos": 0.0,
|
| 300 |
-
"train_loss": 2.
|
| 301 |
-
"train_runtime":
|
| 302 |
-
"train_samples_per_second": 0.
|
| 303 |
-
"train_steps_per_second": 0.
|
| 304 |
}
|
| 305 |
],
|
| 306 |
"logging_steps": 2,
|
|
|
|
| 9 |
"is_world_process_zero": true,
|
| 10 |
"log_history": [
|
| 11 |
{
|
| 12 |
+
"completion_length": 466.21875,
|
| 13 |
"epoch": 0.3333333333333333,
|
| 14 |
+
"grad_norm": 2.818002700805664,
|
| 15 |
+
"kl": 0.024589125911006704,
|
| 16 |
"learning_rate": 4.985344892885899e-07,
|
| 17 |
"loss": 0.0,
|
| 18 |
+
"reward": 1.0728617757558823,
|
| 19 |
+
"reward_std": 1.0374318063259125,
|
| 20 |
+
"rewards/concensus_correctness_reward_func": 0.05012499913573265,
|
| 21 |
+
"rewards/consensus_reward_func": 0.125,
|
| 22 |
"rewards/cumulative_reward_2": 0.0,
|
| 23 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 24 |
+
"rewards/question_recreation_reward_func": 0.495455514639616,
|
| 25 |
"rewards/soft_format_reward_func": 0.0,
|
| 26 |
"rewards/strict_format_reward_func": 0.0,
|
| 27 |
+
"rewards/xmlcount_reward_func": 0.339781254529953,
|
| 28 |
"step": 2
|
| 29 |
},
|
| 30 |
{
|
| 31 |
+
"completion_length": 364.875,
|
| 32 |
"epoch": 0.6666666666666666,
|
| 33 |
+
"grad_norm": 1.6754084825515747,
|
| 34 |
+
"kl": 0.02502421976532787,
|
| 35 |
"learning_rate": 4.869132927957006e-07,
|
| 36 |
"loss": 0.0,
|
| 37 |
+
"reward": 1.3312416300177574,
|
| 38 |
+
"reward_std": 2.140560135245323,
|
| 39 |
+
"rewards/concensus_correctness_reward_func": 0.625,
|
| 40 |
+
"rewards/consensus_reward_func": 0.0,
|
| 41 |
"rewards/cumulative_reward_2": 0.0,
|
| 42 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
| 43 |
+
"rewards/question_recreation_reward_func": 0.375085380859673,
|
| 44 |
"rewards/soft_format_reward_func": 0.0,
|
| 45 |
"rewards/strict_format_reward_func": 0.0,
|
| 46 |
+
"rewards/xmlcount_reward_func": 0.01865624636411667,
|
| 47 |
"step": 4
|
| 48 |
},
|
| 49 |
{
|
| 50 |
+
"completion_length": 428.9375,
|
| 51 |
"epoch": 1.0,
|
| 52 |
+
"grad_norm": 2.6106526851654053,
|
| 53 |
+
"kl": 0.019527853466570377,
|
| 54 |
"learning_rate": 4.642142940418973e-07,
|
| 55 |
"loss": 0.0,
|
| 56 |
+
"reward": 0.8669472727924585,
|
| 57 |
+
"reward_std": 1.043245192617178,
|
| 58 |
+
"rewards/concensus_correctness_reward_func": 0.023874999955296516,
|
| 59 |
+
"rewards/consensus_reward_func": 0.0,
|
| 60 |
"rewards/cumulative_reward_2": 0.0,
|
| 61 |
+
"rewards/final_correctness_reward_func": 0.25,
|
| 62 |
+
"rewards/question_recreation_reward_func": 0.5792285241186619,
|
| 63 |
"rewards/soft_format_reward_func": 0.0,
|
| 64 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 65 |
+
"rewards/xmlcount_reward_func": -0.0017812494188547134,
|
| 66 |
"step": 6
|
| 67 |
},
|
| 68 |
{
|
| 69 |
+
"completion_length": 382.65625,
|
| 70 |
"epoch": 1.3333333333333333,
|
| 71 |
+
"grad_norm": 3.19954776763916,
|
| 72 |
+
"kl": 0.02953332115430385,
|
| 73 |
"learning_rate": 4.314988729807827e-07,
|
| 74 |
"loss": 0.0,
|
| 75 |
+
"reward": 0.7912007421255112,
|
| 76 |
+
"reward_std": 1.1522618383169174,
|
| 77 |
+
"rewards/concensus_correctness_reward_func": 0.02250000089406967,
|
| 78 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 79 |
"rewards/cumulative_reward_2": 0.0,
|
| 80 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 81 |
+
"rewards/question_recreation_reward_func": 0.44829449243843555,
|
| 82 |
+
"rewards/soft_format_reward_func": 0.0,
|
| 83 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 84 |
+
"rewards/xmlcount_reward_func": 0.1954062469303608,
|
| 85 |
"step": 8
|
| 86 |
},
|
| 87 |
{
|
| 88 |
+
"completion_length": 454.5,
|
| 89 |
"epoch": 1.6666666666666665,
|
| 90 |
+
"grad_norm": 1.2625623941421509,
|
| 91 |
+
"kl": 0.02400887871044688,
|
| 92 |
"learning_rate": 3.902967663405956e-07,
|
| 93 |
"loss": 0.0,
|
| 94 |
+
"reward": 1.6547736041247845,
|
| 95 |
+
"reward_std": 2.4716445207595825,
|
| 96 |
+
"rewards/concensus_correctness_reward_func": 0.6788749992847443,
|
| 97 |
+
"rewards/consensus_reward_func": 0.125,
|
| 98 |
"rewards/cumulative_reward_2": 0.0,
|
| 99 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
| 100 |
+
"rewards/question_recreation_reward_func": 0.47183603793382645,
|
| 101 |
"rewards/soft_format_reward_func": 0.0,
|
| 102 |
"rewards/strict_format_reward_func": 0.0,
|
| 103 |
+
"rewards/xmlcount_reward_func": 0.1915624924004078,
|
| 104 |
"step": 10
|
| 105 |
},
|
| 106 |
{
|
| 107 |
+
"completion_length": 374.78125,
|
| 108 |
"epoch": 2.0,
|
| 109 |
+
"grad_norm": 2.689986228942871,
|
| 110 |
+
"kl": 0.028676623362116516,
|
| 111 |
"learning_rate": 3.4253453883497864e-07,
|
| 112 |
"loss": 0.0,
|
| 113 |
+
"reward": 2.5205069594085217,
|
| 114 |
+
"reward_std": 3.358973853290081,
|
| 115 |
+
"rewards/concensus_correctness_reward_func": 1.3355000000447035,
|
| 116 |
+
"rewards/consensus_reward_func": 0.125,
|
| 117 |
"rewards/cumulative_reward_2": 0.0,
|
| 118 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
| 119 |
+
"rewards/question_recreation_reward_func": 0.49960072338581085,
|
| 120 |
"rewards/soft_format_reward_func": 0.0,
|
| 121 |
"rewards/strict_format_reward_func": 0.0,
|
| 122 |
+
"rewards/xmlcount_reward_func": 0.24790625181049109,
|
| 123 |
"step": 12
|
| 124 |
},
|
| 125 |
{
|
| 126 |
+
"completion_length": 351.0625,
|
| 127 |
"epoch": 2.3333333333333335,
|
| 128 |
+
"grad_norm": 2.329031229019165,
|
| 129 |
+
"kl": 0.022683687566313893,
|
| 130 |
"learning_rate": 2.9044549913819124e-07,
|
| 131 |
"loss": 0.0,
|
| 132 |
+
"reward": 0.8053823411464691,
|
| 133 |
+
"reward_std": 0.9377600699663162,
|
| 134 |
+
"rewards/concensus_correctness_reward_func": 0.0494375005364418,
|
| 135 |
"rewards/consensus_reward_func": 0.125,
|
| 136 |
"rewards/cumulative_reward_2": 0.0,
|
| 137 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 138 |
+
"rewards/question_recreation_reward_func": 0.3073198366910219,
|
| 139 |
"rewards/soft_format_reward_func": 0.0,
|
| 140 |
"rewards/strict_format_reward_func": 0.0,
|
| 141 |
+
"rewards/xmlcount_reward_func": 0.3236249890178442,
|
| 142 |
"step": 14
|
| 143 |
},
|
| 144 |
{
|
| 145 |
+
"completion_length": 402.5625,
|
| 146 |
"epoch": 2.6666666666666665,
|
| 147 |
+
"grad_norm": 2.642098903656006,
|
| 148 |
+
"kl": 0.03899826877750456,
|
| 149 |
"learning_rate": 2.3646527285364563e-07,
|
| 150 |
"loss": 0.0,
|
| 151 |
+
"reward": 1.048937451094389,
|
| 152 |
+
"reward_std": 1.4023225009441376,
|
| 153 |
+
"rewards/concensus_correctness_reward_func": 0.1349375005811453,
|
| 154 |
+
"rewards/consensus_reward_func": 0.25,
|
| 155 |
"rewards/cumulative_reward_2": 0.0,
|
| 156 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 157 |
+
"rewards/question_recreation_reward_func": 0.3677499322220683,
|
| 158 |
"rewards/soft_format_reward_func": 0.0,
|
| 159 |
"rewards/strict_format_reward_func": 0.0,
|
| 160 |
+
"rewards/xmlcount_reward_func": 0.17124998942017555,
|
| 161 |
"step": 16
|
| 162 |
},
|
| 163 |
{
|
| 164 |
+
"completion_length": 454.9375,
|
| 165 |
"epoch": 3.0,
|
| 166 |
+
"grad_norm": 1.4734266996383667,
|
| 167 |
+
"kl": 0.015171069288044237,
|
| 168 |
"learning_rate": 1.8311791536769483e-07,
|
| 169 |
"loss": 0.0,
|
| 170 |
+
"reward": 1.820919245481491,
|
| 171 |
+
"reward_std": 1.901282200589776,
|
| 172 |
+
"rewards/concensus_correctness_reward_func": 1.2738749999552965,
|
| 173 |
+
"rewards/consensus_reward_func": 0.0,
|
| 174 |
"rewards/cumulative_reward_2": 0.0,
|
| 175 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 176 |
+
"rewards/question_recreation_reward_func": 0.40041930228471756,
|
| 177 |
+
"rewards/soft_format_reward_func": 0.015625,
|
| 178 |
"rewards/strict_format_reward_func": 0.0,
|
| 179 |
+
"rewards/xmlcount_reward_func": 0.13099999353289604,
|
| 180 |
"step": 18
|
| 181 |
},
|
| 182 |
{
|
| 183 |
+
"completion_length": 447.5625,
|
| 184 |
"epoch": 3.3333333333333335,
|
| 185 |
+
"grad_norm": 1.9561309814453125,
|
| 186 |
+
"kl": 0.027638212544843554,
|
| 187 |
"learning_rate": 1.328978898250525e-07,
|
| 188 |
"loss": 0.0,
|
| 189 |
+
"reward": 1.6138426065444946,
|
| 190 |
+
"reward_std": 2.08666705340147,
|
| 191 |
+
"rewards/concensus_correctness_reward_func": 0.625,
|
| 192 |
+
"rewards/consensus_reward_func": 0.0,
|
| 193 |
"rewards/cumulative_reward_2": 0.0,
|
| 194 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
| 195 |
+
"rewards/question_recreation_reward_func": 0.3899675915017724,
|
| 196 |
"rewards/soft_format_reward_func": 0.0,
|
| 197 |
"rewards/strict_format_reward_func": 0.0,
|
| 198 |
+
"rewards/xmlcount_reward_func": 0.41137499921023846,
|
| 199 |
"step": 20
|
| 200 |
},
|
| 201 |
{
|
| 202 |
+
"completion_length": 313.5,
|
| 203 |
"epoch": 3.6666666666666665,
|
| 204 |
+
"grad_norm": 2.4282801151275635,
|
| 205 |
+
"kl": 0.02601044374750927,
|
| 206 |
"learning_rate": 8.81534288045431e-08,
|
| 207 |
"loss": 0.0,
|
| 208 |
+
"reward": 0.7636516839265823,
|
| 209 |
+
"reward_std": 1.200943410396576,
|
| 210 |
+
"rewards/concensus_correctness_reward_func": 0.05081249959766865,
|
| 211 |
+
"rewards/consensus_reward_func": 0.125,
|
| 212 |
"rewards/cumulative_reward_2": 0.0,
|
| 213 |
"rewards/final_correctness_reward_func": 0.0,
|
| 214 |
+
"rewards/question_recreation_reward_func": 0.3807766861282289,
|
| 215 |
"rewards/soft_format_reward_func": 0.0,
|
| 216 |
"rewards/strict_format_reward_func": 0.0,
|
| 217 |
+
"rewards/xmlcount_reward_func": 0.2070624940097332,
|
| 218 |
"step": 22
|
| 219 |
},
|
| 220 |
{
|
| 221 |
+
"completion_length": 348.625,
|
| 222 |
"epoch": 4.0,
|
| 223 |
+
"grad_norm": 3.557086706161499,
|
| 224 |
+
"kl": 0.025902074296027422,
|
| 225 |
"learning_rate": 5.097673357358906e-08,
|
| 226 |
"loss": 0.0,
|
| 227 |
+
"reward": 0.7689573541283607,
|
| 228 |
+
"reward_std": 1.0340721681714058,
|
| 229 |
+
"rewards/concensus_correctness_reward_func": 0.024937499314546585,
|
| 230 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 231 |
"rewards/cumulative_reward_2": 0.0,
|
| 232 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 233 |
+
"rewards/question_recreation_reward_func": 0.43936359975486994,
|
| 234 |
"rewards/soft_format_reward_func": 0.0,
|
| 235 |
"rewards/strict_format_reward_func": 0.0,
|
| 236 |
+
"rewards/xmlcount_reward_func": 0.1171562522649765,
|
| 237 |
"step": 24
|
| 238 |
},
|
| 239 |
{
|
| 240 |
+
"completion_length": 443.53125,
|
| 241 |
"epoch": 4.333333333333333,
|
| 242 |
+
"grad_norm": 1.6169641017913818,
|
| 243 |
+
"kl": 0.01715872809290886,
|
| 244 |
"learning_rate": 2.3106145082260774e-08,
|
| 245 |
"loss": 0.0,
|
| 246 |
+
"reward": 0.7657004399225116,
|
| 247 |
+
"reward_std": 0.7439820282161236,
|
| 248 |
+
"rewards/concensus_correctness_reward_func": 0.0078125,
|
| 249 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 250 |
"rewards/cumulative_reward_2": 0.0,
|
| 251 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 252 |
+
"rewards/question_recreation_reward_func": 0.5021067075431347,
|
| 253 |
"rewards/soft_format_reward_func": 0.0,
|
| 254 |
"rewards/strict_format_reward_func": 0.0,
|
| 255 |
+
"rewards/xmlcount_reward_func": 0.06828123982995749,
|
| 256 |
"step": 26
|
| 257 |
},
|
| 258 |
{
|
| 259 |
+
"completion_length": 301.0,
|
| 260 |
"epoch": 4.666666666666667,
|
| 261 |
+
"grad_norm": 2.6919360160827637,
|
| 262 |
+
"kl": 0.022670619655400515,
|
| 263 |
"learning_rate": 5.844861072478335e-09,
|
| 264 |
"loss": 0.0,
|
| 265 |
+
"reward": 0.8254948575049639,
|
| 266 |
+
"reward_std": 0.9493589596822858,
|
| 267 |
+
"rewards/concensus_correctness_reward_func": 0.02250000089406967,
|
| 268 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 269 |
"rewards/cumulative_reward_2": 0.0,
|
| 270 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 271 |
+
"rewards/question_recreation_reward_func": 0.43468233942985535,
|
| 272 |
"rewards/soft_format_reward_func": 0.0,
|
| 273 |
"rewards/strict_format_reward_func": 0.0,
|
| 274 |
+
"rewards/xmlcount_reward_func": 0.18081250321120024,
|
| 275 |
"step": 28
|
| 276 |
},
|
| 277 |
{
|
| 278 |
+
"completion_length": 339.40625,
|
| 279 |
"epoch": 5.0,
|
| 280 |
+
"grad_norm": 3.3629519939422607,
|
| 281 |
+
"kl": 0.04183358867885545,
|
| 282 |
"learning_rate": 0.0,
|
| 283 |
"loss": 0.0,
|
| 284 |
+
"reward": 1.6037534587085247,
|
| 285 |
+
"reward_std": 1.9255643365904689,
|
| 286 |
+
"rewards/concensus_correctness_reward_func": 0.6506249997764826,
|
| 287 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 288 |
"rewards/cumulative_reward_2": 0.0,
|
| 289 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 290 |
+
"rewards/question_recreation_reward_func": 0.432628508657217,
|
| 291 |
"rewards/soft_format_reward_func": 0.0,
|
| 292 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 293 |
+
"rewards/xmlcount_reward_func": 0.3173750042915344,
|
| 294 |
"step": 30
|
| 295 |
},
|
| 296 |
{
|
| 297 |
"epoch": 5.0,
|
| 298 |
"step": 30,
|
| 299 |
"total_flos": 0.0,
|
| 300 |
+
"train_loss": 2.5961448712526666e-05,
|
| 301 |
+
"train_runtime": 902.7895,
|
| 302 |
+
"train_samples_per_second": 0.532,
|
| 303 |
+
"train_steps_per_second": 0.033
|
| 304 |
}
|
| 305 |
],
|
| 306 |
"logging_steps": 2,
|