Text Generation
PEFT
Safetensors
Transformers
qwen2
grpo
lora
trl
conversational
text-generation-inference
Instructions to use bimabk/environment_test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bimabk/environment_test with PEFT:
Base model is not found.
- Transformers
How to use bimabk/environment_test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bimabk/environment_test") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("bimabk/environment_test") model = AutoModelForCausalLM.from_pretrained("bimabk/environment_test", 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 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bimabk/environment_test" # 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", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bimabk/environment_test
- SGLang
How to use bimabk/environment_test 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" \ --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", "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" \ --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", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bimabk/environment_test with Docker Model Runner:
docker model run hf.co/bimabk/environment_test
Upload task output 1
Browse files- README.md +1 -1
- adapter_config.json +8 -10
- adapter_model.safetensors +2 -2
- loss.txt +1 -1
- trainer_state.json +1794 -145
- training_args.bin +2 -2
README.md
CHANGED
|
@@ -206,4 +206,4 @@ Carbon emissions can be estimated using the [Machine Learning Impact calculator]
|
|
| 206 |
[More Information Needed]
|
| 207 |
### Framework versions
|
| 208 |
|
| 209 |
-
- PEFT 0.18.
|
|
|
|
| 206 |
[More Information Needed]
|
| 207 |
### Framework versions
|
| 208 |
|
| 209 |
+
- PEFT 0.18.1
|
adapter_config.json
CHANGED
|
@@ -16,32 +16,30 @@
|
|
| 16 |
"layers_pattern": null,
|
| 17 |
"layers_to_transform": null,
|
| 18 |
"loftq_config": {},
|
| 19 |
-
"lora_alpha":
|
| 20 |
"lora_bias": false,
|
| 21 |
"lora_dropout": 0.05,
|
| 22 |
-
"lora_ga_config": null,
|
| 23 |
"megatron_config": null,
|
| 24 |
"megatron_core": "megatron.core",
|
| 25 |
"modules_to_save": null,
|
| 26 |
"peft_type": "LORA",
|
| 27 |
-
"peft_version": "0.18.
|
| 28 |
"qalora_group_size": 16,
|
| 29 |
-
"r":
|
| 30 |
"rank_pattern": {},
|
| 31 |
"revision": null,
|
| 32 |
"target_modules": [
|
| 33 |
-
"
|
| 34 |
-
"k_proj",
|
| 35 |
-
"down_proj",
|
| 36 |
"v_proj",
|
|
|
|
| 37 |
"up_proj",
|
| 38 |
-
"
|
| 39 |
-
"
|
|
|
|
| 40 |
],
|
| 41 |
"target_parameters": null,
|
| 42 |
"task_type": "CAUSAL_LM",
|
| 43 |
"trainable_token_indices": null,
|
| 44 |
-
"use_bdlora": null,
|
| 45 |
"use_dora": false,
|
| 46 |
"use_qalora": false,
|
| 47 |
"use_rslora": false
|
|
|
|
| 16 |
"layers_pattern": null,
|
| 17 |
"layers_to_transform": null,
|
| 18 |
"loftq_config": {},
|
| 19 |
+
"lora_alpha": 64,
|
| 20 |
"lora_bias": false,
|
| 21 |
"lora_dropout": 0.05,
|
|
|
|
| 22 |
"megatron_config": null,
|
| 23 |
"megatron_core": "megatron.core",
|
| 24 |
"modules_to_save": null,
|
| 25 |
"peft_type": "LORA",
|
| 26 |
+
"peft_version": "0.18.1",
|
| 27 |
"qalora_group_size": 16,
|
| 28 |
+
"r": 32,
|
| 29 |
"rank_pattern": {},
|
| 30 |
"revision": null,
|
| 31 |
"target_modules": [
|
| 32 |
+
"o_proj",
|
|
|
|
|
|
|
| 33 |
"v_proj",
|
| 34 |
+
"k_proj",
|
| 35 |
"up_proj",
|
| 36 |
+
"down_proj",
|
| 37 |
+
"q_proj",
|
| 38 |
+
"gate_proj"
|
| 39 |
],
|
| 40 |
"target_parameters": null,
|
| 41 |
"task_type": "CAUSAL_LM",
|
| 42 |
"trainable_token_indices": null,
|
|
|
|
| 43 |
"use_dora": false,
|
| 44 |
"use_qalora": false,
|
| 45 |
"use_rslora": false
|
adapter_model.safetensors
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:aaa76d7b523dc6d384a6dd98ee0f30ffe7d9ec8f762da429b933d8e16e7594db
|
| 3 |
+
size 239536272
|
loss.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
|
|
|
|
| 1 |
+
75,no_eval
|
trainer_state.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
-
"epoch":
|
| 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,
|
|
@@ -16,30 +16,31 @@
|
|
| 16 |
"clip_ratio/low_min": 0.0,
|
| 17 |
"clip_ratio/region_mean": 0.0,
|
| 18 |
"completions/clipped_ratio": 0.0,
|
| 19 |
-
"completions/max_length":
|
| 20 |
-
"completions/max_terminated_length":
|
| 21 |
-
"completions/mean_length":
|
| 22 |
-
"completions/mean_terminated_length":
|
| 23 |
-
"completions/min_length":
|
| 24 |
-
"completions/min_terminated_length":
|
| 25 |
-
"entropy": 0.
|
| 26 |
-
"epoch":
|
| 27 |
-
"frac_reward_zero_std": 0.
|
| 28 |
-
"grad_norm": 0.
|
|
|
|
| 29 |
"learning_rate": 0.0,
|
| 30 |
-
"loss": -0.
|
| 31 |
-
"num_tokens":
|
| 32 |
-
"reward":
|
| 33 |
-
"reward_std": 0.
|
| 34 |
-
"rewards/
|
| 35 |
-
"rewards/
|
| 36 |
-
"sampling/importance_sampling_ratio/max":
|
| 37 |
-
"sampling/importance_sampling_ratio/mean":
|
| 38 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 39 |
-
"sampling/sampling_logp_difference/max":
|
| 40 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 41 |
"step": 1,
|
| 42 |
-
"step_time":
|
| 43 |
},
|
| 44 |
{
|
| 45 |
"clip_ratio/high_max": 0.0,
|
|
@@ -47,133 +48,1781 @@
|
|
| 47 |
"clip_ratio/low_mean": 0.0,
|
| 48 |
"clip_ratio/low_min": 0.0,
|
| 49 |
"clip_ratio/region_mean": 0.0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
"completions/clipped_ratio": 0.0,
|
| 51 |
-
"completions/max_length":
|
| 52 |
-
"completions/max_terminated_length":
|
| 53 |
-
"completions/mean_length":
|
| 54 |
-
"completions/mean_terminated_length":
|
| 55 |
-
"completions/min_length":
|
| 56 |
-
"completions/min_terminated_length":
|
| 57 |
-
"entropy": 0.
|
| 58 |
-
"epoch": 0.
|
| 59 |
-
"frac_reward_zero_std": 0.
|
| 60 |
-
"grad_norm": 0.
|
| 61 |
-
"
|
| 62 |
-
"
|
| 63 |
-
"
|
| 64 |
-
"
|
| 65 |
-
"
|
| 66 |
-
"
|
| 67 |
-
"rewards/
|
| 68 |
-
"
|
| 69 |
-
"sampling/importance_sampling_ratio/
|
|
|
|
| 70 |
"sampling/importance_sampling_ratio/min": 0.0,
|
| 71 |
-
"sampling/sampling_logp_difference/max":
|
| 72 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 73 |
-
"step":
|
| 74 |
-
"step_time":
|
| 75 |
-
},
|
| 76 |
-
{
|
| 77 |
-
"clip_ratio/high_max": 0.
|
| 78 |
-
"clip_ratio/high_mean": 0.
|
| 79 |
-
"clip_ratio/low_mean": 0.
|
| 80 |
-
"clip_ratio/low_min": 0.
|
| 81 |
-
"clip_ratio/region_mean": 0.
|
| 82 |
-
"
|
| 83 |
-
"
|
| 84 |
-
"
|
| 85 |
-
"
|
| 86 |
-
"
|
| 87 |
-
"
|
| 88 |
-
"
|
| 89 |
-
"
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
"
|
| 93 |
-
"
|
| 94 |
-
"
|
| 95 |
-
"
|
| 96 |
-
"
|
| 97 |
-
"
|
| 98 |
-
"
|
| 99 |
-
"
|
| 100 |
-
"
|
| 101 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
"sampling/importance_sampling_ratio/min": 0.0,
|
| 103 |
-
"sampling/sampling_logp_difference/max": 1.
|
| 104 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 105 |
-
"step":
|
| 106 |
-
"step_time":
|
| 107 |
-
},
|
| 108 |
-
{
|
| 109 |
-
"clip_ratio/high_max": 0.
|
| 110 |
-
"clip_ratio/high_mean": 0.
|
| 111 |
-
"clip_ratio/low_mean": 0.
|
| 112 |
-
"clip_ratio/low_min": 0.
|
| 113 |
-
"clip_ratio/region_mean": 0.
|
| 114 |
-
"
|
| 115 |
-
"
|
| 116 |
-
"
|
| 117 |
-
"
|
| 118 |
-
"
|
| 119 |
-
"
|
| 120 |
-
"
|
| 121 |
-
"
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
"
|
| 125 |
-
"
|
| 126 |
-
"
|
| 127 |
-
"
|
| 128 |
-
"
|
| 129 |
-
"
|
| 130 |
-
"
|
| 131 |
-
"
|
| 132 |
-
"
|
| 133 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
"sampling/importance_sampling_ratio/min": 0.0,
|
| 135 |
-
"sampling/sampling_logp_difference/max":
|
| 136 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 137 |
-
"step":
|
| 138 |
-
"step_time":
|
| 139 |
-
},
|
| 140 |
-
{
|
| 141 |
-
"
|
| 142 |
-
"
|
| 143 |
-
"
|
| 144 |
-
"
|
| 145 |
-
"
|
| 146 |
-
"
|
| 147 |
-
"
|
| 148 |
-
"
|
| 149 |
-
"
|
| 150 |
-
"
|
| 151 |
-
"
|
| 152 |
-
"
|
| 153 |
-
"
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
"
|
| 157 |
-
"
|
| 158 |
-
"
|
| 159 |
-
"
|
| 160 |
-
"
|
| 161 |
-
"
|
| 162 |
-
"
|
| 163 |
-
"
|
| 164 |
-
"
|
| 165 |
-
"
|
| 166 |
-
"
|
| 167 |
-
"
|
| 168 |
-
"
|
| 169 |
-
"
|
| 170 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
}
|
| 172 |
],
|
| 173 |
"logging_steps": 1.0,
|
| 174 |
-
"max_steps":
|
| 175 |
-
"num_input_tokens_seen":
|
| 176 |
-
"num_train_epochs":
|
| 177 |
"save_steps": 500,
|
| 178 |
"stateful_callbacks": {
|
| 179 |
"TrainerControl": {
|
|
@@ -188,7 +1837,7 @@
|
|
| 188 |
}
|
| 189 |
},
|
| 190 |
"total_flos": 0.0,
|
| 191 |
-
"train_batch_size":
|
| 192 |
"trial_name": null,
|
| 193 |
"trial_params": null
|
| 194 |
}
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.00075,
|
| 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,
|
|
|
|
| 16 |
"clip_ratio/low_min": 0.0,
|
| 17 |
"clip_ratio/region_mean": 0.0,
|
| 18 |
"completions/clipped_ratio": 0.0,
|
| 19 |
+
"completions/max_length": 1178.0,
|
| 20 |
+
"completions/max_terminated_length": 1178.0,
|
| 21 |
+
"completions/mean_length": 280.09375,
|
| 22 |
+
"completions/mean_terminated_length": 280.09375,
|
| 23 |
+
"completions/min_length": 3.0,
|
| 24 |
+
"completions/min_terminated_length": 3.0,
|
| 25 |
+
"entropy": 0.3659224039874971,
|
| 26 |
+
"epoch": 1e-05,
|
| 27 |
+
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 0.8075896501541138,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
"learning_rate": 0.0,
|
| 31 |
+
"loss": -0.0378,
|
| 32 |
+
"num_tokens": 37691.0,
|
| 33 |
+
"reward": -1.0071403980255127,
|
| 34 |
+
"reward_std": 0.036310724914073944,
|
| 35 |
+
"rewards/rollout_reward_func/mean": -1.0071403980255127,
|
| 36 |
+
"rewards/rollout_reward_func/std": 0.0389554463326931,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.6058107614517212,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 1.0605039596557617,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.6887973546981812,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 0.4979521632194519,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.04375916346907616,
|
| 42 |
"step": 1,
|
| 43 |
+
"step_time": 11.142912297999601
|
| 44 |
},
|
| 45 |
{
|
| 46 |
"clip_ratio/high_max": 0.0,
|
|
|
|
| 48 |
"clip_ratio/low_mean": 0.0,
|
| 49 |
"clip_ratio/low_min": 0.0,
|
| 50 |
"clip_ratio/region_mean": 0.0,
|
| 51 |
+
"entropy": 0.3659224039874971,
|
| 52 |
+
"epoch": 2e-05,
|
| 53 |
+
"grad_norm": 0.8133119344711304,
|
| 54 |
+
"kl": 0.0,
|
| 55 |
+
"learning_rate": 2.8571428571428573e-06,
|
| 56 |
+
"loss": -0.0378,
|
| 57 |
+
"step": 2,
|
| 58 |
+
"step_time": 6.929950346999931
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"clip_ratio/high_max": 0.05902777845039964,
|
| 62 |
+
"clip_ratio/high_mean": 0.02951388922519982,
|
| 63 |
+
"clip_ratio/low_mean": 0.031250000931322575,
|
| 64 |
+
"clip_ratio/low_min": 0.02083333395421505,
|
| 65 |
+
"clip_ratio/region_mean": 0.06076389015652239,
|
| 66 |
+
"completions/clipped_ratio": 0.0,
|
| 67 |
+
"completions/max_length": 1232.0,
|
| 68 |
+
"completions/max_terminated_length": 1232.0,
|
| 69 |
+
"completions/mean_length": 310.90625,
|
| 70 |
+
"completions/mean_terminated_length": 310.90625,
|
| 71 |
+
"completions/min_length": 2.0,
|
| 72 |
+
"completions/min_terminated_length": 2.0,
|
| 73 |
+
"entropy": 0.4082131152972579,
|
| 74 |
+
"epoch": 3e-05,
|
| 75 |
+
"frac_reward_zero_std": 0.0,
|
| 76 |
+
"grad_norm": 0.716623067855835,
|
| 77 |
+
"kl": 0.0072153940433281605,
|
| 78 |
+
"learning_rate": 5.7142857142857145e-06,
|
| 79 |
+
"loss": -0.0034,
|
| 80 |
+
"num_tokens": 79271.0,
|
| 81 |
+
"reward": -0.9292834997177124,
|
| 82 |
+
"reward_std": 0.20812131464481354,
|
| 83 |
+
"rewards/rollout_reward_func/mean": -0.9292834997177124,
|
| 84 |
+
"rewards/rollout_reward_func/std": 0.3781917691230774,
|
| 85 |
+
"sampling/importance_sampling_ratio/max": 1.392927646636963,
|
| 86 |
+
"sampling/importance_sampling_ratio/mean": 1.0064890384674072,
|
| 87 |
+
"sampling/importance_sampling_ratio/min": 0.6378100514411926,
|
| 88 |
+
"sampling/sampling_logp_difference/max": 0.53961181640625,
|
| 89 |
+
"sampling/sampling_logp_difference/mean": 0.039233192801475525,
|
| 90 |
+
"step": 3,
|
| 91 |
+
"step_time": 10.315485310000213
|
| 92 |
+
},
|
| 93 |
+
{
|
| 94 |
+
"clip_ratio/high_max": 0.0069444444961845875,
|
| 95 |
+
"clip_ratio/high_mean": 0.0034722222480922937,
|
| 96 |
+
"clip_ratio/low_mean": 0.027083334047347307,
|
| 97 |
+
"clip_ratio/low_min": 0.0,
|
| 98 |
+
"clip_ratio/region_mean": 0.0305555562954396,
|
| 99 |
+
"entropy": 0.40274658892303705,
|
| 100 |
+
"epoch": 4e-05,
|
| 101 |
+
"grad_norm": 0.5002186298370361,
|
| 102 |
+
"kl": 0.008539682462242126,
|
| 103 |
+
"learning_rate": 8.571428571428573e-06,
|
| 104 |
+
"loss": -0.0029,
|
| 105 |
+
"step": 4,
|
| 106 |
+
"step_time": 6.540185272000144
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"clip_ratio/high_max": 0.012500000186264515,
|
| 110 |
+
"clip_ratio/high_mean": 0.0062500000931322575,
|
| 111 |
+
"clip_ratio/low_mean": 0.015625000465661287,
|
| 112 |
+
"clip_ratio/low_min": 0.0,
|
| 113 |
+
"clip_ratio/region_mean": 0.021875000558793545,
|
| 114 |
+
"completions/clipped_ratio": 0.0,
|
| 115 |
+
"completions/max_length": 1022.0,
|
| 116 |
+
"completions/max_terminated_length": 1022.0,
|
| 117 |
+
"completions/mean_length": 225.15625,
|
| 118 |
+
"completions/mean_terminated_length": 225.15625,
|
| 119 |
+
"completions/min_length": 3.0,
|
| 120 |
+
"completions/min_terminated_length": 3.0,
|
| 121 |
+
"entropy": 0.2807091409340501,
|
| 122 |
+
"epoch": 5e-05,
|
| 123 |
+
"frac_reward_zero_std": 0.0,
|
| 124 |
+
"grad_norm": 0.7028033137321472,
|
| 125 |
+
"kl": 0.047651219653289445,
|
| 126 |
+
"learning_rate": 1.1428571428571429e-05,
|
| 127 |
+
"loss": -0.017,
|
| 128 |
+
"num_tokens": 115228.0,
|
| 129 |
+
"reward": -0.8011959791183472,
|
| 130 |
+
"reward_std": 0.4463964104652405,
|
| 131 |
+
"rewards/rollout_reward_func/mean": -0.8011959791183472,
|
| 132 |
+
"rewards/rollout_reward_func/std": 0.6310392618179321,
|
| 133 |
+
"sampling/importance_sampling_ratio/max": 1.9444010257720947,
|
| 134 |
+
"sampling/importance_sampling_ratio/mean": 0.9612840414047241,
|
| 135 |
+
"sampling/importance_sampling_ratio/min": 0.2667683959007263,
|
| 136 |
+
"sampling/sampling_logp_difference/max": 0.8543260097503662,
|
| 137 |
+
"sampling/sampling_logp_difference/mean": 0.042739734053611755,
|
| 138 |
+
"step": 5,
|
| 139 |
+
"step_time": 9.484377300000233
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"clip_ratio/high_max": 0.018750000279396772,
|
| 143 |
+
"clip_ratio/high_mean": 0.009375000139698386,
|
| 144 |
+
"clip_ratio/low_mean": 0.0,
|
| 145 |
+
"clip_ratio/low_min": 0.0,
|
| 146 |
+
"clip_ratio/region_mean": 0.009375000139698386,
|
| 147 |
+
"entropy": 0.28512229211628437,
|
| 148 |
+
"epoch": 6e-05,
|
| 149 |
+
"grad_norm": 0.8833194971084595,
|
| 150 |
+
"kl": 0.011992669685696455,
|
| 151 |
+
"learning_rate": 1.4285714285714285e-05,
|
| 152 |
+
"loss": -0.0202,
|
| 153 |
+
"step": 6,
|
| 154 |
+
"step_time": 6.462289121999902
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"clip_ratio/high_max": 0.0,
|
| 158 |
+
"clip_ratio/high_mean": 0.0,
|
| 159 |
+
"clip_ratio/low_mean": 0.031250000931322575,
|
| 160 |
+
"clip_ratio/low_min": 0.0,
|
| 161 |
+
"clip_ratio/region_mean": 0.031250000931322575,
|
| 162 |
+
"completions/clipped_ratio": 0.0,
|
| 163 |
+
"completions/max_length": 1142.0,
|
| 164 |
+
"completions/max_terminated_length": 1142.0,
|
| 165 |
+
"completions/mean_length": 308.25,
|
| 166 |
+
"completions/mean_terminated_length": 308.25,
|
| 167 |
+
"completions/min_length": 3.0,
|
| 168 |
+
"completions/min_terminated_length": 3.0,
|
| 169 |
+
"entropy": 0.3624303378164768,
|
| 170 |
+
"epoch": 7e-05,
|
| 171 |
+
"frac_reward_zero_std": 0.0,
|
| 172 |
+
"grad_norm": 0.885384738445282,
|
| 173 |
+
"kl": 0.005326485250407131,
|
| 174 |
+
"learning_rate": 1.7142857142857145e-05,
|
| 175 |
+
"loss": -0.008,
|
| 176 |
+
"num_tokens": 155454.0,
|
| 177 |
+
"reward": -0.8657017350196838,
|
| 178 |
+
"reward_std": 0.3935210704803467,
|
| 179 |
+
"rewards/rollout_reward_func/mean": -0.8657017350196838,
|
| 180 |
+
"rewards/rollout_reward_func/std": 0.5249258875846863,
|
| 181 |
+
"sampling/importance_sampling_ratio/max": 1.14151930809021,
|
| 182 |
+
"sampling/importance_sampling_ratio/mean": 0.9441938400268555,
|
| 183 |
+
"sampling/importance_sampling_ratio/min": 0.6393771767616272,
|
| 184 |
+
"sampling/sampling_logp_difference/max": 0.4876275062561035,
|
| 185 |
+
"sampling/sampling_logp_difference/mean": 0.037204425781965256,
|
| 186 |
+
"step": 7,
|
| 187 |
+
"step_time": 10.03836135199981
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"clip_ratio/high_max": 0.013194444589316845,
|
| 191 |
+
"clip_ratio/high_mean": 0.0065972222946584225,
|
| 192 |
+
"clip_ratio/low_mean": 0.036805556854233146,
|
| 193 |
+
"clip_ratio/low_min": 0.012500000186264515,
|
| 194 |
+
"clip_ratio/region_mean": 0.04340277914889157,
|
| 195 |
+
"entropy": 0.3480250327847898,
|
| 196 |
+
"epoch": 8e-05,
|
| 197 |
+
"grad_norm": 0.6112654805183411,
|
| 198 |
+
"kl": 0.007768443218083121,
|
| 199 |
+
"learning_rate": 2e-05,
|
| 200 |
+
"loss": -0.0087,
|
| 201 |
+
"step": 8,
|
| 202 |
+
"step_time": 6.732798993000642
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"clip_ratio/high_max": 0.005434782709926367,
|
| 206 |
+
"clip_ratio/high_mean": 0.0027173913549631834,
|
| 207 |
+
"clip_ratio/low_mean": 0.0062500000931322575,
|
| 208 |
+
"clip_ratio/low_min": 0.0,
|
| 209 |
+
"clip_ratio/region_mean": 0.00896739144809544,
|
| 210 |
+
"completions/clipped_ratio": 0.0,
|
| 211 |
+
"completions/max_length": 1163.0,
|
| 212 |
+
"completions/max_terminated_length": 1163.0,
|
| 213 |
+
"completions/mean_length": 258.75,
|
| 214 |
+
"completions/mean_terminated_length": 258.75,
|
| 215 |
+
"completions/min_length": 2.0,
|
| 216 |
+
"completions/min_terminated_length": 2.0,
|
| 217 |
+
"entropy": 0.27044630981981754,
|
| 218 |
+
"epoch": 9e-05,
|
| 219 |
+
"frac_reward_zero_std": 0.0,
|
| 220 |
+
"grad_norm": 0.7710390090942383,
|
| 221 |
+
"kl": 0.02225630160091896,
|
| 222 |
+
"learning_rate": 2.2857142857142858e-05,
|
| 223 |
+
"loss": -0.01,
|
| 224 |
+
"num_tokens": 193934.0,
|
| 225 |
+
"reward": -0.9323001503944397,
|
| 226 |
+
"reward_std": 0.20817707479000092,
|
| 227 |
+
"rewards/rollout_reward_func/mean": -0.9323001503944397,
|
| 228 |
+
"rewards/rollout_reward_func/std": 0.37744954228401184,
|
| 229 |
+
"sampling/importance_sampling_ratio/max": 1.3011233806610107,
|
| 230 |
+
"sampling/importance_sampling_ratio/mean": 0.9557175636291504,
|
| 231 |
+
"sampling/importance_sampling_ratio/min": 0.5675007700920105,
|
| 232 |
+
"sampling/sampling_logp_difference/max": 0.6186580657958984,
|
| 233 |
+
"sampling/sampling_logp_difference/mean": 0.04273971542716026,
|
| 234 |
+
"step": 9,
|
| 235 |
+
"step_time": 10.003510364000476
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"clip_ratio/high_max": 0.014363354537636042,
|
| 239 |
+
"clip_ratio/high_mean": 0.007181677268818021,
|
| 240 |
+
"clip_ratio/low_mean": 0.06041666818782687,
|
| 241 |
+
"clip_ratio/low_min": 0.0,
|
| 242 |
+
"clip_ratio/region_mean": 0.06759834592230618,
|
| 243 |
+
"entropy": 0.24492651503533125,
|
| 244 |
+
"epoch": 0.0001,
|
| 245 |
+
"grad_norm": 0.3038092851638794,
|
| 246 |
+
"kl": 0.061313093479839154,
|
| 247 |
+
"learning_rate": 2.5714285714285714e-05,
|
| 248 |
+
"loss": -0.0121,
|
| 249 |
+
"step": 10,
|
| 250 |
+
"step_time": 6.334576341999991
|
| 251 |
+
},
|
| 252 |
+
{
|
| 253 |
+
"clip_ratio/high_max": 0.010416666977107525,
|
| 254 |
+
"clip_ratio/high_mean": 0.0052083334885537624,
|
| 255 |
+
"clip_ratio/low_mean": 0.01666666753590107,
|
| 256 |
+
"clip_ratio/low_min": 0.012500000186264515,
|
| 257 |
+
"clip_ratio/region_mean": 0.021875001024454832,
|
| 258 |
"completions/clipped_ratio": 0.0,
|
| 259 |
+
"completions/max_length": 1808.0,
|
| 260 |
+
"completions/max_terminated_length": 1808.0,
|
| 261 |
+
"completions/mean_length": 366.3125,
|
| 262 |
+
"completions/mean_terminated_length": 366.3125,
|
| 263 |
+
"completions/min_length": 3.0,
|
| 264 |
+
"completions/min_terminated_length": 3.0,
|
| 265 |
+
"entropy": 0.32991205714643,
|
| 266 |
+
"epoch": 0.00011,
|
| 267 |
+
"frac_reward_zero_std": 0.0,
|
| 268 |
+
"grad_norm": 0.708510160446167,
|
| 269 |
+
"kl": 0.1540648011941812,
|
| 270 |
+
"learning_rate": 2.857142857142857e-05,
|
| 271 |
+
"loss": -0.0489,
|
| 272 |
+
"num_tokens": 236260.0,
|
| 273 |
+
"reward": -0.9286847114562988,
|
| 274 |
+
"reward_std": 0.211622416973114,
|
| 275 |
+
"rewards/rollout_reward_func/mean": -0.9286847114562988,
|
| 276 |
+
"rewards/rollout_reward_func/std": 0.3866735100746155,
|
| 277 |
+
"sampling/importance_sampling_ratio/max": 1.9185539484024048,
|
| 278 |
+
"sampling/importance_sampling_ratio/mean": 0.9692364931106567,
|
| 279 |
"sampling/importance_sampling_ratio/min": 0.0,
|
| 280 |
+
"sampling/sampling_logp_difference/max": 1.5063650608062744,
|
| 281 |
+
"sampling/sampling_logp_difference/mean": 0.07806695252656937,
|
| 282 |
+
"step": 11,
|
| 283 |
+
"step_time": 12.247949407000306
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"clip_ratio/high_max": 0.05850694561377168,
|
| 287 |
+
"clip_ratio/high_mean": 0.032725695287808776,
|
| 288 |
+
"clip_ratio/low_mean": 0.06458333553746343,
|
| 289 |
+
"clip_ratio/low_min": 0.033333334140479565,
|
| 290 |
+
"clip_ratio/region_mean": 0.0973090308252722,
|
| 291 |
+
"entropy": 0.3409234285354614,
|
| 292 |
+
"epoch": 0.00012,
|
| 293 |
+
"grad_norm": 0.527890682220459,
|
| 294 |
+
"kl": 0.5000243990944,
|
| 295 |
+
"learning_rate": 3.142857142857143e-05,
|
| 296 |
+
"loss": -0.0513,
|
| 297 |
+
"step": 12,
|
| 298 |
+
"step_time": 7.004255187000126
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"clip_ratio/high_max": 0.0,
|
| 302 |
+
"clip_ratio/high_mean": 0.0,
|
| 303 |
+
"clip_ratio/low_mean": 0.018978387233801186,
|
| 304 |
+
"clip_ratio/low_min": 0.0,
|
| 305 |
+
"clip_ratio/region_mean": 0.018978387233801186,
|
| 306 |
+
"completions/clipped_ratio": 0.0,
|
| 307 |
+
"completions/max_length": 1584.0,
|
| 308 |
+
"completions/max_terminated_length": 1584.0,
|
| 309 |
+
"completions/mean_length": 398.375,
|
| 310 |
+
"completions/mean_terminated_length": 398.375,
|
| 311 |
+
"completions/min_length": 3.0,
|
| 312 |
+
"completions/min_terminated_length": 3.0,
|
| 313 |
+
"entropy": 0.28245622059330344,
|
| 314 |
+
"epoch": 0.00013,
|
| 315 |
+
"frac_reward_zero_std": 0.0,
|
| 316 |
+
"grad_norm": 1.366127371788025,
|
| 317 |
+
"kl": 0.26600568945286795,
|
| 318 |
+
"learning_rate": 3.428571428571429e-05,
|
| 319 |
+
"loss": 0.0152,
|
| 320 |
+
"num_tokens": 278805.0,
|
| 321 |
+
"reward": -0.6331639289855957,
|
| 322 |
+
"reward_std": 0.7617669105529785,
|
| 323 |
+
"rewards/rollout_reward_func/mean": -0.6331639289855957,
|
| 324 |
+
"rewards/rollout_reward_func/std": 0.7844160199165344,
|
| 325 |
+
"sampling/importance_sampling_ratio/max": 1.327277660369873,
|
| 326 |
+
"sampling/importance_sampling_ratio/mean": 0.8719787001609802,
|
| 327 |
"sampling/importance_sampling_ratio/min": 0.0,
|
| 328 |
+
"sampling/sampling_logp_difference/max": 1.2040467262268066,
|
| 329 |
+
"sampling/sampling_logp_difference/mean": 0.07095030695199966,
|
| 330 |
+
"step": 13,
|
| 331 |
+
"step_time": 12.302737500999683
|
| 332 |
+
},
|
| 333 |
+
{
|
| 334 |
+
"clip_ratio/high_max": 0.0416666679084301,
|
| 335 |
+
"clip_ratio/high_mean": 0.02083333395421505,
|
| 336 |
+
"clip_ratio/low_mean": 0.13363321172073483,
|
| 337 |
+
"clip_ratio/low_min": 0.04375000111758709,
|
| 338 |
+
"clip_ratio/region_mean": 0.15446654567494988,
|
| 339 |
+
"entropy": 0.2645200351253152,
|
| 340 |
+
"epoch": 0.00014,
|
| 341 |
+
"grad_norm": 0.6336849927902222,
|
| 342 |
+
"kl": 1.7774635917339765,
|
| 343 |
+
"learning_rate": 3.7142857142857143e-05,
|
| 344 |
+
"loss": 0.0159,
|
| 345 |
+
"step": 14,
|
| 346 |
+
"step_time": 6.674852292999958
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"clip_ratio/high_max": 0.0,
|
| 350 |
+
"clip_ratio/high_mean": 0.0,
|
| 351 |
+
"clip_ratio/low_mean": 0.05131448491010815,
|
| 352 |
+
"clip_ratio/low_min": 0.010416666977107525,
|
| 353 |
+
"clip_ratio/region_mean": 0.05131448491010815,
|
| 354 |
+
"completions/clipped_ratio": 0.0,
|
| 355 |
+
"completions/max_length": 2135.0,
|
| 356 |
+
"completions/max_terminated_length": 2135.0,
|
| 357 |
+
"completions/mean_length": 362.1875,
|
| 358 |
+
"completions/mean_terminated_length": 362.1875,
|
| 359 |
+
"completions/min_length": 3.0,
|
| 360 |
+
"completions/min_terminated_length": 3.0,
|
| 361 |
+
"entropy": 0.33170084515586495,
|
| 362 |
+
"epoch": 0.00015,
|
| 363 |
+
"frac_reward_zero_std": 0.0,
|
| 364 |
+
"grad_norm": 0.5385106801986694,
|
| 365 |
+
"kl": 0.5612458096584305,
|
| 366 |
+
"learning_rate": 4e-05,
|
| 367 |
+
"loss": 0.0529,
|
| 368 |
+
"num_tokens": 321363.0,
|
| 369 |
+
"reward": -0.22063349187374115,
|
| 370 |
+
"reward_std": 1.032537579536438,
|
| 371 |
+
"rewards/rollout_reward_func/mean": -0.22063349187374115,
|
| 372 |
+
"rewards/rollout_reward_func/std": 1.0019752979278564,
|
| 373 |
+
"sampling/importance_sampling_ratio/max": 2.0951614379882812,
|
| 374 |
+
"sampling/importance_sampling_ratio/mean": 1.0781480073928833,
|
| 375 |
+
"sampling/importance_sampling_ratio/min": 0.40334585309028625,
|
| 376 |
+
"sampling/sampling_logp_difference/max": 0.7475135326385498,
|
| 377 |
+
"sampling/sampling_logp_difference/mean": 0.05335211753845215,
|
| 378 |
+
"step": 15,
|
| 379 |
+
"step_time": 13.901658290000341
|
| 380 |
+
},
|
| 381 |
+
{
|
| 382 |
+
"clip_ratio/high_max": 0.04583333432674408,
|
| 383 |
+
"clip_ratio/high_mean": 0.02291666716337204,
|
| 384 |
+
"clip_ratio/low_mean": 0.07991071639116853,
|
| 385 |
+
"clip_ratio/low_min": 0.02083333395421505,
|
| 386 |
+
"clip_ratio/region_mean": 0.10282738448586315,
|
| 387 |
+
"entropy": 0.33263772330246866,
|
| 388 |
+
"epoch": 0.00016,
|
| 389 |
+
"grad_norm": 0.3616006076335907,
|
| 390 |
+
"kl": 0.5915351018775254,
|
| 391 |
+
"learning_rate": 4.2857142857142856e-05,
|
| 392 |
+
"loss": 0.0492,
|
| 393 |
+
"step": 16,
|
| 394 |
+
"step_time": 7.827889540000115
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"clip_ratio/high_max": 0.0,
|
| 398 |
+
"clip_ratio/high_mean": 0.0,
|
| 399 |
+
"clip_ratio/low_mean": 0.0,
|
| 400 |
+
"clip_ratio/low_min": 0.0,
|
| 401 |
+
"clip_ratio/region_mean": 0.0,
|
| 402 |
+
"completions/clipped_ratio": 0.0,
|
| 403 |
+
"completions/max_length": 1066.0,
|
| 404 |
+
"completions/max_terminated_length": 1066.0,
|
| 405 |
+
"completions/mean_length": 146.75,
|
| 406 |
+
"completions/mean_terminated_length": 146.75,
|
| 407 |
+
"completions/min_length": 2.0,
|
| 408 |
+
"completions/min_terminated_length": 2.0,
|
| 409 |
+
"entropy": 0.21940526392427273,
|
| 410 |
+
"epoch": 0.00017,
|
| 411 |
+
"frac_reward_zero_std": 0.0,
|
| 412 |
+
"grad_norm": 0.7156424522399902,
|
| 413 |
+
"kl": 0.9828777723014355,
|
| 414 |
+
"learning_rate": 4.5714285714285716e-05,
|
| 415 |
+
"loss": 0.0274,
|
| 416 |
+
"num_tokens": 354064.0,
|
| 417 |
+
"reward": 0.18792903423309326,
|
| 418 |
+
"reward_std": 1.0650506019592285,
|
| 419 |
+
"rewards/rollout_reward_func/mean": 0.18792903423309326,
|
| 420 |
+
"rewards/rollout_reward_func/std": 1.025183081626892,
|
| 421 |
+
"sampling/importance_sampling_ratio/max": 1.465952754020691,
|
| 422 |
+
"sampling/importance_sampling_ratio/mean": 0.9368042945861816,
|
| 423 |
+
"sampling/importance_sampling_ratio/min": 0.2505682706832886,
|
| 424 |
+
"sampling/sampling_logp_difference/max": 1.1606903076171875,
|
| 425 |
+
"sampling/sampling_logp_difference/mean": 0.06353487074375153,
|
| 426 |
+
"step": 17,
|
| 427 |
+
"step_time": 10.211389272000588
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"clip_ratio/high_max": 0.0,
|
| 431 |
+
"clip_ratio/high_mean": 0.0,
|
| 432 |
+
"clip_ratio/low_mean": 0.11508049350231886,
|
| 433 |
+
"clip_ratio/low_min": 0.033333334140479565,
|
| 434 |
+
"clip_ratio/region_mean": 0.11508049350231886,
|
| 435 |
+
"entropy": 0.19974320210167207,
|
| 436 |
+
"epoch": 0.00018,
|
| 437 |
+
"grad_norm": 2.1809680461883545,
|
| 438 |
+
"kl": 2.973201504908502,
|
| 439 |
+
"learning_rate": 4.8571428571428576e-05,
|
| 440 |
+
"loss": 0.0255,
|
| 441 |
+
"step": 18,
|
| 442 |
+
"step_time": 5.537876568999991
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"clip_ratio/high_max": 0.0,
|
| 446 |
+
"clip_ratio/high_mean": 0.0,
|
| 447 |
+
"clip_ratio/low_mean": 0.02291666716337204,
|
| 448 |
+
"clip_ratio/low_min": 0.0,
|
| 449 |
+
"clip_ratio/region_mean": 0.02291666716337204,
|
| 450 |
+
"completions/clipped_ratio": 0.0,
|
| 451 |
+
"completions/max_length": 1190.0,
|
| 452 |
+
"completions/max_terminated_length": 1190.0,
|
| 453 |
+
"completions/mean_length": 183.71875,
|
| 454 |
+
"completions/mean_terminated_length": 183.71875,
|
| 455 |
+
"completions/min_length": 3.0,
|
| 456 |
+
"completions/min_terminated_length": 3.0,
|
| 457 |
+
"entropy": 0.2391725802444853,
|
| 458 |
+
"epoch": 0.00019,
|
| 459 |
+
"frac_reward_zero_std": 0.0,
|
| 460 |
+
"grad_norm": 0.5152996182441711,
|
| 461 |
+
"kl": 0.628770228009671,
|
| 462 |
+
"learning_rate": 5.142857142857143e-05,
|
| 463 |
+
"loss": 0.0056,
|
| 464 |
+
"num_tokens": 389262.0,
|
| 465 |
+
"reward": 0.09779167175292969,
|
| 466 |
+
"reward_std": 0.9968031048774719,
|
| 467 |
+
"rewards/rollout_reward_func/mean": 0.09779167175292969,
|
| 468 |
+
"rewards/rollout_reward_func/std": 1.0246973037719727,
|
| 469 |
+
"sampling/importance_sampling_ratio/max": 1.6519438028335571,
|
| 470 |
+
"sampling/importance_sampling_ratio/mean": 0.9000259637832642,
|
| 471 |
+
"sampling/importance_sampling_ratio/min": 0.026913145557045937,
|
| 472 |
+
"sampling/sampling_logp_difference/max": 3.1608994007110596,
|
| 473 |
+
"sampling/sampling_logp_difference/mean": 0.10347369313240051,
|
| 474 |
+
"step": 19,
|
| 475 |
+
"step_time": 11.03900628299948
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"clip_ratio/high_max": 0.012500000186264515,
|
| 479 |
+
"clip_ratio/high_mean": 0.0062500000931322575,
|
| 480 |
+
"clip_ratio/low_mean": 0.14107143180444837,
|
| 481 |
+
"clip_ratio/low_min": 0.051190477795898914,
|
| 482 |
+
"clip_ratio/region_mean": 0.14732143189758062,
|
| 483 |
+
"entropy": 0.25456089232466184,
|
| 484 |
+
"epoch": 0.0002,
|
| 485 |
+
"grad_norm": 0.3765561580657959,
|
| 486 |
+
"kl": 1.1224204124882817,
|
| 487 |
+
"learning_rate": 5.428571428571428e-05,
|
| 488 |
+
"loss": 0.0047,
|
| 489 |
+
"step": 20,
|
| 490 |
+
"step_time": 6.163490915999773
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"clip_ratio/high_max": 0.010416666977107525,
|
| 494 |
+
"clip_ratio/high_mean": 0.0052083334885537624,
|
| 495 |
+
"clip_ratio/low_mean": 0.007812500232830644,
|
| 496 |
+
"clip_ratio/low_min": 0.0,
|
| 497 |
+
"clip_ratio/region_mean": 0.013020833721384406,
|
| 498 |
+
"completions/clipped_ratio": 0.0,
|
| 499 |
+
"completions/max_length": 2228.0,
|
| 500 |
+
"completions/max_terminated_length": 2228.0,
|
| 501 |
+
"completions/mean_length": 374.4375,
|
| 502 |
+
"completions/mean_terminated_length": 374.4375,
|
| 503 |
+
"completions/min_length": 3.0,
|
| 504 |
+
"completions/min_terminated_length": 3.0,
|
| 505 |
+
"entropy": 0.20231306218192913,
|
| 506 |
+
"epoch": 0.00021,
|
| 507 |
+
"frac_reward_zero_std": 0.0,
|
| 508 |
+
"grad_norm": 0.5450725555419922,
|
| 509 |
+
"kl": 1.0656099561601877,
|
| 510 |
+
"learning_rate": 5.714285714285714e-05,
|
| 511 |
+
"loss": -0.0062,
|
| 512 |
+
"num_tokens": 432157.0,
|
| 513 |
+
"reward": 0.3385208547115326,
|
| 514 |
+
"reward_std": 0.9284825921058655,
|
| 515 |
+
"rewards/rollout_reward_func/mean": 0.3385208547115326,
|
| 516 |
+
"rewards/rollout_reward_func/std": 0.9307616949081421,
|
| 517 |
+
"sampling/importance_sampling_ratio/max": 1.735904335975647,
|
| 518 |
+
"sampling/importance_sampling_ratio/mean": 0.8049801588058472,
|
| 519 |
"sampling/importance_sampling_ratio/min": 0.0,
|
| 520 |
+
"sampling/sampling_logp_difference/max": 2.504056453704834,
|
| 521 |
+
"sampling/sampling_logp_difference/mean": 0.09936025738716125,
|
| 522 |
+
"step": 21,
|
| 523 |
+
"step_time": 14.117857149999963
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"clip_ratio/high_max": 0.017361111473292112,
|
| 527 |
+
"clip_ratio/high_mean": 0.011805556016042829,
|
| 528 |
+
"clip_ratio/low_mean": 0.07820799155160785,
|
| 529 |
+
"clip_ratio/low_min": 0.027472528629004955,
|
| 530 |
+
"clip_ratio/region_mean": 0.09001354733482003,
|
| 531 |
+
"entropy": 0.20029474921466317,
|
| 532 |
+
"epoch": 0.00022,
|
| 533 |
+
"grad_norm": 0.38578858971595764,
|
| 534 |
+
"kl": 1.4086124375462532,
|
| 535 |
+
"learning_rate": 6e-05,
|
| 536 |
+
"loss": -0.008,
|
| 537 |
+
"step": 22,
|
| 538 |
+
"step_time": 7.929054158000099
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"clip_ratio/high_max": 0.02500000037252903,
|
| 542 |
+
"clip_ratio/high_mean": 0.012500000186264515,
|
| 543 |
+
"clip_ratio/low_mean": 0.010156250093132257,
|
| 544 |
+
"clip_ratio/low_min": 0.0,
|
| 545 |
+
"clip_ratio/region_mean": 0.022656250279396772,
|
| 546 |
+
"completions/clipped_ratio": 0.0,
|
| 547 |
+
"completions/max_length": 896.0,
|
| 548 |
+
"completions/max_terminated_length": 896.0,
|
| 549 |
+
"completions/mean_length": 165.5,
|
| 550 |
+
"completions/mean_terminated_length": 165.5,
|
| 551 |
+
"completions/min_length": 3.0,
|
| 552 |
+
"completions/min_terminated_length": 3.0,
|
| 553 |
+
"entropy": 0.12490838440135121,
|
| 554 |
+
"epoch": 0.00023,
|
| 555 |
+
"frac_reward_zero_std": 0.0,
|
| 556 |
+
"grad_norm": 0.5326600074768066,
|
| 557 |
+
"kl": 2.6836317628622055,
|
| 558 |
+
"learning_rate": 6.285714285714286e-05,
|
| 559 |
+
"loss": -0.0076,
|
| 560 |
+
"num_tokens": 466199.0,
|
| 561 |
+
"reward": 0.6161667108535767,
|
| 562 |
+
"reward_std": 0.6345345377922058,
|
| 563 |
+
"rewards/rollout_reward_func/mean": 0.6161667108535767,
|
| 564 |
+
"rewards/rollout_reward_func/std": 0.7305893301963806,
|
| 565 |
+
"sampling/importance_sampling_ratio/max": 1.6318753957748413,
|
| 566 |
+
"sampling/importance_sampling_ratio/mean": 0.8681706190109253,
|
| 567 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 568 |
+
"sampling/sampling_logp_difference/max": 1.4805762767791748,
|
| 569 |
+
"sampling/sampling_logp_difference/mean": 0.07480701804161072,
|
| 570 |
+
"step": 23,
|
| 571 |
+
"step_time": 9.858622221000587
|
| 572 |
+
},
|
| 573 |
+
{
|
| 574 |
+
"clip_ratio/high_max": 0.026785715483129025,
|
| 575 |
+
"clip_ratio/high_mean": 0.013392857741564512,
|
| 576 |
+
"clip_ratio/low_mean": 0.01927083358168602,
|
| 577 |
+
"clip_ratio/low_min": 0.0,
|
| 578 |
+
"clip_ratio/region_mean": 0.03266369132325053,
|
| 579 |
+
"entropy": 0.10265930875902995,
|
| 580 |
+
"epoch": 0.00024,
|
| 581 |
+
"grad_norm": 2.3974478244781494,
|
| 582 |
+
"kl": 3.5795856304466724,
|
| 583 |
+
"learning_rate": 6.571428571428571e-05,
|
| 584 |
+
"loss": -0.0019,
|
| 585 |
+
"step": 24,
|
| 586 |
+
"step_time": 5.317549161999295
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"clip_ratio/high_max": 0.02500000037252903,
|
| 590 |
+
"clip_ratio/high_mean": 0.012500000186264515,
|
| 591 |
+
"clip_ratio/low_mean": 0.016964286100119352,
|
| 592 |
+
"clip_ratio/low_min": 0.0,
|
| 593 |
+
"clip_ratio/region_mean": 0.029464286286383867,
|
| 594 |
+
"completions/clipped_ratio": 0.0,
|
| 595 |
+
"completions/max_length": 1176.0,
|
| 596 |
+
"completions/max_terminated_length": 1176.0,
|
| 597 |
+
"completions/mean_length": 240.1875,
|
| 598 |
+
"completions/mean_terminated_length": 240.1875,
|
| 599 |
+
"completions/min_length": 3.0,
|
| 600 |
+
"completions/min_terminated_length": 3.0,
|
| 601 |
+
"entropy": 0.137992134608794,
|
| 602 |
+
"epoch": 0.00025,
|
| 603 |
+
"frac_reward_zero_std": 0.0,
|
| 604 |
+
"grad_norm": 0.6068210601806641,
|
| 605 |
+
"kl": 1.5051679126918316,
|
| 606 |
+
"learning_rate": 6.857142857142858e-05,
|
| 607 |
+
"loss": -0.002,
|
| 608 |
+
"num_tokens": 503259.0,
|
| 609 |
+
"reward": 0.6975833177566528,
|
| 610 |
+
"reward_std": 0.7012296319007874,
|
| 611 |
+
"rewards/rollout_reward_func/mean": 0.6975833177566528,
|
| 612 |
+
"rewards/rollout_reward_func/std": 0.7207034826278687,
|
| 613 |
+
"sampling/importance_sampling_ratio/max": 1.254854679107666,
|
| 614 |
+
"sampling/importance_sampling_ratio/mean": 0.838233470916748,
|
| 615 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 616 |
+
"sampling/sampling_logp_difference/max": 2.63065767288208,
|
| 617 |
+
"sampling/sampling_logp_difference/mean": 0.094658762216568,
|
| 618 |
+
"step": 25,
|
| 619 |
+
"step_time": 10.299735158999283
|
| 620 |
+
},
|
| 621 |
+
{
|
| 622 |
+
"clip_ratio/high_max": 0.04642857238650322,
|
| 623 |
+
"clip_ratio/high_mean": 0.029464286286383867,
|
| 624 |
+
"clip_ratio/low_mean": 0.041778274811804295,
|
| 625 |
+
"clip_ratio/low_min": 0.0,
|
| 626 |
+
"clip_ratio/region_mean": 0.07124256109818816,
|
| 627 |
+
"entropy": 0.16137297594104894,
|
| 628 |
+
"epoch": 0.00026,
|
| 629 |
+
"grad_norm": 5.5549468994140625,
|
| 630 |
+
"kl": 11.136886082589626,
|
| 631 |
+
"learning_rate": 7.142857142857143e-05,
|
| 632 |
+
"loss": 0.0342,
|
| 633 |
+
"step": 26,
|
| 634 |
+
"step_time": 5.75506067900028
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"clip_ratio/high_max": 0.0,
|
| 638 |
+
"clip_ratio/high_mean": 0.0,
|
| 639 |
+
"clip_ratio/low_mean": 0.0,
|
| 640 |
+
"clip_ratio/low_min": 0.0,
|
| 641 |
+
"clip_ratio/region_mean": 0.0,
|
| 642 |
+
"completions/clipped_ratio": 0.0,
|
| 643 |
+
"completions/max_length": 734.0,
|
| 644 |
+
"completions/max_terminated_length": 734.0,
|
| 645 |
+
"completions/mean_length": 146.28125,
|
| 646 |
+
"completions/mean_terminated_length": 146.28125,
|
| 647 |
+
"completions/min_length": 3.0,
|
| 648 |
+
"completions/min_terminated_length": 3.0,
|
| 649 |
+
"entropy": 0.15740215915138833,
|
| 650 |
+
"epoch": 0.00027,
|
| 651 |
+
"frac_reward_zero_std": 0.0,
|
| 652 |
+
"grad_norm": 0.7164216041564941,
|
| 653 |
+
"kl": 1.4110768623650074,
|
| 654 |
+
"learning_rate": 7.428571428571429e-05,
|
| 655 |
+
"loss": -0.0054,
|
| 656 |
+
"num_tokens": 536415.0,
|
| 657 |
+
"reward": 0.613898515701294,
|
| 658 |
+
"reward_std": 0.7614923715591431,
|
| 659 |
+
"rewards/rollout_reward_func/mean": 0.613898515701294,
|
| 660 |
+
"rewards/rollout_reward_func/std": 0.7739964723587036,
|
| 661 |
+
"sampling/importance_sampling_ratio/max": 1.3575035333633423,
|
| 662 |
+
"sampling/importance_sampling_ratio/mean": 0.9464373588562012,
|
| 663 |
+
"sampling/importance_sampling_ratio/min": 0.18349826335906982,
|
| 664 |
+
"sampling/sampling_logp_difference/max": 1.3662632703781128,
|
| 665 |
+
"sampling/sampling_logp_difference/mean": 0.043687544763088226,
|
| 666 |
+
"step": 27,
|
| 667 |
+
"step_time": 9.54420504699965
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"clip_ratio/high_max": 0.0062500000931322575,
|
| 671 |
+
"clip_ratio/high_mean": 0.0031250000465661287,
|
| 672 |
+
"clip_ratio/low_mean": 0.05654762079939246,
|
| 673 |
+
"clip_ratio/low_min": 0.0,
|
| 674 |
+
"clip_ratio/region_mean": 0.05967262154445052,
|
| 675 |
+
"entropy": 0.14962338455370627,
|
| 676 |
+
"epoch": 0.00028,
|
| 677 |
+
"grad_norm": 0.2844441533088684,
|
| 678 |
+
"kl": 1.628791993483901,
|
| 679 |
+
"learning_rate": 7.714285714285715e-05,
|
| 680 |
+
"loss": -0.0084,
|
| 681 |
+
"step": 28,
|
| 682 |
+
"step_time": 5.213027034000561
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"clip_ratio/high_max": 0.03281250037252903,
|
| 686 |
+
"clip_ratio/high_mean": 0.016406250186264515,
|
| 687 |
+
"clip_ratio/low_mean": 0.001953125,
|
| 688 |
+
"clip_ratio/low_min": 0.0,
|
| 689 |
+
"clip_ratio/region_mean": 0.018359375186264515,
|
| 690 |
+
"completions/clipped_ratio": 0.0,
|
| 691 |
+
"completions/max_length": 1858.0,
|
| 692 |
+
"completions/max_terminated_length": 1858.0,
|
| 693 |
+
"completions/mean_length": 245.40625,
|
| 694 |
+
"completions/mean_terminated_length": 245.40625,
|
| 695 |
+
"completions/min_length": 2.0,
|
| 696 |
+
"completions/min_terminated_length": 2.0,
|
| 697 |
+
"entropy": 0.1823743417917285,
|
| 698 |
+
"epoch": 0.00029,
|
| 699 |
+
"frac_reward_zero_std": 0.0,
|
| 700 |
+
"grad_norm": 0.5472207069396973,
|
| 701 |
+
"kl": 1.2950569400563836,
|
| 702 |
+
"learning_rate": 8e-05,
|
| 703 |
+
"loss": 0.0192,
|
| 704 |
+
"num_tokens": 572908.0,
|
| 705 |
+
"reward": 0.7323958873748779,
|
| 706 |
+
"reward_std": 0.75600266456604,
|
| 707 |
+
"rewards/rollout_reward_func/mean": 0.7323958873748779,
|
| 708 |
+
"rewards/rollout_reward_func/std": 0.7951676249504089,
|
| 709 |
+
"sampling/importance_sampling_ratio/max": 1.7107934951782227,
|
| 710 |
+
"sampling/importance_sampling_ratio/mean": 1.0277063846588135,
|
| 711 |
+
"sampling/importance_sampling_ratio/min": 0.6659436225891113,
|
| 712 |
+
"sampling/sampling_logp_difference/max": 0.7972254753112793,
|
| 713 |
+
"sampling/sampling_logp_difference/mean": 0.0571967251598835,
|
| 714 |
+
"step": 29,
|
| 715 |
+
"step_time": 12.326968075999275
|
| 716 |
+
},
|
| 717 |
+
{
|
| 718 |
+
"clip_ratio/high_max": 0.07599431928247213,
|
| 719 |
+
"clip_ratio/high_mean": 0.03799715964123607,
|
| 720 |
+
"clip_ratio/low_mean": 0.029296875,
|
| 721 |
+
"clip_ratio/low_min": 0.0,
|
| 722 |
+
"clip_ratio/region_mean": 0.0672940332442522,
|
| 723 |
+
"entropy": 0.18252644933818374,
|
| 724 |
+
"epoch": 0.0003,
|
| 725 |
+
"grad_norm": 0.42486661672592163,
|
| 726 |
+
"kl": 1.2426311783492565,
|
| 727 |
+
"learning_rate": 8.285714285714287e-05,
|
| 728 |
+
"loss": 0.0204,
|
| 729 |
+
"step": 30,
|
| 730 |
+
"step_time": 7.674688885000478
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"clip_ratio/high_max": 0.02083333395421505,
|
| 734 |
+
"clip_ratio/high_mean": 0.010416666977107525,
|
| 735 |
+
"clip_ratio/low_mean": 0.010156250093132257,
|
| 736 |
+
"clip_ratio/low_min": 0.0,
|
| 737 |
+
"clip_ratio/region_mean": 0.020572917070239782,
|
| 738 |
+
"completions/clipped_ratio": 0.0,
|
| 739 |
+
"completions/max_length": 1072.0,
|
| 740 |
+
"completions/max_terminated_length": 1072.0,
|
| 741 |
+
"completions/mean_length": 203.8125,
|
| 742 |
+
"completions/mean_terminated_length": 203.8125,
|
| 743 |
+
"completions/min_length": 3.0,
|
| 744 |
+
"completions/min_terminated_length": 3.0,
|
| 745 |
+
"entropy": 0.18441346354666166,
|
| 746 |
+
"epoch": 0.00031,
|
| 747 |
+
"frac_reward_zero_std": 0.0,
|
| 748 |
+
"grad_norm": 0.8369215130805969,
|
| 749 |
+
"kl": 2.210440620779991,
|
| 750 |
+
"learning_rate": 8.571428571428571e-05,
|
| 751 |
+
"loss": 0.0219,
|
| 752 |
+
"num_tokens": 609478.0,
|
| 753 |
+
"reward": 0.6868749856948853,
|
| 754 |
+
"reward_std": 0.723414421081543,
|
| 755 |
+
"rewards/rollout_reward_func/mean": 0.6868749856948853,
|
| 756 |
+
"rewards/rollout_reward_func/std": 0.7201352715492249,
|
| 757 |
+
"sampling/importance_sampling_ratio/max": 2.42289662361145,
|
| 758 |
+
"sampling/importance_sampling_ratio/mean": 1.0437120199203491,
|
| 759 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 760 |
+
"sampling/sampling_logp_difference/max": 1.2931618690490723,
|
| 761 |
+
"sampling/sampling_logp_difference/mean": 0.06052036210894585,
|
| 762 |
+
"step": 31,
|
| 763 |
+
"step_time": 9.324151609999944
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"clip_ratio/high_max": 0.0476190485060215,
|
| 767 |
+
"clip_ratio/high_mean": 0.026650432962924242,
|
| 768 |
+
"clip_ratio/low_mean": 0.03255208348855376,
|
| 769 |
+
"clip_ratio/low_min": 0.0,
|
| 770 |
+
"clip_ratio/region_mean": 0.059202516451478004,
|
| 771 |
+
"entropy": 0.18722298718057573,
|
| 772 |
+
"epoch": 0.00032,
|
| 773 |
+
"grad_norm": 0.1640804558992386,
|
| 774 |
+
"kl": 2.2689803540706635,
|
| 775 |
+
"learning_rate": 8.857142857142857e-05,
|
| 776 |
+
"loss": 0.0193,
|
| 777 |
+
"step": 32,
|
| 778 |
+
"step_time": 6.513984409999921
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"clip_ratio/high_max": 0.0,
|
| 782 |
+
"clip_ratio/high_mean": 0.0,
|
| 783 |
+
"clip_ratio/low_mean": 0.0052083334885537624,
|
| 784 |
+
"clip_ratio/low_min": 0.0,
|
| 785 |
+
"clip_ratio/region_mean": 0.0052083334885537624,
|
| 786 |
+
"completions/clipped_ratio": 0.0,
|
| 787 |
+
"completions/max_length": 941.0,
|
| 788 |
+
"completions/max_terminated_length": 941.0,
|
| 789 |
+
"completions/mean_length": 260.71875,
|
| 790 |
+
"completions/mean_terminated_length": 260.71875,
|
| 791 |
+
"completions/min_length": 3.0,
|
| 792 |
+
"completions/min_terminated_length": 3.0,
|
| 793 |
+
"entropy": 0.3189265597611666,
|
| 794 |
+
"epoch": 0.00033,
|
| 795 |
+
"frac_reward_zero_std": 0.0,
|
| 796 |
+
"grad_norm": 1.0061767101287842,
|
| 797 |
+
"kl": 1.4462116956710815,
|
| 798 |
+
"learning_rate": 9.142857142857143e-05,
|
| 799 |
+
"loss": 0.0183,
|
| 800 |
+
"num_tokens": 648894.0,
|
| 801 |
+
"reward": 1.0101041793823242,
|
| 802 |
+
"reward_std": 0.3137112855911255,
|
| 803 |
+
"rewards/rollout_reward_func/mean": 1.0101041793823242,
|
| 804 |
+
"rewards/rollout_reward_func/std": 0.4550347924232483,
|
| 805 |
+
"sampling/importance_sampling_ratio/max": 2.6488871574401855,
|
| 806 |
+
"sampling/importance_sampling_ratio/mean": 1.0141404867172241,
|
| 807 |
+
"sampling/importance_sampling_ratio/min": 0.8440296649932861,
|
| 808 |
+
"sampling/sampling_logp_difference/max": 0.6730160713195801,
|
| 809 |
+
"sampling/sampling_logp_difference/mean": 0.037406109273433685,
|
| 810 |
+
"step": 33,
|
| 811 |
+
"step_time": 9.245252041999493
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"clip_ratio/high_max": 0.03219697065651417,
|
| 815 |
+
"clip_ratio/high_mean": 0.016098485328257084,
|
| 816 |
+
"clip_ratio/low_mean": 0.03906250186264515,
|
| 817 |
+
"clip_ratio/low_min": 0.015625,
|
| 818 |
+
"clip_ratio/region_mean": 0.05516098719090223,
|
| 819 |
+
"entropy": 0.2540598356135888,
|
| 820 |
+
"epoch": 0.00034,
|
| 821 |
+
"grad_norm": 3.8695592880249023,
|
| 822 |
+
"kl": 5.638480260968208,
|
| 823 |
+
"learning_rate": 9.428571428571429e-05,
|
| 824 |
+
"loss": 0.0256,
|
| 825 |
+
"step": 34,
|
| 826 |
+
"step_time": 6.270834967000383
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"clip_ratio/high_max": 0.008928571827709675,
|
| 830 |
+
"clip_ratio/high_mean": 0.004464285913854837,
|
| 831 |
+
"clip_ratio/low_mean": 0.0,
|
| 832 |
+
"clip_ratio/low_min": 0.0,
|
| 833 |
+
"clip_ratio/region_mean": 0.004464285913854837,
|
| 834 |
+
"completions/clipped_ratio": 0.0,
|
| 835 |
+
"completions/max_length": 996.0,
|
| 836 |
+
"completions/max_terminated_length": 996.0,
|
| 837 |
+
"completions/mean_length": 313.28125,
|
| 838 |
+
"completions/mean_terminated_length": 313.28125,
|
| 839 |
+
"completions/min_length": 3.0,
|
| 840 |
+
"completions/min_terminated_length": 3.0,
|
| 841 |
+
"entropy": 0.1834048866876401,
|
| 842 |
+
"epoch": 0.00035,
|
| 843 |
+
"frac_reward_zero_std": 0.0,
|
| 844 |
+
"grad_norm": 0.25010761618614197,
|
| 845 |
+
"kl": 2.1367476396262646,
|
| 846 |
+
"learning_rate": 9.714285714285715e-05,
|
| 847 |
+
"loss": 0.0022,
|
| 848 |
+
"num_tokens": 688634.0,
|
| 849 |
+
"reward": 0.755062460899353,
|
| 850 |
+
"reward_std": 0.5053232312202454,
|
| 851 |
+
"rewards/rollout_reward_func/mean": 0.755062460899353,
|
| 852 |
+
"rewards/rollout_reward_func/std": 0.5986501574516296,
|
| 853 |
+
"sampling/importance_sampling_ratio/max": 1.6370441913604736,
|
| 854 |
+
"sampling/importance_sampling_ratio/mean": 0.9969434142112732,
|
| 855 |
+
"sampling/importance_sampling_ratio/min": 0.5411856174468994,
|
| 856 |
+
"sampling/sampling_logp_difference/max": 0.6061768531799316,
|
| 857 |
+
"sampling/sampling_logp_difference/mean": 0.024847794324159622,
|
| 858 |
+
"step": 35,
|
| 859 |
+
"step_time": 9.242927256999792
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"clip_ratio/high_max": 0.034598215483129025,
|
| 863 |
+
"clip_ratio/high_mean": 0.017299107741564512,
|
| 864 |
+
"clip_ratio/low_mean": 0.00937500037252903,
|
| 865 |
+
"clip_ratio/low_min": 0.0,
|
| 866 |
+
"clip_ratio/region_mean": 0.026674108114093542,
|
| 867 |
+
"entropy": 0.1706730479199905,
|
| 868 |
+
"epoch": 0.00036,
|
| 869 |
+
"grad_norm": 0.17176270484924316,
|
| 870 |
+
"kl": 2.141612984240055,
|
| 871 |
+
"learning_rate": 0.0001,
|
| 872 |
+
"loss": 0.0007,
|
| 873 |
+
"step": 36,
|
| 874 |
+
"step_time": 6.4294925179997335
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"clip_ratio/high_max": 0.0,
|
| 878 |
+
"clip_ratio/high_mean": 0.0,
|
| 879 |
+
"clip_ratio/low_mean": 0.0,
|
| 880 |
+
"clip_ratio/low_min": 0.0,
|
| 881 |
+
"clip_ratio/region_mean": 0.0,
|
| 882 |
+
"completions/clipped_ratio": 0.0,
|
| 883 |
+
"completions/max_length": 1151.0,
|
| 884 |
+
"completions/max_terminated_length": 1151.0,
|
| 885 |
+
"completions/mean_length": 213.9375,
|
| 886 |
+
"completions/mean_terminated_length": 213.9375,
|
| 887 |
+
"completions/min_length": 3.0,
|
| 888 |
+
"completions/min_terminated_length": 3.0,
|
| 889 |
+
"entropy": 0.17484768042049836,
|
| 890 |
+
"epoch": 0.00037,
|
| 891 |
+
"frac_reward_zero_std": 0.0,
|
| 892 |
+
"grad_norm": 0.26422277092933655,
|
| 893 |
+
"kl": 1.4826668202877045,
|
| 894 |
+
"learning_rate": 9.999736485702831e-05,
|
| 895 |
+
"loss": -0.005,
|
| 896 |
+
"num_tokens": 724933.0,
|
| 897 |
+
"reward": 0.7631042003631592,
|
| 898 |
+
"reward_std": 0.6272491216659546,
|
| 899 |
+
"rewards/rollout_reward_func/mean": 0.7631042003631592,
|
| 900 |
+
"rewards/rollout_reward_func/std": 0.6655160188674927,
|
| 901 |
+
"sampling/importance_sampling_ratio/max": 1.4438666105270386,
|
| 902 |
+
"sampling/importance_sampling_ratio/mean": 0.9936277270317078,
|
| 903 |
+
"sampling/importance_sampling_ratio/min": 0.41797348856925964,
|
| 904 |
+
"sampling/sampling_logp_difference/max": 0.7619318962097168,
|
| 905 |
+
"sampling/sampling_logp_difference/mean": 0.03127425163984299,
|
| 906 |
+
"step": 37,
|
| 907 |
+
"step_time": 9.695621070000243
|
| 908 |
+
},
|
| 909 |
+
{
|
| 910 |
+
"clip_ratio/high_max": 0.033928572200238705,
|
| 911 |
+
"clip_ratio/high_mean": 0.016964286100119352,
|
| 912 |
+
"clip_ratio/low_mean": 0.02187500079162419,
|
| 913 |
+
"clip_ratio/low_min": 0.0,
|
| 914 |
+
"clip_ratio/region_mean": 0.03883928689174354,
|
| 915 |
+
"entropy": 0.15785920085181715,
|
| 916 |
+
"epoch": 0.00038,
|
| 917 |
+
"grad_norm": 0.16681881248950958,
|
| 918 |
+
"kl": 1.522850140929222,
|
| 919 |
+
"learning_rate": 9.998945979845876e-05,
|
| 920 |
+
"loss": -0.0062,
|
| 921 |
+
"step": 38,
|
| 922 |
+
"step_time": 6.750669727000513
|
| 923 |
+
},
|
| 924 |
+
{
|
| 925 |
+
"clip_ratio/high_max": 0.0,
|
| 926 |
+
"clip_ratio/high_mean": 0.0,
|
| 927 |
+
"clip_ratio/low_mean": 0.0,
|
| 928 |
+
"clip_ratio/low_min": 0.0,
|
| 929 |
+
"clip_ratio/region_mean": 0.0,
|
| 930 |
+
"completions/clipped_ratio": 0.0,
|
| 931 |
+
"completions/max_length": 1154.0,
|
| 932 |
+
"completions/max_terminated_length": 1154.0,
|
| 933 |
+
"completions/mean_length": 231.53125,
|
| 934 |
+
"completions/mean_terminated_length": 231.53125,
|
| 935 |
+
"completions/min_length": 3.0,
|
| 936 |
+
"completions/min_terminated_length": 3.0,
|
| 937 |
+
"entropy": 0.11877059687685687,
|
| 938 |
+
"epoch": 0.00039,
|
| 939 |
+
"frac_reward_zero_std": 0.0,
|
| 940 |
+
"grad_norm": 0.24095091223716736,
|
| 941 |
+
"kl": 1.5396657940000296,
|
| 942 |
+
"learning_rate": 9.997628593527586e-05,
|
| 943 |
+
"loss": -0.0042,
|
| 944 |
+
"num_tokens": 762128.0,
|
| 945 |
+
"reward": 0.7163541316986084,
|
| 946 |
+
"reward_std": 0.6136023998260498,
|
| 947 |
+
"rewards/rollout_reward_func/mean": 0.7163541316986084,
|
| 948 |
+
"rewards/rollout_reward_func/std": 0.610213577747345,
|
| 949 |
+
"sampling/importance_sampling_ratio/max": 1.3014845848083496,
|
| 950 |
+
"sampling/importance_sampling_ratio/mean": 1.0244951248168945,
|
| 951 |
+
"sampling/importance_sampling_ratio/min": 0.889356791973114,
|
| 952 |
+
"sampling/sampling_logp_difference/max": 0.2697678804397583,
|
| 953 |
+
"sampling/sampling_logp_difference/mean": 0.01579492911696434,
|
| 954 |
+
"step": 39,
|
| 955 |
+
"step_time": 9.640163768999855
|
| 956 |
+
},
|
| 957 |
+
{
|
| 958 |
+
"clip_ratio/high_max": 0.01785714365541935,
|
| 959 |
+
"clip_ratio/high_mean": 0.008928571827709675,
|
| 960 |
+
"clip_ratio/low_mean": 0.018750000279396772,
|
| 961 |
+
"clip_ratio/low_min": 0.0,
|
| 962 |
+
"clip_ratio/region_mean": 0.027678572107106447,
|
| 963 |
+
"entropy": 0.10194598157977453,
|
| 964 |
+
"epoch": 0.0004,
|
| 965 |
+
"grad_norm": 0.06580612063407898,
|
| 966 |
+
"kl": 1.5702023096382618,
|
| 967 |
+
"learning_rate": 9.995784511894694e-05,
|
| 968 |
+
"loss": -0.006,
|
| 969 |
+
"step": 40,
|
| 970 |
+
"step_time": 6.767393307999555
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"clip_ratio/high_max": 0.0,
|
| 974 |
+
"clip_ratio/high_mean": 0.0,
|
| 975 |
+
"clip_ratio/low_mean": 0.004464285913854837,
|
| 976 |
+
"clip_ratio/low_min": 0.0,
|
| 977 |
+
"clip_ratio/region_mean": 0.004464285913854837,
|
| 978 |
+
"completions/clipped_ratio": 0.0,
|
| 979 |
+
"completions/max_length": 1234.0,
|
| 980 |
+
"completions/max_terminated_length": 1234.0,
|
| 981 |
+
"completions/mean_length": 262.125,
|
| 982 |
+
"completions/mean_terminated_length": 262.125,
|
| 983 |
+
"completions/min_length": 2.0,
|
| 984 |
+
"completions/min_terminated_length": 2.0,
|
| 985 |
+
"entropy": 0.11627826229232596,
|
| 986 |
+
"epoch": 0.00041,
|
| 987 |
+
"frac_reward_zero_std": 0.0,
|
| 988 |
+
"grad_norm": 0.1414710283279419,
|
| 989 |
+
"kl": 1.8666857853531837,
|
| 990 |
+
"learning_rate": 9.993413994116206e-05,
|
| 991 |
+
"loss": -0.0112,
|
| 992 |
+
"num_tokens": 800926.0,
|
| 993 |
+
"reward": 0.6219791769981384,
|
| 994 |
+
"reward_std": 0.6369723677635193,
|
| 995 |
+
"rewards/rollout_reward_func/mean": 0.6219791769981384,
|
| 996 |
+
"rewards/rollout_reward_func/std": 0.7292099595069885,
|
| 997 |
+
"sampling/importance_sampling_ratio/max": 1.110335350036621,
|
| 998 |
+
"sampling/importance_sampling_ratio/mean": 0.9453052282333374,
|
| 999 |
+
"sampling/importance_sampling_ratio/min": 0.4698891043663025,
|
| 1000 |
+
"sampling/sampling_logp_difference/max": 0.7473087310791016,
|
| 1001 |
+
"sampling/sampling_logp_difference/mean": 0.026049025356769562,
|
| 1002 |
+
"step": 41,
|
| 1003 |
+
"step_time": 10.046313624000959
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"clip_ratio/high_max": 0.012500000186264515,
|
| 1007 |
+
"clip_ratio/high_mean": 0.0062500000931322575,
|
| 1008 |
+
"clip_ratio/low_mean": 0.0062500000931322575,
|
| 1009 |
+
"clip_ratio/low_min": 0.0,
|
| 1010 |
+
"clip_ratio/region_mean": 0.012500000186264515,
|
| 1011 |
+
"entropy": 0.11148970657086466,
|
| 1012 |
+
"epoch": 0.00042,
|
| 1013 |
+
"grad_norm": 0.18441708385944366,
|
| 1014 |
+
"kl": 1.8012165799736977,
|
| 1015 |
+
"learning_rate": 9.990517373346957e-05,
|
| 1016 |
+
"loss": -0.0113,
|
| 1017 |
+
"step": 42,
|
| 1018 |
+
"step_time": 6.999212858999272
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"clip_ratio/high_max": 0.008928571827709675,
|
| 1022 |
+
"clip_ratio/high_mean": 0.004464285913854837,
|
| 1023 |
+
"clip_ratio/low_mean": 0.0,
|
| 1024 |
+
"clip_ratio/low_min": 0.0,
|
| 1025 |
+
"clip_ratio/region_mean": 0.004464285913854837,
|
| 1026 |
+
"completions/clipped_ratio": 0.0,
|
| 1027 |
+
"completions/max_length": 1055.0,
|
| 1028 |
+
"completions/max_terminated_length": 1055.0,
|
| 1029 |
+
"completions/mean_length": 225.75,
|
| 1030 |
+
"completions/mean_terminated_length": 225.75,
|
| 1031 |
+
"completions/min_length": 3.0,
|
| 1032 |
+
"completions/min_terminated_length": 3.0,
|
| 1033 |
+
"entropy": 0.07133681878985954,
|
| 1034 |
+
"epoch": 0.00043,
|
| 1035 |
+
"frac_reward_zero_std": 0.0,
|
| 1036 |
+
"grad_norm": 0.13256920874118805,
|
| 1037 |
+
"kl": 1.7951918244361877,
|
| 1038 |
+
"learning_rate": 9.98709505668081e-05,
|
| 1039 |
+
"loss": -0.0056,
|
| 1040 |
+
"num_tokens": 838155.0,
|
| 1041 |
+
"reward": 0.7849375009536743,
|
| 1042 |
+
"reward_std": 0.504135251045227,
|
| 1043 |
+
"rewards/rollout_reward_func/mean": 0.7849375009536743,
|
| 1044 |
+
"rewards/rollout_reward_func/std": 0.5278446674346924,
|
| 1045 |
+
"sampling/importance_sampling_ratio/max": 1.3283132314682007,
|
| 1046 |
+
"sampling/importance_sampling_ratio/mean": 1.0156052112579346,
|
| 1047 |
+
"sampling/importance_sampling_ratio/min": 0.6983067393302917,
|
| 1048 |
+
"sampling/sampling_logp_difference/max": 0.3479170799255371,
|
| 1049 |
+
"sampling/sampling_logp_difference/mean": 0.013128189370036125,
|
| 1050 |
+
"step": 43,
|
| 1051 |
+
"step_time": 9.243569922999086
|
| 1052 |
+
},
|
| 1053 |
+
{
|
| 1054 |
+
"clip_ratio/high_max": 0.037500000558793545,
|
| 1055 |
+
"clip_ratio/high_mean": 0.018750000279396772,
|
| 1056 |
+
"clip_ratio/low_mean": 0.018750000279396772,
|
| 1057 |
+
"clip_ratio/low_min": 0.0,
|
| 1058 |
+
"clip_ratio/region_mean": 0.037500000558793545,
|
| 1059 |
+
"entropy": 0.0734066000659368,
|
| 1060 |
+
"epoch": 0.00044,
|
| 1061 |
+
"grad_norm": 0.13717395067214966,
|
| 1062 |
+
"kl": 1.8053691610693932,
|
| 1063 |
+
"learning_rate": 9.983147525093428e-05,
|
| 1064 |
+
"loss": -0.0058,
|
| 1065 |
+
"step": 44,
|
| 1066 |
+
"step_time": 6.4607698830004665
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"clip_ratio/high_max": 0.0,
|
| 1070 |
+
"clip_ratio/high_mean": 0.0,
|
| 1071 |
+
"clip_ratio/low_mean": 0.0,
|
| 1072 |
+
"clip_ratio/low_min": 0.0,
|
| 1073 |
+
"clip_ratio/region_mean": 0.0,
|
| 1074 |
+
"completions/clipped_ratio": 0.0,
|
| 1075 |
+
"completions/max_length": 1415.0,
|
| 1076 |
+
"completions/max_terminated_length": 1415.0,
|
| 1077 |
+
"completions/mean_length": 238.96875,
|
| 1078 |
+
"completions/mean_terminated_length": 238.96875,
|
| 1079 |
+
"completions/min_length": 2.0,
|
| 1080 |
+
"completions/min_terminated_length": 2.0,
|
| 1081 |
+
"entropy": 0.09801992701250128,
|
| 1082 |
+
"epoch": 0.00045,
|
| 1083 |
+
"frac_reward_zero_std": 0.0,
|
| 1084 |
+
"grad_norm": 0.1328868269920349,
|
| 1085 |
+
"kl": 1.706927303224802,
|
| 1086 |
+
"learning_rate": 9.978675333374685e-05,
|
| 1087 |
+
"loss": 0.0016,
|
| 1088 |
+
"num_tokens": 876303.0,
|
| 1089 |
+
"reward": 0.7598124742507935,
|
| 1090 |
+
"reward_std": 0.5679430365562439,
|
| 1091 |
+
"rewards/rollout_reward_func/mean": 0.7598124742507935,
|
| 1092 |
+
"rewards/rollout_reward_func/std": 0.5967590808868408,
|
| 1093 |
+
"sampling/importance_sampling_ratio/max": 1.169681429862976,
|
| 1094 |
+
"sampling/importance_sampling_ratio/mean": 1.0279597043991089,
|
| 1095 |
+
"sampling/importance_sampling_ratio/min": 0.8635076880455017,
|
| 1096 |
+
"sampling/sampling_logp_difference/max": 0.1565859317779541,
|
| 1097 |
+
"sampling/sampling_logp_difference/mean": 0.012495058588683605,
|
| 1098 |
+
"step": 45,
|
| 1099 |
+
"step_time": 10.574091848000535
|
| 1100 |
+
},
|
| 1101 |
+
{
|
| 1102 |
+
"clip_ratio/high_max": 0.05000000074505806,
|
| 1103 |
+
"clip_ratio/high_mean": 0.02500000037252903,
|
| 1104 |
+
"clip_ratio/low_mean": 0.004464285913854837,
|
| 1105 |
+
"clip_ratio/low_min": 0.0,
|
| 1106 |
+
"clip_ratio/region_mean": 0.029464286286383867,
|
| 1107 |
+
"entropy": 0.10025507608952466,
|
| 1108 |
+
"epoch": 0.00046,
|
| 1109 |
+
"grad_norm": 0.06521525233983994,
|
| 1110 |
+
"kl": 1.6916628777980804,
|
| 1111 |
+
"learning_rate": 9.973679110050689e-05,
|
| 1112 |
+
"loss": 0.001,
|
| 1113 |
+
"step": 46,
|
| 1114 |
+
"step_time": 6.771763879000218
|
| 1115 |
+
},
|
| 1116 |
+
{
|
| 1117 |
+
"clip_ratio/high_max": 0.0,
|
| 1118 |
+
"clip_ratio/high_mean": 0.0,
|
| 1119 |
+
"clip_ratio/low_mean": 0.0,
|
| 1120 |
+
"clip_ratio/low_min": 0.0,
|
| 1121 |
+
"clip_ratio/region_mean": 0.0,
|
| 1122 |
+
"completions/clipped_ratio": 0.0,
|
| 1123 |
+
"completions/max_length": 1134.0,
|
| 1124 |
+
"completions/max_terminated_length": 1134.0,
|
| 1125 |
+
"completions/mean_length": 202.84375,
|
| 1126 |
+
"completions/mean_terminated_length": 202.84375,
|
| 1127 |
+
"completions/min_length": 2.0,
|
| 1128 |
+
"completions/min_terminated_length": 2.0,
|
| 1129 |
+
"entropy": 0.0900510510073218,
|
| 1130 |
+
"epoch": 0.00047,
|
| 1131 |
+
"frac_reward_zero_std": 0.0,
|
| 1132 |
+
"grad_norm": 0.14434900879859924,
|
| 1133 |
+
"kl": 1.4058816023170948,
|
| 1134 |
+
"learning_rate": 9.968159557295458e-05,
|
| 1135 |
+
"loss": -0.006,
|
| 1136 |
+
"num_tokens": 911967.0,
|
| 1137 |
+
"reward": 0.8627499938011169,
|
| 1138 |
+
"reward_std": 0.5587868690490723,
|
| 1139 |
+
"rewards/rollout_reward_func/mean": 0.8627499938011169,
|
| 1140 |
+
"rewards/rollout_reward_func/std": 0.5566409230232239,
|
| 1141 |
+
"sampling/importance_sampling_ratio/max": 1.1530331373214722,
|
| 1142 |
+
"sampling/importance_sampling_ratio/mean": 0.9977372288703918,
|
| 1143 |
+
"sampling/importance_sampling_ratio/min": 0.5316535234451294,
|
| 1144 |
+
"sampling/sampling_logp_difference/max": 0.6474550366401672,
|
| 1145 |
+
"sampling/sampling_logp_difference/mean": 0.016066744923591614,
|
| 1146 |
+
"step": 47,
|
| 1147 |
+
"step_time": 9.447806593999758
|
| 1148 |
+
},
|
| 1149 |
+
{
|
| 1150 |
+
"clip_ratio/high_max": 0.02142857201397419,
|
| 1151 |
+
"clip_ratio/high_mean": 0.010714286006987095,
|
| 1152 |
+
"clip_ratio/low_mean": 0.0,
|
| 1153 |
+
"clip_ratio/low_min": 0.0,
|
| 1154 |
+
"clip_ratio/region_mean": 0.010714286006987095,
|
| 1155 |
+
"entropy": 0.09766281770862406,
|
| 1156 |
+
"epoch": 0.00048,
|
| 1157 |
+
"grad_norm": 0.06667943298816681,
|
| 1158 |
+
"kl": 1.405099406838417,
|
| 1159 |
+
"learning_rate": 9.962117450832225e-05,
|
| 1160 |
+
"loss": -0.0064,
|
| 1161 |
+
"step": 48,
|
| 1162 |
+
"step_time": 6.173912093000354
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"clip_ratio/high_max": 0.0,
|
| 1166 |
+
"clip_ratio/high_mean": 0.0,
|
| 1167 |
+
"clip_ratio/low_mean": 0.0,
|
| 1168 |
+
"clip_ratio/low_min": 0.0,
|
| 1169 |
+
"clip_ratio/region_mean": 0.0,
|
| 1170 |
+
"completions/clipped_ratio": 0.0,
|
| 1171 |
+
"completions/max_length": 658.0,
|
| 1172 |
+
"completions/max_terminated_length": 658.0,
|
| 1173 |
+
"completions/mean_length": 215.1875,
|
| 1174 |
+
"completions/mean_terminated_length": 215.1875,
|
| 1175 |
+
"completions/min_length": 3.0,
|
| 1176 |
+
"completions/min_terminated_length": 3.0,
|
| 1177 |
+
"entropy": 0.09605835549155017,
|
| 1178 |
+
"epoch": 0.00049,
|
| 1179 |
+
"frac_reward_zero_std": 0.0,
|
| 1180 |
+
"grad_norm": 0.06864096969366074,
|
| 1181 |
+
"kl": 1.3723388984799385,
|
| 1182 |
+
"learning_rate": 9.955553639824423e-05,
|
| 1183 |
+
"loss": -0.0005,
|
| 1184 |
+
"num_tokens": 948707.0,
|
| 1185 |
+
"reward": 0.893958330154419,
|
| 1186 |
+
"reward_std": 0.47342604398727417,
|
| 1187 |
+
"rewards/rollout_reward_func/mean": 0.893958330154419,
|
| 1188 |
+
"rewards/rollout_reward_func/std": 0.47255393862724304,
|
| 1189 |
+
"sampling/importance_sampling_ratio/max": 1.1744683980941772,
|
| 1190 |
+
"sampling/importance_sampling_ratio/mean": 0.9887692928314209,
|
| 1191 |
+
"sampling/importance_sampling_ratio/min": 0.89034104347229,
|
| 1192 |
+
"sampling/sampling_logp_difference/max": 0.16428709030151367,
|
| 1193 |
+
"sampling/sampling_logp_difference/mean": 0.010529636405408382,
|
| 1194 |
+
"step": 49,
|
| 1195 |
+
"step_time": 9.043114574000356
|
| 1196 |
+
},
|
| 1197 |
+
{
|
| 1198 |
+
"clip_ratio/high_max": 0.02500000037252903,
|
| 1199 |
+
"clip_ratio/high_mean": 0.012500000186264515,
|
| 1200 |
+
"clip_ratio/low_mean": 0.016666667070239782,
|
| 1201 |
+
"clip_ratio/low_min": 0.0,
|
| 1202 |
+
"clip_ratio/region_mean": 0.029166667256504297,
|
| 1203 |
+
"entropy": 0.1075448725168826,
|
| 1204 |
+
"epoch": 0.0005,
|
| 1205 |
+
"grad_norm": 0.0960911437869072,
|
| 1206 |
+
"kl": 1.4063957203179598,
|
| 1207 |
+
"learning_rate": 9.948469046756344e-05,
|
| 1208 |
+
"loss": -0.0009,
|
| 1209 |
+
"step": 50,
|
| 1210 |
+
"step_time": 5.642086785000174
|
| 1211 |
+
},
|
| 1212 |
+
{
|
| 1213 |
+
"clip_ratio/high_max": 0.008928571827709675,
|
| 1214 |
+
"clip_ratio/high_mean": 0.004464285913854837,
|
| 1215 |
+
"clip_ratio/low_mean": 0.0,
|
| 1216 |
+
"clip_ratio/low_min": 0.0,
|
| 1217 |
+
"clip_ratio/region_mean": 0.004464285913854837,
|
| 1218 |
+
"completions/clipped_ratio": 0.0,
|
| 1219 |
+
"completions/max_length": 1071.0,
|
| 1220 |
+
"completions/max_terminated_length": 1071.0,
|
| 1221 |
+
"completions/mean_length": 316.09375,
|
| 1222 |
+
"completions/mean_terminated_length": 316.09375,
|
| 1223 |
+
"completions/min_length": 2.0,
|
| 1224 |
+
"completions/min_terminated_length": 2.0,
|
| 1225 |
+
"entropy": 0.17863493447657675,
|
| 1226 |
+
"epoch": 0.00051,
|
| 1227 |
+
"frac_reward_zero_std": 0.0,
|
| 1228 |
+
"grad_norm": 0.6474497318267822,
|
| 1229 |
+
"kl": 2.192594848573208,
|
| 1230 |
+
"learning_rate": 9.940864667303489e-05,
|
| 1231 |
+
"loss": 0.0143,
|
| 1232 |
+
"num_tokens": 989035.0,
|
| 1233 |
+
"reward": 0.5325833559036255,
|
| 1234 |
+
"reward_std": 0.8769392967224121,
|
| 1235 |
+
"rewards/rollout_reward_func/mean": 0.5325833559036255,
|
| 1236 |
+
"rewards/rollout_reward_func/std": 0.853682279586792,
|
| 1237 |
+
"sampling/importance_sampling_ratio/max": 1.9499620199203491,
|
| 1238 |
+
"sampling/importance_sampling_ratio/mean": 0.9530384540557861,
|
| 1239 |
+
"sampling/importance_sampling_ratio/min": 0.4134676158428192,
|
| 1240 |
+
"sampling/sampling_logp_difference/max": 0.9089558124542236,
|
| 1241 |
+
"sampling/sampling_logp_difference/mean": 0.05595976859331131,
|
| 1242 |
+
"step": 51,
|
| 1243 |
+
"step_time": 9.98290348799992
|
| 1244 |
+
},
|
| 1245 |
+
{
|
| 1246 |
+
"clip_ratio/high_max": 0.04642857238650322,
|
| 1247 |
+
"clip_ratio/high_mean": 0.02321428619325161,
|
| 1248 |
+
"clip_ratio/low_mean": 0.0703125,
|
| 1249 |
+
"clip_ratio/low_min": 0.0,
|
| 1250 |
+
"clip_ratio/region_mean": 0.09352678572759032,
|
| 1251 |
+
"entropy": 0.14376915276807267,
|
| 1252 |
+
"epoch": 0.00052,
|
| 1253 |
+
"grad_norm": 10.807016372680664,
|
| 1254 |
+
"kl": 35.954969733953476,
|
| 1255 |
+
"learning_rate": 9.932741570192633e-05,
|
| 1256 |
+
"loss": 0.0328,
|
| 1257 |
+
"step": 52,
|
| 1258 |
+
"step_time": 5.674436524999692
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"clip_ratio/high_max": 0.0,
|
| 1262 |
+
"clip_ratio/high_mean": 0.0,
|
| 1263 |
+
"clip_ratio/low_mean": 0.0,
|
| 1264 |
+
"clip_ratio/low_min": 0.0,
|
| 1265 |
+
"clip_ratio/region_mean": 0.0,
|
| 1266 |
+
"completions/clipped_ratio": 0.0,
|
| 1267 |
+
"completions/max_length": 1646.0,
|
| 1268 |
+
"completions/max_terminated_length": 1646.0,
|
| 1269 |
+
"completions/mean_length": 292.21875,
|
| 1270 |
+
"completions/mean_terminated_length": 292.21875,
|
| 1271 |
+
"completions/min_length": 3.0,
|
| 1272 |
+
"completions/min_terminated_length": 3.0,
|
| 1273 |
+
"entropy": 0.11845442898629699,
|
| 1274 |
+
"epoch": 0.00053,
|
| 1275 |
+
"frac_reward_zero_std": 0.0,
|
| 1276 |
+
"grad_norm": 0.2344297617673874,
|
| 1277 |
+
"kl": 1.753089528530836,
|
| 1278 |
+
"learning_rate": 9.924100897051629e-05,
|
| 1279 |
+
"loss": -0.011,
|
| 1280 |
+
"num_tokens": 1028265.0,
|
| 1281 |
+
"reward": 0.9336875081062317,
|
| 1282 |
+
"reward_std": 0.40108171105384827,
|
| 1283 |
+
"rewards/rollout_reward_func/mean": 0.9336875081062317,
|
| 1284 |
+
"rewards/rollout_reward_func/std": 0.44726231694221497,
|
| 1285 |
+
"sampling/importance_sampling_ratio/max": 1.4263041019439697,
|
| 1286 |
+
"sampling/importance_sampling_ratio/mean": 1.0030502080917358,
|
| 1287 |
+
"sampling/importance_sampling_ratio/min": 0.7242881655693054,
|
| 1288 |
+
"sampling/sampling_logp_difference/max": 0.3650219440460205,
|
| 1289 |
+
"sampling/sampling_logp_difference/mean": 0.015114575624465942,
|
| 1290 |
+
"step": 53,
|
| 1291 |
+
"step_time": 11.967371391000597
|
| 1292 |
+
},
|
| 1293 |
+
{
|
| 1294 |
+
"clip_ratio/high_max": 0.028373016510158777,
|
| 1295 |
+
"clip_ratio/high_mean": 0.014186508255079389,
|
| 1296 |
+
"clip_ratio/low_mean": 0.05000000121071935,
|
| 1297 |
+
"clip_ratio/low_min": 0.012500000186264515,
|
| 1298 |
+
"clip_ratio/region_mean": 0.06418650993146002,
|
| 1299 |
+
"entropy": 0.18176122102886438,
|
| 1300 |
+
"epoch": 0.00054,
|
| 1301 |
+
"grad_norm": 0.0920347049832344,
|
| 1302 |
+
"kl": 1.7955459654331207,
|
| 1303 |
+
"learning_rate": 9.914943862248966e-05,
|
| 1304 |
+
"loss": -0.0119,
|
| 1305 |
+
"step": 54,
|
| 1306 |
+
"step_time": 6.745521994000001
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"clip_ratio/high_max": 0.029761905781924725,
|
| 1310 |
+
"clip_ratio/high_mean": 0.014880952890962362,
|
| 1311 |
+
"clip_ratio/low_mean": 0.0,
|
| 1312 |
+
"clip_ratio/low_min": 0.0,
|
| 1313 |
+
"clip_ratio/region_mean": 0.014880952890962362,
|
| 1314 |
+
"completions/clipped_ratio": 0.0,
|
| 1315 |
+
"completions/max_length": 1255.0,
|
| 1316 |
+
"completions/max_terminated_length": 1255.0,
|
| 1317 |
+
"completions/mean_length": 414.40625,
|
| 1318 |
+
"completions/mean_terminated_length": 414.40625,
|
| 1319 |
+
"completions/min_length": 3.0,
|
| 1320 |
+
"completions/min_terminated_length": 3.0,
|
| 1321 |
+
"entropy": 0.21612564753741026,
|
| 1322 |
+
"epoch": 0.00055,
|
| 1323 |
+
"frac_reward_zero_std": 0.0,
|
| 1324 |
+
"grad_norm": 0.6154258847236633,
|
| 1325 |
+
"kl": 2.4827291294932365,
|
| 1326 |
+
"learning_rate": 9.905271752723088e-05,
|
| 1327 |
+
"loss": -0.0024,
|
| 1328 |
+
"num_tokens": 1070717.0,
|
| 1329 |
+
"reward": 1.012783169746399,
|
| 1330 |
+
"reward_std": 0.3933926522731781,
|
| 1331 |
+
"rewards/rollout_reward_func/mean": 1.012783169746399,
|
| 1332 |
+
"rewards/rollout_reward_func/std": 0.45623427629470825,
|
| 1333 |
+
"sampling/importance_sampling_ratio/max": 1.7324354648590088,
|
| 1334 |
+
"sampling/importance_sampling_ratio/mean": 0.9738206267356873,
|
| 1335 |
+
"sampling/importance_sampling_ratio/min": 0.5882648825645447,
|
| 1336 |
+
"sampling/sampling_logp_difference/max": 0.5556355714797974,
|
| 1337 |
+
"sampling/sampling_logp_difference/mean": 0.04333949089050293,
|
| 1338 |
+
"step": 55,
|
| 1339 |
+
"step_time": 11.013223535000407
|
| 1340 |
+
},
|
| 1341 |
+
{
|
| 1342 |
+
"clip_ratio/high_max": 0.1761904815211892,
|
| 1343 |
+
"clip_ratio/high_mean": 0.11964286165311933,
|
| 1344 |
+
"clip_ratio/low_mean": 0.014062500093132257,
|
| 1345 |
+
"clip_ratio/low_min": 0.0,
|
| 1346 |
+
"clip_ratio/region_mean": 0.13370536174625158,
|
| 1347 |
+
"entropy": 0.17086607962846756,
|
| 1348 |
+
"epoch": 0.00056,
|
| 1349 |
+
"grad_norm": 0.2525999844074249,
|
| 1350 |
+
"kl": 2.5824186354875565,
|
| 1351 |
+
"learning_rate": 9.895085927801542e-05,
|
| 1352 |
+
"loss": -0.0014,
|
| 1353 |
+
"step": 56,
|
| 1354 |
+
"step_time": 6.016107872999555
|
| 1355 |
+
},
|
| 1356 |
+
{
|
| 1357 |
+
"clip_ratio/high_max": 0.0,
|
| 1358 |
+
"clip_ratio/high_mean": 0.0,
|
| 1359 |
+
"clip_ratio/low_mean": 0.0,
|
| 1360 |
+
"clip_ratio/low_min": 0.0,
|
| 1361 |
+
"clip_ratio/region_mean": 0.0,
|
| 1362 |
+
"completions/clipped_ratio": 0.0,
|
| 1363 |
+
"completions/max_length": 1386.0,
|
| 1364 |
+
"completions/max_terminated_length": 1386.0,
|
| 1365 |
+
"completions/mean_length": 284.8125,
|
| 1366 |
+
"completions/mean_terminated_length": 284.8125,
|
| 1367 |
+
"completions/min_length": 2.0,
|
| 1368 |
+
"completions/min_terminated_length": 2.0,
|
| 1369 |
+
"entropy": 0.18887321837246418,
|
| 1370 |
+
"epoch": 0.00057,
|
| 1371 |
+
"frac_reward_zero_std": 0.0,
|
| 1372 |
+
"grad_norm": 0.2054257094860077,
|
| 1373 |
+
"kl": 1.618610456585884,
|
| 1374 |
+
"learning_rate": 9.884387819009922e-05,
|
| 1375 |
+
"loss": -0.0089,
|
| 1376 |
+
"num_tokens": 1110225.0,
|
| 1377 |
+
"reward": 0.6539791822433472,
|
| 1378 |
+
"reward_std": 0.5930131673812866,
|
| 1379 |
+
"rewards/rollout_reward_func/mean": 0.6539791822433472,
|
| 1380 |
+
"rewards/rollout_reward_func/std": 0.6302005052566528,
|
| 1381 |
+
"sampling/importance_sampling_ratio/max": 1.8165205717086792,
|
| 1382 |
+
"sampling/importance_sampling_ratio/mean": 1.0121564865112305,
|
| 1383 |
+
"sampling/importance_sampling_ratio/min": 0.865464985370636,
|
| 1384 |
+
"sampling/sampling_logp_difference/max": 0.5969423055648804,
|
| 1385 |
+
"sampling/sampling_logp_difference/mean": 0.021497800946235657,
|
| 1386 |
+
"step": 57,
|
| 1387 |
+
"step_time": 11.156232571999908
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"clip_ratio/high_max": 0.058333334513008595,
|
| 1391 |
+
"clip_ratio/high_mean": 0.029166667256504297,
|
| 1392 |
+
"clip_ratio/low_mean": 0.021875000093132257,
|
| 1393 |
+
"clip_ratio/low_min": 0.0,
|
| 1394 |
+
"clip_ratio/region_mean": 0.051041667349636555,
|
| 1395 |
+
"entropy": 0.18203126941807568,
|
| 1396 |
+
"epoch": 0.00058,
|
| 1397 |
+
"grad_norm": 0.21828053891658783,
|
| 1398 |
+
"kl": 1.6002055294811726,
|
| 1399 |
+
"learning_rate": 9.873178929870695e-05,
|
| 1400 |
+
"loss": -0.0086,
|
| 1401 |
+
"step": 58,
|
| 1402 |
+
"step_time": 6.244077477000019
|
| 1403 |
+
},
|
| 1404 |
+
{
|
| 1405 |
+
"clip_ratio/high_max": 0.0,
|
| 1406 |
+
"clip_ratio/high_mean": 0.0,
|
| 1407 |
+
"clip_ratio/low_mean": 0.0078125,
|
| 1408 |
+
"clip_ratio/low_min": 0.0,
|
| 1409 |
+
"clip_ratio/region_mean": 0.0078125,
|
| 1410 |
+
"completions/clipped_ratio": 0.0,
|
| 1411 |
+
"completions/max_length": 1694.0,
|
| 1412 |
+
"completions/max_terminated_length": 1694.0,
|
| 1413 |
+
"completions/mean_length": 245.75,
|
| 1414 |
+
"completions/mean_terminated_length": 245.75,
|
| 1415 |
+
"completions/min_length": 2.0,
|
| 1416 |
+
"completions/min_terminated_length": 2.0,
|
| 1417 |
+
"entropy": 0.20505834033247083,
|
| 1418 |
+
"epoch": 0.00059,
|
| 1419 |
+
"frac_reward_zero_std": 0.0,
|
| 1420 |
+
"grad_norm": 0.239760160446167,
|
| 1421 |
+
"kl": 2.8409063071012497,
|
| 1422 |
+
"learning_rate": 9.86146083569188e-05,
|
| 1423 |
+
"loss": -0.0085,
|
| 1424 |
+
"num_tokens": 1147717.0,
|
| 1425 |
+
"reward": 0.6759583353996277,
|
| 1426 |
+
"reward_std": 0.7167876958847046,
|
| 1427 |
+
"rewards/rollout_reward_func/mean": 0.6759583353996277,
|
| 1428 |
+
"rewards/rollout_reward_func/std": 0.8124518990516663,
|
| 1429 |
+
"sampling/importance_sampling_ratio/max": 2.0188424587249756,
|
| 1430 |
+
"sampling/importance_sampling_ratio/mean": 1.0246764421463013,
|
| 1431 |
+
"sampling/importance_sampling_ratio/min": 0.8060900568962097,
|
| 1432 |
+
"sampling/sampling_logp_difference/max": 0.4889869689941406,
|
| 1433 |
+
"sampling/sampling_logp_difference/mean": 0.015371443703770638,
|
| 1434 |
+
"step": 59,
|
| 1435 |
+
"step_time": 12.236902825000243
|
| 1436 |
+
},
|
| 1437 |
+
{
|
| 1438 |
+
"clip_ratio/high_max": 0.015873016323894262,
|
| 1439 |
+
"clip_ratio/high_mean": 0.007936508161947131,
|
| 1440 |
+
"clip_ratio/low_mean": 0.024479167070239782,
|
| 1441 |
+
"clip_ratio/low_min": 0.0,
|
| 1442 |
+
"clip_ratio/region_mean": 0.032415675232186913,
|
| 1443 |
+
"entropy": 0.2697412967681885,
|
| 1444 |
+
"epoch": 0.0006,
|
| 1445 |
+
"grad_norm": 1.4479070901870728,
|
| 1446 |
+
"kl": 1.8084059804677963,
|
| 1447 |
+
"learning_rate": 9.84923518334567e-05,
|
| 1448 |
+
"loss": 0.0064,
|
| 1449 |
+
"step": 60,
|
| 1450 |
+
"step_time": 6.916969224000468
|
| 1451 |
+
},
|
| 1452 |
+
{
|
| 1453 |
+
"clip_ratio/high_max": 0.0,
|
| 1454 |
+
"clip_ratio/high_mean": 0.0,
|
| 1455 |
+
"clip_ratio/low_mean": 0.0,
|
| 1456 |
+
"clip_ratio/low_min": 0.0,
|
| 1457 |
+
"clip_ratio/region_mean": 0.0,
|
| 1458 |
+
"completions/clipped_ratio": 0.0,
|
| 1459 |
+
"completions/max_length": 1141.0,
|
| 1460 |
+
"completions/max_terminated_length": 1141.0,
|
| 1461 |
+
"completions/mean_length": 306.1875,
|
| 1462 |
+
"completions/mean_terminated_length": 306.1875,
|
| 1463 |
+
"completions/min_length": 2.0,
|
| 1464 |
+
"completions/min_terminated_length": 2.0,
|
| 1465 |
+
"entropy": 0.2432498256675899,
|
| 1466 |
+
"epoch": 0.00061,
|
| 1467 |
+
"frac_reward_zero_std": 0.0,
|
| 1468 |
+
"grad_norm": 0.15688766539096832,
|
| 1469 |
+
"kl": 1.928163781762123,
|
| 1470 |
+
"learning_rate": 9.83650369103696e-05,
|
| 1471 |
+
"loss": -0.0154,
|
| 1472 |
+
"num_tokens": 1187828.0,
|
| 1473 |
+
"reward": 0.7319375276565552,
|
| 1474 |
+
"reward_std": 0.5858461856842041,
|
| 1475 |
+
"rewards/rollout_reward_func/mean": 0.7319375276565552,
|
| 1476 |
+
"rewards/rollout_reward_func/std": 0.6664270162582397,
|
| 1477 |
+
"sampling/importance_sampling_ratio/max": 1.3562289476394653,
|
| 1478 |
+
"sampling/importance_sampling_ratio/mean": 0.9950809478759766,
|
| 1479 |
+
"sampling/importance_sampling_ratio/min": 0.8087555766105652,
|
| 1480 |
+
"sampling/sampling_logp_difference/max": 0.3163447380065918,
|
| 1481 |
+
"sampling/sampling_logp_difference/mean": 0.0226910300552845,
|
| 1482 |
+
"step": 61,
|
| 1483 |
+
"step_time": 10.608102406999706
|
| 1484 |
+
},
|
| 1485 |
+
{
|
| 1486 |
+
"clip_ratio/high_max": 0.030357143841683865,
|
| 1487 |
+
"clip_ratio/high_mean": 0.015178571920841932,
|
| 1488 |
+
"clip_ratio/low_mean": 0.010416666977107525,
|
| 1489 |
+
"clip_ratio/low_min": 0.0,
|
| 1490 |
+
"clip_ratio/region_mean": 0.025595238897949457,
|
| 1491 |
+
"entropy": 0.22057522786781192,
|
| 1492 |
+
"epoch": 0.00062,
|
| 1493 |
+
"grad_norm": 0.11316227912902832,
|
| 1494 |
+
"kl": 1.9541875012218952,
|
| 1495 |
+
"learning_rate": 9.823268148061883e-05,
|
| 1496 |
+
"loss": -0.0145,
|
| 1497 |
+
"step": 62,
|
| 1498 |
+
"step_time": 5.81027040199956
|
| 1499 |
+
},
|
| 1500 |
+
{
|
| 1501 |
+
"clip_ratio/high_max": 0.008928571827709675,
|
| 1502 |
+
"clip_ratio/high_mean": 0.004464285913854837,
|
| 1503 |
+
"clip_ratio/low_mean": 0.0,
|
| 1504 |
+
"clip_ratio/low_min": 0.0,
|
| 1505 |
+
"clip_ratio/region_mean": 0.004464285913854837,
|
| 1506 |
+
"completions/clipped_ratio": 0.0,
|
| 1507 |
+
"completions/max_length": 850.0,
|
| 1508 |
+
"completions/max_terminated_length": 850.0,
|
| 1509 |
+
"completions/mean_length": 260.40625,
|
| 1510 |
+
"completions/mean_terminated_length": 260.40625,
|
| 1511 |
+
"completions/min_length": 3.0,
|
| 1512 |
+
"completions/min_terminated_length": 3.0,
|
| 1513 |
+
"entropy": 0.175975039601326,
|
| 1514 |
+
"epoch": 0.00063,
|
| 1515 |
+
"frac_reward_zero_std": 0.0,
|
| 1516 |
+
"grad_norm": 0.23777881264686584,
|
| 1517 |
+
"kl": 1.8976656533777714,
|
| 1518 |
+
"learning_rate": 9.809530414556335e-05,
|
| 1519 |
+
"loss": -0.0073,
|
| 1520 |
+
"num_tokens": 1226242.0,
|
| 1521 |
+
"reward": 0.9314790964126587,
|
| 1522 |
+
"reward_std": 0.4598495364189148,
|
| 1523 |
+
"rewards/rollout_reward_func/mean": 0.9314790964126587,
|
| 1524 |
+
"rewards/rollout_reward_func/std": 0.4464755654335022,
|
| 1525 |
+
"sampling/importance_sampling_ratio/max": 1.409760594367981,
|
| 1526 |
+
"sampling/importance_sampling_ratio/mean": 1.0067412853240967,
|
| 1527 |
+
"sampling/importance_sampling_ratio/min": 0.8432673811912537,
|
| 1528 |
+
"sampling/sampling_logp_difference/max": 0.34805774688720703,
|
| 1529 |
+
"sampling/sampling_logp_difference/mean": 0.015504386276006699,
|
| 1530 |
+
"step": 63,
|
| 1531 |
+
"step_time": 9.866925459000186
|
| 1532 |
+
},
|
| 1533 |
+
{
|
| 1534 |
+
"clip_ratio/high_max": 0.058928572572767735,
|
| 1535 |
+
"clip_ratio/high_mean": 0.029464286286383867,
|
| 1536 |
+
"clip_ratio/low_mean": 0.031250000931322575,
|
| 1537 |
+
"clip_ratio/low_min": 0.0,
|
| 1538 |
+
"clip_ratio/region_mean": 0.06071428768336773,
|
| 1539 |
+
"entropy": 0.21677518263459206,
|
| 1540 |
+
"epoch": 0.00064,
|
| 1541 |
+
"grad_norm": 0.10355119407176971,
|
| 1542 |
+
"kl": 1.9398510716855526,
|
| 1543 |
+
"learning_rate": 9.79529242123455e-05,
|
| 1544 |
+
"loss": -0.0093,
|
| 1545 |
+
"step": 64,
|
| 1546 |
+
"step_time": 5.271362073999853
|
| 1547 |
+
},
|
| 1548 |
+
{
|
| 1549 |
+
"clip_ratio/high_max": 0.0,
|
| 1550 |
+
"clip_ratio/high_mean": 0.0,
|
| 1551 |
+
"clip_ratio/low_mean": 0.0,
|
| 1552 |
+
"clip_ratio/low_min": 0.0,
|
| 1553 |
+
"clip_ratio/region_mean": 0.0,
|
| 1554 |
+
"completions/clipped_ratio": 0.0,
|
| 1555 |
+
"completions/max_length": 1041.0,
|
| 1556 |
+
"completions/max_terminated_length": 1041.0,
|
| 1557 |
+
"completions/mean_length": 201.59375,
|
| 1558 |
+
"completions/mean_terminated_length": 201.59375,
|
| 1559 |
+
"completions/min_length": 2.0,
|
| 1560 |
+
"completions/min_terminated_length": 2.0,
|
| 1561 |
+
"entropy": 0.21963271405547857,
|
| 1562 |
+
"epoch": 0.00065,
|
| 1563 |
+
"frac_reward_zero_std": 0.0,
|
| 1564 |
+
"grad_norm": 0.5803110599517822,
|
| 1565 |
+
"kl": 3.1230736933648586,
|
| 1566 |
+
"learning_rate": 9.780556169117757e-05,
|
| 1567 |
+
"loss": -0.0078,
|
| 1568 |
+
"num_tokens": 1260829.0,
|
| 1569 |
+
"reward": 0.6616458296775818,
|
| 1570 |
+
"reward_std": 0.7855631113052368,
|
| 1571 |
+
"rewards/rollout_reward_func/mean": 0.6616458296775818,
|
| 1572 |
+
"rewards/rollout_reward_func/std": 0.8183318972587585,
|
| 1573 |
+
"sampling/importance_sampling_ratio/max": 1.4000798463821411,
|
| 1574 |
+
"sampling/importance_sampling_ratio/mean": 1.0056772232055664,
|
| 1575 |
+
"sampling/importance_sampling_ratio/min": 0.71177077293396,
|
| 1576 |
+
"sampling/sampling_logp_difference/max": 0.34459519386291504,
|
| 1577 |
+
"sampling/sampling_logp_difference/mean": 0.03253237158060074,
|
| 1578 |
+
"step": 65,
|
| 1579 |
+
"step_time": 10.17715724000027
|
| 1580 |
+
},
|
| 1581 |
+
{
|
| 1582 |
+
"clip_ratio/high_max": 0.11666666995733976,
|
| 1583 |
+
"clip_ratio/high_mean": 0.062797621358186,
|
| 1584 |
+
"clip_ratio/low_mean": 0.078125,
|
| 1585 |
+
"clip_ratio/low_min": 0.0,
|
| 1586 |
+
"clip_ratio/region_mean": 0.14092262228950858,
|
| 1587 |
+
"entropy": 0.1336969246622175,
|
| 1588 |
+
"epoch": 0.00066,
|
| 1589 |
+
"grad_norm": 0.13620424270629883,
|
| 1590 |
+
"kl": 2.933967538177967,
|
| 1591 |
+
"learning_rate": 9.765323729252955e-05,
|
| 1592 |
+
"loss": -0.0085,
|
| 1593 |
+
"step": 66,
|
| 1594 |
+
"step_time": 5.5793444789999285
|
| 1595 |
+
},
|
| 1596 |
+
{
|
| 1597 |
+
"clip_ratio/high_max": 0.0,
|
| 1598 |
+
"clip_ratio/high_mean": 0.0,
|
| 1599 |
+
"clip_ratio/low_mean": 0.0,
|
| 1600 |
+
"clip_ratio/low_min": 0.0,
|
| 1601 |
+
"clip_ratio/region_mean": 0.0,
|
| 1602 |
+
"completions/clipped_ratio": 0.0,
|
| 1603 |
+
"completions/max_length": 668.0,
|
| 1604 |
+
"completions/max_terminated_length": 668.0,
|
| 1605 |
+
"completions/mean_length": 276.25,
|
| 1606 |
+
"completions/mean_terminated_length": 276.25,
|
| 1607 |
+
"completions/min_length": 2.0,
|
| 1608 |
+
"completions/min_terminated_length": 2.0,
|
| 1609 |
+
"entropy": 0.16010587196797132,
|
| 1610 |
+
"epoch": 0.00067,
|
| 1611 |
+
"frac_reward_zero_std": 0.0,
|
| 1612 |
+
"grad_norm": 0.12310951948165894,
|
| 1613 |
+
"kl": 2.098513074219227,
|
| 1614 |
+
"learning_rate": 9.749597242421838e-05,
|
| 1615 |
+
"loss": -0.0122,
|
| 1616 |
+
"num_tokens": 1300882.0,
|
| 1617 |
+
"reward": 0.8329999446868896,
|
| 1618 |
+
"reward_std": 0.5346106290817261,
|
| 1619 |
+
"rewards/rollout_reward_func/mean": 0.8329999446868896,
|
| 1620 |
+
"rewards/rollout_reward_func/std": 0.6208124756813049,
|
| 1621 |
+
"sampling/importance_sampling_ratio/max": 1.1149344444274902,
|
| 1622 |
+
"sampling/importance_sampling_ratio/mean": 0.9865162372589111,
|
| 1623 |
+
"sampling/importance_sampling_ratio/min": 0.8121993541717529,
|
| 1624 |
+
"sampling/sampling_logp_difference/max": 0.21269893646240234,
|
| 1625 |
+
"sampling/sampling_logp_difference/mean": 0.015977365896105766,
|
| 1626 |
+
"step": 67,
|
| 1627 |
+
"step_time": 9.141569508000657
|
| 1628 |
+
},
|
| 1629 |
+
{
|
| 1630 |
+
"clip_ratio/high_max": 0.012500000186264515,
|
| 1631 |
+
"clip_ratio/high_mean": 0.0062500000931322575,
|
| 1632 |
+
"clip_ratio/low_mean": 0.012500000186264515,
|
| 1633 |
+
"clip_ratio/low_min": 0.0,
|
| 1634 |
+
"clip_ratio/region_mean": 0.018750000279396772,
|
| 1635 |
+
"entropy": 0.1498410563217476,
|
| 1636 |
+
"epoch": 0.00068,
|
| 1637 |
+
"grad_norm": 0.1016835868358612,
|
| 1638 |
+
"kl": 2.0821792110800743,
|
| 1639 |
+
"learning_rate": 9.733378918839942e-05,
|
| 1640 |
+
"loss": -0.0124,
|
| 1641 |
+
"step": 68,
|
| 1642 |
+
"step_time": 5.649315163999745
|
| 1643 |
+
},
|
| 1644 |
+
{
|
| 1645 |
+
"clip_ratio/high_max": 0.0,
|
| 1646 |
+
"clip_ratio/high_mean": 0.0,
|
| 1647 |
+
"clip_ratio/low_mean": 0.0,
|
| 1648 |
+
"clip_ratio/low_min": 0.0,
|
| 1649 |
+
"clip_ratio/region_mean": 0.0,
|
| 1650 |
+
"completions/clipped_ratio": 0.0,
|
| 1651 |
+
"completions/max_length": 1055.0,
|
| 1652 |
+
"completions/max_terminated_length": 1055.0,
|
| 1653 |
+
"completions/mean_length": 288.59375,
|
| 1654 |
+
"completions/mean_terminated_length": 288.59375,
|
| 1655 |
+
"completions/min_length": 2.0,
|
| 1656 |
+
"completions/min_terminated_length": 2.0,
|
| 1657 |
+
"entropy": 0.14323098736349493,
|
| 1658 |
+
"epoch": 0.00069,
|
| 1659 |
+
"frac_reward_zero_std": 0.0,
|
| 1660 |
+
"grad_norm": 0.11429130285978317,
|
| 1661 |
+
"kl": 2.039843175560236,
|
| 1662 |
+
"learning_rate": 9.716671037846007e-05,
|
| 1663 |
+
"loss": -0.0046,
|
| 1664 |
+
"num_tokens": 1340730.0,
|
| 1665 |
+
"reward": 0.7588750123977661,
|
| 1666 |
+
"reward_std": 0.48252782225608826,
|
| 1667 |
+
"rewards/rollout_reward_func/mean": 0.7588750123977661,
|
| 1668 |
+
"rewards/rollout_reward_func/std": 0.5914071798324585,
|
| 1669 |
+
"sampling/importance_sampling_ratio/max": 1.140119194984436,
|
| 1670 |
+
"sampling/importance_sampling_ratio/mean": 0.9898408651351929,
|
| 1671 |
+
"sampling/importance_sampling_ratio/min": 0.8956636190414429,
|
| 1672 |
+
"sampling/sampling_logp_difference/max": 0.13106560707092285,
|
| 1673 |
+
"sampling/sampling_logp_difference/mean": 0.01080230250954628,
|
| 1674 |
+
"step": 69,
|
| 1675 |
+
"step_time": 9.683018002999916
|
| 1676 |
+
},
|
| 1677 |
+
{
|
| 1678 |
+
"clip_ratio/high_max": 0.07500000111758709,
|
| 1679 |
+
"clip_ratio/high_mean": 0.04821428656578064,
|
| 1680 |
+
"clip_ratio/low_mean": 0.021875000093132257,
|
| 1681 |
+
"clip_ratio/low_min": 0.0,
|
| 1682 |
+
"clip_ratio/region_mean": 0.0700892866589129,
|
| 1683 |
+
"entropy": 0.1461901287548244,
|
| 1684 |
+
"epoch": 0.0007,
|
| 1685 |
+
"grad_norm": 0.1435869336128235,
|
| 1686 |
+
"kl": 1.9891464561223984,
|
| 1687 |
+
"learning_rate": 9.699475947581644e-05,
|
| 1688 |
+
"loss": -0.0043,
|
| 1689 |
+
"step": 70,
|
| 1690 |
+
"step_time": 6.030160345999548
|
| 1691 |
+
},
|
| 1692 |
+
{
|
| 1693 |
+
"clip_ratio/high_max": 0.0,
|
| 1694 |
+
"clip_ratio/high_mean": 0.0,
|
| 1695 |
+
"clip_ratio/low_mean": 0.0,
|
| 1696 |
+
"clip_ratio/low_min": 0.0,
|
| 1697 |
+
"clip_ratio/region_mean": 0.0,
|
| 1698 |
+
"completions/clipped_ratio": 0.0,
|
| 1699 |
+
"completions/max_length": 1151.0,
|
| 1700 |
+
"completions/max_terminated_length": 1151.0,
|
| 1701 |
+
"completions/mean_length": 270.71875,
|
| 1702 |
+
"completions/mean_terminated_length": 270.71875,
|
| 1703 |
+
"completions/min_length": 2.0,
|
| 1704 |
+
"completions/min_terminated_length": 2.0,
|
| 1705 |
+
"entropy": 0.15293755863967817,
|
| 1706 |
+
"epoch": 0.00071,
|
| 1707 |
+
"frac_reward_zero_std": 0.0,
|
| 1708 |
+
"grad_norm": 0.3050353527069092,
|
| 1709 |
+
"kl": 1.9519358221441507,
|
| 1710 |
+
"learning_rate": 9.681796064661319e-05,
|
| 1711 |
+
"loss": -0.0008,
|
| 1712 |
+
"num_tokens": 1379557.0,
|
| 1713 |
+
"reward": 0.61760413646698,
|
| 1714 |
+
"reward_std": 0.6345539093017578,
|
| 1715 |
+
"rewards/rollout_reward_func/mean": 0.61760413646698,
|
| 1716 |
+
"rewards/rollout_reward_func/std": 0.6240441203117371,
|
| 1717 |
+
"sampling/importance_sampling_ratio/max": 1.1850391626358032,
|
| 1718 |
+
"sampling/importance_sampling_ratio/mean": 1.007583737373352,
|
| 1719 |
+
"sampling/importance_sampling_ratio/min": 0.869886577129364,
|
| 1720 |
+
"sampling/sampling_logp_difference/max": 0.16973721981048584,
|
| 1721 |
+
"sampling/sampling_logp_difference/mean": 0.008598901331424713,
|
| 1722 |
+
"step": 71,
|
| 1723 |
+
"step_time": 10.008160938000401
|
| 1724 |
+
},
|
| 1725 |
+
{
|
| 1726 |
+
"clip_ratio/high_max": 0.029761905781924725,
|
| 1727 |
+
"clip_ratio/high_mean": 0.014880952890962362,
|
| 1728 |
+
"clip_ratio/low_mean": 0.021875000093132257,
|
| 1729 |
+
"clip_ratio/low_min": 0.0,
|
| 1730 |
+
"clip_ratio/region_mean": 0.036755953915417194,
|
| 1731 |
+
"entropy": 0.13349127455148846,
|
| 1732 |
+
"epoch": 0.00072,
|
| 1733 |
+
"grad_norm": 0.11685528606176376,
|
| 1734 |
+
"kl": 1.9348566476255655,
|
| 1735 |
+
"learning_rate": 9.663633873832725e-05,
|
| 1736 |
+
"loss": -0.0011,
|
| 1737 |
+
"step": 72,
|
| 1738 |
+
"step_time": 6.208596755999906
|
| 1739 |
+
},
|
| 1740 |
+
{
|
| 1741 |
+
"clip_ratio/high_max": 0.0,
|
| 1742 |
+
"clip_ratio/high_mean": 0.0,
|
| 1743 |
+
"clip_ratio/low_mean": 0.0,
|
| 1744 |
+
"clip_ratio/low_min": 0.0,
|
| 1745 |
+
"clip_ratio/region_mean": 0.0,
|
| 1746 |
+
"completions/clipped_ratio": 0.0,
|
| 1747 |
+
"completions/max_length": 723.0,
|
| 1748 |
+
"completions/max_terminated_length": 723.0,
|
| 1749 |
+
"completions/mean_length": 207.84375,
|
| 1750 |
+
"completions/mean_terminated_length": 207.84375,
|
| 1751 |
+
"completions/min_length": 2.0,
|
| 1752 |
+
"completions/min_terminated_length": 2.0,
|
| 1753 |
+
"entropy": 0.14575498150952626,
|
| 1754 |
+
"epoch": 0.00073,
|
| 1755 |
+
"frac_reward_zero_std": 0.0,
|
| 1756 |
+
"grad_norm": 0.1255907416343689,
|
| 1757 |
+
"kl": 1.1826815884560347,
|
| 1758 |
+
"learning_rate": 9.644991927627566e-05,
|
| 1759 |
+
"loss": -0.006,
|
| 1760 |
+
"num_tokens": 1416475.0,
|
| 1761 |
+
"reward": 0.7622500061988831,
|
| 1762 |
+
"reward_std": 0.5831079483032227,
|
| 1763 |
+
"rewards/rollout_reward_func/mean": 0.7622500061988831,
|
| 1764 |
+
"rewards/rollout_reward_func/std": 0.6012318730354309,
|
| 1765 |
+
"sampling/importance_sampling_ratio/max": 1.1591823101043701,
|
| 1766 |
+
"sampling/importance_sampling_ratio/mean": 0.98829185962677,
|
| 1767 |
+
"sampling/importance_sampling_ratio/min": 0.9088780879974365,
|
| 1768 |
+
"sampling/sampling_logp_difference/max": 0.14767801761627197,
|
| 1769 |
+
"sampling/sampling_logp_difference/mean": 0.007826489396393299,
|
| 1770 |
+
"step": 73,
|
| 1771 |
+
"step_time": 9.11005223400025
|
| 1772 |
+
},
|
| 1773 |
+
{
|
| 1774 |
+
"clip_ratio/high_max": 0.0,
|
| 1775 |
+
"clip_ratio/high_mean": 0.0,
|
| 1776 |
+
"clip_ratio/low_mean": 0.0,
|
| 1777 |
+
"clip_ratio/low_min": 0.0,
|
| 1778 |
+
"clip_ratio/region_mean": 0.0,
|
| 1779 |
+
"entropy": 0.1513779065135168,
|
| 1780 |
+
"epoch": 0.00074,
|
| 1781 |
+
"grad_norm": 0.12437106668949127,
|
| 1782 |
+
"kl": 1.1780924815684557,
|
| 1783 |
+
"learning_rate": 9.625872846002834e-05,
|
| 1784 |
+
"loss": -0.0066,
|
| 1785 |
+
"step": 74,
|
| 1786 |
+
"step_time": 5.63687633499967
|
| 1787 |
+
},
|
| 1788 |
+
{
|
| 1789 |
+
"clip_ratio/high_max": 0.0,
|
| 1790 |
+
"clip_ratio/high_mean": 0.0,
|
| 1791 |
+
"clip_ratio/low_mean": 0.0,
|
| 1792 |
+
"clip_ratio/low_min": 0.0,
|
| 1793 |
+
"clip_ratio/region_mean": 0.0,
|
| 1794 |
+
"completions/clipped_ratio": 0.0,
|
| 1795 |
+
"completions/max_length": 705.0,
|
| 1796 |
+
"completions/max_terminated_length": 705.0,
|
| 1797 |
+
"completions/mean_length": 281.375,
|
| 1798 |
+
"completions/mean_terminated_length": 281.375,
|
| 1799 |
+
"completions/min_length": 2.0,
|
| 1800 |
+
"completions/min_terminated_length": 2.0,
|
| 1801 |
+
"entropy": 0.18086719792336226,
|
| 1802 |
+
"epoch": 0.00075,
|
| 1803 |
+
"frac_reward_zero_std": 0.0,
|
| 1804 |
+
"grad_norm": 0.15126265585422516,
|
| 1805 |
+
"kl": 1.6214838400483131,
|
| 1806 |
+
"learning_rate": 9.606279315972582e-05,
|
| 1807 |
+
"loss": 0.002,
|
| 1808 |
+
"num_tokens": 1455741.0,
|
| 1809 |
+
"reward": 0.6960416436195374,
|
| 1810 |
+
"reward_std": 0.6535277366638184,
|
| 1811 |
+
"rewards/rollout_reward_func/mean": 0.6960416436195374,
|
| 1812 |
+
"rewards/rollout_reward_func/std": 0.6603111624717712,
|
| 1813 |
+
"sampling/importance_sampling_ratio/max": 1.1913020610809326,
|
| 1814 |
+
"sampling/importance_sampling_ratio/mean": 0.9901882410049438,
|
| 1815 |
+
"sampling/importance_sampling_ratio/min": 0.8861557245254517,
|
| 1816 |
+
"sampling/sampling_logp_difference/max": 0.17504119873046875,
|
| 1817 |
+
"sampling/sampling_logp_difference/mean": 0.008757364936172962,
|
| 1818 |
+
"step": 75,
|
| 1819 |
+
"step_time": 8.987358285000255
|
| 1820 |
}
|
| 1821 |
],
|
| 1822 |
"logging_steps": 1.0,
|
| 1823 |
+
"max_steps": 300,
|
| 1824 |
+
"num_input_tokens_seen": 1455741,
|
| 1825 |
+
"num_train_epochs": 1,
|
| 1826 |
"save_steps": 500,
|
| 1827 |
"stateful_callbacks": {
|
| 1828 |
"TrainerControl": {
|
|
|
|
| 1837 |
}
|
| 1838 |
},
|
| 1839 |
"total_flos": 0.0,
|
| 1840 |
+
"train_batch_size": 1,
|
| 1841 |
"trial_name": null,
|
| 1842 |
"trial_params": null
|
| 1843 |
}
|
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:d9a8ff53bf4dd13387a7f6f06286ba4c2179cd03bdae768c161a96c9eecce8b1
|
| 3 |
+
size 8145
|