Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am yapping giant lizard
unsloth
trl
genrl-swarm
I am yapping_giant_lizard
conversational
text-generation-inference
Instructions to use hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard") model = AutoModelForCausalLM.from_pretrained("hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard", 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 hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard
- SGLang
How to use hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard 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 "hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard" \ --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": "hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard", "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 "hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard" \ --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": "hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard 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 hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard 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 hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard", max_seq_length=2048, ) - Docker Model Runner
How to use hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard with Docker Model Runner:
docker model run hf.co/hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_giant_lizard
End of training
Browse files- adapter_model.safetensors +1 -1
- all_results.json +5 -5
- train_results.json +5 -5
- trainer_state.json +129 -129
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:b5004260c114700898854136ae4ba9b98b7f8da001e06b21a6b6f504ca617517
|
| 3 |
size 35237104
|
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.00010353847828810103,
|
| 4 |
+
"train_runtime": 860.6355,
|
| 5 |
+
"train_samples": 23,
|
| 6 |
+
"train_samples_per_second": 0.372,
|
| 7 |
+
"train_steps_per_second": 0.023
|
| 8 |
}
|
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.00010353847828810103,
|
| 4 |
+
"train_runtime": 860.6355,
|
| 5 |
+
"train_samples": 23,
|
| 6 |
+
"train_samples_per_second": 0.372,
|
| 7 |
+
"train_steps_per_second": 0.023
|
| 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": 20,
|
| 8 |
"is_hyper_param_search": false,
|
|
@@ -10,209 +10,209 @@
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"completion_length":
|
| 14 |
-
"epoch": 0.
|
| 15 |
-
"grad_norm":
|
| 16 |
-
"kl": 0.
|
| 17 |
"learning_rate": 5e-07,
|
| 18 |
-
"loss": 0.
|
| 19 |
-
"reward": 1.
|
| 20 |
-
"reward_std": 1.
|
| 21 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 22 |
-
"rewards/consensus_reward_func": 0.
|
| 23 |
"rewards/cumulative_reward_2": 0.0,
|
| 24 |
-
"rewards/final_correctness_reward_func": 0.
|
| 25 |
-
"rewards/question_recreation_reward_func": 0.
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
"rewards/strict_format_reward_func": 0.0,
|
| 28 |
-
"rewards/xmlcount_reward_func": 0.
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
-
"completion_length":
|
| 33 |
-
"epoch": 0.
|
| 34 |
-
"grad_norm":
|
| 35 |
-
"kl": 0.
|
| 36 |
"learning_rate": 4.864543104251586e-07,
|
| 37 |
"loss": 0.0002,
|
| 38 |
-
"reward":
|
| 39 |
-
"reward_std":
|
| 40 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 41 |
-
"rewards/consensus_reward_func": 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.
|
| 47 |
-
"rewards/xmlcount_reward_func": 0.
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
-
"completion_length":
|
| 52 |
-
"epoch": 1.
|
| 53 |
-
"grad_norm":
|
| 54 |
-
"kl": 0.
|
| 55 |
"learning_rate": 4.472851273490984e-07,
|
| 56 |
"loss": 0.0001,
|
| 57 |
-
"reward": 1.
|
| 58 |
-
"reward_std":
|
| 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.
|
| 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": 1.
|
| 72 |
-
"grad_norm":
|
| 73 |
-
"kl": 0.
|
| 74 |
"learning_rate": 3.867370395306068e-07,
|
| 75 |
-
"loss": 0.
|
| 76 |
-
"reward":
|
| 77 |
-
"reward_std":
|
| 78 |
-
"rewards/concensus_correctness_reward_func":
|
| 79 |
-
"rewards/consensus_reward_func": 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.
|
| 85 |
-
"rewards/xmlcount_reward_func": 0.
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
-
"completion_length":
|
| 90 |
-
"epoch":
|
| 91 |
-
"grad_norm":
|
| 92 |
-
"kl": 0.
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
"loss": 0.0001,
|
| 95 |
-
"reward":
|
| 96 |
-
"reward_std": 1.
|
| 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.
|
| 104 |
-
"rewards/xmlcount_reward_func": 0.
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
-
"completion_length":
|
| 109 |
-
"epoch": 2.
|
| 110 |
-
"grad_norm": 1.
|
| 111 |
-
"kl": 0.
|
| 112 |
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
-
"loss": 0.
|
| 114 |
-
"reward": 2.
|
| 115 |
-
"reward_std":
|
| 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.
|
| 122 |
-
"rewards/strict_format_reward_func": 0.
|
| 123 |
-
"rewards/xmlcount_reward_func": 0.
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
-
"completion_length":
|
| 128 |
-
"epoch": 2.
|
| 129 |
-
"grad_norm":
|
| 130 |
-
"kl": 0.
|
| 131 |
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
"loss": 0.0001,
|
| 133 |
-
"reward":
|
| 134 |
-
"reward_std":
|
| 135 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 136 |
"rewards/consensus_reward_func": 0.0625,
|
| 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.
|
| 141 |
"rewards/strict_format_reward_func": 0.0,
|
| 142 |
-
"rewards/xmlcount_reward_func": 0.
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
-
"completion_length":
|
| 147 |
-
"epoch":
|
| 148 |
-
"grad_norm": 2.
|
| 149 |
-
"kl": 0.
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
-
"loss": 0.
|
| 152 |
-
"reward":
|
| 153 |
-
"reward_std": 2.
|
| 154 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 155 |
-
"rewards/consensus_reward_func": 0.
|
| 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.
|
| 160 |
"rewards/strict_format_reward_func": 0.0,
|
| 161 |
-
"rewards/xmlcount_reward_func": 0.
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
-
"completion_length":
|
| 166 |
-
"epoch": 3.
|
| 167 |
-
"grad_norm":
|
| 168 |
-
"kl": 0.
|
| 169 |
"learning_rate": 3.013156219837776e-08,
|
| 170 |
-
"loss": 0.
|
| 171 |
-
"reward":
|
| 172 |
-
"reward_std":
|
| 173 |
-
"rewards/concensus_correctness_reward_func": 0.
|
| 174 |
-
"rewards/consensus_reward_func": 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.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":
|
| 186 |
-
"grad_norm": 1.
|
| 187 |
-
"kl": 0.
|
| 188 |
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
-
"loss": 0.
|
| 190 |
-
"reward":
|
| 191 |
-
"reward_std":
|
| 192 |
-
"rewards/concensus_correctness_reward_func":
|
| 193 |
-
"rewards/consensus_reward_func": 0.
|
| 194 |
"rewards/cumulative_reward_2": 0.0,
|
| 195 |
-
"rewards/final_correctness_reward_func": 0.
|
| 196 |
-
"rewards/question_recreation_reward_func": 0.
|
| 197 |
"rewards/soft_format_reward_func": 0.0,
|
| 198 |
"rewards/strict_format_reward_func": 0.0,
|
| 199 |
-
"rewards/xmlcount_reward_func": 0.
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
-
"epoch":
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
-
"train_loss": 0.
|
| 207 |
-
"train_runtime":
|
| 208 |
-
"train_samples_per_second": 0.
|
| 209 |
-
"train_steps_per_second": 0.
|
| 210 |
}
|
| 211 |
],
|
| 212 |
"logging_steps": 2,
|
| 213 |
"max_steps": 20,
|
| 214 |
"num_input_tokens_seen": 0,
|
| 215 |
-
"num_train_epochs":
|
| 216 |
"save_steps": 25,
|
| 217 |
"stateful_callbacks": {
|
| 218 |
"TrainerControl": {
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 3.3478260869565215,
|
| 6 |
"eval_steps": 500,
|
| 7 |
"global_step": 20,
|
| 8 |
"is_hyper_param_search": false,
|
|
|
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"completion_length": 427.0625,
|
| 14 |
+
"epoch": 0.34782608695652173,
|
| 15 |
+
"grad_norm": 1.831247329711914,
|
| 16 |
+
"kl": 0.08465925557538867,
|
| 17 |
"learning_rate": 5e-07,
|
| 18 |
+
"loss": 0.0001,
|
| 19 |
+
"reward": 1.4951009973883629,
|
| 20 |
+
"reward_std": 1.9578552730381489,
|
| 21 |
+
"rewards/concensus_correctness_reward_func": 0.306937500834465,
|
| 22 |
+
"rewards/consensus_reward_func": 0.5,
|
| 23 |
"rewards/cumulative_reward_2": 0.0,
|
| 24 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 25 |
+
"rewards/question_recreation_reward_func": 0.3920697569847107,
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
"rewards/strict_format_reward_func": 0.0,
|
| 28 |
+
"rewards/xmlcount_reward_func": 0.17109374329447746,
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
+
"completion_length": 312.90625,
|
| 33 |
+
"epoch": 0.6956521739130435,
|
| 34 |
+
"grad_norm": 2.707895517349243,
|
| 35 |
+
"kl": 0.18927789852023125,
|
| 36 |
"learning_rate": 4.864543104251586e-07,
|
| 37 |
"loss": 0.0002,
|
| 38 |
+
"reward": 3.3511684983968735,
|
| 39 |
+
"reward_std": 2.810737758874893,
|
| 40 |
+
"rewards/concensus_correctness_reward_func": 0.9857500195503235,
|
| 41 |
+
"rewards/consensus_reward_func": 0.5,
|
| 42 |
"rewards/cumulative_reward_2": 0.0,
|
| 43 |
+
"rewards/final_correctness_reward_func": 0.5,
|
| 44 |
+
"rewards/question_recreation_reward_func": 0.5366372531279922,
|
| 45 |
"rewards/soft_format_reward_func": 0.0,
|
| 46 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 47 |
+
"rewards/xmlcount_reward_func": 0.8131562396883965,
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
+
"completion_length": 591.7142857142857,
|
| 52 |
+
"epoch": 1.0,
|
| 53 |
+
"grad_norm": 0.9553964138031006,
|
| 54 |
+
"kl": 0.07205795177391597,
|
| 55 |
"learning_rate": 4.472851273490984e-07,
|
| 56 |
"loss": 0.0001,
|
| 57 |
+
"reward": 1.6433789091450828,
|
| 58 |
+
"reward_std": 3.27373297725405,
|
| 59 |
+
"rewards/concensus_correctness_reward_func": 0.7857142857142857,
|
| 60 |
+
"rewards/consensus_reward_func": 0.2857142857142857,
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
+
"rewards/final_correctness_reward_func": 0.2857142857142857,
|
| 63 |
+
"rewards/question_recreation_reward_func": 0.6140574514865875,
|
| 64 |
"rewards/soft_format_reward_func": 0.0,
|
| 65 |
"rewards/strict_format_reward_func": 0.0,
|
| 66 |
+
"rewards/xmlcount_reward_func": -0.3278214229004724,
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
+
"completion_length": 458.03125,
|
| 71 |
+
"epoch": 1.3478260869565217,
|
| 72 |
+
"grad_norm": 1.9519122838974,
|
| 73 |
+
"kl": 0.09541197819635272,
|
| 74 |
"learning_rate": 3.867370395306068e-07,
|
| 75 |
+
"loss": 0.0001,
|
| 76 |
+
"reward": 3.23869152367115,
|
| 77 |
+
"reward_std": 2.8737177960574627,
|
| 78 |
+
"rewards/concensus_correctness_reward_func": 1.5933125205338001,
|
| 79 |
+
"rewards/consensus_reward_func": 0.4375,
|
| 80 |
"rewards/cumulative_reward_2": 0.0,
|
| 81 |
+
"rewards/final_correctness_reward_func": 0.375,
|
| 82 |
+
"rewards/question_recreation_reward_func": 0.5153790600597858,
|
| 83 |
"rewards/soft_format_reward_func": 0.0,
|
| 84 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 85 |
+
"rewards/xmlcount_reward_func": 0.3174999915063381,
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
+
"completion_length": 465.15625,
|
| 90 |
+
"epoch": 1.6956521739130435,
|
| 91 |
+
"grad_norm": 2.256605625152588,
|
| 92 |
+
"kl": 0.12031417898833752,
|
| 93 |
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
"loss": 0.0001,
|
| 95 |
+
"reward": 1.946889029815793,
|
| 96 |
+
"reward_std": 1.2802342623472214,
|
| 97 |
+
"rewards/concensus_correctness_reward_func": 0.36281250417232513,
|
| 98 |
+
"rewards/consensus_reward_func": 0.125,
|
| 99 |
"rewards/cumulative_reward_2": 0.0,
|
| 100 |
+
"rewards/final_correctness_reward_func": 0.4375,
|
| 101 |
+
"rewards/question_recreation_reward_func": 0.4488264946267009,
|
| 102 |
"rewards/soft_format_reward_func": 0.0,
|
| 103 |
+
"rewards/strict_format_reward_func": 0.03125,
|
| 104 |
+
"rewards/xmlcount_reward_func": 0.5415000058710575,
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
+
"completion_length": 437.60714285714283,
|
| 109 |
+
"epoch": 2.0,
|
| 110 |
+
"grad_norm": 1.522103190422058,
|
| 111 |
+
"kl": 0.0894239145730223,
|
| 112 |
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
+
"loss": 0.0001,
|
| 114 |
+
"reward": 2.6395556926727295,
|
| 115 |
+
"reward_std": 2.6253241215433394,
|
| 116 |
+
"rewards/concensus_correctness_reward_func": 0.9945714133126395,
|
| 117 |
+
"rewards/consensus_reward_func": 0.2857142857142857,
|
| 118 |
"rewards/cumulative_reward_2": 0.0,
|
| 119 |
+
"rewards/final_correctness_reward_func": 0.5714285714285714,
|
| 120 |
+
"rewards/question_recreation_reward_func": 0.5251272501690047,
|
| 121 |
+
"rewards/soft_format_reward_func": 0.017857142857142856,
|
| 122 |
+
"rewards/strict_format_reward_func": 0.017857142857142856,
|
| 123 |
+
"rewards/xmlcount_reward_func": 0.227000002350126,
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
+
"completion_length": 325.40625,
|
| 128 |
+
"epoch": 2.3478260869565215,
|
| 129 |
+
"grad_norm": 5.116417407989502,
|
| 130 |
+
"kl": 0.13025188446044922,
|
| 131 |
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
"loss": 0.0001,
|
| 133 |
+
"reward": 2.2546688467264175,
|
| 134 |
+
"reward_std": 2.2960597034543753,
|
| 135 |
+
"rewards/concensus_correctness_reward_func": 0.8603749945759773,
|
| 136 |
"rewards/consensus_reward_func": 0.0625,
|
| 137 |
"rewards/cumulative_reward_2": 0.0,
|
| 138 |
+
"rewards/final_correctness_reward_func": 0.4375,
|
| 139 |
+
"rewards/question_recreation_reward_func": 0.3634501527994871,
|
| 140 |
+
"rewards/soft_format_reward_func": 0.015625,
|
| 141 |
"rewards/strict_format_reward_func": 0.0,
|
| 142 |
+
"rewards/xmlcount_reward_func": 0.5152187496423721,
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
+
"completion_length": 439.6875,
|
| 147 |
+
"epoch": 2.6956521739130435,
|
| 148 |
+
"grad_norm": 2.5033061504364014,
|
| 149 |
+
"kl": 0.14386370312422514,
|
| 150 |
"learning_rate": 8.067960709356478e-08,
|
| 151 |
+
"loss": 0.0001,
|
| 152 |
+
"reward": 2.7451365515589714,
|
| 153 |
+
"reward_std": 2.8820281606167555,
|
| 154 |
+
"rewards/concensus_correctness_reward_func": 0.960875004529953,
|
| 155 |
+
"rewards/consensus_reward_func": 0.5625,
|
| 156 |
"rewards/cumulative_reward_2": 0.0,
|
| 157 |
+
"rewards/final_correctness_reward_func": 0.3125,
|
| 158 |
+
"rewards/question_recreation_reward_func": 0.4262927705422044,
|
| 159 |
+
"rewards/soft_format_reward_func": 0.015625,
|
| 160 |
"rewards/strict_format_reward_func": 0.0,
|
| 161 |
+
"rewards/xmlcount_reward_func": 0.4673437364399433,
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
+
"completion_length": 572.8571428571429,
|
| 166 |
+
"epoch": 3.0,
|
| 167 |
+
"grad_norm": 1.2184569835662842,
|
| 168 |
+
"kl": 0.0620973285819803,
|
| 169 |
"learning_rate": 3.013156219837776e-08,
|
| 170 |
+
"loss": 0.0001,
|
| 171 |
+
"reward": 0.6767058819532394,
|
| 172 |
+
"reward_std": 2.5781510727746144,
|
| 173 |
+
"rewards/concensus_correctness_reward_func": 0.23378571229321615,
|
| 174 |
+
"rewards/consensus_reward_func": 0.35714285714285715,
|
| 175 |
"rewards/cumulative_reward_2": 0.0,
|
| 176 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 177 |
+
"rewards/question_recreation_reward_func": 0.497634442789214,
|
| 178 |
"rewards/soft_format_reward_func": 0.0,
|
| 179 |
"rewards/strict_format_reward_func": 0.0,
|
| 180 |
+
"rewards/xmlcount_reward_func": -0.4118571473019464,
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
+
"completion_length": 487.9375,
|
| 185 |
+
"epoch": 3.3478260869565215,
|
| 186 |
+
"grad_norm": 1.472921371459961,
|
| 187 |
+
"kl": 0.07594193634577096,
|
| 188 |
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
+
"loss": 0.0001,
|
| 190 |
+
"reward": 3.8580808490514755,
|
| 191 |
+
"reward_std": 2.269144743680954,
|
| 192 |
+
"rewards/concensus_correctness_reward_func": 2.096250000409782,
|
| 193 |
+
"rewards/consensus_reward_func": 0.5625,
|
| 194 |
"rewards/cumulative_reward_2": 0.0,
|
| 195 |
+
"rewards/final_correctness_reward_func": 0.1875,
|
| 196 |
+
"rewards/question_recreation_reward_func": 0.5588307604193687,
|
| 197 |
"rewards/soft_format_reward_func": 0.0,
|
| 198 |
"rewards/strict_format_reward_func": 0.0,
|
| 199 |
+
"rewards/xmlcount_reward_func": 0.4529999941587448,
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
+
"epoch": 3.3478260869565215,
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
+
"train_loss": 0.00010353847828810103,
|
| 207 |
+
"train_runtime": 860.6355,
|
| 208 |
+
"train_samples_per_second": 0.372,
|
| 209 |
+
"train_steps_per_second": 0.023
|
| 210 |
}
|
| 211 |
],
|
| 212 |
"logging_steps": 2,
|
| 213 |
"max_steps": 20,
|
| 214 |
"num_input_tokens_seen": 0,
|
| 215 |
+
"num_train_epochs": 4,
|
| 216 |
"save_steps": 25,
|
| 217 |
"stateful_callbacks": {
|
| 218 |
"TrainerControl": {
|