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- adapter_config.json +4 -4
- adapter_model.safetensors +1 -1
- loss.txt +1 -1
- trainer_state.json +24 -288
- training_args.bin +1 -1
adapter_config.json
CHANGED
|
@@ -30,12 +30,12 @@
|
|
| 30 |
"revision": null,
|
| 31 |
"target_modules": [
|
| 32 |
"gate_proj",
|
| 33 |
-
"v_proj",
|
| 34 |
-
"up_proj",
|
| 35 |
"k_proj",
|
| 36 |
-
"
|
|
|
|
|
|
|
| 37 |
"down_proj",
|
| 38 |
-
"
|
| 39 |
],
|
| 40 |
"target_parameters": null,
|
| 41 |
"task_type": "CAUSAL_LM",
|
|
|
|
| 30 |
"revision": null,
|
| 31 |
"target_modules": [
|
| 32 |
"gate_proj",
|
|
|
|
|
|
|
| 33 |
"k_proj",
|
| 34 |
+
"up_proj",
|
| 35 |
+
"v_proj",
|
| 36 |
+
"o_proj",
|
| 37 |
"down_proj",
|
| 38 |
+
"q_proj"
|
| 39 |
],
|
| 40 |
"target_parameters": null,
|
| 41 |
"task_type": "CAUSAL_LM",
|
adapter_model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 194563400
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9f96b3def23987d813c156a82b958258856c9438ce56ed3b44c5e48ce68b916
|
| 3 |
size 194563400
|
loss.txt
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
|
|
|
|
| 1 |
+
1,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,300 +16,36 @@
|
|
| 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":
|
| 26 |
"epoch": 4e-05,
|
| 27 |
"frac_reward_zero_std": 0.0,
|
| 28 |
-
"grad_norm": 0.
|
| 29 |
"kl": 0.0,
|
| 30 |
"learning_rate": 0.0,
|
| 31 |
-
"loss": -0.
|
| 32 |
-
"num_tokens":
|
| 33 |
-
"reward": -0.
|
| 34 |
-
"reward_std": 0.
|
| 35 |
-
"rewards/rollout_reward_func/mean": -0.
|
| 36 |
-
"rewards/rollout_reward_func/std": 0.
|
| 37 |
-
"sampling/importance_sampling_ratio/max": 1.
|
| 38 |
-
"sampling/importance_sampling_ratio/mean": 1.
|
| 39 |
-
"sampling/importance_sampling_ratio/min": 0.
|
| 40 |
-
"sampling/sampling_logp_difference/max": 0.
|
| 41 |
-
"sampling/sampling_logp_difference/mean": 0.
|
| 42 |
"step": 1,
|
| 43 |
-
"step_time":
|
| 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": 1054.0,
|
| 53 |
-
"completions/max_terminated_length": 1054.0,
|
| 54 |
-
"completions/mean_length": 954.1875,
|
| 55 |
-
"completions/mean_terminated_length": 954.1875,
|
| 56 |
-
"completions/min_length": 691.0,
|
| 57 |
-
"completions/min_terminated_length": 691.0,
|
| 58 |
-
"entropy": 0.5630898363888264,
|
| 59 |
-
"epoch": 8e-05,
|
| 60 |
-
"frac_reward_zero_std": 0.0,
|
| 61 |
-
"grad_norm": 0.8123396039009094,
|
| 62 |
-
"kl": 0.0,
|
| 63 |
-
"learning_rate": 2.8571428571428575e-07,
|
| 64 |
-
"loss": -0.0021,
|
| 65 |
-
"num_tokens": 261450.0,
|
| 66 |
-
"reward": -0.4951375424861908,
|
| 67 |
-
"reward_std": 0.18179327249526978,
|
| 68 |
-
"rewards/rollout_reward_func/mean": -0.4951375424861908,
|
| 69 |
-
"rewards/rollout_reward_func/std": 0.18824981153011322,
|
| 70 |
-
"sampling/importance_sampling_ratio/max": 1.2119427919387817,
|
| 71 |
-
"sampling/importance_sampling_ratio/mean": 1.002686858177185,
|
| 72 |
-
"sampling/importance_sampling_ratio/min": 0.8387882113456726,
|
| 73 |
-
"sampling/sampling_logp_difference/max": 0.19222474098205566,
|
| 74 |
-
"sampling/sampling_logp_difference/mean": 0.01698336750268936,
|
| 75 |
-
"step": 2,
|
| 76 |
-
"step_time": 18.354596549000235
|
| 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": 1039.0,
|
| 86 |
-
"completions/max_terminated_length": 1039.0,
|
| 87 |
-
"completions/mean_length": 948.046875,
|
| 88 |
-
"completions/mean_terminated_length": 948.046875,
|
| 89 |
-
"completions/min_length": 711.0,
|
| 90 |
-
"completions/min_terminated_length": 711.0,
|
| 91 |
-
"entropy": 0.567595299333334,
|
| 92 |
-
"epoch": 0.00012,
|
| 93 |
-
"frac_reward_zero_std": 0.0,
|
| 94 |
-
"grad_norm": 0.7247381210327148,
|
| 95 |
-
"kl": 0.0005365689157770248,
|
| 96 |
-
"learning_rate": 5.714285714285715e-07,
|
| 97 |
-
"loss": 0.0017,
|
| 98 |
-
"num_tokens": 395514.0,
|
| 99 |
-
"reward": -0.5213372707366943,
|
| 100 |
-
"reward_std": 0.18358027935028076,
|
| 101 |
-
"rewards/rollout_reward_func/mean": -0.5213372707366943,
|
| 102 |
-
"rewards/rollout_reward_func/std": 0.1988830268383026,
|
| 103 |
-
"sampling/importance_sampling_ratio/max": 1.2515581846237183,
|
| 104 |
-
"sampling/importance_sampling_ratio/mean": 1.0002529621124268,
|
| 105 |
-
"sampling/importance_sampling_ratio/min": 0.8503696918487549,
|
| 106 |
-
"sampling/sampling_logp_difference/max": 0.22438931465148926,
|
| 107 |
-
"sampling/sampling_logp_difference/mean": 0.017911788076162338,
|
| 108 |
-
"step": 3,
|
| 109 |
-
"step_time": 21.38302714500037
|
| 110 |
-
},
|
| 111 |
-
{
|
| 112 |
-
"clip_ratio/high_max": 0.0062500000931322575,
|
| 113 |
-
"clip_ratio/high_mean": 0.0015625000232830644,
|
| 114 |
-
"clip_ratio/low_mean": 0.0015625000232830644,
|
| 115 |
-
"clip_ratio/low_min": 0.0,
|
| 116 |
-
"clip_ratio/region_mean": 0.0031250000465661287,
|
| 117 |
-
"completions/clipped_ratio": 0.0,
|
| 118 |
-
"completions/max_length": 1031.0,
|
| 119 |
-
"completions/max_terminated_length": 1031.0,
|
| 120 |
-
"completions/mean_length": 936.15625,
|
| 121 |
-
"completions/mean_terminated_length": 936.15625,
|
| 122 |
-
"completions/min_length": 653.0,
|
| 123 |
-
"completions/min_terminated_length": 653.0,
|
| 124 |
-
"entropy": 0.5737008973956108,
|
| 125 |
-
"epoch": 0.00016,
|
| 126 |
-
"frac_reward_zero_std": 0.0,
|
| 127 |
-
"grad_norm": 0.7101178765296936,
|
| 128 |
-
"kl": 0.0005989186938677449,
|
| 129 |
-
"learning_rate": 8.571428571428572e-07,
|
| 130 |
-
"loss": -0.0103,
|
| 131 |
-
"num_tokens": 532318.0,
|
| 132 |
-
"reward": -0.4770505428314209,
|
| 133 |
-
"reward_std": 0.20475129783153534,
|
| 134 |
-
"rewards/rollout_reward_func/mean": -0.4770505130290985,
|
| 135 |
-
"rewards/rollout_reward_func/std": 0.21575571596622467,
|
| 136 |
-
"sampling/importance_sampling_ratio/max": 1.1857075691223145,
|
| 137 |
-
"sampling/importance_sampling_ratio/mean": 1.0007572174072266,
|
| 138 |
-
"sampling/importance_sampling_ratio/min": 0.7442525625228882,
|
| 139 |
-
"sampling/sampling_logp_difference/max": 0.29537487030029297,
|
| 140 |
-
"sampling/sampling_logp_difference/mean": 0.018634025007486343,
|
| 141 |
-
"step": 4,
|
| 142 |
-
"step_time": 21.295585246000428
|
| 143 |
-
},
|
| 144 |
-
{
|
| 145 |
-
"clip_ratio/high_max": 0.0052083334885537624,
|
| 146 |
-
"clip_ratio/high_mean": 0.0013020833721384406,
|
| 147 |
-
"clip_ratio/low_mean": 0.0,
|
| 148 |
-
"clip_ratio/low_min": 0.0,
|
| 149 |
-
"clip_ratio/region_mean": 0.0013020833721384406,
|
| 150 |
-
"completions/clipped_ratio": 0.0,
|
| 151 |
-
"completions/max_length": 1354.0,
|
| 152 |
-
"completions/max_terminated_length": 1354.0,
|
| 153 |
-
"completions/mean_length": 1222.15625,
|
| 154 |
-
"completions/mean_terminated_length": 1222.15625,
|
| 155 |
-
"completions/min_length": 868.0,
|
| 156 |
-
"completions/min_terminated_length": 868.0,
|
| 157 |
-
"entropy": 0.5727464407682419,
|
| 158 |
-
"epoch": 0.0002,
|
| 159 |
-
"frac_reward_zero_std": 0.0,
|
| 160 |
-
"grad_norm": 0.7757085561752319,
|
| 161 |
-
"kl": 0.0007553649911642424,
|
| 162 |
-
"learning_rate": 1.142857142857143e-06,
|
| 163 |
-
"loss": -0.0049,
|
| 164 |
-
"num_tokens": 685325.0,
|
| 165 |
-
"reward": -0.4957820177078247,
|
| 166 |
-
"reward_std": 0.15593528747558594,
|
| 167 |
-
"rewards/rollout_reward_func/mean": -0.4957820177078247,
|
| 168 |
-
"rewards/rollout_reward_func/std": 0.15906599164009094,
|
| 169 |
-
"sampling/importance_sampling_ratio/max": 1.3013360500335693,
|
| 170 |
-
"sampling/importance_sampling_ratio/mean": 0.9994803667068481,
|
| 171 |
-
"sampling/importance_sampling_ratio/min": 0.7946972846984863,
|
| 172 |
-
"sampling/sampling_logp_difference/max": 0.26339149475097656,
|
| 173 |
-
"sampling/sampling_logp_difference/mean": 0.017627151682972908,
|
| 174 |
-
"step": 5,
|
| 175 |
-
"step_time": 28.664589129999968
|
| 176 |
-
},
|
| 177 |
-
{
|
| 178 |
-
"clip_ratio/high_max": 0.0052083334885537624,
|
| 179 |
-
"clip_ratio/high_mean": 0.0013020833721384406,
|
| 180 |
-
"clip_ratio/low_mean": 0.0,
|
| 181 |
-
"clip_ratio/low_min": 0.0,
|
| 182 |
-
"clip_ratio/region_mean": 0.0013020833721384406,
|
| 183 |
-
"completions/clipped_ratio": 0.0,
|
| 184 |
-
"completions/max_length": 1351.0,
|
| 185 |
-
"completions/max_terminated_length": 1351.0,
|
| 186 |
-
"completions/mean_length": 1219.46875,
|
| 187 |
-
"completions/mean_terminated_length": 1219.46875,
|
| 188 |
-
"completions/min_length": 1012.0,
|
| 189 |
-
"completions/min_terminated_length": 1012.0,
|
| 190 |
-
"entropy": 0.6081138551235199,
|
| 191 |
-
"epoch": 0.00024,
|
| 192 |
-
"frac_reward_zero_std": 0.0,
|
| 193 |
-
"grad_norm": 0.6916493773460388,
|
| 194 |
-
"kl": 0.0005982896527712,
|
| 195 |
-
"learning_rate": 1.4285714285714286e-06,
|
| 196 |
-
"loss": -0.0088,
|
| 197 |
-
"num_tokens": 840964.0,
|
| 198 |
-
"reward": -0.5021334886550903,
|
| 199 |
-
"reward_std": 0.17595317959785461,
|
| 200 |
-
"rewards/rollout_reward_func/mean": -0.5021334886550903,
|
| 201 |
-
"rewards/rollout_reward_func/std": 0.17878760397434235,
|
| 202 |
-
"sampling/importance_sampling_ratio/max": 1.214083194732666,
|
| 203 |
-
"sampling/importance_sampling_ratio/mean": 1.0006656646728516,
|
| 204 |
-
"sampling/importance_sampling_ratio/min": 0.8280104994773865,
|
| 205 |
-
"sampling/sampling_logp_difference/max": 0.19398927688598633,
|
| 206 |
-
"sampling/sampling_logp_difference/mean": 0.018302714452147484,
|
| 207 |
-
"step": 6,
|
| 208 |
-
"step_time": 30.956883577000326
|
| 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.015625,
|
| 217 |
-
"completions/max_length": 1358.0,
|
| 218 |
-
"completions/max_terminated_length": 1358.0,
|
| 219 |
-
"completions/mean_length": 1176.265625,
|
| 220 |
-
"completions/mean_terminated_length": 1175.71435546875,
|
| 221 |
-
"completions/min_length": 289.0,
|
| 222 |
-
"completions/min_terminated_length": 289.0,
|
| 223 |
-
"entropy": 0.5972259026020765,
|
| 224 |
-
"epoch": 0.00028,
|
| 225 |
-
"frac_reward_zero_std": 0.0,
|
| 226 |
-
"grad_norm": 0.7177211046218872,
|
| 227 |
-
"kl": 0.0005861011686647544,
|
| 228 |
-
"learning_rate": 1.7142857142857145e-06,
|
| 229 |
-
"loss": -0.0394,
|
| 230 |
-
"num_tokens": 996609.0,
|
| 231 |
-
"reward": -0.492123544216156,
|
| 232 |
-
"reward_std": 0.16847285628318787,
|
| 233 |
-
"rewards/rollout_reward_func/mean": -0.492123544216156,
|
| 234 |
-
"rewards/rollout_reward_func/std": 0.18208079040050507,
|
| 235 |
-
"sampling/importance_sampling_ratio/max": 1.2812676429748535,
|
| 236 |
-
"sampling/importance_sampling_ratio/mean": 0.9978591203689575,
|
| 237 |
-
"sampling/importance_sampling_ratio/min": 0.7220999002456665,
|
| 238 |
-
"sampling/sampling_logp_difference/max": 0.3255918025970459,
|
| 239 |
-
"sampling/sampling_logp_difference/mean": 0.017380019649863243,
|
| 240 |
-
"step": 7,
|
| 241 |
-
"step_time": 32.67134758100042
|
| 242 |
-
},
|
| 243 |
-
{
|
| 244 |
-
"clip_ratio/high_max": 0.0052083334885537624,
|
| 245 |
-
"clip_ratio/high_mean": 0.0013020833721384406,
|
| 246 |
-
"clip_ratio/low_mean": 0.0,
|
| 247 |
-
"clip_ratio/low_min": 0.0,
|
| 248 |
-
"clip_ratio/region_mean": 0.0013020833721384406,
|
| 249 |
-
"completions/clipped_ratio": 0.0,
|
| 250 |
-
"completions/max_length": 1358.0,
|
| 251 |
-
"completions/max_terminated_length": 1358.0,
|
| 252 |
-
"completions/mean_length": 1221.671875,
|
| 253 |
-
"completions/mean_terminated_length": 1221.671875,
|
| 254 |
-
"completions/min_length": 790.0,
|
| 255 |
-
"completions/min_terminated_length": 790.0,
|
| 256 |
-
"entropy": 0.6069452427327633,
|
| 257 |
-
"epoch": 0.00032,
|
| 258 |
-
"frac_reward_zero_std": 0.0,
|
| 259 |
-
"grad_norm": 0.7911893129348755,
|
| 260 |
-
"kl": 0.0007064663786877645,
|
| 261 |
-
"learning_rate": 2.0000000000000003e-06,
|
| 262 |
-
"loss": 0.0074,
|
| 263 |
-
"num_tokens": 1151043.0,
|
| 264 |
-
"reward": -0.5468676686286926,
|
| 265 |
-
"reward_std": 0.17733421921730042,
|
| 266 |
-
"rewards/rollout_reward_func/mean": -0.5468676686286926,
|
| 267 |
-
"rewards/rollout_reward_func/std": 0.1824226826429367,
|
| 268 |
-
"sampling/importance_sampling_ratio/max": 1.1498843431472778,
|
| 269 |
-
"sampling/importance_sampling_ratio/mean": 0.9998562335968018,
|
| 270 |
-
"sampling/importance_sampling_ratio/min": 0.7584721446037292,
|
| 271 |
-
"sampling/sampling_logp_difference/max": 0.27644920349121094,
|
| 272 |
-
"sampling/sampling_logp_difference/mean": 0.01727226749062538,
|
| 273 |
-
"step": 8,
|
| 274 |
-
"step_time": 33.65800914100009
|
| 275 |
-
},
|
| 276 |
-
{
|
| 277 |
-
"clip_ratio/high_max": 0.004464285913854837,
|
| 278 |
-
"clip_ratio/high_mean": 0.0011160714784637094,
|
| 279 |
-
"clip_ratio/low_mean": 0.0011160714784637094,
|
| 280 |
-
"clip_ratio/low_min": 0.0,
|
| 281 |
-
"clip_ratio/region_mean": 0.0022321429569274187,
|
| 282 |
-
"completions/clipped_ratio": 0.0,
|
| 283 |
-
"completions/max_length": 1576.0,
|
| 284 |
-
"completions/max_terminated_length": 1576.0,
|
| 285 |
-
"completions/mean_length": 1432.5625,
|
| 286 |
-
"completions/mean_terminated_length": 1432.5625,
|
| 287 |
-
"completions/min_length": 1167.0,
|
| 288 |
-
"completions/min_terminated_length": 1167.0,
|
| 289 |
-
"entropy": 0.6040426194667816,
|
| 290 |
-
"epoch": 0.00036,
|
| 291 |
-
"frac_reward_zero_std": 0.0,
|
| 292 |
-
"grad_norm": 0.9153677821159363,
|
| 293 |
-
"kl": 0.0006420876543415943,
|
| 294 |
-
"learning_rate": 2.285714285714286e-06,
|
| 295 |
-
"loss": 0.0259,
|
| 296 |
-
"num_tokens": 1321059.0,
|
| 297 |
-
"reward": -0.5375348925590515,
|
| 298 |
-
"reward_std": 0.19819244742393494,
|
| 299 |
-
"rewards/rollout_reward_func/mean": -0.5375348925590515,
|
| 300 |
-
"rewards/rollout_reward_func/std": 0.20910826325416565,
|
| 301 |
-
"sampling/importance_sampling_ratio/max": 1.264775037765503,
|
| 302 |
-
"sampling/importance_sampling_ratio/mean": 1.0003395080566406,
|
| 303 |
-
"sampling/importance_sampling_ratio/min": 0.7903153896331787,
|
| 304 |
-
"sampling/sampling_logp_difference/max": 0.23532319068908691,
|
| 305 |
-
"sampling/sampling_logp_difference/mean": 0.01806110143661499,
|
| 306 |
-
"step": 9,
|
| 307 |
-
"step_time": 38.66699894299927
|
| 308 |
}
|
| 309 |
],
|
| 310 |
"logging_steps": 1.0,
|
| 311 |
-
"max_steps":
|
| 312 |
-
"num_input_tokens_seen":
|
| 313 |
"num_train_epochs": 1,
|
| 314 |
"save_steps": 500,
|
| 315 |
"stateful_callbacks": {
|
|
|
|
| 2 |
"best_global_step": null,
|
| 3 |
"best_metric": null,
|
| 4 |
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 4e-05,
|
| 6 |
"eval_steps": 500,
|
| 7 |
+
"global_step": 1,
|
| 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": 573.0,
|
| 20 |
+
"completions/max_terminated_length": 573.0,
|
| 21 |
+
"completions/mean_length": 125.71875,
|
| 22 |
+
"completions/mean_terminated_length": 125.71875,
|
| 23 |
+
"completions/min_length": 2.0,
|
| 24 |
+
"completions/min_terminated_length": 2.0,
|
| 25 |
+
"entropy": 1.372788105159998,
|
| 26 |
"epoch": 4e-05,
|
| 27 |
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 0.7595316171646118,
|
| 29 |
"kl": 0.0,
|
| 30 |
"learning_rate": 0.0,
|
| 31 |
+
"loss": -0.0345,
|
| 32 |
+
"num_tokens": 91750.0,
|
| 33 |
+
"reward": -0.6493574976921082,
|
| 34 |
+
"reward_std": 0.7037926316261292,
|
| 35 |
+
"rewards/rollout_reward_func/mean": -0.6493574976921082,
|
| 36 |
+
"rewards/rollout_reward_func/std": 0.8106608986854553,
|
| 37 |
+
"sampling/importance_sampling_ratio/max": 1.3807494640350342,
|
| 38 |
+
"sampling/importance_sampling_ratio/mean": 1.0163333415985107,
|
| 39 |
+
"sampling/importance_sampling_ratio/min": 0.7142292261123657,
|
| 40 |
+
"sampling/sampling_logp_difference/max": 0.23920273780822754,
|
| 41 |
+
"sampling/sampling_logp_difference/mean": 0.028075017035007477,
|
| 42 |
"step": 1,
|
| 43 |
+
"step_time": 10.923513879000893
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
],
|
| 46 |
"logging_steps": 1.0,
|
| 47 |
+
"max_steps": 1800,
|
| 48 |
+
"num_input_tokens_seen": 91750,
|
| 49 |
"num_train_epochs": 1,
|
| 50 |
"save_steps": 500,
|
| 51 |
"stateful_callbacks": {
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 8145
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64e7205f90417143f6f991cb0e59138a7957c08b7eabdb09fcfc8d2e57680109
|
| 3 |
size 8145
|