Text Generation
PEFT
Safetensors
Transformers
qwen2
grpo
lora
trl
conversational
text-generation-inference
Instructions to use bimabk/environment_test_affine with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bimabk/environment_test_affine with PEFT:
Base model is not found.
- Transformers
How to use bimabk/environment_test_affine with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bimabk/environment_test_affine") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("bimabk/environment_test_affine") model = AutoModelForCausalLM.from_pretrained("bimabk/environment_test_affine", 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 bimabk/environment_test_affine with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bimabk/environment_test_affine" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bimabk/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bimabk/environment_test_affine
- SGLang
How to use bimabk/environment_test_affine 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 "bimabk/environment_test_affine" \ --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": "bimabk/environment_test_affine", "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 "bimabk/environment_test_affine" \ --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": "bimabk/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bimabk/environment_test_affine with Docker Model Runner:
docker model run hf.co/bimabk/environment_test_affine
Upload task output 1
Browse files- adapter_config.json +4 -4
- adapter_model.safetensors +1 -1
- loss.txt +1 -1
- trainer_state.json +461 -362
- training_args.bin +1 -1
adapter_config.json
CHANGED
|
@@ -29,13 +29,13 @@
|
|
| 29 |
"rank_pattern": {},
|
| 30 |
"revision": null,
|
| 31 |
"target_modules": [
|
|
|
|
| 32 |
"gate_proj",
|
| 33 |
-
"k_proj",
|
| 34 |
-
"v_proj",
|
| 35 |
"o_proj",
|
| 36 |
-
"
|
|
|
|
| 37 |
"up_proj",
|
| 38 |
-
"
|
| 39 |
],
|
| 40 |
"target_parameters": null,
|
| 41 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 29 |
"rank_pattern": {},
|
| 30 |
"revision": null,
|
| 31 |
"target_modules": [
|
| 32 |
+
"q_proj",
|
| 33 |
"gate_proj",
|
|
|
|
|
|
|
| 34 |
"o_proj",
|
| 35 |
+
"down_proj",
|
| 36 |
+
"k_proj",
|
| 37 |
"up_proj",
|
| 38 |
+
"v_proj"
|
| 39 |
],
|
| 40 |
"target_parameters": null,
|
| 41 |
"task_type": "CAUSAL_LM",
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 957942768
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9bc32fac7f25bcede80af9be64db4efa53407d9dbd6b511856089e76298e8f7
|
| 3 |
size 957942768
|
loss.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
|
|
|
|
| 1 |
+
75,-0.5700000166893006
|
trainer_state.json
CHANGED
|
@@ -2,446 +2,545 @@
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
-
"epoch": 0.
|
| 6 |
"eval_steps": 500,
|
| 7 |
-
"global_step":
|
| 8 |
"is_hyper_param_search": false,
|
| 9 |
"is_local_process_zero": true,
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"clip_ratio/high_max": 0.
|
| 14 |
-
"clip_ratio/high_mean": 0.
|
| 15 |
-
"clip_ratio/low_mean": 0.
|
| 16 |
"clip_ratio/low_min": 0.0,
|
| 17 |
-
"clip_ratio/region_mean": 0.
|
| 18 |
"completions/clipped_ratio": 0.0,
|
| 19 |
-
"completions/max_length": 374.
|
| 20 |
-
"completions/max_terminated_length": 374.
|
| 21 |
-
"completions/mean_length":
|
| 22 |
-
"completions/mean_terminated_length":
|
| 23 |
-
"completions/min_length":
|
| 24 |
-
"completions/min_terminated_length":
|
| 25 |
-
"entropy": 0.
|
| 26 |
-
"epoch": 0.
|
| 27 |
-
"frac_reward_zero_std": 0.
|
| 28 |
-
"grad_norm": 0.
|
| 29 |
-
"kl": 0.
|
| 30 |
"learning_rate": 1.137216e-06,
|
| 31 |
-
"loss": 0.
|
| 32 |
-
"num_tokens":
|
| 33 |
-
"reward": 0.
|
| 34 |
-
"reward_std": 0.
|
| 35 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 36 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 37 |
-
"sampling/importance_sampling_ratio/max": 1.
|
| 38 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 39 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 40 |
-
"sampling/sampling_logp_difference/max":
|
| 41 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 42 |
"step": 5,
|
| 43 |
-
"step_time":
|
| 44 |
},
|
| 45 |
{
|
| 46 |
-
"clip_ratio/high_max": 0.
|
| 47 |
-
"clip_ratio/high_mean": 0.
|
| 48 |
-
"clip_ratio/low_mean": 0.
|
| 49 |
"clip_ratio/low_min": 0.0,
|
| 50 |
-
"clip_ratio/region_mean": 0.
|
| 51 |
"completions/clipped_ratio": 0.0,
|
| 52 |
-
"completions/max_length":
|
| 53 |
-
"completions/max_terminated_length":
|
| 54 |
-
"completions/mean_length":
|
| 55 |
-
"completions/mean_terminated_length":
|
| 56 |
-
"completions/min_length":
|
| 57 |
-
"completions/min_terminated_length":
|
| 58 |
-
"entropy": 0.
|
| 59 |
-
"epoch": 0.
|
| 60 |
-
"frac_reward_zero_std": 0.
|
| 61 |
-
"grad_norm": 0.
|
| 62 |
-
"kl": 0.
|
| 63 |
"learning_rate": 2.5587359999999995e-06,
|
| 64 |
-
"loss":
|
| 65 |
-
"num_tokens":
|
| 66 |
-
"reward": 0.
|
| 67 |
-
"reward_std": 0.
|
| 68 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 69 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 70 |
-
"sampling/importance_sampling_ratio/max":
|
| 71 |
-
"sampling/importance_sampling_ratio/mean":
|
| 72 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 73 |
-
"sampling/sampling_logp_difference/max":
|
| 74 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 75 |
"step": 10,
|
| 76 |
-
"step_time":
|
| 77 |
},
|
| 78 |
{
|
| 79 |
-
"clip_ratio/high_max": 0.
|
| 80 |
-
"clip_ratio/high_mean": 0.
|
| 81 |
-
"clip_ratio/low_mean": 0.
|
| 82 |
"clip_ratio/low_min": 0.0,
|
| 83 |
-
"clip_ratio/region_mean": 0.
|
| 84 |
"completions/clipped_ratio": 0.0,
|
| 85 |
-
"completions/max_length":
|
| 86 |
-
"completions/max_terminated_length":
|
| 87 |
-
"completions/mean_length":
|
| 88 |
-
"completions/mean_terminated_length":
|
| 89 |
-
"completions/min_length":
|
| 90 |
-
"completions/min_terminated_length":
|
| 91 |
-
"entropy": 0.
|
| 92 |
-
"epoch": 0.
|
| 93 |
-
"frac_reward_zero_std": 0.
|
| 94 |
-
"grad_norm": 0.
|
| 95 |
-
"kl": 0.
|
| 96 |
"learning_rate": 3.9802559999999995e-06,
|
| 97 |
-
"loss": 0.
|
| 98 |
-
"num_tokens":
|
| 99 |
-
"reward": 0.
|
| 100 |
-
"reward_std": 0.
|
| 101 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 102 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 103 |
-
"sampling/importance_sampling_ratio/max": 1.
|
| 104 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 105 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 106 |
-
"sampling/sampling_logp_difference/max":
|
| 107 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 108 |
"step": 15,
|
| 109 |
-
"step_time":
|
| 110 |
},
|
| 111 |
{
|
| 112 |
-
"clip_ratio/high_max": 0.
|
| 113 |
-
"clip_ratio/high_mean": 0.
|
| 114 |
-
"clip_ratio/low_mean": 0.
|
| 115 |
"clip_ratio/low_min": 0.0,
|
| 116 |
-
"clip_ratio/region_mean": 0.
|
| 117 |
"completions/clipped_ratio": 0.0,
|
| 118 |
-
"completions/max_length": 373.
|
| 119 |
-
"completions/max_terminated_length": 373.
|
| 120 |
-
"completions/mean_length":
|
| 121 |
-
"completions/mean_terminated_length":
|
| 122 |
-
"completions/min_length":
|
| 123 |
-
"completions/min_terminated_length":
|
| 124 |
-
"entropy": 0.
|
| 125 |
-
"epoch": 0.
|
| 126 |
-
"frac_reward_zero_std": 0.
|
| 127 |
-
"grad_norm": 0.
|
| 128 |
-
"kl": 0.
|
| 129 |
"learning_rate": 5.401775999999999e-06,
|
| 130 |
-
"loss": 0.
|
| 131 |
-
"num_tokens":
|
| 132 |
-
"reward": 0.
|
| 133 |
-
"reward_std": 0.
|
| 134 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 135 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 136 |
-
"sampling/importance_sampling_ratio/max":
|
| 137 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 138 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 139 |
-
"sampling/sampling_logp_difference/max":
|
| 140 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 141 |
"step": 20,
|
| 142 |
-
"step_time":
|
| 143 |
},
|
| 144 |
{
|
| 145 |
-
"clip_ratio/high_max": 0.
|
| 146 |
-
"clip_ratio/high_mean": 0.
|
| 147 |
-
"clip_ratio/low_mean": 0.
|
| 148 |
-
"clip_ratio/low_min": 0.
|
| 149 |
-
"clip_ratio/region_mean": 0.
|
| 150 |
"completions/clipped_ratio": 0.0,
|
| 151 |
-
"completions/max_length": 374.
|
| 152 |
-
"completions/max_terminated_length": 374.
|
| 153 |
-
"completions/mean_length":
|
| 154 |
-
"completions/mean_terminated_length":
|
| 155 |
-
"completions/min_length":
|
| 156 |
-
"completions/min_terminated_length":
|
| 157 |
-
"entropy": 0.
|
| 158 |
-
"epoch": 0.
|
| 159 |
-
"frac_reward_zero_std": 0.
|
| 160 |
-
"grad_norm": 0.
|
| 161 |
-
"kl": 0.
|
| 162 |
"learning_rate": 6.8232959999999994e-06,
|
| 163 |
-
"loss": -
|
| 164 |
-
"num_tokens":
|
| 165 |
-
"reward": 0.
|
| 166 |
-
"reward_std": 0.
|
| 167 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 168 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 169 |
-
"sampling/importance_sampling_ratio/max":
|
| 170 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 171 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 172 |
-
"sampling/sampling_logp_difference/max":
|
| 173 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 174 |
"step": 25,
|
| 175 |
-
"step_time":
|
| 176 |
},
|
| 177 |
{
|
| 178 |
-
"clip_ratio/high_max": 0.
|
| 179 |
-
"clip_ratio/high_mean": 0.
|
| 180 |
-
"clip_ratio/low_mean": 0.
|
| 181 |
-
"clip_ratio/low_min": 0.
|
| 182 |
-
"clip_ratio/region_mean": 0.
|
| 183 |
"completions/clipped_ratio": 0.0,
|
| 184 |
-
"completions/max_length":
|
| 185 |
-
"completions/max_terminated_length":
|
| 186 |
-
"completions/mean_length":
|
| 187 |
-
"completions/mean_terminated_length":
|
| 188 |
-
"completions/min_length":
|
| 189 |
-
"completions/min_terminated_length":
|
| 190 |
-
"entropy": 0.
|
| 191 |
-
"epoch": 0.
|
| 192 |
-
"frac_reward_zero_std": 0.
|
| 193 |
-
"grad_norm": 0.
|
| 194 |
-
"kl":
|
| 195 |
"learning_rate": 8.244816e-06,
|
| 196 |
-
"loss":
|
| 197 |
-
"num_tokens":
|
| 198 |
-
"reward": 0.
|
| 199 |
-
"reward_std": 0.
|
| 200 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 201 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 202 |
-
"sampling/importance_sampling_ratio/max":
|
| 203 |
-
"sampling/importance_sampling_ratio/mean":
|
| 204 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 205 |
-
"sampling/sampling_logp_difference/max":
|
| 206 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 207 |
"step": 30,
|
| 208 |
-
"step_time":
|
| 209 |
},
|
| 210 |
{
|
| 211 |
-
"clip_ratio/high_max": 0.
|
| 212 |
-
"clip_ratio/high_mean": 0.
|
| 213 |
-
"clip_ratio/low_mean": 0.
|
| 214 |
-
"clip_ratio/low_min": 0.
|
| 215 |
-
"clip_ratio/region_mean": 0.
|
| 216 |
"completions/clipped_ratio": 0.0,
|
| 217 |
-
"completions/max_length":
|
| 218 |
-
"completions/max_terminated_length":
|
| 219 |
-
"completions/mean_length":
|
| 220 |
-
"completions/mean_terminated_length":
|
| 221 |
"completions/min_length": 212.0,
|
| 222 |
"completions/min_terminated_length": 212.0,
|
| 223 |
-
"entropy": 0.
|
| 224 |
-
"epoch": 0.
|
| 225 |
-
"frac_reward_zero_std": 0.
|
| 226 |
-
"grad_norm": 0.
|
| 227 |
-
"kl":
|
| 228 |
"learning_rate": 9.666336e-06,
|
| 229 |
-
"loss":
|
| 230 |
-
"num_tokens":
|
| 231 |
-
"reward": 0.
|
| 232 |
-
"reward_std": 0.
|
| 233 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 234 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 235 |
-
"sampling/importance_sampling_ratio/max":
|
| 236 |
-
"sampling/importance_sampling_ratio/mean":
|
| 237 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 238 |
-
"sampling/sampling_logp_difference/max":
|
| 239 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 240 |
"step": 35,
|
| 241 |
-
"step_time":
|
| 242 |
},
|
| 243 |
{
|
| 244 |
-
"clip_ratio/high_max": 0.
|
| 245 |
-
"clip_ratio/high_mean": 0.
|
| 246 |
-
"clip_ratio/low_mean": 0.
|
| 247 |
"clip_ratio/low_min": 0.0,
|
| 248 |
-
"clip_ratio/region_mean": 0.
|
| 249 |
"completions/clipped_ratio": 0.0,
|
| 250 |
-
"completions/max_length":
|
| 251 |
-
"completions/max_terminated_length":
|
| 252 |
-
"completions/mean_length":
|
| 253 |
-
"completions/mean_terminated_length":
|
| 254 |
-
"completions/min_length":
|
| 255 |
-
"completions/min_terminated_length":
|
| 256 |
-
"entropy": 0.
|
| 257 |
-
"epoch": 0.
|
| 258 |
-
"frac_reward_zero_std": 0.
|
| 259 |
-
"grad_norm": 0.
|
| 260 |
-
"kl": 0.
|
| 261 |
-
"learning_rate": 9.
|
| 262 |
-
"loss": 0.
|
| 263 |
-
"num_tokens":
|
| 264 |
-
"reward": 0.
|
| 265 |
-
"reward_std": 0.
|
| 266 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 267 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 268 |
-
"sampling/importance_sampling_ratio/max":
|
| 269 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 270 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 271 |
-
"sampling/sampling_logp_difference/max":
|
| 272 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 273 |
"step": 40,
|
| 274 |
-
"step_time":
|
| 275 |
},
|
| 276 |
{
|
| 277 |
-
"clip_ratio/high_max": 0.
|
| 278 |
-
"clip_ratio/high_mean": 0.
|
| 279 |
-
"clip_ratio/low_mean": 0.
|
| 280 |
-
"clip_ratio/low_min": 0.
|
| 281 |
-
"clip_ratio/region_mean": 0.
|
| 282 |
"completions/clipped_ratio": 0.0,
|
| 283 |
-
"completions/max_length": 374.
|
| 284 |
-
"completions/max_terminated_length": 374.
|
| 285 |
-
"completions/mean_length":
|
| 286 |
-
"completions/mean_terminated_length":
|
| 287 |
-
"completions/min_length":
|
| 288 |
-
"completions/min_terminated_length":
|
| 289 |
-
"entropy": 0.
|
| 290 |
-
"epoch": 0.
|
| 291 |
-
"frac_reward_zero_std": 0.
|
| 292 |
-
"grad_norm": 0.
|
| 293 |
-
"kl":
|
| 294 |
-
"learning_rate": 9.
|
| 295 |
-
"loss": 0.
|
| 296 |
-
"num_tokens":
|
| 297 |
-
"reward": 0.
|
| 298 |
-
"reward_std": 0.
|
| 299 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 300 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 301 |
-
"sampling/importance_sampling_ratio/max":
|
| 302 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 303 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 304 |
-
"sampling/sampling_logp_difference/max":
|
| 305 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 306 |
"step": 45,
|
| 307 |
-
"step_time":
|
| 308 |
},
|
| 309 |
{
|
| 310 |
-
"clip_ratio/high_max": 0.
|
| 311 |
-
"clip_ratio/high_mean": 0.
|
| 312 |
-
"clip_ratio/low_mean": 0.
|
| 313 |
-
"clip_ratio/low_min": 0.
|
| 314 |
-
"clip_ratio/region_mean": 0.
|
| 315 |
"completions/clipped_ratio": 0.0,
|
| 316 |
-
"completions/max_length":
|
| 317 |
-
"completions/max_terminated_length":
|
| 318 |
-
"completions/mean_length":
|
| 319 |
-
"completions/mean_terminated_length":
|
| 320 |
-
"completions/min_length":
|
| 321 |
-
"completions/min_terminated_length":
|
| 322 |
-
"entropy": 0.
|
| 323 |
-
"epoch": 0.
|
| 324 |
-
"frac_reward_zero_std": 0.
|
| 325 |
-
"grad_norm": 0.
|
| 326 |
-
"kl":
|
| 327 |
-
"learning_rate": 9.
|
| 328 |
-
"loss": 0.
|
| 329 |
-
"num_tokens":
|
| 330 |
-
"reward": 0.
|
| 331 |
-
"reward_std": 0.
|
| 332 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 333 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 334 |
-
"sampling/importance_sampling_ratio/max":
|
| 335 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 336 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 337 |
-
"sampling/sampling_logp_difference/max":
|
| 338 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 339 |
"step": 50,
|
| 340 |
-
"step_time":
|
| 341 |
},
|
| 342 |
{
|
| 343 |
-
"clip_ratio/high_max": 0.
|
| 344 |
-
"clip_ratio/high_mean": 0.
|
| 345 |
-
"clip_ratio/low_mean": 0.
|
| 346 |
"clip_ratio/low_min": 0.0,
|
| 347 |
-
"clip_ratio/region_mean": 0.
|
| 348 |
"completions/clipped_ratio": 0.0,
|
| 349 |
-
"completions/max_length": 373.
|
| 350 |
-
"completions/max_terminated_length": 373.
|
| 351 |
-
"completions/mean_length":
|
| 352 |
-
"completions/mean_terminated_length":
|
| 353 |
-
"completions/min_length":
|
| 354 |
-
"completions/min_terminated_length":
|
| 355 |
-
"entropy": 0.
|
| 356 |
-
"epoch": 0.
|
| 357 |
-
"frac_reward_zero_std": 0.
|
| 358 |
-
"grad_norm": 0.
|
| 359 |
-
"kl": 0.
|
| 360 |
-
"learning_rate": 9.
|
| 361 |
-
"loss": 0.
|
| 362 |
-
"num_tokens":
|
| 363 |
-
"reward": 0.
|
| 364 |
-
"reward_std": 0.
|
| 365 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 366 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 367 |
-
"sampling/importance_sampling_ratio/max":
|
| 368 |
-
"sampling/importance_sampling_ratio/mean":
|
| 369 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 370 |
-
"sampling/sampling_logp_difference/max":
|
| 371 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 372 |
"step": 55,
|
| 373 |
-
"step_time":
|
| 374 |
},
|
| 375 |
{
|
| 376 |
-
"clip_ratio/high_max": 0.
|
| 377 |
-
"clip_ratio/high_mean": 0.
|
| 378 |
-
"clip_ratio/low_mean": 0.
|
| 379 |
"clip_ratio/low_min": 0.0,
|
| 380 |
-
"clip_ratio/region_mean": 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 381 |
"completions/clipped_ratio": 0.0,
|
| 382 |
"completions/max_length": 374.0,
|
| 383 |
"completions/max_terminated_length": 374.0,
|
| 384 |
-
"completions/mean_length":
|
| 385 |
-
"completions/mean_terminated_length":
|
| 386 |
-
"completions/min_length":
|
| 387 |
-
"completions/min_terminated_length":
|
| 388 |
-
"entropy": 0.
|
| 389 |
-
"epoch": 0.
|
| 390 |
-
"frac_reward_zero_std": 0.
|
| 391 |
-
"grad_norm": 0.
|
| 392 |
-
"kl": 0.
|
| 393 |
-
"learning_rate": 9.
|
| 394 |
-
"loss": 0.
|
| 395 |
-
"num_tokens":
|
| 396 |
-
"reward": 0.
|
| 397 |
-
"reward_std": 0.
|
| 398 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 399 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 400 |
-
"sampling/importance_sampling_ratio/max":
|
| 401 |
-
"sampling/importance_sampling_ratio/mean":
|
| 402 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 403 |
-
"sampling/sampling_logp_difference/max":
|
| 404 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 405 |
-
"step":
|
| 406 |
-
"step_time":
|
| 407 |
},
|
| 408 |
{
|
| 409 |
-
"clip_ratio/high_max": 0.
|
| 410 |
-
"clip_ratio/high_mean": 0.
|
| 411 |
-
"clip_ratio/low_mean": 0.
|
| 412 |
"clip_ratio/low_min": 0.0,
|
| 413 |
-
"clip_ratio/region_mean": 0.
|
| 414 |
"completions/clipped_ratio": 0.0,
|
| 415 |
"completions/max_length": 374.0,
|
| 416 |
"completions/max_terminated_length": 374.0,
|
| 417 |
-
"completions/mean_length":
|
| 418 |
-
"completions/mean_terminated_length":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 419 |
"completions/min_length": 212.0,
|
| 420 |
"completions/min_terminated_length": 212.0,
|
| 421 |
-
"entropy": 0.
|
| 422 |
-
"epoch": 0.
|
| 423 |
-
"frac_reward_zero_std": 0.
|
| 424 |
-
"grad_norm": 0.
|
| 425 |
-
"kl":
|
| 426 |
-
"learning_rate": 9.
|
| 427 |
-
"loss": 0.
|
| 428 |
-
"num_tokens":
|
| 429 |
-
"reward": 0.
|
| 430 |
-
"reward_std": 0.
|
| 431 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 432 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 433 |
-
"sampling/importance_sampling_ratio/max":
|
| 434 |
-
"sampling/importance_sampling_ratio/mean":
|
| 435 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 436 |
-
"sampling/sampling_logp_difference/max":
|
| 437 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 438 |
-
"step":
|
| 439 |
-
"step_time":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 440 |
}
|
| 441 |
],
|
| 442 |
"logging_steps": 5,
|
| 443 |
-
"max_steps":
|
| 444 |
-
"num_input_tokens_seen":
|
| 445 |
"num_train_epochs": 3,
|
| 446 |
"save_steps": 500,
|
| 447 |
"stateful_callbacks": {
|
|
@@ -451,13 +550,13 @@
|
|
| 451 |
"should_evaluate": false,
|
| 452 |
"should_log": false,
|
| 453 |
"should_save": true,
|
| 454 |
-
"should_training_stop":
|
| 455 |
},
|
| 456 |
"attributes": {}
|
| 457 |
}
|
| 458 |
},
|
| 459 |
"total_flos": 0.0,
|
| 460 |
-
"train_batch_size":
|
| 461 |
"trial_name": null,
|
| 462 |
"trial_params": null
|
| 463 |
}
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.012,
|
| 6 |
"eval_steps": 500,
|
| 7 |
+
"global_step": 75,
|
| 8 |
"is_hyper_param_search": false,
|
| 9 |
"is_local_process_zero": true,
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"clip_ratio/high_max": 0.014437134563922881,
|
| 14 |
+
"clip_ratio/high_mean": 0.007218567281961441,
|
| 15 |
+
"clip_ratio/low_mean": 0.005763888917863369,
|
| 16 |
"clip_ratio/low_min": 0.0,
|
| 17 |
+
"clip_ratio/region_mean": 0.01298245619982481,
|
| 18 |
"completions/clipped_ratio": 0.0,
|
| 19 |
+
"completions/max_length": 374.0,
|
| 20 |
+
"completions/max_terminated_length": 374.0,
|
| 21 |
+
"completions/mean_length": 294.78125,
|
| 22 |
+
"completions/mean_terminated_length": 294.78125,
|
| 23 |
+
"completions/min_length": 189.6,
|
| 24 |
+
"completions/min_terminated_length": 189.6,
|
| 25 |
+
"entropy": 0.35714133381843566,
|
| 26 |
+
"epoch": 0.0008,
|
| 27 |
+
"frac_reward_zero_std": 0.475,
|
| 28 |
+
"grad_norm": 0.14499153196811676,
|
| 29 |
+
"kl": 0.006699140788987279,
|
| 30 |
"learning_rate": 1.137216e-06,
|
| 31 |
+
"loss": 0.0004814713727682829,
|
| 32 |
+
"num_tokens": 136090.0,
|
| 33 |
+
"reward": 0.292125004529953,
|
| 34 |
+
"reward_std": 0.2656953722238541,
|
| 35 |
+
"rewards/env_goofspiel_reward/mean": 0.292125004529953,
|
| 36 |
+
"rewards/env_goofspiel_reward/std": 0.41643730401992796,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.8895051956176758,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 0.9195514798164368,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.2350650832056999,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 1.6994480609893798,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.09322866201400756,
|
| 42 |
"step": 5,
|
| 43 |
+
"step_time": 5.709857220399681
|
| 44 |
},
|
| 45 |
{
|
| 46 |
+
"clip_ratio/high_max": 0.02671568635851145,
|
| 47 |
+
"clip_ratio/high_mean": 0.013357843179255724,
|
| 48 |
+
"clip_ratio/low_mean": 0.016053921636193992,
|
| 49 |
"clip_ratio/low_min": 0.0,
|
| 50 |
+
"clip_ratio/region_mean": 0.029411764815449715,
|
| 51 |
"completions/clipped_ratio": 0.0,
|
| 52 |
+
"completions/max_length": 374.2,
|
| 53 |
+
"completions/max_terminated_length": 374.2,
|
| 54 |
+
"completions/mean_length": 290.54375,
|
| 55 |
+
"completions/mean_terminated_length": 290.54375,
|
| 56 |
+
"completions/min_length": 194.4,
|
| 57 |
+
"completions/min_terminated_length": 194.4,
|
| 58 |
+
"entropy": 0.36814531981945037,
|
| 59 |
+
"epoch": 0.0016,
|
| 60 |
+
"frac_reward_zero_std": 0.55,
|
| 61 |
+
"grad_norm": 0.15409794449806213,
|
| 62 |
+
"kl": 0.024915735074318945,
|
| 63 |
"learning_rate": 2.5587359999999995e-06,
|
| 64 |
+
"loss": 0.00025723695289343597,
|
| 65 |
+
"num_tokens": 271136.0,
|
| 66 |
+
"reward": 0.30362500846385954,
|
| 67 |
+
"reward_std": 0.21761211454868318,
|
| 68 |
+
"rewards/env_goofspiel_reward/mean": 0.30362500846385954,
|
| 69 |
+
"rewards/env_goofspiel_reward/std": 0.40538435578346255,
|
| 70 |
+
"sampling/importance_sampling_ratio/max": 2.3090060234069822,
|
| 71 |
+
"sampling/importance_sampling_ratio/mean": 0.9982686519622803,
|
| 72 |
+
"sampling/importance_sampling_ratio/min": 0.11310269832611083,
|
| 73 |
+
"sampling/sampling_logp_difference/max": 1.6586394786834717,
|
| 74 |
+
"sampling/sampling_logp_difference/mean": 0.09253094047307968,
|
| 75 |
"step": 10,
|
| 76 |
+
"step_time": 5.373984831200687
|
| 77 |
},
|
| 78 |
{
|
| 79 |
+
"clip_ratio/high_max": 0.030514705926179886,
|
| 80 |
+
"clip_ratio/high_mean": 0.01672794120386243,
|
| 81 |
+
"clip_ratio/low_mean": 0.01482843142002821,
|
| 82 |
"clip_ratio/low_min": 0.0,
|
| 83 |
+
"clip_ratio/region_mean": 0.03155637262389064,
|
| 84 |
"completions/clipped_ratio": 0.0,
|
| 85 |
+
"completions/max_length": 375.6,
|
| 86 |
+
"completions/max_terminated_length": 375.6,
|
| 87 |
+
"completions/mean_length": 283.45625,
|
| 88 |
+
"completions/mean_terminated_length": 283.45625,
|
| 89 |
+
"completions/min_length": 194.6,
|
| 90 |
+
"completions/min_terminated_length": 194.6,
|
| 91 |
+
"entropy": 0.38065551668405534,
|
| 92 |
+
"epoch": 0.0024,
|
| 93 |
+
"frac_reward_zero_std": 0.4375,
|
| 94 |
+
"grad_norm": 0.0815606489777565,
|
| 95 |
+
"kl": 0.02344995441380888,
|
| 96 |
"learning_rate": 3.9802559999999995e-06,
|
| 97 |
+
"loss": 0.000516003929078579,
|
| 98 |
+
"num_tokens": 403825.0,
|
| 99 |
+
"reward": 0.35987500548362733,
|
| 100 |
+
"reward_std": 0.2653418242931366,
|
| 101 |
+
"rewards/env_goofspiel_reward/mean": 0.35987500548362733,
|
| 102 |
+
"rewards/env_goofspiel_reward/std": 0.4154684245586395,
|
| 103 |
+
"sampling/importance_sampling_ratio/max": 1.841845488548279,
|
| 104 |
+
"sampling/importance_sampling_ratio/mean": 0.9473352670669556,
|
| 105 |
+
"sampling/importance_sampling_ratio/min": 0.2071388103067875,
|
| 106 |
+
"sampling/sampling_logp_difference/max": 1.491676390171051,
|
| 107 |
+
"sampling/sampling_logp_difference/mean": 0.09024534374475479,
|
| 108 |
"step": 15,
|
| 109 |
+
"step_time": 5.279587671000627
|
| 110 |
},
|
| 111 |
{
|
| 112 |
+
"clip_ratio/high_max": 0.023333333432674408,
|
| 113 |
+
"clip_ratio/high_mean": 0.011666666716337204,
|
| 114 |
+
"clip_ratio/low_mean": 0.012774122878909111,
|
| 115 |
"clip_ratio/low_min": 0.0,
|
| 116 |
+
"clip_ratio/region_mean": 0.024440789688378574,
|
| 117 |
"completions/clipped_ratio": 0.0,
|
| 118 |
+
"completions/max_length": 373.8,
|
| 119 |
+
"completions/max_terminated_length": 373.8,
|
| 120 |
+
"completions/mean_length": 279.5875,
|
| 121 |
+
"completions/mean_terminated_length": 279.5875,
|
| 122 |
+
"completions/min_length": 206.8,
|
| 123 |
+
"completions/min_terminated_length": 206.8,
|
| 124 |
+
"entropy": 0.3506437622010708,
|
| 125 |
+
"epoch": 0.0032,
|
| 126 |
+
"frac_reward_zero_std": 0.4625,
|
| 127 |
+
"grad_norm": 0.12220246344804764,
|
| 128 |
+
"kl": 0.23682632837444545,
|
| 129 |
"learning_rate": 5.401775999999999e-06,
|
| 130 |
+
"loss": -0.0002838193904608488,
|
| 131 |
+
"num_tokens": 535747.0,
|
| 132 |
+
"reward": 0.374812513589859,
|
| 133 |
+
"reward_std": 0.24421700537204744,
|
| 134 |
+
"rewards/env_goofspiel_reward/mean": 0.374812513589859,
|
| 135 |
+
"rewards/env_goofspiel_reward/std": 0.39649735689163207,
|
| 136 |
+
"sampling/importance_sampling_ratio/max": 2.3718762159347535,
|
| 137 |
+
"sampling/importance_sampling_ratio/mean": 0.9897154331207275,
|
| 138 |
+
"sampling/importance_sampling_ratio/min": 0.2213693767786026,
|
| 139 |
+
"sampling/sampling_logp_difference/max": 2.0126638174057008,
|
| 140 |
+
"sampling/sampling_logp_difference/mean": 0.10554229319095612,
|
| 141 |
"step": 20,
|
| 142 |
+
"step_time": 5.332370807199913
|
| 143 |
},
|
| 144 |
{
|
| 145 |
+
"clip_ratio/high_max": 0.029443860985338688,
|
| 146 |
+
"clip_ratio/high_mean": 0.016110819298774004,
|
| 147 |
+
"clip_ratio/low_mean": 0.027831450570374727,
|
| 148 |
+
"clip_ratio/low_min": 0.011572128906846047,
|
| 149 |
+
"clip_ratio/region_mean": 0.04394227024167776,
|
| 150 |
"completions/clipped_ratio": 0.0,
|
| 151 |
+
"completions/max_length": 374.4,
|
| 152 |
+
"completions/max_terminated_length": 374.4,
|
| 153 |
+
"completions/mean_length": 301.0375,
|
| 154 |
+
"completions/mean_terminated_length": 301.0375,
|
| 155 |
+
"completions/min_length": 218.8,
|
| 156 |
+
"completions/min_terminated_length": 218.8,
|
| 157 |
+
"entropy": 0.3545067012310028,
|
| 158 |
+
"epoch": 0.004,
|
| 159 |
+
"frac_reward_zero_std": 0.35,
|
| 160 |
+
"grad_norm": 0.09991537779569626,
|
| 161 |
+
"kl": 0.6746378809213638,
|
| 162 |
"learning_rate": 6.8232959999999994e-06,
|
| 163 |
+
"loss": -0.0003991848789155483,
|
| 164 |
+
"num_tokens": 673746.0,
|
| 165 |
+
"reward": 0.34875001609325407,
|
| 166 |
+
"reward_std": 0.3128947615623474,
|
| 167 |
+
"rewards/env_goofspiel_reward/mean": 0.34875001609325407,
|
| 168 |
+
"rewards/env_goofspiel_reward/std": 0.3975376784801483,
|
| 169 |
+
"sampling/importance_sampling_ratio/max": 2.3523300170898436,
|
| 170 |
+
"sampling/importance_sampling_ratio/mean": 0.9350853443145752,
|
| 171 |
+
"sampling/importance_sampling_ratio/min": 0.03211224116384983,
|
| 172 |
+
"sampling/sampling_logp_difference/max": 2.597071409225464,
|
| 173 |
+
"sampling/sampling_logp_difference/mean": 0.14846422374248505,
|
| 174 |
"step": 25,
|
| 175 |
+
"step_time": 5.470841645199835
|
| 176 |
},
|
| 177 |
{
|
| 178 |
+
"clip_ratio/high_max": 0.015093954280018806,
|
| 179 |
+
"clip_ratio/high_mean": 0.007546977140009403,
|
| 180 |
+
"clip_ratio/low_mean": 0.01916505442932248,
|
| 181 |
+
"clip_ratio/low_min": 0.005625000037252903,
|
| 182 |
+
"clip_ratio/region_mean": 0.026712031569331884,
|
| 183 |
"completions/clipped_ratio": 0.0,
|
| 184 |
+
"completions/max_length": 374.0,
|
| 185 |
+
"completions/max_terminated_length": 374.0,
|
| 186 |
+
"completions/mean_length": 283.44375,
|
| 187 |
+
"completions/mean_terminated_length": 283.44375,
|
| 188 |
+
"completions/min_length": 212.0,
|
| 189 |
+
"completions/min_terminated_length": 212.0,
|
| 190 |
+
"entropy": 0.3386394247412682,
|
| 191 |
+
"epoch": 0.0048,
|
| 192 |
+
"frac_reward_zero_std": 0.5625,
|
| 193 |
+
"grad_norm": 0.05208470672369003,
|
| 194 |
+
"kl": 3.1543088920414446,
|
| 195 |
"learning_rate": 8.244816e-06,
|
| 196 |
+
"loss": 3.84216895326972e-05,
|
| 197 |
+
"num_tokens": 805457.0,
|
| 198 |
+
"reward": 0.41250001192092894,
|
| 199 |
+
"reward_std": 0.2121320277452469,
|
| 200 |
+
"rewards/env_goofspiel_reward/mean": 0.41250001192092894,
|
| 201 |
+
"rewards/env_goofspiel_reward/std": 0.39523468613624574,
|
| 202 |
+
"sampling/importance_sampling_ratio/max": 2.1884907484054565,
|
| 203 |
+
"sampling/importance_sampling_ratio/mean": 0.9641352295875549,
|
| 204 |
+
"sampling/importance_sampling_ratio/min": 0.17558300793170928,
|
| 205 |
+
"sampling/sampling_logp_difference/max": 1.910474991798401,
|
| 206 |
+
"sampling/sampling_logp_difference/mean": 0.11390596330165863,
|
| 207 |
"step": 30,
|
| 208 |
+
"step_time": 5.248301958399679
|
| 209 |
},
|
| 210 |
{
|
| 211 |
+
"clip_ratio/high_max": 0.021911457646638155,
|
| 212 |
+
"clip_ratio/high_mean": 0.010955728823319077,
|
| 213 |
+
"clip_ratio/low_mean": 0.016263545025140047,
|
| 214 |
+
"clip_ratio/low_min": 0.002631578966975212,
|
| 215 |
+
"clip_ratio/region_mean": 0.02721927403472364,
|
| 216 |
"completions/clipped_ratio": 0.0,
|
| 217 |
+
"completions/max_length": 366.0,
|
| 218 |
+
"completions/max_terminated_length": 366.0,
|
| 219 |
+
"completions/mean_length": 290.6625,
|
| 220 |
+
"completions/mean_terminated_length": 290.6625,
|
| 221 |
"completions/min_length": 212.0,
|
| 222 |
"completions/min_terminated_length": 212.0,
|
| 223 |
+
"entropy": 0.4240268304944038,
|
| 224 |
+
"epoch": 0.0056,
|
| 225 |
+
"frac_reward_zero_std": 0.4,
|
| 226 |
+
"grad_norm": 0.08057750761508942,
|
| 227 |
+
"kl": 1.8736468333750964,
|
| 228 |
"learning_rate": 9.666336e-06,
|
| 229 |
+
"loss": -2.150831278413534e-05,
|
| 230 |
+
"num_tokens": 940033.0,
|
| 231 |
+
"reward": 0.4274375081062317,
|
| 232 |
+
"reward_std": 0.2758600294589996,
|
| 233 |
+
"rewards/env_goofspiel_reward/mean": 0.4274375081062317,
|
| 234 |
+
"rewards/env_goofspiel_reward/std": 0.4116846978664398,
|
| 235 |
+
"sampling/importance_sampling_ratio/max": 2.5006643772125243,
|
| 236 |
+
"sampling/importance_sampling_ratio/mean": 0.966198992729187,
|
| 237 |
+
"sampling/importance_sampling_ratio/min": 0.07496144040487707,
|
| 238 |
+
"sampling/sampling_logp_difference/max": 2.63707594871521,
|
| 239 |
+
"sampling/sampling_logp_difference/mean": 0.1406691253185272,
|
| 240 |
"step": 35,
|
| 241 |
+
"step_time": 5.299385342999813
|
| 242 |
},
|
| 243 |
{
|
| 244 |
+
"clip_ratio/high_max": 0.020319487527012826,
|
| 245 |
+
"clip_ratio/high_mean": 0.010159743763506413,
|
| 246 |
+
"clip_ratio/low_mean": 0.007234477158635855,
|
| 247 |
"clip_ratio/low_min": 0.0,
|
| 248 |
+
"clip_ratio/region_mean": 0.017394221015274526,
|
| 249 |
"completions/clipped_ratio": 0.0,
|
| 250 |
+
"completions/max_length": 374.2,
|
| 251 |
+
"completions/max_terminated_length": 374.2,
|
| 252 |
+
"completions/mean_length": 289.475,
|
| 253 |
+
"completions/mean_terminated_length": 289.475,
|
| 254 |
+
"completions/min_length": 207.0,
|
| 255 |
+
"completions/min_terminated_length": 207.0,
|
| 256 |
+
"entropy": 0.6166644155979156,
|
| 257 |
+
"epoch": 0.0064,
|
| 258 |
+
"frac_reward_zero_std": 0.5,
|
| 259 |
+
"grad_norm": 0.051475733518600464,
|
| 260 |
+
"kl": 0.6312531501054763,
|
| 261 |
+
"learning_rate": 9.95063915881342e-06,
|
| 262 |
+
"loss": 0.0008587016724050045,
|
| 263 |
+
"num_tokens": 1074989.0,
|
| 264 |
+
"reward": 0.2586875051259995,
|
| 265 |
+
"reward_std": 0.2599501311779022,
|
| 266 |
+
"rewards/env_goofspiel_reward/mean": 0.2586875051259995,
|
| 267 |
+
"rewards/env_goofspiel_reward/std": 0.38087824583053587,
|
| 268 |
+
"sampling/importance_sampling_ratio/max": 2.293054127693176,
|
| 269 |
+
"sampling/importance_sampling_ratio/mean": 0.9133782982826233,
|
| 270 |
+
"sampling/importance_sampling_ratio/min": 0.09586721286177635,
|
| 271 |
+
"sampling/sampling_logp_difference/max": 1.7645570278167724,
|
| 272 |
+
"sampling/sampling_logp_difference/mean": 0.1391677066683769,
|
| 273 |
"step": 40,
|
| 274 |
+
"step_time": 5.214609204999943
|
| 275 |
},
|
| 276 |
{
|
| 277 |
+
"clip_ratio/high_max": 0.01441670972853899,
|
| 278 |
+
"clip_ratio/high_mean": 0.007208354864269495,
|
| 279 |
+
"clip_ratio/low_mean": 0.005737766716629266,
|
| 280 |
+
"clip_ratio/low_min": 0.002631578966975212,
|
| 281 |
+
"clip_ratio/region_mean": 0.012946121580898761,
|
| 282 |
"completions/clipped_ratio": 0.0,
|
| 283 |
+
"completions/max_length": 374.2,
|
| 284 |
+
"completions/max_terminated_length": 374.2,
|
| 285 |
+
"completions/mean_length": 294.13125,
|
| 286 |
+
"completions/mean_terminated_length": 294.13125,
|
| 287 |
+
"completions/min_length": 184.6,
|
| 288 |
+
"completions/min_terminated_length": 184.6,
|
| 289 |
+
"entropy": 0.7186032980680466,
|
| 290 |
+
"epoch": 0.0072,
|
| 291 |
+
"frac_reward_zero_std": 0.5125,
|
| 292 |
+
"grad_norm": 0.10908176004886627,
|
| 293 |
+
"kl": 0.9199723824858665,
|
| 294 |
+
"learning_rate": 9.950635741493589e-06,
|
| 295 |
+
"loss": 0.0010974571108818055,
|
| 296 |
+
"num_tokens": 1211700.0,
|
| 297 |
+
"reward": 0.20568750202655792,
|
| 298 |
+
"reward_std": 0.21823083460330964,
|
| 299 |
+
"rewards/env_goofspiel_reward/mean": 0.20568750202655792,
|
| 300 |
+
"rewards/env_goofspiel_reward/std": 0.3572053849697113,
|
| 301 |
+
"sampling/importance_sampling_ratio/max": 2.1740296363830565,
|
| 302 |
+
"sampling/importance_sampling_ratio/mean": 0.8587659239768982,
|
| 303 |
+
"sampling/importance_sampling_ratio/min": 0.19039739817380905,
|
| 304 |
+
"sampling/sampling_logp_difference/max": 1.302869963645935,
|
| 305 |
+
"sampling/sampling_logp_difference/mean": 0.159588959813118,
|
| 306 |
"step": 45,
|
| 307 |
+
"step_time": 5.3400724014001755
|
| 308 |
},
|
| 309 |
{
|
| 310 |
+
"clip_ratio/high_max": 0.014580108411610126,
|
| 311 |
+
"clip_ratio/high_mean": 0.008760642446577548,
|
| 312 |
+
"clip_ratio/low_mean": 0.005718954280018807,
|
| 313 |
+
"clip_ratio/low_min": 0.002777777798473835,
|
| 314 |
+
"clip_ratio/region_mean": 0.014479596912860871,
|
| 315 |
"completions/clipped_ratio": 0.0,
|
| 316 |
+
"completions/max_length": 374.0,
|
| 317 |
+
"completions/max_terminated_length": 374.0,
|
| 318 |
+
"completions/mean_length": 298.4875,
|
| 319 |
+
"completions/mean_terminated_length": 298.4875,
|
| 320 |
+
"completions/min_length": 194.6,
|
| 321 |
+
"completions/min_terminated_length": 194.6,
|
| 322 |
+
"entropy": 0.7520321547985077,
|
| 323 |
+
"epoch": 0.008,
|
| 324 |
+
"frac_reward_zero_std": 0.55,
|
| 325 |
+
"grad_norm": 0.07008689641952515,
|
| 326 |
+
"kl": 1.4948164954781533,
|
| 327 |
+
"learning_rate": 9.950629695468755e-06,
|
| 328 |
+
"loss": 0.000722643407061696,
|
| 329 |
+
"num_tokens": 1348707.0,
|
| 330 |
+
"reward": 0.19093750715255736,
|
| 331 |
+
"reward_std": 0.18605746924877167,
|
| 332 |
+
"rewards/env_goofspiel_reward/mean": 0.19093750715255736,
|
| 333 |
+
"rewards/env_goofspiel_reward/std": 0.32617470622062683,
|
| 334 |
+
"sampling/importance_sampling_ratio/max": 2.441471576690674,
|
| 335 |
+
"sampling/importance_sampling_ratio/mean": 0.8815865159034729,
|
| 336 |
+
"sampling/importance_sampling_ratio/min": 0.047414033114910124,
|
| 337 |
+
"sampling/sampling_logp_difference/max": 1.4149149417877198,
|
| 338 |
+
"sampling/sampling_logp_difference/mean": 0.17731134295463563,
|
| 339 |
"step": 50,
|
| 340 |
+
"step_time": 5.3226749666000615
|
| 341 |
},
|
| 342 |
{
|
| 343 |
+
"clip_ratio/high_max": 0.017320261523127555,
|
| 344 |
+
"clip_ratio/high_mean": 0.008660130761563778,
|
| 345 |
+
"clip_ratio/low_mean": 0.0015625,
|
| 346 |
"clip_ratio/low_min": 0.0,
|
| 347 |
+
"clip_ratio/region_mean": 0.010222630761563777,
|
| 348 |
"completions/clipped_ratio": 0.0,
|
| 349 |
+
"completions/max_length": 373.6,
|
| 350 |
+
"completions/max_terminated_length": 373.6,
|
| 351 |
+
"completions/mean_length": 284.1125,
|
| 352 |
+
"completions/mean_terminated_length": 284.1125,
|
| 353 |
+
"completions/min_length": 200.0,
|
| 354 |
+
"completions/min_terminated_length": 200.0,
|
| 355 |
+
"entropy": 0.7574372291564941,
|
| 356 |
+
"epoch": 0.0088,
|
| 357 |
+
"frac_reward_zero_std": 0.6125,
|
| 358 |
+
"grad_norm": 0.05677078291773796,
|
| 359 |
+
"kl": 0.9213189110159874,
|
| 360 |
+
"learning_rate": 9.950621020743173e-06,
|
| 361 |
+
"loss": 0.00019418969750404358,
|
| 362 |
+
"num_tokens": 1481168.0,
|
| 363 |
+
"reward": 0.16468750387430192,
|
| 364 |
+
"reward_std": 0.15954096913337706,
|
| 365 |
+
"rewards/env_goofspiel_reward/mean": 0.16468750387430192,
|
| 366 |
+
"rewards/env_goofspiel_reward/std": 0.3025706380605698,
|
| 367 |
+
"sampling/importance_sampling_ratio/max": 2.087395262718201,
|
| 368 |
+
"sampling/importance_sampling_ratio/mean": 0.9323906660079956,
|
| 369 |
+
"sampling/importance_sampling_ratio/min": 0.12477300018072128,
|
| 370 |
+
"sampling/sampling_logp_difference/max": 1.5357290506362915,
|
| 371 |
+
"sampling/sampling_logp_difference/mean": 0.16227305233478545,
|
| 372 |
"step": 55,
|
| 373 |
+
"step_time": 5.239984228400317
|
| 374 |
},
|
| 375 |
{
|
| 376 |
+
"clip_ratio/high_max": 0.011312134563922882,
|
| 377 |
+
"clip_ratio/high_mean": 0.005656067281961441,
|
| 378 |
+
"clip_ratio/low_mean": 0.008540054224431515,
|
| 379 |
"clip_ratio/low_min": 0.0,
|
| 380 |
+
"clip_ratio/region_mean": 0.014196121599525213,
|
| 381 |
+
"completions/clipped_ratio": 0.0,
|
| 382 |
+
"completions/max_length": 374.8,
|
| 383 |
+
"completions/max_terminated_length": 374.8,
|
| 384 |
+
"completions/mean_length": 294.125,
|
| 385 |
+
"completions/mean_terminated_length": 294.125,
|
| 386 |
+
"completions/min_length": 218.4,
|
| 387 |
+
"completions/min_terminated_length": 218.4,
|
| 388 |
+
"entropy": 0.7390435010194778,
|
| 389 |
+
"epoch": 0.0096,
|
| 390 |
+
"frac_reward_zero_std": 0.5,
|
| 391 |
+
"grad_norm": 0.059227459132671356,
|
| 392 |
+
"kl": 0.8731714501976967,
|
| 393 |
+
"learning_rate": 9.950609717322956e-06,
|
| 394 |
+
"loss": 0.00016935726162046195,
|
| 395 |
+
"num_tokens": 1616969.0,
|
| 396 |
+
"reward": 0.22868750393390655,
|
| 397 |
+
"reward_std": 0.23873692452907563,
|
| 398 |
+
"rewards/env_goofspiel_reward/mean": 0.22868750393390655,
|
| 399 |
+
"rewards/env_goofspiel_reward/std": 0.3541231632232666,
|
| 400 |
+
"sampling/importance_sampling_ratio/max": 2.4580262422561647,
|
| 401 |
+
"sampling/importance_sampling_ratio/mean": 1.027009415626526,
|
| 402 |
+
"sampling/importance_sampling_ratio/min": 0.08994593024253845,
|
| 403 |
+
"sampling/sampling_logp_difference/max": 1.2262043237686158,
|
| 404 |
+
"sampling/sampling_logp_difference/mean": 0.15936054587364196,
|
| 405 |
+
"step": 60,
|
| 406 |
+
"step_time": 5.197383608799828
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"clip_ratio/high_max": 0.003125,
|
| 410 |
+
"clip_ratio/high_mean": 0.0015625,
|
| 411 |
+
"clip_ratio/low_mean": 0.004093567281961441,
|
| 412 |
+
"clip_ratio/low_min": 0.0,
|
| 413 |
+
"clip_ratio/region_mean": 0.005656067281961441,
|
| 414 |
"completions/clipped_ratio": 0.0,
|
| 415 |
"completions/max_length": 374.0,
|
| 416 |
"completions/max_terminated_length": 374.0,
|
| 417 |
+
"completions/mean_length": 272.7125,
|
| 418 |
+
"completions/mean_terminated_length": 272.7125,
|
| 419 |
+
"completions/min_length": 207.0,
|
| 420 |
+
"completions/min_terminated_length": 207.0,
|
| 421 |
+
"entropy": 0.641479243338108,
|
| 422 |
+
"epoch": 0.0104,
|
| 423 |
+
"frac_reward_zero_std": 0.5125,
|
| 424 |
+
"grad_norm": 0.052345700562000275,
|
| 425 |
+
"kl": 0.8409833669662475,
|
| 426 |
+
"learning_rate": 9.950595785216067e-06,
|
| 427 |
+
"loss": -0.0004354896955192089,
|
| 428 |
+
"num_tokens": 1745735.0,
|
| 429 |
+
"reward": 0.30350000858306886,
|
| 430 |
+
"reward_std": 0.24943190813064575,
|
| 431 |
+
"rewards/env_goofspiel_reward/mean": 0.30350000858306886,
|
| 432 |
+
"rewards/env_goofspiel_reward/std": 0.43262303471565244,
|
| 433 |
+
"sampling/importance_sampling_ratio/max": 2.308809924125671,
|
| 434 |
+
"sampling/importance_sampling_ratio/mean": 0.9729154109954834,
|
| 435 |
+
"sampling/importance_sampling_ratio/min": 0.2105877071619034,
|
| 436 |
+
"sampling/sampling_logp_difference/max": 1.216427493095398,
|
| 437 |
+
"sampling/sampling_logp_difference/mean": 0.14146182239055632,
|
| 438 |
+
"step": 65,
|
| 439 |
+
"step_time": 5.165435432399863
|
| 440 |
},
|
| 441 |
{
|
| 442 |
+
"clip_ratio/high_max": 0.008823529444634914,
|
| 443 |
+
"clip_ratio/high_mean": 0.004411764722317457,
|
| 444 |
+
"clip_ratio/low_mean": 0.004421977140009403,
|
| 445 |
"clip_ratio/low_min": 0.0,
|
| 446 |
+
"clip_ratio/region_mean": 0.00883374186232686,
|
| 447 |
"completions/clipped_ratio": 0.0,
|
| 448 |
"completions/max_length": 374.0,
|
| 449 |
"completions/max_terminated_length": 374.0,
|
| 450 |
+
"completions/mean_length": 279.70625,
|
| 451 |
+
"completions/mean_terminated_length": 279.70625,
|
| 452 |
+
"completions/min_length": 194.6,
|
| 453 |
+
"completions/min_terminated_length": 194.6,
|
| 454 |
+
"entropy": 0.5012152880430222,
|
| 455 |
+
"epoch": 0.0112,
|
| 456 |
+
"frac_reward_zero_std": 0.325,
|
| 457 |
+
"grad_norm": 0.08534521609544754,
|
| 458 |
+
"kl": 0.8132658362388611,
|
| 459 |
+
"learning_rate": 9.950579224432321e-06,
|
| 460 |
+
"loss": -0.0004163400735706091,
|
| 461 |
+
"num_tokens": 1877877.0,
|
| 462 |
+
"reward": 0.4497500121593475,
|
| 463 |
+
"reward_std": 0.32915821075439455,
|
| 464 |
+
"rewards/env_goofspiel_reward/mean": 0.4497500121593475,
|
| 465 |
+
"rewards/env_goofspiel_reward/std": 0.4289704501628876,
|
| 466 |
+
"sampling/importance_sampling_ratio/max": 2.469445323944092,
|
| 467 |
+
"sampling/importance_sampling_ratio/mean": 0.9713802933692932,
|
| 468 |
+
"sampling/importance_sampling_ratio/min": 0.1933848649263382,
|
| 469 |
+
"sampling/sampling_logp_difference/max": 1.2900412559509278,
|
| 470 |
+
"sampling/sampling_logp_difference/mean": 0.12238389104604722,
|
| 471 |
+
"step": 70,
|
| 472 |
+
"step_time": 5.296977608999805
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"clip_ratio/high_max": 0.005409356765449047,
|
| 476 |
+
"clip_ratio/high_mean": 0.0027046783827245234,
|
| 477 |
+
"clip_ratio/low_mean": 0.011513618659228087,
|
| 478 |
+
"clip_ratio/low_min": 0.0,
|
| 479 |
+
"clip_ratio/region_mean": 0.01421829704195261,
|
| 480 |
+
"completions/clipped_ratio": 0.0,
|
| 481 |
+
"completions/max_length": 374.4,
|
| 482 |
+
"completions/max_terminated_length": 374.4,
|
| 483 |
+
"completions/mean_length": 292.43125,
|
| 484 |
+
"completions/mean_terminated_length": 292.43125,
|
| 485 |
"completions/min_length": 212.0,
|
| 486 |
"completions/min_terminated_length": 212.0,
|
| 487 |
+
"entropy": 0.39477833807468415,
|
| 488 |
+
"epoch": 0.012,
|
| 489 |
+
"frac_reward_zero_std": 0.45,
|
| 490 |
+
"grad_norm": 0.08385973423719406,
|
| 491 |
+
"kl": 0.9824723288416862,
|
| 492 |
+
"learning_rate": 9.950560034983382e-06,
|
| 493 |
+
"loss": -0.0006953636649996043,
|
| 494 |
+
"num_tokens": 2012929.0,
|
| 495 |
+
"reward": 0.5398125350475311,
|
| 496 |
+
"reward_std": 0.2548236042261124,
|
| 497 |
+
"rewards/env_goofspiel_reward/mean": 0.5398125350475311,
|
| 498 |
+
"rewards/env_goofspiel_reward/std": 0.4067754566669464,
|
| 499 |
+
"sampling/importance_sampling_ratio/max": 2.476490020751953,
|
| 500 |
+
"sampling/importance_sampling_ratio/mean": 0.9818659067153931,
|
| 501 |
+
"sampling/importance_sampling_ratio/min": 0.04677087515592575,
|
| 502 |
+
"sampling/sampling_logp_difference/max": 1.8360216617584229,
|
| 503 |
+
"sampling/sampling_logp_difference/mean": 0.1339985266327858,
|
| 504 |
+
"step": 75,
|
| 505 |
+
"step_time": 5.25195668339984
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"epoch": 0.012,
|
| 509 |
+
"eval_clip_ratio/high_max": 0.0,
|
| 510 |
+
"eval_clip_ratio/high_mean": 0.0,
|
| 511 |
+
"eval_clip_ratio/low_mean": 0.0,
|
| 512 |
+
"eval_clip_ratio/low_min": 0.0,
|
| 513 |
+
"eval_clip_ratio/region_mean": 0.0,
|
| 514 |
+
"eval_completions/clipped_ratio": 0.0,
|
| 515 |
+
"eval_completions/max_length": 310.0,
|
| 516 |
+
"eval_completions/max_terminated_length": 310.0,
|
| 517 |
+
"eval_completions/mean_length": 274.9,
|
| 518 |
+
"eval_completions/mean_terminated_length": 274.9,
|
| 519 |
+
"eval_completions/min_length": 241.2,
|
| 520 |
+
"eval_completions/min_terminated_length": 241.2,
|
| 521 |
+
"eval_entropy": 0.2987076103687286,
|
| 522 |
+
"eval_frac_reward_zero_std": 0.6,
|
| 523 |
+
"eval_kl": 0.8131496548652649,
|
| 524 |
+
"eval_loss": -0.0002675331197679043,
|
| 525 |
+
"eval_num_tokens": 2012929.0,
|
| 526 |
+
"eval_reward": 0.5700000166893006,
|
| 527 |
+
"eval_reward_std": 0.2121320366859436,
|
| 528 |
+
"eval_rewards/env_goofspiel_reward/mean": 0.5700000166893006,
|
| 529 |
+
"eval_rewards/env_goofspiel_reward/std": 0.3252412259578705,
|
| 530 |
+
"eval_runtime": 2.5856,
|
| 531 |
+
"eval_samples_per_second": 3.868,
|
| 532 |
+
"eval_sampling/importance_sampling_ratio/max": 1.6977968692779541,
|
| 533 |
+
"eval_sampling/importance_sampling_ratio/mean": 0.947873055934906,
|
| 534 |
+
"eval_sampling/importance_sampling_ratio/min": 0.2541299909353256,
|
| 535 |
+
"eval_sampling/sampling_logp_difference/max": 1.3066397070884705,
|
| 536 |
+
"eval_sampling/sampling_logp_difference/mean": 0.14956869557499886,
|
| 537 |
+
"eval_steps_per_second": 1.16,
|
| 538 |
+
"step": 75
|
| 539 |
}
|
| 540 |
],
|
| 541 |
"logging_steps": 5,
|
| 542 |
+
"max_steps": 18750,
|
| 543 |
+
"num_input_tokens_seen": 2012929,
|
| 544 |
"num_train_epochs": 3,
|
| 545 |
"save_steps": 500,
|
| 546 |
"stateful_callbacks": {
|
|
|
|
| 550 |
"should_evaluate": false,
|
| 551 |
"should_log": false,
|
| 552 |
"should_save": true,
|
| 553 |
+
"should_training_stop": false
|
| 554 |
},
|
| 555 |
"attributes": {}
|
| 556 |
}
|
| 557 |
},
|
| 558 |
"total_flos": 0.0,
|
| 559 |
+
"train_batch_size": 4,
|
| 560 |
"trial_name": null,
|
| 561 |
"trial_params": null
|
| 562 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 7185
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:906bc07f18d85f3fdbe47d01e60bbe6f967852d19caecc88d502ce07c5e4aa78
|
| 3 |
size 7185
|