Text Generation
PEFT
Safetensors
Transformers
qwen2
grpo
lora
trl
conversational
text-generation-inference
Instructions to use Gege24/environment_test_affine with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Gege24/environment_test_affine with PEFT:
Base model is not found.
- Transformers
How to use Gege24/environment_test_affine with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Gege24/environment_test_affine") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Gege24/environment_test_affine") model = AutoModelForCausalLM.from_pretrained("Gege24/environment_test_affine", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Gege24/environment_test_affine with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Gege24/environment_test_affine" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Gege24/environment_test_affine
- SGLang
How to use Gege24/environment_test_affine with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Gege24/environment_test_affine" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Gege24/environment_test_affine" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Gege24/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Gege24/environment_test_affine with Docker Model Runner:
docker model run hf.co/Gege24/environment_test_affine
Upload task output 1
Browse files- config.json +3 -3
- generation_config.json +10 -0
- loss.txt +1 -1
- model.safetensors +1 -1
- trainer_state.json +491 -283
- training_args.bin +2 -2
config.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
"Qwen2ForCausalLM"
|
| 4 |
],
|
| 5 |
"attention_dropout": 0.0,
|
| 6 |
-
"bos_token_id":
|
| 7 |
"dtype": "bfloat16",
|
| 8 |
"eos_token_id": 151645,
|
| 9 |
"hidden_act": "silu",
|
|
@@ -42,7 +42,7 @@
|
|
| 42 |
"num_attention_heads": 14,
|
| 43 |
"num_hidden_layers": 24,
|
| 44 |
"num_key_value_heads": 2,
|
| 45 |
-
"pad_token_id":
|
| 46 |
"rms_norm_eps": 1e-06,
|
| 47 |
"rope_parameters": {
|
| 48 |
"rope_theta": 1000000.0,
|
|
@@ -51,7 +51,7 @@
|
|
| 51 |
"sliding_window": null,
|
| 52 |
"tie_word_embeddings": true,
|
| 53 |
"transformers_version": "5.1.0",
|
| 54 |
-
"use_cache":
|
| 55 |
"use_sliding_window": false,
|
| 56 |
"vocab_size": 151936
|
| 57 |
}
|
|
|
|
| 3 |
"Qwen2ForCausalLM"
|
| 4 |
],
|
| 5 |
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": null,
|
| 7 |
"dtype": "bfloat16",
|
| 8 |
"eos_token_id": 151645,
|
| 9 |
"hidden_act": "silu",
|
|
|
|
| 42 |
"num_attention_heads": 14,
|
| 43 |
"num_hidden_layers": 24,
|
| 44 |
"num_key_value_heads": 2,
|
| 45 |
+
"pad_token_id": 151643,
|
| 46 |
"rms_norm_eps": 1e-06,
|
| 47 |
"rope_parameters": {
|
| 48 |
"rope_theta": 1000000.0,
|
|
|
|
| 51 |
"sliding_window": null,
|
| 52 |
"tie_word_embeddings": true,
|
| 53 |
"transformers_version": "5.1.0",
|
| 54 |
+
"use_cache": false,
|
| 55 |
"use_sliding_window": false,
|
| 56 |
"vocab_size": 151936
|
| 57 |
}
|
generation_config.json
CHANGED
|
@@ -1,3 +1,13 @@
|
|
| 1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
"transformers_version": "5.1.0"
|
| 3 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"do_sample": true,
|
| 3 |
+
"eos_token_id": [
|
| 4 |
+
151645,
|
| 5 |
+
151643
|
| 6 |
+
],
|
| 7 |
+
"pad_token_id": 151643,
|
| 8 |
+
"repetition_penalty": 1.1,
|
| 9 |
+
"temperature": 0.7,
|
| 10 |
+
"top_k": 20,
|
| 11 |
+
"top_p": 0.8,
|
| 12 |
"transformers_version": "5.1.0"
|
| 13 |
}
|
loss.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
|
|
|
|
| 1 |
+
75,-0.06899999883025884
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 988097824
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d37254765789231f8a3a2350286dac9a3200c0359f893e954337a3ad0438489f
|
| 3 |
size 988097824
|
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": 0.
|
| 27 |
-
"frac_reward_zero_std": 0.
|
| 28 |
-
"grad_norm":
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
-
"
|
| 35 |
-
"rewards/
|
| 36 |
-
"
|
| 37 |
-
"sampling/importance_sampling_ratio/
|
| 38 |
-
"sampling/importance_sampling_ratio/
|
| 39 |
-
"sampling/
|
| 40 |
-
"sampling/sampling_logp_difference/
|
| 41 |
-
"
|
| 42 |
-
"
|
|
|
|
| 43 |
},
|
| 44 |
{
|
| 45 |
"clip_ratio/high_max": 0.0,
|
|
@@ -48,292 +49,499 @@
|
|
| 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":
|
| 61 |
-
"
|
| 62 |
-
"
|
| 63 |
-
"
|
| 64 |
-
"
|
| 65 |
-
"
|
| 66 |
-
"
|
| 67 |
-
"rewards/
|
| 68 |
-
"
|
| 69 |
-
"sampling/importance_sampling_ratio/
|
| 70 |
-
"sampling/importance_sampling_ratio/
|
| 71 |
-
"sampling/
|
| 72 |
-
"sampling/sampling_logp_difference/
|
| 73 |
-
"
|
| 74 |
-
"
|
|
|
|
| 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 |
"completions/clipped_ratio": 0.0,
|
| 83 |
-
"completions/max_length":
|
| 84 |
-
"completions/max_terminated_length":
|
| 85 |
-
"completions/mean_length":
|
| 86 |
-
"completions/mean_terminated_length":
|
| 87 |
-
"completions/min_length":
|
| 88 |
-
"completions/min_terminated_length":
|
| 89 |
-
"entropy": 0.
|
| 90 |
-
"epoch": 0.
|
| 91 |
-
"frac_reward_zero_std": 0.
|
| 92 |
-
"grad_norm":
|
| 93 |
-
"
|
| 94 |
-
"
|
| 95 |
-
"
|
| 96 |
-
"
|
| 97 |
-
"
|
| 98 |
-
"
|
| 99 |
-
"rewards/
|
| 100 |
-
"
|
| 101 |
-
"sampling/importance_sampling_ratio/
|
| 102 |
-
"sampling/importance_sampling_ratio/
|
| 103 |
-
"sampling/
|
| 104 |
-
"sampling/sampling_logp_difference/
|
| 105 |
-
"
|
| 106 |
-
"
|
|
|
|
| 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 |
"completions/clipped_ratio": 0.0,
|
| 115 |
-
"completions/max_length":
|
| 116 |
-
"completions/max_terminated_length":
|
| 117 |
-
"completions/mean_length":
|
| 118 |
-
"completions/mean_terminated_length":
|
| 119 |
-
"completions/min_length":
|
| 120 |
-
"completions/min_terminated_length":
|
| 121 |
-
"entropy": 0.
|
| 122 |
-
"epoch":
|
| 123 |
-
"frac_reward_zero_std": 0.
|
| 124 |
-
"grad_norm":
|
| 125 |
-
"
|
| 126 |
-
"
|
| 127 |
-
"
|
| 128 |
-
"
|
| 129 |
-
"
|
| 130 |
-
"
|
| 131 |
-
"rewards/
|
| 132 |
-
"
|
| 133 |
-
"sampling/importance_sampling_ratio/
|
| 134 |
-
"sampling/importance_sampling_ratio/
|
| 135 |
-
"sampling/
|
| 136 |
-
"sampling/sampling_logp_difference/
|
| 137 |
-
"
|
| 138 |
-
"
|
|
|
|
| 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 |
-
"step":
|
|
|
|
| 171 |
},
|
| 172 |
{
|
| 173 |
-
"clip_ratio/high_max": 0.
|
| 174 |
-
"clip_ratio/high_mean": 0.
|
| 175 |
-
"clip_ratio/low_mean": 0.
|
| 176 |
-
"clip_ratio/low_min": 0.
|
| 177 |
-
"clip_ratio/region_mean": 0.
|
| 178 |
"completions/clipped_ratio": 0.0,
|
| 179 |
-
"completions/max_length":
|
| 180 |
-
"completions/max_terminated_length":
|
| 181 |
-
"completions/mean_length":
|
| 182 |
-
"completions/mean_terminated_length":
|
| 183 |
-
"completions/min_length":
|
| 184 |
-
"completions/min_terminated_length":
|
| 185 |
-
"entropy": 0.
|
| 186 |
-
"epoch":
|
| 187 |
-
"frac_reward_zero_std": 0.
|
| 188 |
-
"grad_norm":
|
| 189 |
-
"
|
| 190 |
-
"
|
| 191 |
-
"
|
| 192 |
-
"
|
| 193 |
-
"
|
| 194 |
-
"
|
| 195 |
-
"rewards/
|
| 196 |
-
"
|
| 197 |
-
"sampling/importance_sampling_ratio/
|
| 198 |
-
"sampling/importance_sampling_ratio/
|
| 199 |
-
"sampling/
|
| 200 |
-
"sampling/sampling_logp_difference/
|
| 201 |
-
"
|
| 202 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 203 |
},
|
| 204 |
{
|
| 205 |
-
"clip_ratio/high_max": 0.
|
| 206 |
-
"clip_ratio/high_mean": 0.
|
| 207 |
-
"clip_ratio/low_mean": 0.
|
| 208 |
-
"clip_ratio/low_min": 0.
|
| 209 |
-
"clip_ratio/region_mean": 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 210 |
"completions/clipped_ratio": 0.0,
|
| 211 |
-
"completions/max_length":
|
| 212 |
-
"completions/max_terminated_length":
|
| 213 |
-
"completions/mean_length":
|
| 214 |
-
"completions/mean_terminated_length":
|
| 215 |
-
"completions/min_length":
|
| 216 |
-
"completions/min_terminated_length":
|
| 217 |
-
"entropy": 0.
|
| 218 |
-
"epoch":
|
| 219 |
-
"frac_reward_zero_std": 0.
|
| 220 |
-
"grad_norm":
|
| 221 |
-
"
|
| 222 |
-
"
|
| 223 |
-
"
|
| 224 |
-
"
|
| 225 |
-
"
|
| 226 |
-
"
|
| 227 |
-
"rewards/
|
| 228 |
-
"
|
| 229 |
-
"sampling/importance_sampling_ratio/
|
| 230 |
-
"sampling/importance_sampling_ratio/
|
| 231 |
-
"sampling/
|
| 232 |
-
"sampling/sampling_logp_difference/
|
| 233 |
-
"
|
| 234 |
-
"
|
|
|
|
| 235 |
},
|
| 236 |
{
|
| 237 |
-
"clip_ratio/high_max": 0.
|
| 238 |
-
"clip_ratio/high_mean": 0.
|
| 239 |
-
"clip_ratio/low_mean": 0.
|
| 240 |
-
"clip_ratio/low_min": 0.
|
| 241 |
-
"clip_ratio/region_mean": 0.
|
| 242 |
"completions/clipped_ratio": 0.0,
|
| 243 |
-
"completions/max_length":
|
| 244 |
-
"completions/max_terminated_length":
|
| 245 |
-
"completions/mean_length":
|
| 246 |
-
"completions/mean_terminated_length":
|
| 247 |
-
"completions/min_length":
|
| 248 |
-
"completions/min_terminated_length":
|
| 249 |
-
"entropy": 0.
|
| 250 |
-
"epoch":
|
| 251 |
-
"frac_reward_zero_std": 0.
|
| 252 |
-
"grad_norm":
|
| 253 |
-
"
|
| 254 |
-
"
|
| 255 |
-
"
|
| 256 |
-
"
|
| 257 |
-
"
|
| 258 |
-
"
|
| 259 |
-
"rewards/
|
| 260 |
-
"
|
| 261 |
-
"sampling/importance_sampling_ratio/
|
| 262 |
-
"sampling/importance_sampling_ratio/
|
| 263 |
-
"sampling/
|
| 264 |
-
"sampling/sampling_logp_difference/
|
| 265 |
-
"
|
| 266 |
-
"
|
|
|
|
| 267 |
},
|
| 268 |
{
|
| 269 |
-
"clip_ratio/high_max": 0.
|
| 270 |
-
"clip_ratio/high_mean": 0.
|
| 271 |
-
"clip_ratio/low_mean": 0.
|
| 272 |
-
"clip_ratio/low_min": 0.
|
| 273 |
-
"clip_ratio/region_mean": 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 274 |
"completions/clipped_ratio": 0.0,
|
| 275 |
-
"completions/max_length":
|
| 276 |
-
"completions/max_terminated_length":
|
| 277 |
-
"completions/mean_length":
|
| 278 |
-
"completions/mean_terminated_length":
|
| 279 |
-
"completions/min_length":
|
| 280 |
-
"completions/min_terminated_length":
|
| 281 |
-
"entropy": 0.
|
| 282 |
-
"epoch":
|
| 283 |
-
"frac_reward_zero_std": 0.
|
| 284 |
-
"grad_norm":
|
| 285 |
-
"
|
| 286 |
-
"
|
| 287 |
-
"
|
| 288 |
-
"
|
| 289 |
-
"
|
| 290 |
-
"
|
| 291 |
-
"rewards/
|
| 292 |
-
"
|
| 293 |
-
"sampling/importance_sampling_ratio/
|
| 294 |
-
"sampling/importance_sampling_ratio/
|
| 295 |
-
"sampling/
|
| 296 |
-
"sampling/sampling_logp_difference/
|
| 297 |
-
"
|
| 298 |
-
"
|
|
|
|
| 299 |
},
|
| 300 |
{
|
| 301 |
-
"epoch":
|
| 302 |
"eval_clip_ratio/high_max": 0.0,
|
| 303 |
"eval_clip_ratio/high_mean": 0.0,
|
| 304 |
"eval_clip_ratio/low_mean": 0.0,
|
| 305 |
"eval_clip_ratio/low_min": 0.0,
|
| 306 |
"eval_clip_ratio/region_mean": 0.0,
|
| 307 |
"eval_completions/clipped_ratio": 0.0,
|
| 308 |
-
"eval_completions/max_length":
|
| 309 |
-
"eval_completions/max_terminated_length":
|
| 310 |
-
"eval_completions/mean_length":
|
| 311 |
-
"eval_completions/mean_terminated_length":
|
| 312 |
-
"eval_completions/min_length":
|
| 313 |
-
"eval_completions/min_terminated_length":
|
| 314 |
-
"eval_entropy": 0.
|
| 315 |
-
"eval_frac_reward_zero_std": 0.
|
| 316 |
-
"
|
| 317 |
-
"
|
| 318 |
-
"
|
| 319 |
-
"
|
| 320 |
-
"
|
| 321 |
-
"eval_rewards/
|
| 322 |
-
"
|
| 323 |
-
"
|
| 324 |
-
"
|
| 325 |
-
"eval_sampling/importance_sampling_ratio/
|
| 326 |
-
"eval_sampling/importance_sampling_ratio/
|
| 327 |
-
"eval_sampling/
|
| 328 |
-
"eval_sampling/sampling_logp_difference/
|
| 329 |
-
"
|
| 330 |
-
"
|
|
|
|
| 331 |
}
|
| 332 |
],
|
| 333 |
-
"logging_steps":
|
| 334 |
-
"max_steps":
|
| 335 |
-
"num_input_tokens_seen":
|
| 336 |
-
"num_train_epochs":
|
| 337 |
"save_steps": 500,
|
| 338 |
"stateful_callbacks": {
|
| 339 |
"TrainerControl": {
|
|
@@ -348,7 +556,7 @@
|
|
| 348 |
}
|
| 349 |
},
|
| 350 |
"total_flos": 0.0,
|
| 351 |
-
"train_batch_size":
|
| 352 |
"trial_name": null,
|
| 353 |
"trial_params": null
|
| 354 |
}
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.01875,
|
| 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": 374.4,
|
| 20 |
+
"completions/max_terminated_length": 374.4,
|
| 21 |
+
"completions/mean_length": 290.6960021972656,
|
| 22 |
+
"completions/mean_terminated_length": 290.6960021972656,
|
| 23 |
+
"completions/min_length": 167.6,
|
| 24 |
+
"completions/min_terminated_length": 167.6,
|
| 25 |
+
"entropy": 0.7587062597274781,
|
| 26 |
+
"epoch": 0.00125,
|
| 27 |
+
"frac_reward_zero_std": 0.6159999966621399,
|
| 28 |
+
"grad_norm": 0.32421875,
|
| 29 |
+
"kl": 0.007210364751517773,
|
| 30 |
+
"learning_rate": 1.137216e-06,
|
| 31 |
+
"loss": -0.000457207765430212,
|
| 32 |
+
"num_tokens": 211069.0,
|
| 33 |
+
"reward": 0.06548000425100327,
|
| 34 |
+
"reward_std": 0.0959968164563179,
|
| 35 |
+
"rewards/env_goofspiel_reward/mean": 0.06548000574111938,
|
| 36 |
+
"rewards/env_goofspiel_reward/std": 0.20242175161838533,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.9353477716445924,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 1.0085526347160338,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.5233797252178192,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 0.6646340131759644,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.06287899985909462,
|
| 42 |
+
"step": 5,
|
| 43 |
+
"step_time": 5.862163845000214
|
| 44 |
},
|
| 45 |
{
|
| 46 |
"clip_ratio/high_max": 0.0,
|
|
|
|
| 49 |
"clip_ratio/low_min": 0.0,
|
| 50 |
"clip_ratio/region_mean": 0.0,
|
| 51 |
"completions/clipped_ratio": 0.0,
|
| 52 |
+
"completions/max_length": 373.8,
|
| 53 |
+
"completions/max_terminated_length": 373.8,
|
| 54 |
+
"completions/mean_length": 285.77599182128904,
|
| 55 |
+
"completions/mean_terminated_length": 285.77599182128904,
|
| 56 |
+
"completions/min_length": 187.0,
|
| 57 |
+
"completions/min_terminated_length": 187.0,
|
| 58 |
+
"entropy": 0.7223453521728516,
|
| 59 |
+
"epoch": 0.0025,
|
| 60 |
+
"frac_reward_zero_std": 0.6879999876022339,
|
| 61 |
+
"grad_norm": 0.373046875,
|
| 62 |
+
"kl": 0.01190796154551208,
|
| 63 |
+
"learning_rate": 2.5587359999999995e-06,
|
| 64 |
+
"loss": 0.0004954038187861443,
|
| 65 |
+
"num_tokens": 419291.0,
|
| 66 |
+
"reward": 0.06636000201106071,
|
| 67 |
+
"reward_std": 0.08932172805070877,
|
| 68 |
+
"rewards/env_goofspiel_reward/mean": 0.06636000350117684,
|
| 69 |
+
"rewards/env_goofspiel_reward/std": 0.20822030901908875,
|
| 70 |
+
"sampling/importance_sampling_ratio/max": 1.9151880025863648,
|
| 71 |
+
"sampling/importance_sampling_ratio/mean": 1.00549418926239,
|
| 72 |
+
"sampling/importance_sampling_ratio/min": 0.5084045708179474,
|
| 73 |
+
"sampling/sampling_logp_difference/max": 0.8484642028808593,
|
| 74 |
+
"sampling/sampling_logp_difference/mean": 0.05378681421279907,
|
| 75 |
+
"step": 10,
|
| 76 |
+
"step_time": 5.392790380800034
|
| 77 |
},
|
| 78 |
{
|
| 79 |
+
"clip_ratio/high_max": 0.0,
|
| 80 |
+
"clip_ratio/high_mean": 0.0,
|
| 81 |
+
"clip_ratio/low_mean": 0.0,
|
| 82 |
+
"clip_ratio/low_min": 0.0,
|
| 83 |
+
"clip_ratio/region_mean": 0.0,
|
| 84 |
"completions/clipped_ratio": 0.0,
|
| 85 |
+
"completions/max_length": 374.0,
|
| 86 |
+
"completions/max_terminated_length": 374.0,
|
| 87 |
+
"completions/mean_length": 286.59998779296876,
|
| 88 |
+
"completions/mean_terminated_length": 286.59998779296876,
|
| 89 |
+
"completions/min_length": 186.4,
|
| 90 |
+
"completions/min_terminated_length": 186.4,
|
| 91 |
+
"entropy": 0.7013472616672516,
|
| 92 |
+
"epoch": 0.00375,
|
| 93 |
+
"frac_reward_zero_std": 0.743999981880188,
|
| 94 |
+
"grad_norm": 0.25,
|
| 95 |
+
"kl": 0.03683878714218736,
|
| 96 |
+
"learning_rate": 3.9802559999999995e-06,
|
| 97 |
+
"loss": 0.00018892403459176422,
|
| 98 |
+
"num_tokens": 629381.0,
|
| 99 |
+
"reward": 0.05708000063896179,
|
| 100 |
+
"reward_std": 0.0819678172469139,
|
| 101 |
+
"rewards/env_goofspiel_reward/mean": 0.05708000287413597,
|
| 102 |
+
"rewards/env_goofspiel_reward/std": 0.19145022630691527,
|
| 103 |
+
"sampling/importance_sampling_ratio/max": 1.9665297031402589,
|
| 104 |
+
"sampling/importance_sampling_ratio/mean": 1.0253857135772706,
|
| 105 |
+
"sampling/importance_sampling_ratio/min": 0.538357138633728,
|
| 106 |
+
"sampling/sampling_logp_difference/max": 0.7756662368774414,
|
| 107 |
+
"sampling/sampling_logp_difference/mean": 0.06448477879166603,
|
| 108 |
+
"step": 15,
|
| 109 |
+
"step_time": 5.349944851799956
|
| 110 |
},
|
| 111 |
{
|
| 112 |
+
"clip_ratio/high_max": 0.0,
|
| 113 |
+
"clip_ratio/high_mean": 0.0,
|
| 114 |
+
"clip_ratio/low_mean": 0.0,
|
| 115 |
+
"clip_ratio/low_min": 0.0,
|
| 116 |
+
"clip_ratio/region_mean": 0.0,
|
| 117 |
"completions/clipped_ratio": 0.0,
|
| 118 |
+
"completions/max_length": 374.8,
|
| 119 |
+
"completions/max_terminated_length": 374.8,
|
| 120 |
+
"completions/mean_length": 291.7519897460937,
|
| 121 |
+
"completions/mean_terminated_length": 291.7519897460937,
|
| 122 |
+
"completions/min_length": 199.6,
|
| 123 |
+
"completions/min_terminated_length": 199.6,
|
| 124 |
+
"entropy": 0.7047547340393067,
|
| 125 |
+
"epoch": 0.005,
|
| 126 |
+
"frac_reward_zero_std": 0.7519999742507935,
|
| 127 |
+
"grad_norm": 0.294921875,
|
| 128 |
+
"kl": 0.08839112929999829,
|
| 129 |
+
"learning_rate": 5.401775999999999e-06,
|
| 130 |
+
"loss": -2.657829609233886e-05,
|
| 131 |
+
"num_tokens": 840556.0,
|
| 132 |
+
"reward": 0.06196000054478645,
|
| 133 |
+
"reward_std": 0.07529272958636284,
|
| 134 |
+
"rewards/env_goofspiel_reward/mean": 0.061960003525018695,
|
| 135 |
+
"rewards/env_goofspiel_reward/std": 0.19518478214740753,
|
| 136 |
+
"sampling/importance_sampling_ratio/max": 1.6097611427307128,
|
| 137 |
+
"sampling/importance_sampling_ratio/mean": 0.9887367606163024,
|
| 138 |
+
"sampling/importance_sampling_ratio/min": 0.46161189675331116,
|
| 139 |
+
"sampling/sampling_logp_difference/max": 0.6100110828876495,
|
| 140 |
+
"sampling/sampling_logp_difference/mean": 0.058672596514225,
|
| 141 |
+
"step": 20,
|
| 142 |
+
"step_time": 5.242961023999942
|
| 143 |
},
|
| 144 |
{
|
| 145 |
+
"clip_ratio/high_max": 0.0,
|
| 146 |
+
"clip_ratio/high_mean": 0.0,
|
| 147 |
+
"clip_ratio/low_mean": 0.0,
|
| 148 |
+
"clip_ratio/low_min": 0.0,
|
| 149 |
+
"clip_ratio/region_mean": 0.0,
|
| 150 |
+
"completions/clipped_ratio": 0.0,
|
| 151 |
+
"completions/max_length": 374.2,
|
| 152 |
+
"completions/max_terminated_length": 374.2,
|
| 153 |
+
"completions/mean_length": 287.9799865722656,
|
| 154 |
+
"completions/mean_terminated_length": 287.9799865722656,
|
| 155 |
+
"completions/min_length": 194.4,
|
| 156 |
+
"completions/min_terminated_length": 194.4,
|
| 157 |
+
"entropy": 0.6883363842964172,
|
| 158 |
+
"epoch": 0.00625,
|
| 159 |
+
"frac_reward_zero_std": 0.7599999785423279,
|
| 160 |
+
"grad_norm": 0.1826171875,
|
| 161 |
+
"kl": 0.13179944828152657,
|
| 162 |
+
"learning_rate": 6.8232959999999994e-06,
|
| 163 |
+
"loss": 6.652346346527337e-05,
|
| 164 |
+
"num_tokens": 1049402.0,
|
| 165 |
+
"reward": 0.07416000291705131,
|
| 166 |
+
"reward_std": 0.10555689632892609,
|
| 167 |
+
"rewards/env_goofspiel_reward/mean": 0.07416000291705131,
|
| 168 |
+
"rewards/env_goofspiel_reward/std": 0.22879809141159058,
|
| 169 |
+
"sampling/importance_sampling_ratio/max": 1.9118820905685425,
|
| 170 |
+
"sampling/importance_sampling_ratio/mean": 0.9868301272392273,
|
| 171 |
+
"sampling/importance_sampling_ratio/min": 0.6072056829929352,
|
| 172 |
+
"sampling/sampling_logp_difference/max": 0.5817384719848633,
|
| 173 |
+
"sampling/sampling_logp_difference/mean": 0.05620769709348679,
|
| 174 |
+
"step": 25,
|
| 175 |
+
"step_time": 5.260266781999962
|
| 176 |
},
|
| 177 |
{
|
| 178 |
+
"clip_ratio/high_max": 0.0,
|
| 179 |
+
"clip_ratio/high_mean": 0.0,
|
| 180 |
+
"clip_ratio/low_mean": 0.0,
|
| 181 |
+
"clip_ratio/low_min": 0.0,
|
| 182 |
+
"clip_ratio/region_mean": 0.0,
|
| 183 |
"completions/clipped_ratio": 0.0,
|
| 184 |
+
"completions/max_length": 416.8,
|
| 185 |
+
"completions/max_terminated_length": 416.8,
|
| 186 |
+
"completions/mean_length": 299.07598876953125,
|
| 187 |
+
"completions/mean_terminated_length": 299.07598876953125,
|
| 188 |
+
"completions/min_length": 212.0,
|
| 189 |
+
"completions/min_terminated_length": 212.0,
|
| 190 |
+
"entropy": 0.4900937914848328,
|
| 191 |
+
"epoch": 0.0075,
|
| 192 |
+
"frac_reward_zero_std": 0.7599999785423279,
|
| 193 |
+
"grad_norm": 0.1318359375,
|
| 194 |
+
"kl": 0.13062527999281884,
|
| 195 |
+
"learning_rate": 8.244816e-06,
|
| 196 |
+
"loss": 0.00041568251326680184,
|
| 197 |
+
"num_tokens": 1263196.0,
|
| 198 |
+
"reward": 0.07428000047802925,
|
| 199 |
+
"reward_std": 0.10527405217289924,
|
| 200 |
+
"rewards/env_goofspiel_reward/mean": 0.07428000047802925,
|
| 201 |
+
"rewards/env_goofspiel_reward/std": 0.21391310691833496,
|
| 202 |
+
"sampling/importance_sampling_ratio/max": 1.9750086545944214,
|
| 203 |
+
"sampling/importance_sampling_ratio/mean": 1.0017020225524902,
|
| 204 |
+
"sampling/importance_sampling_ratio/min": 0.4652911275625229,
|
| 205 |
+
"sampling/sampling_logp_difference/max": 0.7616503953933715,
|
| 206 |
+
"sampling/sampling_logp_difference/mean": 0.048386485874652864,
|
| 207 |
+
"step": 30,
|
| 208 |
+
"step_time": 5.606105185600154
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"clip_ratio/high_max": 0.0,
|
| 212 |
+
"clip_ratio/high_mean": 0.0,
|
| 213 |
+
"clip_ratio/low_mean": 0.0,
|
| 214 |
+
"clip_ratio/low_min": 0.0,
|
| 215 |
+
"clip_ratio/region_mean": 0.0,
|
| 216 |
+
"completions/clipped_ratio": 0.0,
|
| 217 |
+
"completions/max_length": 374.0,
|
| 218 |
+
"completions/max_terminated_length": 374.0,
|
| 219 |
+
"completions/mean_length": 290.9440002441406,
|
| 220 |
+
"completions/mean_terminated_length": 290.9440002441406,
|
| 221 |
+
"completions/min_length": 212.0,
|
| 222 |
+
"completions/min_terminated_length": 212.0,
|
| 223 |
+
"entropy": 0.2889633044600487,
|
| 224 |
+
"epoch": 0.00875,
|
| 225 |
+
"frac_reward_zero_std": 0.8479999780654908,
|
| 226 |
+
"grad_norm": 0.0859375,
|
| 227 |
+
"kl": 0.22455788254737855,
|
| 228 |
+
"learning_rate": 9.666336e-06,
|
| 229 |
+
"loss": 6.903421599417925e-05,
|
| 230 |
+
"num_tokens": 1474071.0,
|
| 231 |
+
"reward": 0.052800000086426734,
|
| 232 |
+
"reward_std": 0.06788224689662456,
|
| 233 |
+
"rewards/env_goofspiel_reward/mean": 0.052800000086426734,
|
| 234 |
+
"rewards/env_goofspiel_reward/std": 0.16736633479595184,
|
| 235 |
+
"sampling/importance_sampling_ratio/max": 1.6834668874740601,
|
| 236 |
+
"sampling/importance_sampling_ratio/mean": 0.9958889007568359,
|
| 237 |
+
"sampling/importance_sampling_ratio/min": 0.43778104782104493,
|
| 238 |
+
"sampling/sampling_logp_difference/max": 0.8263626098632812,
|
| 239 |
+
"sampling/sampling_logp_difference/mean": 0.0358995582908392,
|
| 240 |
+
"step": 35,
|
| 241 |
+
"step_time": 5.237710429800063
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"clip_ratio/high_max": 0.0,
|
| 245 |
+
"clip_ratio/high_mean": 0.0,
|
| 246 |
+
"clip_ratio/low_mean": 0.0,
|
| 247 |
+
"clip_ratio/low_min": 0.0,
|
| 248 |
+
"clip_ratio/region_mean": 0.0,
|
| 249 |
+
"completions/clipped_ratio": 0.0,
|
| 250 |
+
"completions/max_length": 374.0,
|
| 251 |
+
"completions/max_terminated_length": 374.0,
|
| 252 |
+
"completions/mean_length": 286.0199951171875,
|
| 253 |
+
"completions/mean_terminated_length": 286.0199951171875,
|
| 254 |
+
"completions/min_length": 212.0,
|
| 255 |
+
"completions/min_terminated_length": 212.0,
|
| 256 |
+
"entropy": 0.24612685889005662,
|
| 257 |
+
"epoch": 0.01,
|
| 258 |
+
"frac_reward_zero_std": 0.8159999847412109,
|
| 259 |
+
"grad_norm": 0.32421875,
|
| 260 |
+
"kl": 0.1633337877690792,
|
| 261 |
+
"learning_rate": 9.950637941994321e-06,
|
| 262 |
+
"loss": -2.846699208021164e-05,
|
| 263 |
+
"num_tokens": 1681137.0,
|
| 264 |
+
"reward": 0.060000001639127734,
|
| 265 |
+
"reward_std": 0.08485281020402909,
|
| 266 |
+
"rewards/env_goofspiel_reward/mean": 0.060000001639127734,
|
| 267 |
+
"rewards/env_goofspiel_reward/std": 0.19129492342472076,
|
| 268 |
+
"sampling/importance_sampling_ratio/max": 1.5720022439956665,
|
| 269 |
+
"sampling/importance_sampling_ratio/mean": 0.9784366488456726,
|
| 270 |
+
"sampling/importance_sampling_ratio/min": 0.47974646687507627,
|
| 271 |
+
"sampling/sampling_logp_difference/max": 0.702510929107666,
|
| 272 |
+
"sampling/sampling_logp_difference/mean": 0.03313286602497101,
|
| 273 |
+
"step": 40,
|
| 274 |
+
"step_time": 5.238652371199805
|
| 275 |
},
|
| 276 |
{
|
| 277 |
+
"clip_ratio/high_max": 0.0,
|
| 278 |
+
"clip_ratio/high_mean": 0.0,
|
| 279 |
+
"clip_ratio/low_mean": 0.0,
|
| 280 |
+
"clip_ratio/low_min": 0.0,
|
| 281 |
+
"clip_ratio/region_mean": 0.0,
|
| 282 |
+
"completions/clipped_ratio": 0.0,
|
| 283 |
+
"completions/max_length": 660.4,
|
| 284 |
+
"completions/max_terminated_length": 660.4,
|
| 285 |
+
"completions/mean_length": 489.1719970703125,
|
| 286 |
+
"completions/mean_terminated_length": 489.1719970703125,
|
| 287 |
+
"completions/min_length": 322.4,
|
| 288 |
+
"completions/min_terminated_length": 322.4,
|
| 289 |
+
"entropy": 0.3432160258293152,
|
| 290 |
+
"epoch": 0.01125,
|
| 291 |
+
"frac_reward_zero_std": 0.7599999785423279,
|
| 292 |
+
"grad_norm": 0.2255859375,
|
| 293 |
+
"kl": 0.3002031177282333,
|
| 294 |
+
"learning_rate": 9.950629581350144e-06,
|
| 295 |
+
"loss": 0.0002033085562288761,
|
| 296 |
+
"num_tokens": 1938183.0,
|
| 297 |
+
"reward": 0.03768000081181526,
|
| 298 |
+
"reward_std": 0.05008201580494642,
|
| 299 |
+
"rewards/env_goofspiel_reward/mean": 0.03768000081181526,
|
| 300 |
+
"rewards/env_goofspiel_reward/std": 0.12525621727108954,
|
| 301 |
+
"sampling/importance_sampling_ratio/max": 1.7067772150039673,
|
| 302 |
+
"sampling/importance_sampling_ratio/mean": 1.0024658203125,
|
| 303 |
+
"sampling/importance_sampling_ratio/min": 0.5572002470493317,
|
| 304 |
+
"sampling/sampling_logp_difference/max": 0.6115247011184692,
|
| 305 |
+
"sampling/sampling_logp_difference/mean": 0.03118431307375431,
|
| 306 |
+
"step": 45,
|
| 307 |
+
"step_time": 7.8333522611999795
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"clip_ratio/high_max": 0.0,
|
| 311 |
+
"clip_ratio/high_mean": 0.0,
|
| 312 |
+
"clip_ratio/low_mean": 0.0,
|
| 313 |
+
"clip_ratio/low_min": 0.0,
|
| 314 |
+
"clip_ratio/region_mean": 0.0,
|
| 315 |
"completions/clipped_ratio": 0.0,
|
| 316 |
+
"completions/max_length": 731.6,
|
| 317 |
+
"completions/max_terminated_length": 731.6,
|
| 318 |
+
"completions/mean_length": 558.283984375,
|
| 319 |
+
"completions/mean_terminated_length": 558.283984375,
|
| 320 |
+
"completions/min_length": 408.0,
|
| 321 |
+
"completions/min_terminated_length": 408.0,
|
| 322 |
+
"entropy": 0.29817005395889284,
|
| 323 |
+
"epoch": 0.0125,
|
| 324 |
+
"frac_reward_zero_std": 0.8399999737739563,
|
| 325 |
+
"grad_norm": 0.14453125,
|
| 326 |
+
"kl": 0.14909197837114335,
|
| 327 |
+
"learning_rate": 9.950614789456512e-06,
|
| 328 |
+
"loss": -3.2902939710766074e-05,
|
| 329 |
+
"num_tokens": 2214781.0,
|
| 330 |
+
"reward": 0.03273333106189966,
|
| 331 |
+
"reward_std": 0.04195500072091818,
|
| 332 |
+
"rewards/env_goofspiel_reward/mean": 0.032733332738280295,
|
| 333 |
+
"rewards/env_goofspiel_reward/std": 0.12340526506304741,
|
| 334 |
+
"sampling/importance_sampling_ratio/max": 1.7580672979354859,
|
| 335 |
+
"sampling/importance_sampling_ratio/mean": 1.0121817111968994,
|
| 336 |
+
"sampling/importance_sampling_ratio/min": 0.5544978082180023,
|
| 337 |
+
"sampling/sampling_logp_difference/max": 0.6947145342826844,
|
| 338 |
+
"sampling/sampling_logp_difference/mean": 0.02995888851583004,
|
| 339 |
+
"step": 50,
|
| 340 |
+
"step_time": 8.399313552200056
|
| 341 |
},
|
| 342 |
{
|
| 343 |
+
"clip_ratio/high_max": 0.0,
|
| 344 |
+
"clip_ratio/high_mean": 0.0,
|
| 345 |
+
"clip_ratio/low_mean": 0.0,
|
| 346 |
+
"clip_ratio/low_min": 0.0,
|
| 347 |
+
"clip_ratio/region_mean": 0.0,
|
| 348 |
"completions/clipped_ratio": 0.0,
|
| 349 |
+
"completions/max_length": 737.0,
|
| 350 |
+
"completions/max_terminated_length": 737.0,
|
| 351 |
+
"completions/mean_length": 563.09599609375,
|
| 352 |
+
"completions/mean_terminated_length": 563.09599609375,
|
| 353 |
+
"completions/min_length": 408.0,
|
| 354 |
+
"completions/min_terminated_length": 408.0,
|
| 355 |
+
"entropy": 0.3130415454506874,
|
| 356 |
+
"epoch": 0.01375,
|
| 357 |
+
"frac_reward_zero_std": 0.8319999814033509,
|
| 358 |
+
"grad_norm": 0.12451171875,
|
| 359 |
+
"kl": 0.17116529867053032,
|
| 360 |
+
"learning_rate": 9.95059356633892e-06,
|
| 361 |
+
"loss": 0.00011836685007438064,
|
| 362 |
+
"num_tokens": 2492933.0,
|
| 363 |
+
"reward": 0.0414799977093935,
|
| 364 |
+
"reward_std": 0.04919577315449715,
|
| 365 |
+
"rewards/env_goofspiel_reward/mean": 0.0414799977093935,
|
| 366 |
+
"rewards/env_goofspiel_reward/std": 0.13337331116199494,
|
| 367 |
+
"sampling/importance_sampling_ratio/max": 1.614890694618225,
|
| 368 |
+
"sampling/importance_sampling_ratio/mean": 0.9976115822792053,
|
| 369 |
+
"sampling/importance_sampling_ratio/min": 0.5176251292228699,
|
| 370 |
+
"sampling/sampling_logp_difference/max": 0.5567813754081726,
|
| 371 |
+
"sampling/sampling_logp_difference/mean": 0.030348184704780578,
|
| 372 |
+
"step": 55,
|
| 373 |
+
"step_time": 8.462650469800156
|
| 374 |
},
|
| 375 |
{
|
| 376 |
+
"clip_ratio/high_max": 0.0,
|
| 377 |
+
"clip_ratio/high_mean": 0.0,
|
| 378 |
+
"clip_ratio/low_mean": 0.0,
|
| 379 |
+
"clip_ratio/low_min": 0.0,
|
| 380 |
+
"clip_ratio/region_mean": 0.0,
|
| 381 |
+
"completions/clipped_ratio": 0.0,
|
| 382 |
+
"completions/max_length": 731.8,
|
| 383 |
+
"completions/max_terminated_length": 731.8,
|
| 384 |
+
"completions/mean_length": 561.4599853515625,
|
| 385 |
+
"completions/mean_terminated_length": 561.4599853515625,
|
| 386 |
+
"completions/min_length": 408.0,
|
| 387 |
+
"completions/min_terminated_length": 408.0,
|
| 388 |
+
"entropy": 0.3217264384031296,
|
| 389 |
+
"epoch": 0.015,
|
| 390 |
+
"frac_reward_zero_std": 0.8239999771118164,
|
| 391 |
+
"grad_norm": 0.103515625,
|
| 392 |
+
"kl": 0.16943022534251212,
|
| 393 |
+
"learning_rate": 9.950565912033946e-06,
|
| 394 |
+
"loss": 0.00016170007875189186,
|
| 395 |
+
"num_tokens": 2768999.0,
|
| 396 |
+
"reward": 0.046799997240304946,
|
| 397 |
+
"reward_std": 0.06128258481621742,
|
| 398 |
+
"rewards/env_goofspiel_reward/mean": 0.046799997240304946,
|
| 399 |
+
"rewards/env_goofspiel_reward/std": 0.1459730952978134,
|
| 400 |
+
"sampling/importance_sampling_ratio/max": 1.6248928308486938,
|
| 401 |
+
"sampling/importance_sampling_ratio/mean": 0.994913375377655,
|
| 402 |
+
"sampling/importance_sampling_ratio/min": 0.5438100695610046,
|
| 403 |
+
"sampling/sampling_logp_difference/max": 0.5243477821350098,
|
| 404 |
+
"sampling/sampling_logp_difference/mean": 0.02915378250181675,
|
| 405 |
+
"step": 60,
|
| 406 |
+
"step_time": 8.311450370799957
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"clip_ratio/high_max": 0.0,
|
| 410 |
+
"clip_ratio/high_mean": 0.0,
|
| 411 |
+
"clip_ratio/low_mean": 0.0,
|
| 412 |
+
"clip_ratio/low_min": 0.0,
|
| 413 |
+
"clip_ratio/region_mean": 0.0,
|
| 414 |
+
"completions/clipped_ratio": 0.0,
|
| 415 |
+
"completions/max_length": 936.2,
|
| 416 |
+
"completions/max_terminated_length": 936.2,
|
| 417 |
+
"completions/mean_length": 718.1879760742188,
|
| 418 |
+
"completions/mean_terminated_length": 718.1879760742188,
|
| 419 |
+
"completions/min_length": 517.2,
|
| 420 |
+
"completions/min_terminated_length": 517.2,
|
| 421 |
+
"entropy": 0.3693429589271545,
|
| 422 |
+
"epoch": 0.01625,
|
| 423 |
+
"frac_reward_zero_std": 0.8319999694824218,
|
| 424 |
+
"grad_norm": 0.10400390625,
|
| 425 |
+
"kl": 0.16856326386332512,
|
| 426 |
+
"learning_rate": 9.950531826589252e-06,
|
| 427 |
+
"loss": 9.133372223004698e-05,
|
| 428 |
+
"num_tokens": 3085009.0,
|
| 429 |
+
"reward": 0.03046666570007801,
|
| 430 |
+
"reward_std": 0.04365205764770508,
|
| 431 |
+
"rewards/env_goofspiel_reward/mean": 0.030466666072607042,
|
| 432 |
+
"rewards/env_goofspiel_reward/std": 0.1246792048215866,
|
| 433 |
+
"sampling/importance_sampling_ratio/max": 2.0000662088394163,
|
| 434 |
+
"sampling/importance_sampling_ratio/mean": 0.9988593339920044,
|
| 435 |
+
"sampling/importance_sampling_ratio/min": 0.5936131238937378,
|
| 436 |
+
"sampling/sampling_logp_difference/max": 0.661067008972168,
|
| 437 |
+
"sampling/sampling_logp_difference/mean": 0.029154302552342415,
|
| 438 |
+
"step": 65,
|
| 439 |
+
"step_time": 10.795809616799943
|
| 440 |
+
},
|
| 441 |
+
{
|
| 442 |
+
"clip_ratio/high_max": 0.0,
|
| 443 |
+
"clip_ratio/high_mean": 0.0,
|
| 444 |
+
"clip_ratio/low_mean": 0.0,
|
| 445 |
+
"clip_ratio/low_min": 0.0,
|
| 446 |
+
"clip_ratio/region_mean": 0.0,
|
| 447 |
+
"completions/clipped_ratio": 0.0,
|
| 448 |
+
"completions/max_length": 1074.6,
|
| 449 |
+
"completions/max_terminated_length": 1074.6,
|
| 450 |
+
"completions/mean_length": 809.1799682617187,
|
| 451 |
+
"completions/mean_terminated_length": 809.1799682617187,
|
| 452 |
+
"completions/min_length": 590.0,
|
| 453 |
+
"completions/min_terminated_length": 590.0,
|
| 454 |
+
"entropy": 0.3258677929639816,
|
| 455 |
+
"epoch": 0.0175,
|
| 456 |
+
"frac_reward_zero_std": 0.8239999771118164,
|
| 457 |
+
"grad_norm": 0.232421875,
|
| 458 |
+
"kl": 0.1824295423924923,
|
| 459 |
+
"learning_rate": 9.950491310063582e-06,
|
| 460 |
+
"loss": 0.00022613720502704382,
|
| 461 |
+
"num_tokens": 3421737.0,
|
| 462 |
+
"reward": 0.039453331381082535,
|
| 463 |
+
"reward_std": 0.048102113604545596,
|
| 464 |
+
"rewards/env_goofspiel_reward/mean": 0.03945333361625671,
|
| 465 |
+
"rewards/env_goofspiel_reward/std": 0.12717084884643554,
|
| 466 |
+
"sampling/importance_sampling_ratio/max": 1.7261427879333495,
|
| 467 |
+
"sampling/importance_sampling_ratio/mean": 1.0054854035377503,
|
| 468 |
+
"sampling/importance_sampling_ratio/min": 0.6340943217277527,
|
| 469 |
+
"sampling/sampling_logp_difference/max": 0.4532318115234375,
|
| 470 |
+
"sampling/sampling_logp_difference/mean": 0.02659378871321678,
|
| 471 |
+
"step": 70,
|
| 472 |
+
"step_time": 12.004160757599857
|
| 473 |
+
},
|
| 474 |
+
{
|
| 475 |
+
"clip_ratio/high_max": 0.0,
|
| 476 |
+
"clip_ratio/high_mean": 0.0,
|
| 477 |
+
"clip_ratio/low_mean": 0.0,
|
| 478 |
+
"clip_ratio/low_min": 0.0,
|
| 479 |
+
"clip_ratio/region_mean": 0.0,
|
| 480 |
"completions/clipped_ratio": 0.0,
|
| 481 |
+
"completions/max_length": 1074.0,
|
| 482 |
+
"completions/max_terminated_length": 1074.0,
|
| 483 |
+
"completions/mean_length": 813.3439697265625,
|
| 484 |
+
"completions/mean_terminated_length": 813.3439697265625,
|
| 485 |
+
"completions/min_length": 590.0,
|
| 486 |
+
"completions/min_terminated_length": 590.0,
|
| 487 |
+
"entropy": 0.29610189199447634,
|
| 488 |
+
"epoch": 0.01875,
|
| 489 |
+
"frac_reward_zero_std": 0.8639999747276306,
|
| 490 |
+
"grad_norm": 0.1201171875,
|
| 491 |
+
"kl": 0.17389494478702544,
|
| 492 |
+
"learning_rate": 9.950444362526773e-06,
|
| 493 |
+
"loss": -2.63441979768686e-06,
|
| 494 |
+
"num_tokens": 3760662.0,
|
| 495 |
+
"reward": 0.03491999926045537,
|
| 496 |
+
"reward_std": 0.041691013239324094,
|
| 497 |
+
"rewards/env_goofspiel_reward/mean": 0.03492000075057149,
|
| 498 |
+
"rewards/env_goofspiel_reward/std": 0.12171182483434677,
|
| 499 |
+
"sampling/importance_sampling_ratio/max": 1.5990596771240235,
|
| 500 |
+
"sampling/importance_sampling_ratio/mean": 1.0042136073112489,
|
| 501 |
+
"sampling/importance_sampling_ratio/min": 0.5866354703903198,
|
| 502 |
+
"sampling/sampling_logp_difference/max": 0.49382131099700927,
|
| 503 |
+
"sampling/sampling_logp_difference/mean": 0.024137656763195993,
|
| 504 |
+
"step": 75,
|
| 505 |
+
"step_time": 11.794954787200004
|
| 506 |
},
|
| 507 |
{
|
| 508 |
+
"epoch": 0.01875,
|
| 509 |
"eval_clip_ratio/high_max": 0.0,
|
| 510 |
"eval_clip_ratio/high_mean": 0.0,
|
| 511 |
"eval_clip_ratio/low_mean": 0.0,
|
| 512 |
"eval_clip_ratio/low_min": 0.0,
|
| 513 |
"eval_clip_ratio/region_mean": 0.0,
|
| 514 |
"eval_completions/clipped_ratio": 0.0,
|
| 515 |
+
"eval_completions/max_length": 895.0,
|
| 516 |
+
"eval_completions/max_terminated_length": 895.0,
|
| 517 |
+
"eval_completions/mean_length": 806.55,
|
| 518 |
+
"eval_completions/mean_terminated_length": 806.55,
|
| 519 |
+
"eval_completions/min_length": 725.8,
|
| 520 |
+
"eval_completions/min_terminated_length": 725.8,
|
| 521 |
+
"eval_entropy": 0.3078053116798401,
|
| 522 |
+
"eval_frac_reward_zero_std": 0.6,
|
| 523 |
+
"eval_kl": 0.5635438948869705,
|
| 524 |
+
"eval_loss": 0.0008250019163824618,
|
| 525 |
+
"eval_num_tokens": 3760662.0,
|
| 526 |
+
"eval_reward": 0.06899999883025884,
|
| 527 |
+
"eval_reward_std": 0.10040915999561548,
|
| 528 |
+
"eval_rewards/env_goofspiel_reward/mean": 0.06899999883025884,
|
| 529 |
+
"eval_rewards/env_goofspiel_reward/std": 0.11241451688110829,
|
| 530 |
+
"eval_runtime": 3.5242,
|
| 531 |
+
"eval_samples_per_second": 2.838,
|
| 532 |
+
"eval_sampling/importance_sampling_ratio/max": 1.2238447427749635,
|
| 533 |
+
"eval_sampling/importance_sampling_ratio/mean": 0.9734418511390686,
|
| 534 |
+
"eval_sampling/importance_sampling_ratio/min": 0.7944899320602417,
|
| 535 |
+
"eval_sampling/sampling_logp_difference/max": 0.2762513041496277,
|
| 536 |
+
"eval_sampling/sampling_logp_difference/mean": 0.028397564217448233,
|
| 537 |
+
"eval_steps_per_second": 0.851,
|
| 538 |
+
"step": 75
|
| 539 |
}
|
| 540 |
],
|
| 541 |
+
"logging_steps": 5,
|
| 542 |
+
"max_steps": 12000,
|
| 543 |
+
"num_input_tokens_seen": 3760662,
|
| 544 |
+
"num_train_epochs": 3,
|
| 545 |
"save_steps": 500,
|
| 546 |
"stateful_callbacks": {
|
| 547 |
"TrainerControl": {
|
|
|
|
| 556 |
}
|
| 557 |
},
|
| 558 |
"total_flos": 0.0,
|
| 559 |
+
"train_batch_size": 25,
|
| 560 |
"trial_name": null,
|
| 561 |
"trial_params": null
|
| 562 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c53ec641d35398511966f6bbf25ac001ca90c58e99dcc4975f403287921d176
|
| 3 |
+
size 7185
|