Text Generation
PEFT
Safetensors
Transformers
qwen2
grpo
lora
trl
conversational
text-generation-inference
Instructions to use bimabk/environment_test_affine with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bimabk/environment_test_affine with PEFT:
Base model is not found.
- Transformers
How to use bimabk/environment_test_affine with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bimabk/environment_test_affine") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("bimabk/environment_test_affine") model = AutoModelForCausalLM.from_pretrained("bimabk/environment_test_affine", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use bimabk/environment_test_affine with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bimabk/environment_test_affine" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bimabk/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bimabk/environment_test_affine
- SGLang
How to use bimabk/environment_test_affine with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "bimabk/environment_test_affine" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bimabk/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "bimabk/environment_test_affine" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bimabk/environment_test_affine", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use bimabk/environment_test_affine with Docker Model Runner:
docker model run hf.co/bimabk/environment_test_affine
Upload task output 1
Browse files- config.json +8 -20
- generation_config.json +10 -0
- loss.txt +1 -1
- model.safetensors +2 -2
- trainer_state.json +368 -236
- training_args.bin +1 -1
config.json
CHANGED
|
@@ -3,13 +3,13 @@
|
|
| 3 |
"Qwen2ForCausalLM"
|
| 4 |
],
|
| 5 |
"attention_dropout": 0.0,
|
| 6 |
-
"bos_token_id":
|
| 7 |
"dtype": "bfloat16",
|
| 8 |
"eos_token_id": 151645,
|
| 9 |
"hidden_act": "silu",
|
| 10 |
-
"hidden_size":
|
| 11 |
"initializer_range": 0.02,
|
| 12 |
-
"intermediate_size":
|
| 13 |
"layer_types": [
|
| 14 |
"full_attention",
|
| 15 |
"full_attention",
|
|
@@ -34,27 +34,15 @@
|
|
| 34 |
"full_attention",
|
| 35 |
"full_attention",
|
| 36 |
"full_attention",
|
| 37 |
-
"full_attention",
|
| 38 |
-
"full_attention",
|
| 39 |
-
"full_attention",
|
| 40 |
-
"full_attention",
|
| 41 |
-
"full_attention",
|
| 42 |
-
"full_attention",
|
| 43 |
-
"full_attention",
|
| 44 |
-
"full_attention",
|
| 45 |
-
"full_attention",
|
| 46 |
-
"full_attention",
|
| 47 |
-
"full_attention",
|
| 48 |
-
"full_attention",
|
| 49 |
"full_attention"
|
| 50 |
],
|
| 51 |
"max_position_embeddings": 32768,
|
| 52 |
-
"max_window_layers":
|
| 53 |
"model_type": "qwen2",
|
| 54 |
-
"num_attention_heads":
|
| 55 |
-
"num_hidden_layers":
|
| 56 |
"num_key_value_heads": 2,
|
| 57 |
-
"pad_token_id":
|
| 58 |
"rms_norm_eps": 1e-06,
|
| 59 |
"rope_parameters": {
|
| 60 |
"rope_theta": 1000000.0,
|
|
@@ -63,7 +51,7 @@
|
|
| 63 |
"sliding_window": null,
|
| 64 |
"tie_word_embeddings": true,
|
| 65 |
"transformers_version": "5.1.0",
|
| 66 |
-
"use_cache":
|
| 67 |
"use_sliding_window": false,
|
| 68 |
"vocab_size": 151936
|
| 69 |
}
|
|
|
|
| 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",
|
| 10 |
+
"hidden_size": 896,
|
| 11 |
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 4864,
|
| 13 |
"layer_types": [
|
| 14 |
"full_attention",
|
| 15 |
"full_attention",
|
|
|
|
| 34 |
"full_attention",
|
| 35 |
"full_attention",
|
| 36 |
"full_attention",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
"full_attention"
|
| 38 |
],
|
| 39 |
"max_position_embeddings": 32768,
|
| 40 |
+
"max_window_layers": 21,
|
| 41 |
"model_type": "qwen2",
|
| 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 |
+
68,no_eval
|
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:6396161d7682c5b922070eaba3cbfd3497f329b60c83c004a56b1c82f0a44163
|
| 3 |
+
size 988097824
|
trainer_state.json
CHANGED
|
@@ -2,314 +2,446 @@
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
-
"epoch": 0.
|
| 6 |
"eval_steps": 500,
|
| 7 |
-
"global_step":
|
| 8 |
"is_hyper_param_search": false,
|
| 9 |
"is_local_process_zero": true,
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
-
"clip_ratio/high_max": 0.
|
| 14 |
-
"clip_ratio/high_mean": 0.
|
| 15 |
-
"clip_ratio/low_mean": 0.
|
| 16 |
-
"clip_ratio/low_min": 0.
|
| 17 |
-
"clip_ratio/region_mean": 0.
|
| 18 |
"completions/clipped_ratio": 0.0,
|
| 19 |
-
"completions/max_length": 374.
|
| 20 |
-
"completions/max_terminated_length": 374.
|
| 21 |
-
"completions/mean_length":
|
| 22 |
-
"completions/mean_terminated_length":
|
| 23 |
-
"completions/min_length":
|
| 24 |
-
"completions/min_terminated_length":
|
| 25 |
-
"entropy": 0.
|
| 26 |
"epoch": 0.00075007500750075,
|
| 27 |
-
"frac_reward_zero_std": 0.
|
| 28 |
-
"grad_norm": 0.
|
| 29 |
-
"kl": 0.
|
| 30 |
"learning_rate": 1.137216e-06,
|
| 31 |
-
"loss": 0.
|
| 32 |
-
"num_tokens":
|
| 33 |
-
"reward": 0.
|
| 34 |
-
"reward_std": 0.
|
| 35 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 36 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 37 |
-
"sampling/importance_sampling_ratio/max":
|
| 38 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 39 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 40 |
-
"sampling/sampling_logp_difference/max":
|
| 41 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 42 |
"step": 5,
|
| 43 |
-
"step_time":
|
| 44 |
},
|
| 45 |
{
|
| 46 |
-
"clip_ratio/high_max": 0.
|
| 47 |
-
"clip_ratio/high_mean": 0.
|
| 48 |
-
"clip_ratio/low_mean": 0.
|
| 49 |
-
"clip_ratio/low_min": 0.
|
| 50 |
-
"clip_ratio/region_mean": 0.
|
| 51 |
"completions/clipped_ratio": 0.0,
|
| 52 |
-
"completions/max_length": 373.
|
| 53 |
-
"completions/max_terminated_length": 373.
|
| 54 |
-
"completions/mean_length":
|
| 55 |
-
"completions/mean_terminated_length":
|
| 56 |
-
"completions/min_length":
|
| 57 |
-
"completions/min_terminated_length":
|
| 58 |
-
"entropy": 0.
|
| 59 |
"epoch": 0.0015001500150015,
|
| 60 |
-
"frac_reward_zero_std": 0.
|
| 61 |
-
"grad_norm": 0.
|
| 62 |
-
"kl": 0.
|
| 63 |
"learning_rate": 2.5587359999999995e-06,
|
| 64 |
-
"loss":
|
| 65 |
-
"num_tokens":
|
| 66 |
-
"reward": 0.
|
| 67 |
-
"reward_std": 0.
|
| 68 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 69 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 70 |
-
"sampling/importance_sampling_ratio/max": 1.
|
| 71 |
-
"sampling/importance_sampling_ratio/mean":
|
| 72 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 73 |
-
"sampling/sampling_logp_difference/max":
|
| 74 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 75 |
"step": 10,
|
| 76 |
-
"step_time":
|
| 77 |
},
|
| 78 |
{
|
| 79 |
-
"clip_ratio/high_max": 0.
|
| 80 |
-
"clip_ratio/high_mean": 0.
|
| 81 |
-
"clip_ratio/low_mean": 0.
|
| 82 |
-
"clip_ratio/low_min": 0.
|
| 83 |
-
"clip_ratio/region_mean": 0.
|
| 84 |
"completions/clipped_ratio": 0.0,
|
| 85 |
-
"completions/max_length": 373.
|
| 86 |
-
"completions/max_terminated_length": 373.
|
| 87 |
-
"completions/mean_length":
|
| 88 |
-
"completions/mean_terminated_length":
|
| 89 |
-
"completions/min_length":
|
| 90 |
-
"completions/min_terminated_length":
|
| 91 |
-
"entropy": 0.
|
| 92 |
"epoch": 0.0022502250225022503,
|
| 93 |
-
"frac_reward_zero_std": 0.
|
| 94 |
-
"grad_norm": 0.
|
| 95 |
-
"kl": 0.
|
| 96 |
"learning_rate": 3.9802559999999995e-06,
|
| 97 |
-
"loss":
|
| 98 |
-
"num_tokens":
|
| 99 |
-
"reward": 0.
|
| 100 |
-
"reward_std": 0.
|
| 101 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 102 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 103 |
-
"sampling/importance_sampling_ratio/max":
|
| 104 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 105 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 106 |
-
"sampling/sampling_logp_difference/max":
|
| 107 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 108 |
"step": 15,
|
| 109 |
-
"step_time":
|
| 110 |
},
|
| 111 |
{
|
| 112 |
-
"clip_ratio/high_max": 0.
|
| 113 |
-
"clip_ratio/high_mean": 0.
|
| 114 |
-
"clip_ratio/low_mean": 0.
|
| 115 |
-
"clip_ratio/low_min": 0.
|
| 116 |
-
"clip_ratio/region_mean": 0.
|
| 117 |
"completions/clipped_ratio": 0.0,
|
| 118 |
-
"completions/max_length": 373.
|
| 119 |
-
"completions/max_terminated_length": 373.
|
| 120 |
-
"completions/mean_length": 273.
|
| 121 |
-
"completions/mean_terminated_length": 273.
|
| 122 |
-
"completions/min_length":
|
| 123 |
-
"completions/min_terminated_length":
|
| 124 |
-
"entropy": 0.
|
| 125 |
"epoch": 0.003000300030003,
|
| 126 |
-
"frac_reward_zero_std": 0.
|
| 127 |
-
"grad_norm": 0.
|
| 128 |
-
"kl": 0.
|
| 129 |
"learning_rate": 5.401775999999999e-06,
|
| 130 |
-
"loss":
|
| 131 |
-
"num_tokens":
|
| 132 |
-
"reward": 0.
|
| 133 |
-
"reward_std": 0.
|
| 134 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 135 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 136 |
-
"sampling/importance_sampling_ratio/max":
|
| 137 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 138 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 139 |
-
"sampling/sampling_logp_difference/max":
|
| 140 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 141 |
"step": 20,
|
| 142 |
-
"step_time":
|
| 143 |
},
|
| 144 |
{
|
| 145 |
-
"clip_ratio/high_max": 0.
|
| 146 |
-
"clip_ratio/high_mean": 0.
|
| 147 |
-
"clip_ratio/low_mean": 0.
|
| 148 |
-
"clip_ratio/low_min": 0.
|
| 149 |
-
"clip_ratio/region_mean": 0.
|
| 150 |
"completions/clipped_ratio": 0.0,
|
| 151 |
-
"completions/max_length":
|
| 152 |
-
"completions/max_terminated_length":
|
| 153 |
-
"completions/mean_length": 291.
|
| 154 |
-
"completions/mean_terminated_length": 291.
|
| 155 |
"completions/min_length": 212.0,
|
| 156 |
"completions/min_terminated_length": 212.0,
|
| 157 |
-
"entropy": 0.
|
| 158 |
"epoch": 0.0037503750375037503,
|
| 159 |
-
"frac_reward_zero_std": 0.
|
| 160 |
-
"grad_norm": 0.
|
| 161 |
-
"kl": 0.
|
| 162 |
"learning_rate": 6.8232959999999994e-06,
|
| 163 |
-
"loss": -
|
| 164 |
-
"num_tokens":
|
| 165 |
-
"reward": 0.
|
| 166 |
-
"reward_std": 0.
|
| 167 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 168 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 169 |
-
"sampling/importance_sampling_ratio/max":
|
| 170 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 171 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 172 |
-
"sampling/sampling_logp_difference/max":
|
| 173 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 174 |
"step": 25,
|
| 175 |
-
"step_time":
|
| 176 |
},
|
| 177 |
{
|
| 178 |
-
"clip_ratio/high_max": 0.
|
| 179 |
-
"clip_ratio/high_mean": 0.
|
| 180 |
-
"clip_ratio/low_mean": 0.
|
| 181 |
-
"clip_ratio/low_min": 0.
|
| 182 |
-
"clip_ratio/region_mean": 0.
|
| 183 |
"completions/clipped_ratio": 0.0,
|
| 184 |
-
"completions/max_length":
|
| 185 |
-
"completions/max_terminated_length":
|
| 186 |
-
"completions/mean_length":
|
| 187 |
-
"completions/mean_terminated_length":
|
| 188 |
-
"completions/min_length":
|
| 189 |
-
"completions/min_terminated_length":
|
| 190 |
-
"entropy": 0.
|
| 191 |
"epoch": 0.004500450045004501,
|
| 192 |
-
"frac_reward_zero_std": 0.
|
| 193 |
-
"grad_norm": 0.
|
| 194 |
-
"kl":
|
| 195 |
"learning_rate": 8.244816e-06,
|
| 196 |
-
"loss":
|
| 197 |
-
"num_tokens":
|
| 198 |
-
"reward": 0.
|
| 199 |
-
"reward_std": 0.
|
| 200 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 201 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 202 |
-
"sampling/importance_sampling_ratio/max":
|
| 203 |
-
"sampling/importance_sampling_ratio/mean":
|
| 204 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 205 |
-
"sampling/sampling_logp_difference/max":
|
| 206 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 207 |
"step": 30,
|
| 208 |
-
"step_time":
|
| 209 |
},
|
| 210 |
{
|
| 211 |
-
"clip_ratio/high_max": 0.
|
| 212 |
-
"clip_ratio/high_mean": 0.
|
| 213 |
-
"clip_ratio/low_mean": 0.
|
| 214 |
-
"clip_ratio/low_min": 0.
|
| 215 |
-
"clip_ratio/region_mean": 0.
|
| 216 |
"completions/clipped_ratio": 0.0,
|
| 217 |
-
"completions/max_length":
|
| 218 |
-
"completions/max_terminated_length":
|
| 219 |
-
"completions/mean_length": 294.
|
| 220 |
-
"completions/mean_terminated_length": 294.
|
| 221 |
"completions/min_length": 212.0,
|
| 222 |
"completions/min_terminated_length": 212.0,
|
| 223 |
-
"entropy": 0.
|
| 224 |
"epoch": 0.005250525052505251,
|
| 225 |
-
"frac_reward_zero_std": 0.
|
| 226 |
-
"grad_norm": 0.
|
| 227 |
-
"kl": 0.
|
| 228 |
"learning_rate": 9.666336e-06,
|
| 229 |
-
"loss":
|
| 230 |
-
"num_tokens":
|
| 231 |
-
"reward": 0.
|
| 232 |
-
"reward_std": 0.
|
| 233 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 234 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 235 |
-
"sampling/importance_sampling_ratio/max":
|
| 236 |
-
"sampling/importance_sampling_ratio/mean":
|
| 237 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 238 |
-
"sampling/sampling_logp_difference/max":
|
| 239 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 240 |
"step": 35,
|
| 241 |
-
"step_time":
|
| 242 |
},
|
| 243 |
{
|
| 244 |
-
"clip_ratio/high_max": 0.
|
| 245 |
-
"clip_ratio/high_mean": 0.
|
| 246 |
-
"clip_ratio/low_mean": 0.
|
| 247 |
-
"clip_ratio/low_min": 0.
|
| 248 |
-
"clip_ratio/region_mean": 0.
|
| 249 |
"completions/clipped_ratio": 0.0,
|
| 250 |
-
"completions/max_length": 365.
|
| 251 |
-
"completions/max_terminated_length": 365.
|
| 252 |
-
"completions/mean_length": 281.
|
| 253 |
-
"completions/mean_terminated_length": 281.
|
| 254 |
"completions/min_length": 212.0,
|
| 255 |
"completions/min_terminated_length": 212.0,
|
| 256 |
-
"entropy": 0.
|
| 257 |
"epoch": 0.006000600060006,
|
| 258 |
-
"frac_reward_zero_std": 0.
|
| 259 |
-
"grad_norm": 0.
|
| 260 |
-
"kl": 0.
|
| 261 |
"learning_rate": 9.950639260700543e-06,
|
| 262 |
-
"loss": 0.
|
| 263 |
-
"num_tokens":
|
| 264 |
-
"reward": 0.
|
| 265 |
-
"reward_std": 0.
|
| 266 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 267 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 268 |
-
"sampling/importance_sampling_ratio/max":
|
| 269 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 270 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 271 |
-
"sampling/sampling_logp_difference/max":
|
| 272 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 273 |
"step": 40,
|
| 274 |
-
"step_time":
|
| 275 |
},
|
| 276 |
{
|
| 277 |
-
"clip_ratio/high_max": 0.
|
| 278 |
-
"clip_ratio/high_mean": 0.
|
| 279 |
-
"clip_ratio/low_mean": 0.
|
| 280 |
"clip_ratio/low_min": 0.0,
|
| 281 |
-
"clip_ratio/region_mean": 0.
|
| 282 |
"completions/clipped_ratio": 0.0,
|
| 283 |
"completions/max_length": 374.0,
|
| 284 |
"completions/max_terminated_length": 374.0,
|
| 285 |
-
"completions/mean_length": 303.
|
| 286 |
-
"completions/mean_terminated_length": 303.
|
| 287 |
"completions/min_length": 212.0,
|
| 288 |
"completions/min_terminated_length": 212.0,
|
| 289 |
-
"entropy": 0.
|
| 290 |
"epoch": 0.0067506750675067504,
|
| 291 |
-
"frac_reward_zero_std": 0.
|
| 292 |
-
"grad_norm": 0.
|
| 293 |
-
"kl":
|
| 294 |
"learning_rate": 9.950636257297004e-06,
|
| 295 |
-
"loss":
|
| 296 |
-
"num_tokens":
|
| 297 |
-
"reward": 0.
|
| 298 |
-
"reward_std": 0.
|
| 299 |
-
"rewards/env_goofspiel_reward/mean": 0.
|
| 300 |
-
"rewards/env_goofspiel_reward/std": 0.
|
| 301 |
-
"sampling/importance_sampling_ratio/max":
|
| 302 |
-
"sampling/importance_sampling_ratio/mean": 0.
|
| 303 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 304 |
-
"sampling/sampling_logp_difference/max":
|
| 305 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 306 |
"step": 45,
|
| 307 |
-
"step_time":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 308 |
}
|
| 309 |
],
|
| 310 |
"logging_steps": 5,
|
| 311 |
"max_steps": 19998,
|
| 312 |
-
"num_input_tokens_seen":
|
| 313 |
"num_train_epochs": 3,
|
| 314 |
"save_steps": 500,
|
| 315 |
"stateful_callbacks": {
|
|
@@ -325,7 +457,7 @@
|
|
| 325 |
}
|
| 326 |
},
|
| 327 |
"total_flos": 0.0,
|
| 328 |
-
"train_batch_size":
|
| 329 |
"trial_name": null,
|
| 330 |
"trial_params": null
|
| 331 |
}
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.0102010201020102,
|
| 6 |
"eval_steps": 500,
|
| 7 |
+
"global_step": 68,
|
| 8 |
"is_hyper_param_search": false,
|
| 9 |
"is_local_process_zero": true,
|
| 10 |
"is_world_process_zero": true,
|
| 11 |
"log_history": [
|
| 12 |
{
|
| 13 |
+
"clip_ratio/high_max": 0.0,
|
| 14 |
+
"clip_ratio/high_mean": 0.0,
|
| 15 |
+
"clip_ratio/low_mean": 0.0,
|
| 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": 291.50001220703126,
|
| 22 |
+
"completions/mean_terminated_length": 291.50001220703126,
|
| 23 |
+
"completions/min_length": 174.8,
|
| 24 |
+
"completions/min_terminated_length": 174.8,
|
| 25 |
+
"entropy": 0.737431001663208,
|
| 26 |
"epoch": 0.00075007500750075,
|
| 27 |
+
"frac_reward_zero_std": 0.6533333778381347,
|
| 28 |
+
"grad_norm": 0.369140625,
|
| 29 |
+
"kl": 0.00885026976466179,
|
| 30 |
"learning_rate": 1.137216e-06,
|
| 31 |
+
"loss": 0.00034544954542070627,
|
| 32 |
+
"num_tokens": 126703.0,
|
| 33 |
+
"reward": 0.0383333370089531,
|
| 34 |
+
"reward_std": 0.05835988484323025,
|
| 35 |
+
"rewards/env_goofspiel_reward/mean": 0.03833333514630795,
|
| 36 |
+
"rewards/env_goofspiel_reward/std": 0.15159520953893663,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.7607571125030517,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 0.9916059970855713,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.5116463124752044,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 0.6887424349784851,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.06558751240372658,
|
| 42 |
"step": 5,
|
| 43 |
+
"step_time": 3.541577606199735
|
| 44 |
},
|
| 45 |
{
|
| 46 |
+
"clip_ratio/high_max": 0.0,
|
| 47 |
+
"clip_ratio/high_mean": 0.0,
|
| 48 |
+
"clip_ratio/low_mean": 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.6,
|
| 53 |
+
"completions/max_terminated_length": 373.6,
|
| 54 |
+
"completions/mean_length": 292.0866760253906,
|
| 55 |
+
"completions/mean_terminated_length": 292.0866760253906,
|
| 56 |
+
"completions/min_length": 179.8,
|
| 57 |
+
"completions/min_terminated_length": 179.8,
|
| 58 |
+
"entropy": 0.7154561956723531,
|
| 59 |
"epoch": 0.0015001500150015,
|
| 60 |
+
"frac_reward_zero_std": 0.6666666865348816,
|
| 61 |
+
"grad_norm": 0.462890625,
|
| 62 |
+
"kl": 0.009678552253171801,
|
| 63 |
"learning_rate": 2.5587359999999995e-06,
|
| 64 |
+
"loss": -3.925009514205158e-05,
|
| 65 |
+
"num_tokens": 254525.0,
|
| 66 |
+
"reward": 0.03886667159385979,
|
| 67 |
+
"reward_std": 0.05817132312804461,
|
| 68 |
+
"rewards/env_goofspiel_reward/mean": 0.03886666861362755,
|
| 69 |
+
"rewards/env_goofspiel_reward/std": 0.14201362472958862,
|
| 70 |
+
"sampling/importance_sampling_ratio/max": 1.9776098012924195,
|
| 71 |
+
"sampling/importance_sampling_ratio/mean": 1.0280600190162659,
|
| 72 |
+
"sampling/importance_sampling_ratio/min": 0.4622887670993805,
|
| 73 |
+
"sampling/sampling_logp_difference/max": 0.8463176250457763,
|
| 74 |
+
"sampling/sampling_logp_difference/mean": 0.06613281443715095,
|
| 75 |
"step": 10,
|
| 76 |
+
"step_time": 3.1668822380001074
|
| 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": 373.6,
|
| 86 |
+
"completions/max_terminated_length": 373.6,
|
| 87 |
+
"completions/mean_length": 288.72001953125,
|
| 88 |
+
"completions/mean_terminated_length": 288.72001953125,
|
| 89 |
+
"completions/min_length": 187.2,
|
| 90 |
+
"completions/min_terminated_length": 187.2,
|
| 91 |
+
"entropy": 0.6402347763379415,
|
| 92 |
"epoch": 0.0022502250225022503,
|
| 93 |
+
"frac_reward_zero_std": 0.8000000476837158,
|
| 94 |
+
"grad_norm": 0.412109375,
|
| 95 |
+
"kl": 0.00951577623685201,
|
| 96 |
"learning_rate": 3.9802559999999995e-06,
|
| 97 |
+
"loss": 0.00047838701866567137,
|
| 98 |
+
"num_tokens": 380635.0,
|
| 99 |
+
"reward": 0.07146667279303073,
|
| 100 |
+
"reward_std": 0.09088679552078247,
|
| 101 |
+
"rewards/env_goofspiel_reward/mean": 0.07146666683256626,
|
| 102 |
+
"rewards/env_goofspiel_reward/std": 0.22424434274435043,
|
| 103 |
+
"sampling/importance_sampling_ratio/max": 1.5242333889007569,
|
| 104 |
+
"sampling/importance_sampling_ratio/mean": 0.9860278725624084,
|
| 105 |
+
"sampling/importance_sampling_ratio/min": 0.5668014168739319,
|
| 106 |
+
"sampling/sampling_logp_difference/max": 0.5752804994583129,
|
| 107 |
+
"sampling/sampling_logp_difference/mean": 0.05473804771900177,
|
| 108 |
"step": 15,
|
| 109 |
+
"step_time": 3.1726541418000123
|
| 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": 373.2,
|
| 119 |
+
"completions/max_terminated_length": 373.2,
|
| 120 |
+
"completions/mean_length": 273.82001037597655,
|
| 121 |
+
"completions/mean_terminated_length": 273.82001037597655,
|
| 122 |
+
"completions/min_length": 200.2,
|
| 123 |
+
"completions/min_terminated_length": 200.2,
|
| 124 |
+
"entropy": 0.5869409064451854,
|
| 125 |
"epoch": 0.003000300030003,
|
| 126 |
+
"frac_reward_zero_std": 0.7600000500679016,
|
| 127 |
+
"grad_norm": 0.158203125,
|
| 128 |
+
"kl": 0.029618356159577766,
|
| 129 |
"learning_rate": 5.401775999999999e-06,
|
| 130 |
+
"loss": 0.00020813762675970794,
|
| 131 |
+
"num_tokens": 501743.0,
|
| 132 |
+
"reward": 0.06360000669956208,
|
| 133 |
+
"reward_std": 0.07976165302097797,
|
| 134 |
+
"rewards/env_goofspiel_reward/mean": 0.06360000558197498,
|
| 135 |
+
"rewards/env_goofspiel_reward/std": 0.20161283165216445,
|
| 136 |
+
"sampling/importance_sampling_ratio/max": 1.7165520668029786,
|
| 137 |
+
"sampling/importance_sampling_ratio/mean": 0.9985299944877625,
|
| 138 |
+
"sampling/importance_sampling_ratio/min": 0.6464852690696716,
|
| 139 |
+
"sampling/sampling_logp_difference/max": 0.6010382175445557,
|
| 140 |
+
"sampling/sampling_logp_difference/mean": 0.05117494091391563,
|
| 141 |
"step": 20,
|
| 142 |
+
"step_time": 3.1184157538001274
|
| 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": 291.16668090820315,
|
| 154 |
+
"completions/mean_terminated_length": 291.16668090820315,
|
| 155 |
"completions/min_length": 212.0,
|
| 156 |
"completions/min_terminated_length": 212.0,
|
| 157 |
+
"entropy": 0.5825250327587128,
|
| 158 |
"epoch": 0.0037503750375037503,
|
| 159 |
+
"frac_reward_zero_std": 0.8133333921432495,
|
| 160 |
+
"grad_norm": 0.30859375,
|
| 161 |
+
"kl": 0.03789825042088826,
|
| 162 |
"learning_rate": 6.8232959999999994e-06,
|
| 163 |
+
"loss": -5.795806646347046e-05,
|
| 164 |
+
"num_tokens": 629207.0,
|
| 165 |
+
"reward": 0.05593333579599857,
|
| 166 |
+
"reward_std": 0.0791016798466444,
|
| 167 |
+
"rewards/env_goofspiel_reward/mean": 0.055933335050940516,
|
| 168 |
+
"rewards/env_goofspiel_reward/std": 0.16461323350667953,
|
| 169 |
+
"sampling/importance_sampling_ratio/max": 1.6597614526748656,
|
| 170 |
+
"sampling/importance_sampling_ratio/mean": 0.9899526715278626,
|
| 171 |
+
"sampling/importance_sampling_ratio/min": 0.5461978197097779,
|
| 172 |
+
"sampling/sampling_logp_difference/max": 0.5474630713462829,
|
| 173 |
+
"sampling/sampling_logp_difference/mean": 0.056329603493213656,
|
| 174 |
"step": 25,
|
| 175 |
+
"step_time": 3.1455567411999255
|
| 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": 373.8,
|
| 185 |
+
"completions/max_terminated_length": 373.8,
|
| 186 |
+
"completions/mean_length": 288.2733459472656,
|
| 187 |
+
"completions/mean_terminated_length": 288.2733459472656,
|
| 188 |
+
"completions/min_length": 205.4,
|
| 189 |
+
"completions/min_terminated_length": 205.4,
|
| 190 |
+
"entropy": 0.6367802540461223,
|
| 191 |
"epoch": 0.004500450045004501,
|
| 192 |
+
"frac_reward_zero_std": 0.8133333921432495,
|
| 193 |
+
"grad_norm": 0.3203125,
|
| 194 |
+
"kl": 0.15099084513882796,
|
| 195 |
"learning_rate": 8.244816e-06,
|
| 196 |
+
"loss": 2.9896479099988936e-05,
|
| 197 |
+
"num_tokens": 755141.0,
|
| 198 |
+
"reward": 0.04773333668708801,
|
| 199 |
+
"reward_std": 0.056945668533444405,
|
| 200 |
+
"rewards/env_goofspiel_reward/mean": 0.04773333407938481,
|
| 201 |
+
"rewards/env_goofspiel_reward/std": 0.1535952940583229,
|
| 202 |
+
"sampling/importance_sampling_ratio/max": 1.4472879409790038,
|
| 203 |
+
"sampling/importance_sampling_ratio/mean": 1.000359261035919,
|
| 204 |
+
"sampling/importance_sampling_ratio/min": 0.6299581527709961,
|
| 205 |
+
"sampling/sampling_logp_difference/max": 0.49155421257019044,
|
| 206 |
+
"sampling/sampling_logp_difference/mean": 0.04638729840517044,
|
| 207 |
"step": 30,
|
| 208 |
+
"step_time": 3.104708982399825
|
| 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": 373.4,
|
| 218 |
+
"completions/max_terminated_length": 373.4,
|
| 219 |
+
"completions/mean_length": 294.12001953125,
|
| 220 |
+
"completions/mean_terminated_length": 294.12001953125,
|
| 221 |
"completions/min_length": 212.0,
|
| 222 |
"completions/min_terminated_length": 212.0,
|
| 223 |
+
"entropy": 0.6307838877042135,
|
| 224 |
"epoch": 0.005250525052505251,
|
| 225 |
+
"frac_reward_zero_std": 0.8133333921432495,
|
| 226 |
+
"grad_norm": 0.2041015625,
|
| 227 |
+
"kl": 0.21180881708860397,
|
| 228 |
"learning_rate": 9.666336e-06,
|
| 229 |
+
"loss": 0.0003116762964054942,
|
| 230 |
+
"num_tokens": 881937.0,
|
| 231 |
+
"reward": 0.04366667197318748,
|
| 232 |
+
"reward_std": 0.0626968042459339,
|
| 233 |
+
"rewards/env_goofspiel_reward/mean": 0.04366666899295524,
|
| 234 |
+
"rewards/env_goofspiel_reward/std": 0.14476882207673042,
|
| 235 |
+
"sampling/importance_sampling_ratio/max": 1.540164875984192,
|
| 236 |
+
"sampling/importance_sampling_ratio/mean": 1.007632350921631,
|
| 237 |
+
"sampling/importance_sampling_ratio/min": 0.6116935849189759,
|
| 238 |
+
"sampling/sampling_logp_difference/max": 0.5826021313667298,
|
| 239 |
+
"sampling/sampling_logp_difference/mean": 0.054141230136156085,
|
| 240 |
"step": 35,
|
| 241 |
+
"step_time": 3.152498085000025
|
| 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": 365.8,
|
| 251 |
+
"completions/max_terminated_length": 365.8,
|
| 252 |
+
"completions/mean_length": 281.62001953125,
|
| 253 |
+
"completions/mean_terminated_length": 281.62001953125,
|
| 254 |
"completions/min_length": 212.0,
|
| 255 |
"completions/min_terminated_length": 212.0,
|
| 256 |
+
"entropy": 0.553737320502599,
|
| 257 |
"epoch": 0.006000600060006,
|
| 258 |
+
"frac_reward_zero_std": 0.8266667246818542,
|
| 259 |
+
"grad_norm": 0.0888671875,
|
| 260 |
+
"kl": 0.5656270523866017,
|
| 261 |
"learning_rate": 9.950639260700543e-06,
|
| 262 |
+
"loss": 0.00017667778301984073,
|
| 263 |
+
"num_tokens": 1005294.0,
|
| 264 |
+
"reward": 0.056000004336237905,
|
| 265 |
+
"reward_std": 0.07919596247375012,
|
| 266 |
+
"rewards/env_goofspiel_reward/mean": 0.05600000284612179,
|
| 267 |
+
"rewards/env_goofspiel_reward/std": 0.18038542717695236,
|
| 268 |
+
"sampling/importance_sampling_ratio/max": 1.5142346620559692,
|
| 269 |
+
"sampling/importance_sampling_ratio/mean": 0.9889694690704346,
|
| 270 |
+
"sampling/importance_sampling_ratio/min": 0.6695701956748963,
|
| 271 |
+
"sampling/sampling_logp_difference/max": 0.45929052233695983,
|
| 272 |
+
"sampling/sampling_logp_difference/mean": 0.05039779171347618,
|
| 273 |
"step": 40,
|
| 274 |
+
"step_time": 3.061584199799836
|
| 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": 374.0,
|
| 284 |
"completions/max_terminated_length": 374.0,
|
| 285 |
+
"completions/mean_length": 303.58001708984375,
|
| 286 |
+
"completions/mean_terminated_length": 303.58001708984375,
|
| 287 |
"completions/min_length": 212.0,
|
| 288 |
"completions/min_terminated_length": 212.0,
|
| 289 |
+
"entropy": 0.48466593225797017,
|
| 290 |
"epoch": 0.0067506750675067504,
|
| 291 |
+
"frac_reward_zero_std": 0.8266667246818542,
|
| 292 |
+
"grad_norm": 0.1748046875,
|
| 293 |
+
"kl": 1.0889011422793071,
|
| 294 |
"learning_rate": 9.950636257297004e-06,
|
| 295 |
+
"loss": 0.00040990984998643396,
|
| 296 |
+
"num_tokens": 1135969.0,
|
| 297 |
+
"reward": 0.04786667115986347,
|
| 298 |
+
"reward_std": 0.06807081587612629,
|
| 299 |
+
"rewards/env_goofspiel_reward/mean": 0.047866668179631235,
|
| 300 |
+
"rewards/env_goofspiel_reward/std": 0.1721431568264961,
|
| 301 |
+
"sampling/importance_sampling_ratio/max": 1.4374094486236573,
|
| 302 |
+
"sampling/importance_sampling_ratio/mean": 0.9694242954254151,
|
| 303 |
+
"sampling/importance_sampling_ratio/min": 0.6029698491096497,
|
| 304 |
+
"sampling/sampling_logp_difference/max": 0.5160395622253418,
|
| 305 |
+
"sampling/sampling_logp_difference/mean": 0.04300674088299274,
|
| 306 |
"step": 45,
|
| 307 |
+
"step_time": 3.19344236120005
|
| 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": 375.6,
|
| 317 |
+
"completions/max_terminated_length": 375.6,
|
| 318 |
+
"completions/mean_length": 296.2133483886719,
|
| 319 |
+
"completions/mean_terminated_length": 296.2133483886719,
|
| 320 |
+
"completions/min_length": 212.0,
|
| 321 |
+
"completions/min_terminated_length": 212.0,
|
| 322 |
+
"entropy": 0.3623567740122477,
|
| 323 |
+
"epoch": 0.007500750075007501,
|
| 324 |
+
"frac_reward_zero_std": 0.8800000429153443,
|
| 325 |
+
"grad_norm": 0.134765625,
|
| 326 |
+
"kl": 0.9536839803059896,
|
| 327 |
+
"learning_rate": 9.950630943585028e-06,
|
| 328 |
+
"loss": 0.00046116397716104983,
|
| 329 |
+
"num_tokens": 1262891.0,
|
| 330 |
+
"reward": 0.040000003576278684,
|
| 331 |
+
"reward_std": 0.05656854659318924,
|
| 332 |
+
"rewards/env_goofspiel_reward/mean": 0.04000000208616257,
|
| 333 |
+
"rewards/env_goofspiel_reward/std": 0.13237088024616242,
|
| 334 |
+
"sampling/importance_sampling_ratio/max": 1.4614337921142577,
|
| 335 |
+
"sampling/importance_sampling_ratio/mean": 0.9917921781539917,
|
| 336 |
+
"sampling/importance_sampling_ratio/min": 0.7945461988449096,
|
| 337 |
+
"sampling/sampling_logp_difference/max": 0.34459147453308103,
|
| 338 |
+
"sampling/sampling_logp_difference/mean": 0.023883017525076867,
|
| 339 |
+
"step": 50,
|
| 340 |
+
"step_time": 3.080125956599841
|
| 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": 373.8,
|
| 350 |
+
"completions/max_terminated_length": 373.8,
|
| 351 |
+
"completions/mean_length": 297.3133483886719,
|
| 352 |
+
"completions/mean_terminated_length": 297.3133483886719,
|
| 353 |
+
"completions/min_length": 212.0,
|
| 354 |
+
"completions/min_terminated_length": 212.0,
|
| 355 |
+
"entropy": 0.412084698677063,
|
| 356 |
+
"epoch": 0.00825082508250825,
|
| 357 |
+
"frac_reward_zero_std": 0.840000057220459,
|
| 358 |
+
"grad_norm": 0.11279296875,
|
| 359 |
+
"kl": 0.8989204486211141,
|
| 360 |
+
"learning_rate": 9.950623319567901e-06,
|
| 361 |
+
"loss": 0.00017252418911084533,
|
| 362 |
+
"num_tokens": 1391274.0,
|
| 363 |
+
"reward": 0.059933338314294815,
|
| 364 |
+
"reward_std": 0.07363338991999627,
|
| 365 |
+
"rewards/env_goofspiel_reward/mean": 0.059933335334062574,
|
| 366 |
+
"rewards/env_goofspiel_reward/std": 0.19352754354476928,
|
| 367 |
+
"sampling/importance_sampling_ratio/max": 1.510833191871643,
|
| 368 |
+
"sampling/importance_sampling_ratio/mean": 1.0025275230407715,
|
| 369 |
+
"sampling/importance_sampling_ratio/min": 0.7753824949264526,
|
| 370 |
+
"sampling/sampling_logp_difference/max": 0.37447161674499513,
|
| 371 |
+
"sampling/sampling_logp_difference/mean": 0.025511124357581138,
|
| 372 |
+
"step": 55,
|
| 373 |
+
"step_time": 3.1612697836000736
|
| 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": 374.0,
|
| 383 |
+
"completions/max_terminated_length": 374.0,
|
| 384 |
+
"completions/mean_length": 293.233349609375,
|
| 385 |
+
"completions/mean_terminated_length": 293.233349609375,
|
| 386 |
+
"completions/min_length": 212.0,
|
| 387 |
+
"completions/min_terminated_length": 212.0,
|
| 388 |
+
"entropy": 0.3592885712782542,
|
| 389 |
+
"epoch": 0.009000900090009001,
|
| 390 |
+
"frac_reward_zero_std": 0.8533333778381348,
|
| 391 |
+
"grad_norm": 0.0164794921875,
|
| 392 |
+
"kl": 0.9290923396746318,
|
| 393 |
+
"learning_rate": 9.950613385250344e-06,
|
| 394 |
+
"loss": 0.00017089147586375476,
|
| 395 |
+
"num_tokens": 1517875.0,
|
| 396 |
+
"reward": 0.06400000602006913,
|
| 397 |
+
"reward_std": 0.07919596470892429,
|
| 398 |
+
"rewards/env_goofspiel_reward/mean": 0.06400000229477883,
|
| 399 |
+
"rewards/env_goofspiel_reward/std": 0.192934051156044,
|
| 400 |
+
"sampling/importance_sampling_ratio/max": 1.3080760478973388,
|
| 401 |
+
"sampling/importance_sampling_ratio/mean": 1.00157231092453,
|
| 402 |
+
"sampling/importance_sampling_ratio/min": 0.809451448917389,
|
| 403 |
+
"sampling/sampling_logp_difference/max": 0.3210816144943237,
|
| 404 |
+
"sampling/sampling_logp_difference/mean": 0.021189583651721477,
|
| 405 |
+
"step": 60,
|
| 406 |
+
"step_time": 3.1453409107998596
|
| 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": 374.0,
|
| 416 |
+
"completions/max_terminated_length": 374.0,
|
| 417 |
+
"completions/mean_length": 280.706689453125,
|
| 418 |
+
"completions/mean_terminated_length": 280.706689453125,
|
| 419 |
+
"completions/min_length": 212.0,
|
| 420 |
+
"completions/min_terminated_length": 212.0,
|
| 421 |
+
"entropy": 0.46913262009620665,
|
| 422 |
+
"epoch": 0.00975097509750975,
|
| 423 |
+
"frac_reward_zero_std": 0.840000057220459,
|
| 424 |
+
"grad_norm": 0.04541015625,
|
| 425 |
+
"kl": 1.9159570078055064,
|
| 426 |
+
"learning_rate": 9.95060114063851e-06,
|
| 427 |
+
"loss": 0.00043630152940750123,
|
| 428 |
+
"num_tokens": 1640903.0,
|
| 429 |
+
"reward": 0.07593334019184113,
|
| 430 |
+
"reward_std": 0.07363339141011238,
|
| 431 |
+
"rewards/env_goofspiel_reward/mean": 0.07593333572149277,
|
| 432 |
+
"rewards/env_goofspiel_reward/std": 0.22238647043704987,
|
| 433 |
+
"sampling/importance_sampling_ratio/max": 1.42401442527771,
|
| 434 |
+
"sampling/importance_sampling_ratio/mean": 1.001141333580017,
|
| 435 |
+
"sampling/importance_sampling_ratio/min": 0.7154132127761841,
|
| 436 |
+
"sampling/sampling_logp_difference/max": 0.3389713287353516,
|
| 437 |
+
"sampling/sampling_logp_difference/mean": 0.026769372820854186,
|
| 438 |
+
"step": 65,
|
| 439 |
+
"step_time": 3.0763218426000094
|
| 440 |
}
|
| 441 |
],
|
| 442 |
"logging_steps": 5,
|
| 443 |
"max_steps": 19998,
|
| 444 |
+
"num_input_tokens_seen": 1713916,
|
| 445 |
"num_train_epochs": 3,
|
| 446 |
"save_steps": 500,
|
| 447 |
"stateful_callbacks": {
|
|
|
|
| 457 |
}
|
| 458 |
},
|
| 459 |
"total_flos": 0.0,
|
| 460 |
+
"train_batch_size": 10,
|
| 461 |
"trial_name": null,
|
| 462 |
"trial_params": null
|
| 463 |
}
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 7185
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3300a89e75ebdeb9256a0a6e1d02dfcc2078fc90cd06fa1740dbf57e59261452
|
| 3 |
size 7185
|