Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am rabid prowling jay
trl
genrl-swarm
I am rabid_prowling_jay
conversational
text-generation-inference
Instructions to use Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay") model = AutoModelForCausalLM.from_pretrained("Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay", 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 Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay
- SGLang
How to use Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay 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 "Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay" \ --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": "Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay", "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 "Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay" \ --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": "Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay with Docker Model Runner:
docker model run hf.co/Oberhaus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_prowling_jay
End of training
Browse files- README.md +2 -2
- all_results.json +5 -5
- model.safetensors +1 -1
- train_results.json +5 -5
- trainer_state.json +112 -112
- training_args.bin +2 -2
README.md
CHANGED
|
@@ -37,9 +37,9 @@ This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing
|
|
| 37 |
|
| 38 |
### Framework versions
|
| 39 |
|
| 40 |
-
- TRL: 0.18.
|
| 41 |
- Transformers: 4.52.4
|
| 42 |
-
- Pytorch: 2.7.
|
| 43 |
- Datasets: 3.6.0
|
| 44 |
- Tokenizers: 0.21.1
|
| 45 |
|
|
|
|
| 37 |
|
| 38 |
### Framework versions
|
| 39 |
|
| 40 |
+
- TRL: 0.18.2
|
| 41 |
- Transformers: 4.52.4
|
| 42 |
+
- Pytorch: 2.7.1
|
| 43 |
- Datasets: 3.6.0
|
| 44 |
- Tokenizers: 0.21.1
|
| 45 |
|
all_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss": 0.
|
| 4 |
-
"train_runtime":
|
| 5 |
-
"train_samples":
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 0.0028146922588348387,
|
| 4 |
+
"train_runtime": 1322.7791,
|
| 5 |
+
"train_samples": 64,
|
| 6 |
+
"train_samples_per_second": 0.03,
|
| 7 |
+
"train_steps_per_second": 0.008
|
| 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:3ed74ed220f2776a51119e2ef37fe92cdb9ff0e5d2c20c8beb1405fa994bf573
|
| 3 |
size 1976163472
|
train_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss": 0.
|
| 4 |
-
"train_runtime":
|
| 5 |
-
"train_samples":
|
| 6 |
-
"train_samples_per_second": 0.
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 0.0028146922588348387,
|
| 4 |
+
"train_runtime": 1322.7791,
|
| 5 |
+
"train_samples": 64,
|
| 6 |
+
"train_samples_per_second": 0.03,
|
| 7 |
+
"train_steps_per_second": 0.008
|
| 8 |
}
|
trainer_state.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
-
"epoch":
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 10,
|
| 8 |
"is_hyper_param_search": false,
|
|
@@ -15,38 +15,38 @@
|
|
| 15 |
"clip_ratio/low_mean": 0.0,
|
| 16 |
"clip_ratio/low_min": 0.0,
|
| 17 |
"clip_ratio/region_mean": 0.0,
|
| 18 |
-
"completions/clipped_ratio": 0.
|
| 19 |
-
"completions/max_length":
|
| 20 |
-
"completions/max_terminated_length":
|
| 21 |
-
"completions/mean_length":
|
| 22 |
-
"completions/mean_terminated_length":
|
| 23 |
-
"completions/min_length":
|
| 24 |
-
"completions/min_terminated_length":
|
| 25 |
-
"epoch":
|
| 26 |
-
"frac_reward_zero_std":
|
| 27 |
-
"grad_norm":
|
| 28 |
"kl": 0.0,
|
| 29 |
"learning_rate": 5e-07,
|
| 30 |
-
"loss": 0.
|
| 31 |
-
"num_tokens":
|
| 32 |
-
"reward":
|
| 33 |
-
"reward_std": 0.
|
| 34 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 35 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 36 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 37 |
"rewards/consensus_reward_func/std": 0.0,
|
| 38 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 39 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 40 |
-
"rewards/final_correctness_reward_func/mean":
|
| 41 |
-
"rewards/final_correctness_reward_func/std":
|
| 42 |
-
"rewards/question_recreation_reward_func/mean": 0.
|
| 43 |
-
"rewards/question_recreation_reward_func/std": 0.
|
| 44 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 45 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 46 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 47 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 48 |
-
"rewards/xmlcount_reward_func/mean": 0.
|
| 49 |
-
"rewards/xmlcount_reward_func/std": 0.
|
| 50 |
"step": 2
|
| 51 |
},
|
| 52 |
{
|
|
@@ -55,38 +55,38 @@
|
|
| 55 |
"clip_ratio/low_mean": 0.0,
|
| 56 |
"clip_ratio/low_min": 0.0,
|
| 57 |
"clip_ratio/region_mean": 0.0,
|
| 58 |
-
"completions/clipped_ratio": 0.
|
| 59 |
-
"completions/max_length":
|
| 60 |
-
"completions/max_terminated_length":
|
| 61 |
-
"completions/mean_length":
|
| 62 |
-
"completions/mean_terminated_length":
|
| 63 |
-
"completions/min_length":
|
| 64 |
-
"completions/min_terminated_length":
|
| 65 |
-
"epoch":
|
| 66 |
-
"frac_reward_zero_std":
|
| 67 |
-
"grad_norm":
|
| 68 |
-
"kl": 0.
|
| 69 |
"learning_rate": 4.415111107797445e-07,
|
| 70 |
-
"loss": 0.
|
| 71 |
-
"num_tokens":
|
| 72 |
-
"reward":
|
| 73 |
-
"reward_std": 0.
|
| 74 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 75 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 76 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 77 |
"rewards/consensus_reward_func/std": 0.0,
|
| 78 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 79 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 80 |
-
"rewards/final_correctness_reward_func/mean":
|
| 81 |
-
"rewards/final_correctness_reward_func/std":
|
| 82 |
-
"rewards/question_recreation_reward_func/mean": 0.
|
| 83 |
-
"rewards/question_recreation_reward_func/std": 0.
|
| 84 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 85 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 86 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 87 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 88 |
-
"rewards/xmlcount_reward_func/mean": 0.
|
| 89 |
-
"rewards/xmlcount_reward_func/std": 0.
|
| 90 |
"step": 4
|
| 91 |
},
|
| 92 |
{
|
|
@@ -95,38 +95,38 @@
|
|
| 95 |
"clip_ratio/low_mean": 0.0,
|
| 96 |
"clip_ratio/low_min": 0.0,
|
| 97 |
"clip_ratio/region_mean": 0.0,
|
| 98 |
-
"completions/clipped_ratio": 0.
|
| 99 |
-
"completions/max_length":
|
| 100 |
-
"completions/max_terminated_length":
|
| 101 |
-
"completions/mean_length":
|
| 102 |
-
"completions/mean_terminated_length":
|
| 103 |
-
"completions/min_length":
|
| 104 |
-
"completions/min_terminated_length":
|
| 105 |
-
"epoch":
|
| 106 |
-
"frac_reward_zero_std":
|
| 107 |
-
"grad_norm":
|
| 108 |
-
"kl": 0.
|
| 109 |
"learning_rate": 2.934120444167326e-07,
|
| 110 |
-
"loss": 0.
|
| 111 |
-
"num_tokens":
|
| 112 |
-
"reward":
|
| 113 |
-
"reward_std": 0.
|
| 114 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 115 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 116 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 117 |
"rewards/consensus_reward_func/std": 0.0,
|
| 118 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 119 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 120 |
-
"rewards/final_correctness_reward_func/mean":
|
| 121 |
-
"rewards/final_correctness_reward_func/std":
|
| 122 |
-
"rewards/question_recreation_reward_func/mean": 0.
|
| 123 |
-
"rewards/question_recreation_reward_func/std": 0.
|
| 124 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 125 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 126 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 127 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 128 |
-
"rewards/xmlcount_reward_func/mean": 0.
|
| 129 |
-
"rewards/xmlcount_reward_func/std": 0.
|
| 130 |
"step": 6
|
| 131 |
},
|
| 132 |
{
|
|
@@ -135,38 +135,38 @@
|
|
| 135 |
"clip_ratio/low_mean": 0.0,
|
| 136 |
"clip_ratio/low_min": 0.0,
|
| 137 |
"clip_ratio/region_mean": 0.0,
|
| 138 |
-
"completions/clipped_ratio": 0.
|
| 139 |
-
"completions/max_length":
|
| 140 |
-
"completions/max_terminated_length":
|
| 141 |
-
"completions/mean_length":
|
| 142 |
-
"completions/mean_terminated_length":
|
| 143 |
-
"completions/min_length":
|
| 144 |
-
"completions/min_terminated_length":
|
| 145 |
-
"epoch":
|
| 146 |
-
"frac_reward_zero_std":
|
| 147 |
-
"grad_norm":
|
| 148 |
-
"kl": 0.
|
| 149 |
"learning_rate": 1.2500000000000005e-07,
|
| 150 |
-
"loss": 0.
|
| 151 |
-
"num_tokens":
|
| 152 |
-
"reward":
|
| 153 |
-
"reward_std": 0.
|
| 154 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 155 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 156 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 157 |
"rewards/consensus_reward_func/std": 0.0,
|
| 158 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 159 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 160 |
-
"rewards/final_correctness_reward_func/mean":
|
| 161 |
-
"rewards/final_correctness_reward_func/std":
|
| 162 |
-
"rewards/question_recreation_reward_func/mean": 0.
|
| 163 |
-
"rewards/question_recreation_reward_func/std": 0.
|
| 164 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 165 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 166 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 167 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 168 |
-
"rewards/xmlcount_reward_func/mean": 0.
|
| 169 |
-
"rewards/xmlcount_reward_func/std": 0.
|
| 170 |
"step": 8
|
| 171 |
},
|
| 172 |
{
|
|
@@ -175,54 +175,54 @@
|
|
| 175 |
"clip_ratio/low_mean": 0.0,
|
| 176 |
"clip_ratio/low_min": 0.0,
|
| 177 |
"clip_ratio/region_mean": 0.0,
|
| 178 |
-
"completions/clipped_ratio": 0.
|
| 179 |
-
"completions/max_length":
|
| 180 |
-
"completions/max_terminated_length":
|
| 181 |
-
"completions/mean_length":
|
| 182 |
-
"completions/mean_terminated_length":
|
| 183 |
-
"completions/min_length":
|
| 184 |
-
"completions/min_terminated_length":
|
| 185 |
-
"epoch":
|
| 186 |
-
"frac_reward_zero_std":
|
| 187 |
-
"grad_norm":
|
| 188 |
-
"kl": 0.
|
| 189 |
"learning_rate": 1.507684480352292e-08,
|
| 190 |
-
"loss": 0.
|
| 191 |
-
"num_tokens":
|
| 192 |
-
"reward":
|
| 193 |
-
"reward_std": 0.
|
| 194 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 195 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 196 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 197 |
"rewards/consensus_reward_func/std": 0.0,
|
| 198 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 199 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 200 |
-
"rewards/final_correctness_reward_func/mean":
|
| 201 |
-
"rewards/final_correctness_reward_func/std":
|
| 202 |
-
"rewards/question_recreation_reward_func/mean": 0.
|
| 203 |
-
"rewards/question_recreation_reward_func/std": 0.
|
| 204 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 205 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 206 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 207 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 208 |
-
"rewards/xmlcount_reward_func/mean": 0.
|
| 209 |
-
"rewards/xmlcount_reward_func/std": 0.
|
| 210 |
"step": 10
|
| 211 |
},
|
| 212 |
{
|
| 213 |
-
"epoch":
|
| 214 |
"step": 10,
|
| 215 |
"total_flos": 0.0,
|
| 216 |
-
"train_loss": 0.
|
| 217 |
-
"train_runtime":
|
| 218 |
-
"train_samples_per_second": 0.
|
| 219 |
-
"train_steps_per_second": 0.
|
| 220 |
}
|
| 221 |
],
|
| 222 |
"logging_steps": 2,
|
| 223 |
"max_steps": 10,
|
| 224 |
-
"num_input_tokens_seen":
|
| 225 |
-
"num_train_epochs":
|
| 226 |
"save_steps": 10,
|
| 227 |
"stateful_callbacks": {
|
| 228 |
"TrainerControl": {
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.3125,
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 10,
|
| 8 |
"is_hyper_param_search": false,
|
|
|
|
| 15 |
"clip_ratio/low_mean": 0.0,
|
| 16 |
"clip_ratio/low_min": 0.0,
|
| 17 |
"clip_ratio/region_mean": 0.0,
|
| 18 |
+
"completions/clipped_ratio": 0.125,
|
| 19 |
+
"completions/max_length": 199.5,
|
| 20 |
+
"completions/max_terminated_length": 181.0,
|
| 21 |
+
"completions/mean_length": 94.75,
|
| 22 |
+
"completions/mean_terminated_length": 73.45833206176758,
|
| 23 |
+
"completions/min_length": 4.5,
|
| 24 |
+
"completions/min_terminated_length": 4.5,
|
| 25 |
+
"epoch": 0.0625,
|
| 26 |
+
"frac_reward_zero_std": 0.0,
|
| 27 |
+
"grad_norm": 13.581038475036621,
|
| 28 |
"kl": 0.0,
|
| 29 |
"learning_rate": 5e-07,
|
| 30 |
+
"loss": 0.1697,
|
| 31 |
+
"num_tokens": 1782.0,
|
| 32 |
+
"reward": 0.06285679526627064,
|
| 33 |
+
"reward_std": 0.010482232493814081,
|
| 34 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 35 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 36 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 37 |
"rewards/consensus_reward_func/std": 0.0,
|
| 38 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 39 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 40 |
+
"rewards/final_correctness_reward_func/mean": 0.0,
|
| 41 |
+
"rewards/final_correctness_reward_func/std": 0.0,
|
| 42 |
+
"rewards/question_recreation_reward_func/mean": 0.06285679526627064,
|
| 43 |
+
"rewards/question_recreation_reward_func/std": 0.022788123576901853,
|
| 44 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 45 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 46 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 47 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 48 |
+
"rewards/xmlcount_reward_func/mean": 0.0,
|
| 49 |
+
"rewards/xmlcount_reward_func/std": 0.0,
|
| 50 |
"step": 2
|
| 51 |
},
|
| 52 |
{
|
|
|
|
| 55 |
"clip_ratio/low_mean": 0.0,
|
| 56 |
"clip_ratio/low_min": 0.0,
|
| 57 |
"clip_ratio/region_mean": 0.0,
|
| 58 |
+
"completions/clipped_ratio": 0.125,
|
| 59 |
+
"completions/max_length": 155.0,
|
| 60 |
+
"completions/max_terminated_length": 130.5,
|
| 61 |
+
"completions/mean_length": 73.0,
|
| 62 |
+
"completions/mean_terminated_length": 50.5,
|
| 63 |
+
"completions/min_length": 4.0,
|
| 64 |
+
"completions/min_terminated_length": 4.0,
|
| 65 |
+
"epoch": 0.125,
|
| 66 |
+
"frac_reward_zero_std": 0.0,
|
| 67 |
+
"grad_norm": 38.976619720458984,
|
| 68 |
+
"kl": 0.006027122130035423,
|
| 69 |
"learning_rate": 4.415111107797445e-07,
|
| 70 |
+
"loss": -0.2687,
|
| 71 |
+
"num_tokens": 3390.0,
|
| 72 |
+
"reward": 0.022088108584284782,
|
| 73 |
+
"reward_std": 0.009733497630804777,
|
| 74 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 75 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 76 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 77 |
"rewards/consensus_reward_func/std": 0.0,
|
| 78 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 79 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 80 |
+
"rewards/final_correctness_reward_func/mean": 0.0,
|
| 81 |
+
"rewards/final_correctness_reward_func/std": 0.0,
|
| 82 |
+
"rewards/question_recreation_reward_func/mean": 0.022088108584284782,
|
| 83 |
+
"rewards/question_recreation_reward_func/std": 0.009718202985823154,
|
| 84 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 85 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 86 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 87 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 88 |
+
"rewards/xmlcount_reward_func/mean": 0.0,
|
| 89 |
+
"rewards/xmlcount_reward_func/std": 0.0,
|
| 90 |
"step": 4
|
| 91 |
},
|
| 92 |
{
|
|
|
|
| 95 |
"clip_ratio/low_mean": 0.0,
|
| 96 |
"clip_ratio/low_min": 0.0,
|
| 97 |
"clip_ratio/region_mean": 0.0,
|
| 98 |
+
"completions/clipped_ratio": 0.125,
|
| 99 |
+
"completions/max_length": 211.0,
|
| 100 |
+
"completions/max_terminated_length": 187.0,
|
| 101 |
+
"completions/mean_length": 139.75,
|
| 102 |
+
"completions/mean_terminated_length": 127.83333587646484,
|
| 103 |
+
"completions/min_length": 68.0,
|
| 104 |
+
"completions/min_terminated_length": 68.0,
|
| 105 |
+
"epoch": 0.1875,
|
| 106 |
+
"frac_reward_zero_std": 0.0,
|
| 107 |
+
"grad_norm": 15.524645805358887,
|
| 108 |
+
"kl": 0.0035549709282349795,
|
| 109 |
"learning_rate": 2.934120444167326e-07,
|
| 110 |
+
"loss": -0.0062,
|
| 111 |
+
"num_tokens": 5532.0,
|
| 112 |
+
"reward": 0.03519869223237038,
|
| 113 |
+
"reward_std": 0.0057324927765876055,
|
| 114 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 115 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 116 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 117 |
"rewards/consensus_reward_func/std": 0.0,
|
| 118 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 119 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 120 |
+
"rewards/final_correctness_reward_func/mean": 0.0,
|
| 121 |
+
"rewards/final_correctness_reward_func/std": 0.0,
|
| 122 |
+
"rewards/question_recreation_reward_func/mean": 0.03519869036972523,
|
| 123 |
+
"rewards/question_recreation_reward_func/std": 0.010448201559484005,
|
| 124 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 125 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 126 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 127 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 128 |
+
"rewards/xmlcount_reward_func/mean": 0.0,
|
| 129 |
+
"rewards/xmlcount_reward_func/std": 0.0,
|
| 130 |
"step": 6
|
| 131 |
},
|
| 132 |
{
|
|
|
|
| 135 |
"clip_ratio/low_mean": 0.0,
|
| 136 |
"clip_ratio/low_min": 0.0,
|
| 137 |
"clip_ratio/region_mean": 0.0,
|
| 138 |
+
"completions/clipped_ratio": 0.25,
|
| 139 |
+
"completions/max_length": 180.5,
|
| 140 |
+
"completions/max_terminated_length": 63.0,
|
| 141 |
+
"completions/mean_length": 101.5,
|
| 142 |
+
"completions/mean_terminated_length": 40.75,
|
| 143 |
+
"completions/min_length": 4.5,
|
| 144 |
+
"completions/min_terminated_length": 4.5,
|
| 145 |
+
"epoch": 0.25,
|
| 146 |
+
"frac_reward_zero_std": 0.0,
|
| 147 |
+
"grad_norm": 12.807693481445312,
|
| 148 |
+
"kl": 0.012600050424225628,
|
| 149 |
"learning_rate": 1.2500000000000005e-07,
|
| 150 |
+
"loss": -0.0197,
|
| 151 |
+
"num_tokens": 7368.0,
|
| 152 |
+
"reward": 0.07958310190588236,
|
| 153 |
+
"reward_std": 0.02216464071534574,
|
| 154 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 155 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 156 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 157 |
"rewards/consensus_reward_func/std": 0.0,
|
| 158 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 159 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 160 |
+
"rewards/final_correctness_reward_func/mean": 0.0,
|
| 161 |
+
"rewards/final_correctness_reward_func/std": 0.0,
|
| 162 |
+
"rewards/question_recreation_reward_func/mean": 0.07958310190588236,
|
| 163 |
+
"rewards/question_recreation_reward_func/std": 0.020205570850521326,
|
| 164 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 165 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 166 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 167 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 168 |
+
"rewards/xmlcount_reward_func/mean": 0.0,
|
| 169 |
+
"rewards/xmlcount_reward_func/std": 0.0,
|
| 170 |
"step": 8
|
| 171 |
},
|
| 172 |
{
|
|
|
|
| 175 |
"clip_ratio/low_mean": 0.0,
|
| 176 |
"clip_ratio/low_min": 0.0,
|
| 177 |
"clip_ratio/region_mean": 0.0,
|
| 178 |
+
"completions/clipped_ratio": 0.125,
|
| 179 |
+
"completions/max_length": 245.0,
|
| 180 |
+
"completions/max_terminated_length": 194.5,
|
| 181 |
+
"completions/mean_length": 119.625,
|
| 182 |
+
"completions/mean_terminated_length": 96.75,
|
| 183 |
+
"completions/min_length": 33.5,
|
| 184 |
+
"completions/min_terminated_length": 33.5,
|
| 185 |
+
"epoch": 0.3125,
|
| 186 |
+
"frac_reward_zero_std": 0.0,
|
| 187 |
+
"grad_norm": 13.917776107788086,
|
| 188 |
+
"kl": 0.002077412951621227,
|
| 189 |
"learning_rate": 1.507684480352292e-08,
|
| 190 |
+
"loss": 0.139,
|
| 191 |
+
"num_tokens": 9349.0,
|
| 192 |
+
"reward": 0.17312341183423996,
|
| 193 |
+
"reward_std": 0.043228439055383205,
|
| 194 |
"rewards/concensus_correctness_reward_func/mean": 0.0,
|
| 195 |
"rewards/concensus_correctness_reward_func/std": 0.0,
|
| 196 |
"rewards/consensus_reward_func/mean": 0.0,
|
| 197 |
"rewards/consensus_reward_func/std": 0.0,
|
| 198 |
"rewards/cumulative_reward_2/mean": 0.0,
|
| 199 |
"rewards/cumulative_reward_2/std": 0.0,
|
| 200 |
+
"rewards/final_correctness_reward_func/mean": 0.0,
|
| 201 |
+
"rewards/final_correctness_reward_func/std": 0.0,
|
| 202 |
+
"rewards/question_recreation_reward_func/mean": 0.17312341928482056,
|
| 203 |
+
"rewards/question_recreation_reward_func/std": 0.07501886645331979,
|
| 204 |
"rewards/soft_format_reward_func/mean": 0.0,
|
| 205 |
"rewards/soft_format_reward_func/std": 0.0,
|
| 206 |
"rewards/strict_format_reward_func/mean": 0.0,
|
| 207 |
"rewards/strict_format_reward_func/std": 0.0,
|
| 208 |
+
"rewards/xmlcount_reward_func/mean": 0.0,
|
| 209 |
+
"rewards/xmlcount_reward_func/std": 0.0,
|
| 210 |
"step": 10
|
| 211 |
},
|
| 212 |
{
|
| 213 |
+
"epoch": 0.3125,
|
| 214 |
"step": 10,
|
| 215 |
"total_flos": 0.0,
|
| 216 |
+
"train_loss": 0.0028146922588348387,
|
| 217 |
+
"train_runtime": 1322.7791,
|
| 218 |
+
"train_samples_per_second": 0.03,
|
| 219 |
+
"train_steps_per_second": 0.008
|
| 220 |
}
|
| 221 |
],
|
| 222 |
"logging_steps": 2,
|
| 223 |
"max_steps": 10,
|
| 224 |
+
"num_input_tokens_seen": 9349,
|
| 225 |
+
"num_train_epochs": 1,
|
| 226 |
"save_steps": 10,
|
| 227 |
"stateful_callbacks": {
|
| 228 |
"TrainerControl": {
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ebd4df9671b079db4379101c5551d8648c8cf9167f6e380fb19b19f2bd109811
|
| 3 |
+
size 6865
|