Text Generation
Transformers
Safetensors
qwen2
Generated from Trainer
rl-swarm
grpo
gensyn
I am colorful fanged capybara
trl
genrl-swarm
I am colorful_fanged_capybara
conversational
text-generation-inference
Instructions to use aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara") model = AutoModelForCausalLM.from_pretrained("aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara", 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 aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara
- SGLang
How to use aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara 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 "aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara" \ --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": "aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara", "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 "aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara" \ --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": "aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara with Docker Model Runner:
docker model run hf.co/aayasmin880/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_fanged_capybara
End of training
Browse files- README.md +1 -1
- all_results.json +5 -5
- config.json +1 -1
- generation_config.json +1 -1
- model.safetensors +1 -1
- train_results.json +5 -5
- trainer_state.json +147 -147
- training_args.bin +2 -2
README.md
CHANGED
|
@@ -38,7 +38,7 @@ This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing
|
|
| 38 |
### Framework versions
|
| 39 |
|
| 40 |
- TRL: 0.15.2
|
| 41 |
-
- Transformers: 4.
|
| 42 |
- Pytorch: 2.5.1
|
| 43 |
- Datasets: 3.5.0
|
| 44 |
- Tokenizers: 0.21.1
|
|
|
|
| 38 |
### Framework versions
|
| 39 |
|
| 40 |
- TRL: 0.15.2
|
| 41 |
+
- Transformers: 4.51.2
|
| 42 |
- Pytorch: 2.5.1
|
| 43 |
- Datasets: 3.5.0
|
| 44 |
- Tokenizers: 0.21.1
|
all_results.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
-
"train_loss":
|
| 4 |
-
"train_runtime":
|
| 5 |
-
"train_samples":
|
| 6 |
-
"train_samples_per_second":
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 2.5933608412742614e-06,
|
| 4 |
+
"train_runtime": 409.99,
|
| 5 |
+
"train_samples": 149,
|
| 6 |
+
"train_samples_per_second": 0.781,
|
| 7 |
+
"train_steps_per_second": 0.049
|
| 8 |
}
|
config.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
| 21 |
"sliding_window": 32768,
|
| 22 |
"tie_word_embeddings": true,
|
| 23 |
"torch_dtype": "float32",
|
| 24 |
-
"transformers_version": "4.
|
| 25 |
"use_cache": true,
|
| 26 |
"use_sliding_window": false,
|
| 27 |
"vocab_size": 151936
|
|
|
|
| 21 |
"sliding_window": 32768,
|
| 22 |
"tie_word_embeddings": true,
|
| 23 |
"torch_dtype": "float32",
|
| 24 |
+
"transformers_version": "4.51.2",
|
| 25 |
"use_cache": true,
|
| 26 |
"use_sliding_window": false,
|
| 27 |
"vocab_size": 151936
|
generation_config.json
CHANGED
|
@@ -10,5 +10,5 @@
|
|
| 10 |
"temperature": 0.7,
|
| 11 |
"top_k": 20,
|
| 12 |
"top_p": 0.8,
|
| 13 |
-
"transformers_version": "4.
|
| 14 |
}
|
|
|
|
| 10 |
"temperature": 0.7,
|
| 11 |
"top_k": 20,
|
| 12 |
"top_p": 0.8,
|
| 13 |
+
"transformers_version": "4.51.2"
|
| 14 |
}
|
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:67210027f7d97ef16436eb3f12622cf8a089458f85c41225b999b895c67f6eaf
|
| 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":
|
| 6 |
-
"train_samples_per_second":
|
| 7 |
-
"train_steps_per_second": 0.
|
| 8 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"total_flos": 0.0,
|
| 3 |
+
"train_loss": 2.5933608412742614e-06,
|
| 4 |
+
"train_runtime": 409.99,
|
| 5 |
+
"train_samples": 149,
|
| 6 |
+
"train_samples_per_second": 0.781,
|
| 7 |
+
"train_steps_per_second": 0.049
|
| 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": 1.
|
| 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.0,
|
| 17 |
-
"learning_rate":
|
| 18 |
-
"loss":
|
| 19 |
-
"reward":
|
| 20 |
-
"reward_std": 0.
|
| 21 |
-
"rewards/concensus_correctness_reward_func":
|
| 22 |
-
"rewards/consensus_reward_func":
|
| 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.
|
| 28 |
-
"rewards/xmlcount_reward_func": 0.
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
-
"completion_length":
|
| 33 |
-
"epoch": 0.
|
| 34 |
-
"grad_norm":
|
| 35 |
-
"kl":
|
| 36 |
-
"learning_rate": 4.
|
| 37 |
-
"loss":
|
| 38 |
-
"reward":
|
| 39 |
-
"reward_std": 0.
|
| 40 |
-
"rewards/concensus_correctness_reward_func":
|
| 41 |
-
"rewards/consensus_reward_func":
|
| 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":
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
-
"completion_length":
|
| 52 |
-
"epoch": 0.
|
| 53 |
-
"grad_norm":
|
| 54 |
-
"kl":
|
| 55 |
-
"learning_rate": 4.
|
| 56 |
-
"loss":
|
| 57 |
-
"reward":
|
| 58 |
-
"reward_std": 0.
|
| 59 |
-
"rewards/concensus_correctness_reward_func":
|
| 60 |
-
"rewards/consensus_reward_func":
|
| 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.
|
| 65 |
-
"rewards/strict_format_reward_func": 0.
|
| 66 |
-
"rewards/xmlcount_reward_func":
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
-
"completion_length":
|
| 71 |
-
"epoch": 0.
|
| 72 |
-
"grad_norm":
|
| 73 |
-
"kl":
|
| 74 |
-
"learning_rate": 3.
|
| 75 |
-
"loss":
|
| 76 |
-
"reward":
|
| 77 |
-
"reward_std": 0.
|
| 78 |
-
"rewards/concensus_correctness_reward_func":
|
| 79 |
-
"rewards/consensus_reward_func":
|
| 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":
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
-
"completion_length":
|
| 90 |
-
"epoch": 0.
|
| 91 |
-
"grad_norm":
|
| 92 |
-
"kl":
|
| 93 |
-
"learning_rate":
|
| 94 |
-
"loss":
|
| 95 |
-
"reward":
|
| 96 |
-
"reward_std": 0.
|
| 97 |
-
"rewards/concensus_correctness_reward_func":
|
| 98 |
-
"rewards/consensus_reward_func":
|
| 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":
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
-
"completion_length":
|
| 109 |
-
"epoch": 0.
|
| 110 |
-
"grad_norm":
|
| 111 |
-
"kl":
|
| 112 |
-
"learning_rate":
|
| 113 |
-
"loss": 0.
|
| 114 |
-
"reward":
|
| 115 |
-
"reward_std":
|
| 116 |
-
"rewards/concensus_correctness_reward_func":
|
| 117 |
-
"rewards/consensus_reward_func":
|
| 118 |
"rewards/cumulative_reward_2": 0.0,
|
| 119 |
-
"rewards/final_correctness_reward_func": 0.
|
| 120 |
-
"rewards/question_recreation_reward_func": 0.
|
| 121 |
"rewards/soft_format_reward_func": 0.0,
|
| 122 |
-
"rewards/strict_format_reward_func": 0.
|
| 123 |
-
"rewards/xmlcount_reward_func":
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
-
"completion_length":
|
| 128 |
-
"epoch": 0.
|
| 129 |
-
"grad_norm":
|
| 130 |
-
"kl":
|
| 131 |
-
"learning_rate": 1.
|
| 132 |
-
"loss":
|
| 133 |
-
"reward":
|
| 134 |
-
"reward_std":
|
| 135 |
-
"rewards/concensus_correctness_reward_func":
|
| 136 |
-
"rewards/consensus_reward_func":
|
| 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":
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
-
"completion_length":
|
| 147 |
-
"epoch": 0.
|
| 148 |
-
"grad_norm":
|
| 149 |
-
"kl":
|
| 150 |
-
"learning_rate":
|
| 151 |
-
"loss": 0.
|
| 152 |
-
"reward":
|
| 153 |
-
"reward_std": 0.
|
| 154 |
-
"rewards/concensus_correctness_reward_func":
|
| 155 |
-
"rewards/consensus_reward_func":
|
| 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":
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
-
"completion_length":
|
| 166 |
-
"epoch": 0.
|
| 167 |
-
"grad_norm":
|
| 168 |
-
"kl":
|
| 169 |
-
"learning_rate":
|
| 170 |
-
"loss": 0.
|
| 171 |
-
"reward":
|
| 172 |
-
"reward_std": 0.
|
| 173 |
-
"rewards/concensus_correctness_reward_func":
|
| 174 |
-
"rewards/consensus_reward_func":
|
| 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":
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
-
"completion_length":
|
| 185 |
-
"epoch": 1.
|
| 186 |
-
"grad_norm":
|
| 187 |
-
"kl":
|
| 188 |
-
"learning_rate":
|
| 189 |
-
"loss": 0.
|
| 190 |
-
"reward":
|
| 191 |
-
"reward_std":
|
| 192 |
-
"rewards/concensus_correctness_reward_func":
|
| 193 |
-
"rewards/consensus_reward_func":
|
| 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.
|
| 199 |
-
"rewards/xmlcount_reward_func":
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
-
"epoch": 1.
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
-
"train_loss":
|
| 207 |
-
"train_runtime":
|
| 208 |
-
"train_samples_per_second":
|
| 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": 1.0536912751677852,
|
| 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": 316.75,
|
| 14 |
+
"epoch": 0.10738255033557047,
|
| 15 |
+
"grad_norm": 8.684107780456543,
|
| 16 |
"kl": 0.0,
|
| 17 |
+
"learning_rate": 5e-07,
|
| 18 |
+
"loss": 0.0,
|
| 19 |
+
"reward": 0.9118603632086888,
|
| 20 |
+
"reward_std": 0.7637306145916227,
|
| 21 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 22 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 23 |
"rewards/cumulative_reward_2": 0.0,
|
| 24 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 25 |
+
"rewards/question_recreation_reward_func": 0.39504786173347384,
|
| 26 |
"rewards/soft_format_reward_func": 0.0,
|
| 27 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 28 |
+
"rewards/xmlcount_reward_func": 0.3293124958872795,
|
| 29 |
"step": 2
|
| 30 |
},
|
| 31 |
{
|
| 32 |
+
"completion_length": 348.3125,
|
| 33 |
+
"epoch": 0.21476510067114093,
|
| 34 |
+
"grad_norm": 13.454246520996094,
|
| 35 |
+
"kl": 0.0020339643051556777,
|
| 36 |
+
"learning_rate": 4.864543104251586e-07,
|
| 37 |
+
"loss": 0.0,
|
| 38 |
+
"reward": 1.0148029099218547,
|
| 39 |
+
"reward_std": 0.5975782387249637,
|
| 40 |
+
"rewards/concensus_correctness_reward_func": 0.11924999952316284,
|
| 41 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 42 |
"rewards/cumulative_reward_2": 0.0,
|
| 43 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 44 |
+
"rewards/question_recreation_reward_func": 0.3142403995152563,
|
| 45 |
"rewards/soft_format_reward_func": 0.0,
|
| 46 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 47 |
+
"rewards/xmlcount_reward_func": 0.44068749947473407,
|
| 48 |
"step": 4
|
| 49 |
},
|
| 50 |
{
|
| 51 |
+
"completion_length": 452.65625,
|
| 52 |
+
"epoch": 0.3221476510067114,
|
| 53 |
+
"grad_norm": 11.709402084350586,
|
| 54 |
+
"kl": 0.0012080057713319547,
|
| 55 |
+
"learning_rate": 4.472851273490984e-07,
|
| 56 |
+
"loss": 0.0,
|
| 57 |
+
"reward": 0.6762643828988075,
|
| 58 |
+
"reward_std": 0.6245548717561178,
|
| 59 |
+
"rewards/concensus_correctness_reward_func": 0.0598750002682209,
|
| 60 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 61 |
"rewards/cumulative_reward_2": 0.0,
|
| 62 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 63 |
+
"rewards/question_recreation_reward_func": 0.2978268840815872,
|
| 64 |
+
"rewards/soft_format_reward_func": 0.015625,
|
| 65 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 66 |
+
"rewards/xmlcount_reward_func": 0.1779375011101365,
|
| 67 |
"step": 6
|
| 68 |
},
|
| 69 |
{
|
| 70 |
+
"completion_length": 398.625,
|
| 71 |
+
"epoch": 0.42953020134228187,
|
| 72 |
+
"grad_norm": 9.44884967803955,
|
| 73 |
+
"kl": 0.0016478088418807602,
|
| 74 |
+
"learning_rate": 3.867370395306068e-07,
|
| 75 |
+
"loss": 0.0,
|
| 76 |
+
"reward": 0.747544834157452,
|
| 77 |
+
"reward_std": 0.6983632346382365,
|
| 78 |
+
"rewards/concensus_correctness_reward_func": 0.1223749965429306,
|
| 79 |
+
"rewards/consensus_reward_func": 0.0,
|
| 80 |
"rewards/cumulative_reward_2": 0.0,
|
| 81 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 82 |
+
"rewards/question_recreation_reward_func": 0.3253885810263455,
|
| 83 |
"rewards/soft_format_reward_func": 0.0,
|
| 84 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 85 |
+
"rewards/xmlcount_reward_func": 0.15915624890476465,
|
| 86 |
"step": 8
|
| 87 |
},
|
| 88 |
{
|
| 89 |
+
"completion_length": 417.53125,
|
| 90 |
+
"epoch": 0.5369127516778524,
|
| 91 |
+
"grad_norm": 4.120293140411377,
|
| 92 |
+
"kl": 0.0019710015985765494,
|
| 93 |
+
"learning_rate": 3.1137137178519977e-07,
|
| 94 |
+
"loss": 0.0,
|
| 95 |
+
"reward": 0.8447740260744467,
|
| 96 |
+
"reward_std": 0.8398003252586932,
|
| 97 |
+
"rewards/concensus_correctness_reward_func": 0.14162500202655792,
|
| 98 |
+
"rewards/consensus_reward_func": 0.0,
|
| 99 |
"rewards/cumulative_reward_2": 0.0,
|
| 100 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 101 |
+
"rewards/question_recreation_reward_func": 0.2868052691919729,
|
| 102 |
"rewards/soft_format_reward_func": 0.0,
|
| 103 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 104 |
+
"rewards/xmlcount_reward_func": 0.35384375182911754,
|
| 105 |
"step": 10
|
| 106 |
},
|
| 107 |
{
|
| 108 |
+
"completion_length": 360.71875,
|
| 109 |
+
"epoch": 0.6442953020134228,
|
| 110 |
+
"grad_norm": 32.15998840332031,
|
| 111 |
+
"kl": 0.00471232270137989,
|
| 112 |
+
"learning_rate": 2.2935516363191693e-07,
|
| 113 |
+
"loss": 0.0,
|
| 114 |
+
"reward": 1.9486160605447367,
|
| 115 |
+
"reward_std": 1.8115553769748658,
|
| 116 |
+
"rewards/concensus_correctness_reward_func": 0.6818749997764826,
|
| 117 |
+
"rewards/consensus_reward_func": 0.125,
|
| 118 |
"rewards/cumulative_reward_2": 0.0,
|
| 119 |
+
"rewards/final_correctness_reward_func": 0.375,
|
| 120 |
+
"rewards/question_recreation_reward_func": 0.4561785594560206,
|
| 121 |
"rewards/soft_format_reward_func": 0.0,
|
| 122 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 123 |
+
"rewards/xmlcount_reward_func": 0.2949374979361892,
|
| 124 |
"step": 12
|
| 125 |
},
|
| 126 |
{
|
| 127 |
+
"completion_length": 328.4375,
|
| 128 |
+
"epoch": 0.7516778523489933,
|
| 129 |
+
"grad_norm": 9.214224815368652,
|
| 130 |
+
"kl": 0.004445670823770342,
|
| 131 |
+
"learning_rate": 1.4957614383675767e-07,
|
| 132 |
+
"loss": 0.0,
|
| 133 |
+
"reward": 1.0464753145352006,
|
| 134 |
+
"reward_std": 1.1203724679071456,
|
| 135 |
+
"rewards/concensus_correctness_reward_func": 0.16743749752640724,
|
| 136 |
+
"rewards/consensus_reward_func": 0.125,
|
| 137 |
"rewards/cumulative_reward_2": 0.0,
|
| 138 |
+
"rewards/final_correctness_reward_func": 0.0625,
|
| 139 |
+
"rewards/question_recreation_reward_func": 0.35360031423624605,
|
| 140 |
"rewards/soft_format_reward_func": 0.0,
|
| 141 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 142 |
+
"rewards/xmlcount_reward_func": 0.32231250684708357,
|
| 143 |
"step": 14
|
| 144 |
},
|
| 145 |
{
|
| 146 |
+
"completion_length": 451.0625,
|
| 147 |
+
"epoch": 0.8590604026845637,
|
| 148 |
+
"grad_norm": 90.91595458984375,
|
| 149 |
+
"kl": 0.003888222190653323,
|
| 150 |
+
"learning_rate": 8.067960709356478e-08,
|
| 151 |
+
"loss": 0.0,
|
| 152 |
+
"reward": 0.7943547907052562,
|
| 153 |
+
"reward_std": 0.5775234283792088,
|
| 154 |
+
"rewards/concensus_correctness_reward_func": 0.04131250083446503,
|
| 155 |
+
"rewards/consensus_reward_func": 0.0625,
|
| 156 |
"rewards/cumulative_reward_2": 0.0,
|
| 157 |
+
"rewards/final_correctness_reward_func": 0.125,
|
| 158 |
+
"rewards/question_recreation_reward_func": 0.3766672945348546,
|
| 159 |
"rewards/soft_format_reward_func": 0.0,
|
| 160 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 161 |
+
"rewards/xmlcount_reward_func": 0.17324999067932367,
|
| 162 |
"step": 16
|
| 163 |
},
|
| 164 |
{
|
| 165 |
+
"completion_length": 334.59375,
|
| 166 |
+
"epoch": 0.9664429530201343,
|
| 167 |
+
"grad_norm": 90.40325164794922,
|
| 168 |
+
"kl": 0.0023139841941883788,
|
| 169 |
+
"learning_rate": 3.013156219837776e-08,
|
| 170 |
+
"loss": 0.0,
|
| 171 |
+
"reward": 0.9272007264662534,
|
| 172 |
+
"reward_std": 0.688656156140496,
|
| 173 |
+
"rewards/concensus_correctness_reward_func": 0.0,
|
| 174 |
+
"rewards/consensus_reward_func": 0.0,
|
| 175 |
"rewards/cumulative_reward_2": 0.0,
|
| 176 |
+
"rewards/final_correctness_reward_func": 0.375,
|
| 177 |
+
"rewards/question_recreation_reward_func": 0.2672007321380079,
|
| 178 |
"rewards/soft_format_reward_func": 0.0,
|
| 179 |
+
"rewards/strict_format_reward_func": 0.015625,
|
| 180 |
+
"rewards/xmlcount_reward_func": 0.26937499875202775,
|
| 181 |
"step": 18
|
| 182 |
},
|
| 183 |
{
|
| 184 |
+
"completion_length": 456.38461538461536,
|
| 185 |
+
"epoch": 1.0536912751677852,
|
| 186 |
+
"grad_norm": 4.295146465301514,
|
| 187 |
+
"kl": 0.00429495136352041,
|
| 188 |
+
"learning_rate": 3.4096741493194193e-09,
|
| 189 |
+
"loss": 0.0,
|
| 190 |
+
"reward": 1.0834939227654383,
|
| 191 |
+
"reward_std": 1.518596117886213,
|
| 192 |
+
"rewards/concensus_correctness_reward_func": 0.2748461594948402,
|
| 193 |
+
"rewards/consensus_reward_func": 0.23076923076923078,
|
| 194 |
"rewards/cumulative_reward_2": 0.0,
|
| 195 |
+
"rewards/final_correctness_reward_func": 0.0,
|
| 196 |
+
"rewards/question_recreation_reward_func": 0.2927246823763618,
|
| 197 |
"rewards/soft_format_reward_func": 0.0,
|
| 198 |
+
"rewards/strict_format_reward_func": 0.0,
|
| 199 |
+
"rewards/xmlcount_reward_func": 0.2851538443221496,
|
| 200 |
"step": 20
|
| 201 |
},
|
| 202 |
{
|
| 203 |
+
"epoch": 1.0536912751677852,
|
| 204 |
"step": 20,
|
| 205 |
"total_flos": 0.0,
|
| 206 |
+
"train_loss": 2.5933608412742614e-06,
|
| 207 |
+
"train_runtime": 409.99,
|
| 208 |
+
"train_samples_per_second": 0.781,
|
| 209 |
+
"train_steps_per_second": 0.049
|
| 210 |
}
|
| 211 |
],
|
| 212 |
"logging_steps": 2,
|
| 213 |
"max_steps": 20,
|
| 214 |
"num_input_tokens_seen": 0,
|
| 215 |
+
"num_train_epochs": 2,
|
| 216 |
"save_steps": 25,
|
| 217 |
"stateful_callbacks": {
|
| 218 |
"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:d79376453f8deca09aff7733ac31ca7be1698542060a55c79f5eadee71ed5b96
|
| 3 |
+
size 5944
|