Text Generation
Transformers
Safetensors
qwen3
Generated from Trainer
trl
sft
conversational
text-generation-inference
Instructions to use cs-552-2026-aaty/math_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cs-552-2026-aaty/math_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cs-552-2026-aaty/math_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cs-552-2026-aaty/math_model") model = AutoModelForCausalLM.from_pretrained("cs-552-2026-aaty/math_model") 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 cs-552-2026-aaty/math_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cs-552-2026-aaty/math_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-aaty/math_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cs-552-2026-aaty/math_model
- SGLang
How to use cs-552-2026-aaty/math_model 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 "cs-552-2026-aaty/math_model" \ --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": "cs-552-2026-aaty/math_model", "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 "cs-552-2026-aaty/math_model" \ --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": "cs-552-2026-aaty/math_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cs-552-2026-aaty/math_model with Docker Model Runner:
docker model run hf.co/cs-552-2026-aaty/math_model
promote qwen3_math_ckpt2 to math_model
Browse files- added_tokens.json +28 -0
- chat_template.jinja +1 -4
- config.json +4 -3
- generation_config.json +3 -3
- merges.txt +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +318 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +16 -0
- tokenizer_config.json +212 -16
- trainer_state.json +1314 -0
- training_args.bin +2 -2
- vocab.json +0 -0
added_tokens.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|box_end|>": 151649,
|
| 9 |
+
"<|box_start|>": 151648,
|
| 10 |
+
"<|endoftext|>": 151643,
|
| 11 |
+
"<|file_sep|>": 151664,
|
| 12 |
+
"<|fim_middle|>": 151660,
|
| 13 |
+
"<|fim_pad|>": 151662,
|
| 14 |
+
"<|fim_prefix|>": 151659,
|
| 15 |
+
"<|fim_suffix|>": 151661,
|
| 16 |
+
"<|im_end|>": 151645,
|
| 17 |
+
"<|im_start|>": 151644,
|
| 18 |
+
"<|image_pad|>": 151655,
|
| 19 |
+
"<|object_ref_end|>": 151647,
|
| 20 |
+
"<|object_ref_start|>": 151646,
|
| 21 |
+
"<|quad_end|>": 151651,
|
| 22 |
+
"<|quad_start|>": 151650,
|
| 23 |
+
"<|repo_name|>": 151663,
|
| 24 |
+
"<|video_pad|>": 151656,
|
| 25 |
+
"<|vision_end|>": 151653,
|
| 26 |
+
"<|vision_pad|>": 151654,
|
| 27 |
+
"<|vision_start|>": 151652
|
| 28 |
+
}
|
chat_template.jinja
CHANGED
|
@@ -1,7 +1,4 @@
|
|
| 1 |
-
{%-
|
| 2 |
-
{%- if not messages or messages[0].role != 'system' %}
|
| 3 |
-
{%- set messages = [{'role': 'system', 'content': 'Solve the problem. End your response with the final answer in \\boxed{...}.'}] + messages %}
|
| 4 |
-
{%- endif %}{%- if tools %}
|
| 5 |
{{- '<|im_start|>system\n' }}
|
| 6 |
{%- if messages[0].role == 'system' %}
|
| 7 |
{{- messages[0].content + '\n\n' }}
|
|
|
|
| 1 |
+
{%- if tools %}
|
|
|
|
|
|
|
|
|
|
| 2 |
{{- '<|im_start|>system\n' }}
|
| 3 |
{%- if messages[0].role == 'system' %}
|
| 4 |
{{- messages[0].content + '\n\n' }}
|
config.json
CHANGED
|
@@ -4,8 +4,7 @@
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
-
"
|
| 8 |
-
"dtype": "bfloat16",
|
| 9 |
"eos_token_id": 151645,
|
| 10 |
"head_dim": 128,
|
| 11 |
"hidden_act": "silu",
|
|
@@ -54,9 +53,11 @@
|
|
| 54 |
"rope_theta": 1000000,
|
| 55 |
"rope_type": "default"
|
| 56 |
},
|
|
|
|
|
|
|
| 57 |
"sliding_window": null,
|
| 58 |
"tie_word_embeddings": true,
|
| 59 |
-
"transformers_version": "
|
| 60 |
"use_cache": false,
|
| 61 |
"use_sliding_window": false,
|
| 62 |
"vocab_size": 151936
|
|
|
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
+
"dtype": "float32",
|
|
|
|
| 8 |
"eos_token_id": 151645,
|
| 9 |
"head_dim": 128,
|
| 10 |
"hidden_act": "silu",
|
|
|
|
| 53 |
"rope_theta": 1000000,
|
| 54 |
"rope_type": "default"
|
| 55 |
},
|
| 56 |
+
"rope_scaling": null,
|
| 57 |
+
"rope_theta": 10000.0,
|
| 58 |
"sliding_window": null,
|
| 59 |
"tie_word_embeddings": true,
|
| 60 |
+
"transformers_version": "4.57.1",
|
| 61 |
"use_cache": false,
|
| 62 |
"use_sliding_window": false,
|
| 63 |
"vocab_size": 151936
|
generation_config.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
{
|
| 2 |
"do_sample": true,
|
| 3 |
"eos_token_id": [
|
| 4 |
-
151645
|
| 5 |
-
151643
|
| 6 |
],
|
| 7 |
"pad_token_id": 151643,
|
|
|
|
| 8 |
"temperature": 0.6,
|
| 9 |
"top_k": 20,
|
| 10 |
"top_p": 0.95,
|
| 11 |
-
"transformers_version": "
|
| 12 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"do_sample": true,
|
| 3 |
"eos_token_id": [
|
| 4 |
+
151645
|
|
|
|
| 5 |
],
|
| 6 |
"pad_token_id": 151643,
|
| 7 |
+
"repetition_penalty": 1.03,
|
| 8 |
"temperature": 0.6,
|
| 9 |
"top_k": 20,
|
| 10 |
"top_p": 0.95,
|
| 11 |
+
"transformers_version": "4.57.1"
|
| 12 |
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c12020c36dfd2add85f747b4c674eb7013cb7392a46d0b28c4368f85e7d3dfab
|
| 3 |
+
size 4969539560
|
model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:80f17b35bfcfb06adf3834216e6520fc1760105d39693c18fbc11533a546fce1
|
| 3 |
+
size 1912795688
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,318 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 1720574976,
|
| 4 |
+
"total_size": 6882299904
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 52 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 54 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 64 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 66 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 75 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 76 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 78 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 81 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 83 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 84 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 85 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 86 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 87 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 88 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 90 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 91 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 92 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 94 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 95 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 96 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 97 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 98 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 100 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 102 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 109 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 112 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 113 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 114 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 119 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 120 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 121 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 122 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 123 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 124 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 125 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 126 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 127 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 128 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 129 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 130 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 131 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 132 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 133 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 134 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 135 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 139 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 140 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 141 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 142 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 143 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 144 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 145 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 146 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 147 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 148 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 149 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 150 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 152 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 153 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 154 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 155 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 156 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 157 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 161 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 162 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 163 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 164 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 165 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 166 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 167 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 168 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 169 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 170 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 171 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 172 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 173 |
+
"model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 174 |
+
"model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 175 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 176 |
+
"model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 177 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 178 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 179 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 180 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 181 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 182 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 183 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 184 |
+
"model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 185 |
+
"model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 186 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 187 |
+
"model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 188 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 189 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 190 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 191 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 192 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 193 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 194 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 195 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 196 |
+
"model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 197 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 198 |
+
"model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 199 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 200 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 201 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 202 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 203 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 204 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 205 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 206 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 207 |
+
"model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 208 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 209 |
+
"model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 210 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 211 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 212 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 213 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 214 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 215 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 216 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 217 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 218 |
+
"model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 219 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 220 |
+
"model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 221 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 222 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 223 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 224 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 225 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 226 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 227 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 228 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 229 |
+
"model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 230 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 231 |
+
"model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 232 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 233 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 234 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 235 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 236 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 237 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 238 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 239 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 240 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 241 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 242 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 243 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 244 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 245 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 246 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 247 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 248 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 249 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 250 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 251 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 252 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 253 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 254 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 255 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 256 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 257 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 258 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 259 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 260 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 261 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 262 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 263 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 264 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 265 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 268 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 270 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 272 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 273 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 274 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 275 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 276 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 277 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 278 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 279 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 280 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 281 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 282 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 283 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 284 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 285 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 286 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 287 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 288 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 289 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 290 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 291 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 292 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 293 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 294 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 295 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 296 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 297 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 298 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 299 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 300 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 301 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 302 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 303 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 304 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 305 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 306 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 307 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 308 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 309 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 310 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 311 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 312 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 313 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 314 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 315 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 316 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
| 317 |
+
}
|
| 318 |
+
}
|
optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16195961b97904f7ff5bf2a94b8ebe32b9a86449b21a40558985717e7f4084e2
|
| 3 |
+
size 5353236089
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:917436801ac5217a1e1e84e072c1517531250f3b5e6f89db6c0c040b980b662c
|
| 3 |
+
size 14581
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb7acb1c40910e7feb841dc828e243dbd15a50d3387e5ea17cca443975f99a59
|
| 3 |
+
size 1465
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"eos_token": {
|
| 3 |
+
"content": "<|im_end|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"pad_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
}
|
| 16 |
+
}
|
tokenizer_config.json
CHANGED
|
@@ -1,26 +1,222 @@
|
|
| 1 |
{
|
| 2 |
"add_prefix_space": false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
"backend": "tokenizers",
|
| 4 |
"bos_token": null,
|
| 5 |
"clean_up_tokenization_spaces": false,
|
| 6 |
"eos_token": "<|im_end|>",
|
| 7 |
"errors": "replace",
|
| 8 |
-
"extra_special_tokens":
|
| 9 |
-
|
| 10 |
-
"<|im_end|>",
|
| 11 |
-
"<|object_ref_start|>",
|
| 12 |
-
"<|object_ref_end|>",
|
| 13 |
-
"<|box_start|>",
|
| 14 |
-
"<|box_end|>",
|
| 15 |
-
"<|quad_start|>",
|
| 16 |
-
"<|quad_end|>",
|
| 17 |
-
"<|vision_start|>",
|
| 18 |
-
"<|vision_end|>",
|
| 19 |
-
"<|vision_pad|>",
|
| 20 |
-
"<|image_pad|>",
|
| 21 |
-
"<|video_pad|>"
|
| 22 |
-
],
|
| 23 |
-
"is_local": true,
|
| 24 |
"local_files_only": false,
|
| 25 |
"model_max_length": 131072,
|
| 26 |
"pad_token": "<|endoftext|>",
|
|
|
|
| 1 |
{
|
| 2 |
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"151643": {
|
| 5 |
+
"content": "<|endoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"151644": {
|
| 13 |
+
"content": "<|im_start|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"151645": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"151646": {
|
| 29 |
+
"content": "<|object_ref_start|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"151647": {
|
| 37 |
+
"content": "<|object_ref_end|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"151648": {
|
| 45 |
+
"content": "<|box_start|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"151649": {
|
| 53 |
+
"content": "<|box_end|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"151650": {
|
| 61 |
+
"content": "<|quad_start|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"151651": {
|
| 69 |
+
"content": "<|quad_end|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"151652": {
|
| 77 |
+
"content": "<|vision_start|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"151653": {
|
| 85 |
+
"content": "<|vision_end|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"151654": {
|
| 93 |
+
"content": "<|vision_pad|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"151655": {
|
| 101 |
+
"content": "<|image_pad|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"151656": {
|
| 109 |
+
"content": "<|video_pad|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"151657": {
|
| 117 |
+
"content": "<tool_call>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"151658": {
|
| 125 |
+
"content": "</tool_call>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"151659": {
|
| 133 |
+
"content": "<|fim_prefix|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"151660": {
|
| 141 |
+
"content": "<|fim_middle|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"151661": {
|
| 149 |
+
"content": "<|fim_suffix|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"151662": {
|
| 157 |
+
"content": "<|fim_pad|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"151663": {
|
| 165 |
+
"content": "<|repo_name|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": false
|
| 171 |
+
},
|
| 172 |
+
"151664": {
|
| 173 |
+
"content": "<|file_sep|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": false
|
| 179 |
+
},
|
| 180 |
+
"151665": {
|
| 181 |
+
"content": "<tool_response>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": false
|
| 187 |
+
},
|
| 188 |
+
"151666": {
|
| 189 |
+
"content": "</tool_response>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": false
|
| 195 |
+
},
|
| 196 |
+
"151667": {
|
| 197 |
+
"content": "<think>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": false
|
| 203 |
+
},
|
| 204 |
+
"151668": {
|
| 205 |
+
"content": "</think>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": false
|
| 211 |
+
}
|
| 212 |
+
},
|
| 213 |
"backend": "tokenizers",
|
| 214 |
"bos_token": null,
|
| 215 |
"clean_up_tokenization_spaces": false,
|
| 216 |
"eos_token": "<|im_end|>",
|
| 217 |
"errors": "replace",
|
| 218 |
+
"extra_special_tokens": {},
|
| 219 |
+
"is_local": false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 220 |
"local_files_only": false,
|
| 221 |
"model_max_length": 131072,
|
| 222 |
"pad_token": "<|endoftext|>",
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1314 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.5856515373352855,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 400,
|
| 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.25,
|
| 19 |
+
"completions/max_length": 4096.0,
|
| 20 |
+
"completions/max_terminated_length": 2823.1,
|
| 21 |
+
"completions/mean_length": 2212.6015625,
|
| 22 |
+
"completions/mean_terminated_length": 1598.5629760742188,
|
| 23 |
+
"completions/min_length": 548.3,
|
| 24 |
+
"completions/min_terminated_length": 548.3,
|
| 25 |
+
"entropy": 0.37419939059764146,
|
| 26 |
+
"epoch": 0.014641288433382138,
|
| 27 |
+
"frac_reward_zero_std": 0.1625,
|
| 28 |
+
"grad_norm": 0.3435262143611908,
|
| 29 |
+
"learning_rate": 2.5e-07,
|
| 30 |
+
"loss": -0.0206,
|
| 31 |
+
"num_tokens": 1461489.0,
|
| 32 |
+
"reward": 0.55625,
|
| 33 |
+
"reward_std": 0.490439248085022,
|
| 34 |
+
"rewards/reward_correct/mean": 0.55625,
|
| 35 |
+
"rewards/reward_correct/std": 0.4904392629861832,
|
| 36 |
+
"sampling/importance_sampling_ratio/max": 2.5085304737091065,
|
| 37 |
+
"sampling/importance_sampling_ratio/mean": 0.38461052924394606,
|
| 38 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 39 |
+
"sampling/sampling_logp_difference/max": 20.57911796569824,
|
| 40 |
+
"sampling/sampling_logp_difference/mean": 0.01642625266686082,
|
| 41 |
+
"step": 10,
|
| 42 |
+
"step_time": 39.29108169283718
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"clip_ratio/high_max": 0.0,
|
| 46 |
+
"clip_ratio/high_mean": 0.0,
|
| 47 |
+
"clip_ratio/low_mean": 0.0,
|
| 48 |
+
"clip_ratio/low_min": 0.0,
|
| 49 |
+
"clip_ratio/region_mean": 0.0,
|
| 50 |
+
"completions/clipped_ratio": 0.2515625,
|
| 51 |
+
"completions/max_length": 4096.0,
|
| 52 |
+
"completions/max_terminated_length": 2959.5,
|
| 53 |
+
"completions/mean_length": 2154.1875,
|
| 54 |
+
"completions/mean_terminated_length": 1502.6771606445313,
|
| 55 |
+
"completions/min_length": 541.6,
|
| 56 |
+
"completions/min_terminated_length": 541.6,
|
| 57 |
+
"entropy": 0.37666908781975506,
|
| 58 |
+
"epoch": 0.029282576866764276,
|
| 59 |
+
"frac_reward_zero_std": 0.2,
|
| 60 |
+
"grad_norm": 0.20618420839309692,
|
| 61 |
+
"learning_rate": 5.277777777777777e-07,
|
| 62 |
+
"loss": -0.046,
|
| 63 |
+
"num_tokens": 2883441.0,
|
| 64 |
+
"reward": 0.5515625,
|
| 65 |
+
"reward_std": 0.4889607191085815,
|
| 66 |
+
"rewards/reward_correct/mean": 0.5515625,
|
| 67 |
+
"rewards/reward_correct/std": 0.4889607191085815,
|
| 68 |
+
"sampling/importance_sampling_ratio/max": 2.602067708969116,
|
| 69 |
+
"sampling/importance_sampling_ratio/mean": 0.433729550242424,
|
| 70 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 71 |
+
"sampling/sampling_logp_difference/max": 19.137638902664186,
|
| 72 |
+
"sampling/sampling_logp_difference/mean": 0.01647020932286978,
|
| 73 |
+
"step": 20,
|
| 74 |
+
"step_time": 38.75275211557746
|
| 75 |
+
},
|
| 76 |
+
{
|
| 77 |
+
"clip_ratio/high_max": 0.0,
|
| 78 |
+
"clip_ratio/high_mean": 0.0,
|
| 79 |
+
"clip_ratio/low_mean": 0.0,
|
| 80 |
+
"clip_ratio/low_min": 0.0,
|
| 81 |
+
"clip_ratio/region_mean": 0.0,
|
| 82 |
+
"completions/clipped_ratio": 0.19375,
|
| 83 |
+
"completions/max_length": 4096.0,
|
| 84 |
+
"completions/max_terminated_length": 2938.4,
|
| 85 |
+
"completions/mean_length": 2001.1296875,
|
| 86 |
+
"completions/mean_terminated_length": 1499.7443725585938,
|
| 87 |
+
"completions/min_length": 549.0,
|
| 88 |
+
"completions/min_terminated_length": 549.0,
|
| 89 |
+
"entropy": 0.3806160856038332,
|
| 90 |
+
"epoch": 0.043923865300146414,
|
| 91 |
+
"frac_reward_zero_std": 0.1375,
|
| 92 |
+
"grad_norm": 0.38085469603538513,
|
| 93 |
+
"learning_rate": 8.055555555555556e-07,
|
| 94 |
+
"loss": -0.0399,
|
| 95 |
+
"num_tokens": 4208244.0,
|
| 96 |
+
"reward": 0.63125,
|
| 97 |
+
"reward_std": 0.47393213510513305,
|
| 98 |
+
"rewards/reward_correct/mean": 0.63125,
|
| 99 |
+
"rewards/reward_correct/std": 0.47393215000629424,
|
| 100 |
+
"sampling/importance_sampling_ratio/max": 2.777843475341797,
|
| 101 |
+
"sampling/importance_sampling_ratio/mean": 0.46774761080741883,
|
| 102 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 103 |
+
"sampling/sampling_logp_difference/max": 16.171199893951417,
|
| 104 |
+
"sampling/sampling_logp_difference/mean": 0.016388929169625043,
|
| 105 |
+
"step": 30,
|
| 106 |
+
"step_time": 36.90585096795112
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"clip_ratio/high_max": 0.0,
|
| 110 |
+
"clip_ratio/high_mean": 0.0,
|
| 111 |
+
"clip_ratio/low_mean": 0.0,
|
| 112 |
+
"clip_ratio/low_min": 0.0,
|
| 113 |
+
"clip_ratio/region_mean": 0.0,
|
| 114 |
+
"completions/clipped_ratio": 0.2015625,
|
| 115 |
+
"completions/max_length": 4096.0,
|
| 116 |
+
"completions/max_terminated_length": 2892.9,
|
| 117 |
+
"completions/mean_length": 2092.4609375,
|
| 118 |
+
"completions/mean_terminated_length": 1596.0179565429687,
|
| 119 |
+
"completions/min_length": 682.9,
|
| 120 |
+
"completions/min_terminated_length": 682.9,
|
| 121 |
+
"entropy": 0.39871342200785875,
|
| 122 |
+
"epoch": 0.05856515373352855,
|
| 123 |
+
"frac_reward_zero_std": 0.15,
|
| 124 |
+
"grad_norm": 0.3075981140136719,
|
| 125 |
+
"learning_rate": 9.99983610189578e-07,
|
| 126 |
+
"loss": -0.0413,
|
| 127 |
+
"num_tokens": 5591619.0,
|
| 128 |
+
"reward": 0.5671875,
|
| 129 |
+
"reward_std": 0.49184212982654574,
|
| 130 |
+
"rewards/reward_correct/mean": 0.5671875,
|
| 131 |
+
"rewards/reward_correct/std": 0.4918421536684036,
|
| 132 |
+
"sampling/importance_sampling_ratio/max": 2.5808013796806337,
|
| 133 |
+
"sampling/importance_sampling_ratio/mean": 0.4000511050224304,
|
| 134 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 135 |
+
"sampling/sampling_logp_difference/max": 17.92250967025757,
|
| 136 |
+
"sampling/sampling_logp_difference/mean": 0.017202667891979218,
|
| 137 |
+
"step": 40,
|
| 138 |
+
"step_time": 37.50205779653042
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"clip_ratio/high_max": 0.0,
|
| 142 |
+
"clip_ratio/high_mean": 0.0,
|
| 143 |
+
"clip_ratio/low_mean": 0.0,
|
| 144 |
+
"clip_ratio/low_min": 0.0,
|
| 145 |
+
"clip_ratio/region_mean": 0.0,
|
| 146 |
+
"completions/clipped_ratio": 0.2453125,
|
| 147 |
+
"completions/max_length": 4096.0,
|
| 148 |
+
"completions/max_terminated_length": 2909.8,
|
| 149 |
+
"completions/mean_length": 2165.5484375,
|
| 150 |
+
"completions/mean_terminated_length": 1548.968701171875,
|
| 151 |
+
"completions/min_length": 612.0,
|
| 152 |
+
"completions/min_terminated_length": 612.0,
|
| 153 |
+
"entropy": 0.3838326945900917,
|
| 154 |
+
"epoch": 0.07320644216691069,
|
| 155 |
+
"frac_reward_zero_std": 0.1125,
|
| 156 |
+
"grad_norm": 0.23338092863559723,
|
| 157 |
+
"learning_rate": 9.996922656726519e-07,
|
| 158 |
+
"loss": -0.03,
|
| 159 |
+
"num_tokens": 7020274.0,
|
| 160 |
+
"reward": 0.609375,
|
| 161 |
+
"reward_std": 0.48490735292434695,
|
| 162 |
+
"rewards/reward_correct/mean": 0.609375,
|
| 163 |
+
"rewards/reward_correct/std": 0.48490736782550814,
|
| 164 |
+
"sampling/importance_sampling_ratio/max": 2.5837005376815796,
|
| 165 |
+
"sampling/importance_sampling_ratio/mean": 0.42594734132289885,
|
| 166 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 167 |
+
"sampling/sampling_logp_difference/max": 18.403625679016113,
|
| 168 |
+
"sampling/sampling_logp_difference/mean": 0.01675282260403037,
|
| 169 |
+
"step": 50,
|
| 170 |
+
"step_time": 38.06877801399678
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"clip_ratio/high_max": 0.0,
|
| 174 |
+
"clip_ratio/high_mean": 0.0,
|
| 175 |
+
"clip_ratio/low_mean": 0.0,
|
| 176 |
+
"clip_ratio/low_min": 0.0,
|
| 177 |
+
"clip_ratio/region_mean": 0.0,
|
| 178 |
+
"completions/clipped_ratio": 0.2125,
|
| 179 |
+
"completions/max_length": 4096.0,
|
| 180 |
+
"completions/max_terminated_length": 2991.2,
|
| 181 |
+
"completions/mean_length": 2021.078125,
|
| 182 |
+
"completions/mean_terminated_length": 1476.2773681640624,
|
| 183 |
+
"completions/min_length": 552.9,
|
| 184 |
+
"completions/min_terminated_length": 552.9,
|
| 185 |
+
"entropy": 0.38246585726737975,
|
| 186 |
+
"epoch": 0.08784773060029283,
|
| 187 |
+
"frac_reward_zero_std": 0.2375,
|
| 188 |
+
"grad_norm": 0.25549644231796265,
|
| 189 |
+
"learning_rate": 9.990369474177287e-07,
|
| 190 |
+
"loss": -0.0368,
|
| 191 |
+
"num_tokens": 8357548.0,
|
| 192 |
+
"reward": 0.6078125,
|
| 193 |
+
"reward_std": 0.4822483420372009,
|
| 194 |
+
"rewards/reward_correct/mean": 0.6078125,
|
| 195 |
+
"rewards/reward_correct/std": 0.4822483569383621,
|
| 196 |
+
"sampling/importance_sampling_ratio/max": 2.551281487941742,
|
| 197 |
+
"sampling/importance_sampling_ratio/mean": 0.418478462100029,
|
| 198 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 199 |
+
"sampling/sampling_logp_difference/max": 18.59011764526367,
|
| 200 |
+
"sampling/sampling_logp_difference/mean": 0.016825519781559706,
|
| 201 |
+
"step": 60,
|
| 202 |
+
"step_time": 37.431954508833584
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"clip_ratio/high_max": 0.0,
|
| 206 |
+
"clip_ratio/high_mean": 0.0,
|
| 207 |
+
"clip_ratio/low_mean": 0.0,
|
| 208 |
+
"clip_ratio/low_min": 0.0,
|
| 209 |
+
"clip_ratio/region_mean": 0.0,
|
| 210 |
+
"completions/clipped_ratio": 0.2578125,
|
| 211 |
+
"completions/max_length": 4096.0,
|
| 212 |
+
"completions/max_terminated_length": 2829.8,
|
| 213 |
+
"completions/mean_length": 2135.79375,
|
| 214 |
+
"completions/mean_terminated_length": 1463.258203125,
|
| 215 |
+
"completions/min_length": 575.9,
|
| 216 |
+
"completions/min_terminated_length": 575.9,
|
| 217 |
+
"entropy": 0.37964062821120026,
|
| 218 |
+
"epoch": 0.10248901903367497,
|
| 219 |
+
"frac_reward_zero_std": 0.1625,
|
| 220 |
+
"grad_norm": 0.25282272696495056,
|
| 221 |
+
"learning_rate": 9.980181327558608e-07,
|
| 222 |
+
"loss": -0.0358,
|
| 223 |
+
"num_tokens": 9767000.0,
|
| 224 |
+
"reward": 0.559375,
|
| 225 |
+
"reward_std": 0.49146345555782317,
|
| 226 |
+
"rewards/reward_correct/mean": 0.559375,
|
| 227 |
+
"rewards/reward_correct/std": 0.4914634644985199,
|
| 228 |
+
"sampling/importance_sampling_ratio/max": 2.3558115363121033,
|
| 229 |
+
"sampling/importance_sampling_ratio/mean": 0.38055962324142456,
|
| 230 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 231 |
+
"sampling/sampling_logp_difference/max": 20.664661979675294,
|
| 232 |
+
"sampling/sampling_logp_difference/mean": 0.017013431526720524,
|
| 233 |
+
"step": 70,
|
| 234 |
+
"step_time": 38.171042419783774
|
| 235 |
+
},
|
| 236 |
+
{
|
| 237 |
+
"clip_ratio/high_max": 0.0,
|
| 238 |
+
"clip_ratio/high_mean": 0.0,
|
| 239 |
+
"clip_ratio/low_mean": 0.0,
|
| 240 |
+
"clip_ratio/low_min": 0.0,
|
| 241 |
+
"clip_ratio/region_mean": 0.0,
|
| 242 |
+
"completions/clipped_ratio": 0.2375,
|
| 243 |
+
"completions/max_length": 4096.0,
|
| 244 |
+
"completions/max_terminated_length": 2836.0,
|
| 245 |
+
"completions/mean_length": 2114.996875,
|
| 246 |
+
"completions/mean_terminated_length": 1504.2937377929688,
|
| 247 |
+
"completions/min_length": 585.6,
|
| 248 |
+
"completions/min_terminated_length": 585.6,
|
| 249 |
+
"entropy": 0.3977603709325194,
|
| 250 |
+
"epoch": 0.1171303074670571,
|
| 251 |
+
"frac_reward_zero_std": 0.1875,
|
| 252 |
+
"grad_norm": 0.46693727374076843,
|
| 253 |
+
"learning_rate": 9.966365637873492e-07,
|
| 254 |
+
"loss": -0.0226,
|
| 255 |
+
"num_tokens": 11167270.0,
|
| 256 |
+
"reward": 0.559375,
|
| 257 |
+
"reward_std": 0.4926549673080444,
|
| 258 |
+
"rewards/reward_correct/mean": 0.559375,
|
| 259 |
+
"rewards/reward_correct/std": 0.49265498518943784,
|
| 260 |
+
"sampling/importance_sampling_ratio/max": 2.3486295104026795,
|
| 261 |
+
"sampling/importance_sampling_ratio/mean": 0.3683971896767616,
|
| 262 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 263 |
+
"sampling/sampling_logp_difference/max": 18.408472061157227,
|
| 264 |
+
"sampling/sampling_logp_difference/mean": 0.01794397095218301,
|
| 265 |
+
"step": 80,
|
| 266 |
+
"step_time": 37.9683697424829
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"clip_ratio/high_max": 0.0,
|
| 270 |
+
"clip_ratio/high_mean": 0.0,
|
| 271 |
+
"clip_ratio/low_mean": 0.0,
|
| 272 |
+
"clip_ratio/low_min": 0.0,
|
| 273 |
+
"clip_ratio/region_mean": 0.0,
|
| 274 |
+
"completions/clipped_ratio": 0.2390625,
|
| 275 |
+
"completions/max_length": 4096.0,
|
| 276 |
+
"completions/max_terminated_length": 2789.4,
|
| 277 |
+
"completions/mean_length": 2129.534375,
|
| 278 |
+
"completions/mean_terminated_length": 1521.5262451171875,
|
| 279 |
+
"completions/min_length": 624.7,
|
| 280 |
+
"completions/min_terminated_length": 624.7,
|
| 281 |
+
"entropy": 0.40029386449605225,
|
| 282 |
+
"epoch": 0.13177159590043924,
|
| 283 |
+
"frac_reward_zero_std": 0.1375,
|
| 284 |
+
"grad_norm": 0.16561612486839294,
|
| 285 |
+
"learning_rate": 9.948932468412012e-07,
|
| 286 |
+
"loss": -0.053,
|
| 287 |
+
"num_tokens": 12573820.0,
|
| 288 |
+
"reward": 0.575,
|
| 289 |
+
"reward_std": 0.4877741277217865,
|
| 290 |
+
"rewards/reward_correct/mean": 0.575,
|
| 291 |
+
"rewards/reward_correct/std": 0.4877741366624832,
|
| 292 |
+
"sampling/importance_sampling_ratio/max": 2.4529914021492005,
|
| 293 |
+
"sampling/importance_sampling_ratio/mean": 0.4125220000743866,
|
| 294 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 295 |
+
"sampling/sampling_logp_difference/max": 18.997866821289062,
|
| 296 |
+
"sampling/sampling_logp_difference/mean": 0.017977293580770493,
|
| 297 |
+
"step": 90,
|
| 298 |
+
"step_time": 37.94527961928397
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"clip_ratio/high_max": 0.0,
|
| 302 |
+
"clip_ratio/high_mean": 0.0,
|
| 303 |
+
"clip_ratio/low_mean": 0.0,
|
| 304 |
+
"clip_ratio/low_min": 0.0,
|
| 305 |
+
"clip_ratio/region_mean": 0.0,
|
| 306 |
+
"completions/clipped_ratio": 0.228125,
|
| 307 |
+
"completions/max_length": 4096.0,
|
| 308 |
+
"completions/max_terminated_length": 2833.4,
|
| 309 |
+
"completions/mean_length": 2073.121875,
|
| 310 |
+
"completions/mean_terminated_length": 1485.735498046875,
|
| 311 |
+
"completions/min_length": 600.1,
|
| 312 |
+
"completions/min_terminated_length": 600.1,
|
| 313 |
+
"entropy": 0.3927433954551816,
|
| 314 |
+
"epoch": 0.14641288433382138,
|
| 315 |
+
"frac_reward_zero_std": 0.1625,
|
| 316 |
+
"grad_norm": 0.5592489242553711,
|
| 317 |
+
"learning_rate": 9.927894517421252e-07,
|
| 318 |
+
"loss": -0.0537,
|
| 319 |
+
"num_tokens": 13944442.0,
|
| 320 |
+
"reward": 0.590625,
|
| 321 |
+
"reward_std": 0.4901668787002563,
|
| 322 |
+
"rewards/reward_correct/mean": 0.590625,
|
| 323 |
+
"rewards/reward_correct/std": 0.4901668787002563,
|
| 324 |
+
"sampling/importance_sampling_ratio/max": 2.6186608552932737,
|
| 325 |
+
"sampling/importance_sampling_ratio/mean": 0.42541288733482363,
|
| 326 |
+
"sampling/importance_sampling_ratio/min": 4.2618070530964227e-13,
|
| 327 |
+
"sampling/sampling_logp_difference/max": 18.757488679885864,
|
| 328 |
+
"sampling/sampling_logp_difference/mean": 0.017926841229200362,
|
| 329 |
+
"step": 100,
|
| 330 |
+
"step_time": 37.48693933803588
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"clip_ratio/high_max": 0.0,
|
| 334 |
+
"clip_ratio/high_mean": 0.0,
|
| 335 |
+
"clip_ratio/low_mean": 0.0,
|
| 336 |
+
"clip_ratio/low_min": 0.0,
|
| 337 |
+
"clip_ratio/region_mean": 0.0,
|
| 338 |
+
"completions/clipped_ratio": 0.1921875,
|
| 339 |
+
"completions/max_length": 4096.0,
|
| 340 |
+
"completions/max_terminated_length": 2794.9,
|
| 341 |
+
"completions/mean_length": 1990.153125,
|
| 342 |
+
"completions/mean_terminated_length": 1495.9714721679688,
|
| 343 |
+
"completions/min_length": 576.9,
|
| 344 |
+
"completions/min_terminated_length": 576.9,
|
| 345 |
+
"entropy": 0.3959382362663746,
|
| 346 |
+
"epoch": 0.16105417276720352,
|
| 347 |
+
"frac_reward_zero_std": 0.15,
|
| 348 |
+
"grad_norm": 0.33283355832099915,
|
| 349 |
+
"learning_rate": 9.903267108855945e-07,
|
| 350 |
+
"loss": -0.0336,
|
| 351 |
+
"num_tokens": 15261116.0,
|
| 352 |
+
"reward": 0.584375,
|
| 353 |
+
"reward_std": 0.49319341480731965,
|
| 354 |
+
"rewards/reward_correct/mean": 0.584375,
|
| 355 |
+
"rewards/reward_correct/std": 0.4931934326887131,
|
| 356 |
+
"sampling/importance_sampling_ratio/max": 2.7180028676986696,
|
| 357 |
+
"sampling/importance_sampling_ratio/mean": 0.40315236151218414,
|
| 358 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 359 |
+
"sampling/sampling_logp_difference/max": 20.270559215545653,
|
| 360 |
+
"sampling/sampling_logp_difference/mean": 0.017832764610648155,
|
| 361 |
+
"step": 110,
|
| 362 |
+
"step_time": 36.91583805456757
|
| 363 |
+
},
|
| 364 |
+
{
|
| 365 |
+
"clip_ratio/high_max": 0.0,
|
| 366 |
+
"clip_ratio/high_mean": 0.0,
|
| 367 |
+
"clip_ratio/low_mean": 0.0,
|
| 368 |
+
"clip_ratio/low_min": 0.0,
|
| 369 |
+
"clip_ratio/region_mean": 0.0,
|
| 370 |
+
"completions/clipped_ratio": 0.2546875,
|
| 371 |
+
"completions/max_length": 4096.0,
|
| 372 |
+
"completions/max_terminated_length": 2807.0,
|
| 373 |
+
"completions/mean_length": 2134.259375,
|
| 374 |
+
"completions/mean_terminated_length": 1486.4429077148438,
|
| 375 |
+
"completions/min_length": 579.3,
|
| 376 |
+
"completions/min_terminated_length": 579.3,
|
| 377 |
+
"entropy": 0.3854369256645441,
|
| 378 |
+
"epoch": 0.17569546120058566,
|
| 379 |
+
"frac_reward_zero_std": 0.175,
|
| 380 |
+
"grad_norm": 0.20058169960975647,
|
| 381 |
+
"learning_rate": 9.875068181216587e-07,
|
| 382 |
+
"loss": -0.0449,
|
| 383 |
+
"num_tokens": 16669290.0,
|
| 384 |
+
"reward": 0.5765625,
|
| 385 |
+
"reward_std": 0.48694353699684145,
|
| 386 |
+
"rewards/reward_correct/mean": 0.5765625,
|
| 387 |
+
"rewards/reward_correct/std": 0.48694354891777036,
|
| 388 |
+
"sampling/importance_sampling_ratio/max": 2.4384738564491273,
|
| 389 |
+
"sampling/importance_sampling_ratio/mean": 0.39437868595123293,
|
| 390 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 391 |
+
"sampling/sampling_logp_difference/max": 17.982333517074586,
|
| 392 |
+
"sampling/sampling_logp_difference/mean": 0.017579753790050744,
|
| 393 |
+
"step": 120,
|
| 394 |
+
"step_time": 38.01051993258297
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"clip_ratio/high_max": 0.0,
|
| 398 |
+
"clip_ratio/high_mean": 0.0,
|
| 399 |
+
"clip_ratio/low_mean": 0.0,
|
| 400 |
+
"clip_ratio/low_min": 0.0,
|
| 401 |
+
"clip_ratio/region_mean": 0.0,
|
| 402 |
+
"completions/clipped_ratio": 0.184375,
|
| 403 |
+
"completions/max_length": 4096.0,
|
| 404 |
+
"completions/max_terminated_length": 2856.2,
|
| 405 |
+
"completions/mean_length": 1977.4796875,
|
| 406 |
+
"completions/mean_terminated_length": 1499.6147705078124,
|
| 407 |
+
"completions/min_length": 579.4,
|
| 408 |
+
"completions/min_terminated_length": 579.4,
|
| 409 |
+
"entropy": 0.38940617023035884,
|
| 410 |
+
"epoch": 0.1903367496339678,
|
| 411 |
+
"frac_reward_zero_std": 0.1375,
|
| 412 |
+
"grad_norm": 1.0070384740829468,
|
| 413 |
+
"learning_rate": 9.843318274483087e-07,
|
| 414 |
+
"loss": -0.0516,
|
| 415 |
+
"num_tokens": 17979685.0,
|
| 416 |
+
"reward": 0.6375,
|
| 417 |
+
"reward_std": 0.47116253077983855,
|
| 418 |
+
"rewards/reward_correct/mean": 0.6375,
|
| 419 |
+
"rewards/reward_correct/std": 0.4711625397205353,
|
| 420 |
+
"sampling/importance_sampling_ratio/max": 2.4777760744094848,
|
| 421 |
+
"sampling/importance_sampling_ratio/mean": 0.4186276912689209,
|
| 422 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 423 |
+
"sampling/sampling_logp_difference/max": 19.95844659805298,
|
| 424 |
+
"sampling/sampling_logp_difference/mean": 0.017811466939747334,
|
| 425 |
+
"step": 130,
|
| 426 |
+
"step_time": 36.8255618410185
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"clip_ratio/high_max": 0.0,
|
| 430 |
+
"clip_ratio/high_mean": 0.0,
|
| 431 |
+
"clip_ratio/low_mean": 0.0,
|
| 432 |
+
"clip_ratio/low_min": 0.0,
|
| 433 |
+
"clip_ratio/region_mean": 0.0,
|
| 434 |
+
"completions/clipped_ratio": 0.21875,
|
| 435 |
+
"completions/max_length": 4096.0,
|
| 436 |
+
"completions/max_terminated_length": 2830.2,
|
| 437 |
+
"completions/mean_length": 2012.015625,
|
| 438 |
+
"completions/mean_terminated_length": 1436.9541870117187,
|
| 439 |
+
"completions/min_length": 505.1,
|
| 440 |
+
"completions/min_terminated_length": 505.1,
|
| 441 |
+
"entropy": 0.3977817573584616,
|
| 442 |
+
"epoch": 0.20497803806734993,
|
| 443 |
+
"frac_reward_zero_std": 0.175,
|
| 444 |
+
"grad_norm": 0.22780311107635498,
|
| 445 |
+
"learning_rate": 9.808040515153556e-07,
|
| 446 |
+
"loss": -0.0363,
|
| 447 |
+
"num_tokens": 19310607.0,
|
| 448 |
+
"reward": 0.55625,
|
| 449 |
+
"reward_std": 0.48927740156650545,
|
| 450 |
+
"rewards/reward_correct/mean": 0.55625,
|
| 451 |
+
"rewards/reward_correct/std": 0.48927741646766665,
|
| 452 |
+
"sampling/importance_sampling_ratio/max": 2.4563987016677857,
|
| 453 |
+
"sampling/importance_sampling_ratio/mean": 0.409631285071373,
|
| 454 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 455 |
+
"sampling/sampling_logp_difference/max": 16.072743701934815,
|
| 456 |
+
"sampling/sampling_logp_difference/mean": 0.01845102310180664,
|
| 457 |
+
"step": 140,
|
| 458 |
+
"step_time": 37.086776703968646
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"clip_ratio/high_max": 0.0,
|
| 462 |
+
"clip_ratio/high_mean": 0.0,
|
| 463 |
+
"clip_ratio/low_mean": 0.0,
|
| 464 |
+
"clip_ratio/low_min": 0.0,
|
| 465 |
+
"clip_ratio/region_mean": 0.0,
|
| 466 |
+
"completions/clipped_ratio": 0.1609375,
|
| 467 |
+
"completions/max_length": 4096.0,
|
| 468 |
+
"completions/max_terminated_length": 2787.6,
|
| 469 |
+
"completions/mean_length": 1766.853125,
|
| 470 |
+
"completions/mean_terminated_length": 1328.84560546875,
|
| 471 |
+
"completions/min_length": 406.8,
|
| 472 |
+
"completions/min_terminated_length": 406.8,
|
| 473 |
+
"entropy": 0.392044834792614,
|
| 474 |
+
"epoch": 0.21961932650073207,
|
| 475 |
+
"frac_reward_zero_std": 0.175,
|
| 476 |
+
"grad_norm": 0.17948757112026215,
|
| 477 |
+
"learning_rate": 9.769260599399039e-07,
|
| 478 |
+
"loss": -0.0457,
|
| 479 |
+
"num_tokens": 20486505.0,
|
| 480 |
+
"reward": 0.596875,
|
| 481 |
+
"reward_std": 0.47513407170772554,
|
| 482 |
+
"rewards/reward_correct/mean": 0.596875,
|
| 483 |
+
"rewards/reward_correct/std": 0.47513407468795776,
|
| 484 |
+
"sampling/importance_sampling_ratio/max": 2.5963918924331666,
|
| 485 |
+
"sampling/importance_sampling_ratio/mean": 0.5011082530021668,
|
| 486 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 487 |
+
"sampling/sampling_logp_difference/max": 16.8177583694458,
|
| 488 |
+
"sampling/sampling_logp_difference/mean": 0.01750883022323251,
|
| 489 |
+
"step": 150,
|
| 490 |
+
"step_time": 35.45692438371479
|
| 491 |
+
},
|
| 492 |
+
{
|
| 493 |
+
"clip_ratio/high_max": 0.0,
|
| 494 |
+
"clip_ratio/high_mean": 0.0,
|
| 495 |
+
"clip_ratio/low_mean": 0.0,
|
| 496 |
+
"clip_ratio/low_min": 0.0,
|
| 497 |
+
"clip_ratio/region_mean": 0.0,
|
| 498 |
+
"completions/clipped_ratio": 0.1875,
|
| 499 |
+
"completions/max_length": 4096.0,
|
| 500 |
+
"completions/max_terminated_length": 2935.8,
|
| 501 |
+
"completions/mean_length": 1923.7125,
|
| 502 |
+
"completions/mean_terminated_length": 1428.9456909179687,
|
| 503 |
+
"completions/min_length": 506.1,
|
| 504 |
+
"completions/min_terminated_length": 506.1,
|
| 505 |
+
"entropy": 0.381333545409143,
|
| 506 |
+
"epoch": 0.2342606149341142,
|
| 507 |
+
"frac_reward_zero_std": 0.1875,
|
| 508 |
+
"grad_norm": 0.41639286279678345,
|
| 509 |
+
"learning_rate": 9.72700677434655e-07,
|
| 510 |
+
"loss": -0.0459,
|
| 511 |
+
"num_tokens": 21760313.0,
|
| 512 |
+
"reward": 0.6390625,
|
| 513 |
+
"reward_std": 0.4709364324808121,
|
| 514 |
+
"rewards/reward_correct/mean": 0.6390625,
|
| 515 |
+
"rewards/reward_correct/std": 0.4709364533424377,
|
| 516 |
+
"sampling/importance_sampling_ratio/max": 2.5141386866569517,
|
| 517 |
+
"sampling/importance_sampling_ratio/mean": 0.4655365616083145,
|
| 518 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 519 |
+
"sampling/sampling_logp_difference/max": 19.548265552520753,
|
| 520 |
+
"sampling/sampling_logp_difference/mean": 0.017716512829065324,
|
| 521 |
+
"step": 160,
|
| 522 |
+
"step_time": 36.49282261896879
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"clip_ratio/high_max": 0.0,
|
| 526 |
+
"clip_ratio/high_mean": 0.0,
|
| 527 |
+
"clip_ratio/low_mean": 0.0,
|
| 528 |
+
"clip_ratio/low_min": 0.0,
|
| 529 |
+
"clip_ratio/region_mean": 0.0,
|
| 530 |
+
"completions/clipped_ratio": 0.1875,
|
| 531 |
+
"completions/max_length": 4096.0,
|
| 532 |
+
"completions/max_terminated_length": 2799.0,
|
| 533 |
+
"completions/mean_length": 1909.315625,
|
| 534 |
+
"completions/mean_terminated_length": 1408.5566040039062,
|
| 535 |
+
"completions/min_length": 540.9,
|
| 536 |
+
"completions/min_terminated_length": 540.9,
|
| 537 |
+
"entropy": 0.3857618235051632,
|
| 538 |
+
"epoch": 0.24890190336749635,
|
| 539 |
+
"frac_reward_zero_std": 0.1875,
|
| 540 |
+
"grad_norm": 0.17534476518630981,
|
| 541 |
+
"learning_rate": 9.68130981750398e-07,
|
| 542 |
+
"loss": -0.0643,
|
| 543 |
+
"num_tokens": 23027003.0,
|
| 544 |
+
"reward": 0.609375,
|
| 545 |
+
"reward_std": 0.47989254295825956,
|
| 546 |
+
"rewards/reward_correct/mean": 0.609375,
|
| 547 |
+
"rewards/reward_correct/std": 0.47989254891872407,
|
| 548 |
+
"sampling/importance_sampling_ratio/max": 2.462973582744598,
|
| 549 |
+
"sampling/importance_sampling_ratio/mean": 0.43628491163253785,
|
| 550 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 551 |
+
"sampling/sampling_logp_difference/max": 19.400583267211914,
|
| 552 |
+
"sampling/sampling_logp_difference/mean": 0.01854742243885994,
|
| 553 |
+
"step": 170,
|
| 554 |
+
"step_time": 36.428762685880066
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"clip_ratio/high_max": 0.0,
|
| 558 |
+
"clip_ratio/high_mean": 0.0,
|
| 559 |
+
"clip_ratio/low_mean": 0.0,
|
| 560 |
+
"clip_ratio/low_min": 0.0,
|
| 561 |
+
"clip_ratio/region_mean": 0.0,
|
| 562 |
+
"completions/clipped_ratio": 0.16875,
|
| 563 |
+
"completions/max_length": 4096.0,
|
| 564 |
+
"completions/max_terminated_length": 2686.4,
|
| 565 |
+
"completions/mean_length": 1844.8015625,
|
| 566 |
+
"completions/mean_terminated_length": 1392.41220703125,
|
| 567 |
+
"completions/min_length": 535.8,
|
| 568 |
+
"completions/min_terminated_length": 535.8,
|
| 569 |
+
"entropy": 0.3859222376719117,
|
| 570 |
+
"epoch": 0.2635431918008785,
|
| 571 |
+
"frac_reward_zero_std": 0.1375,
|
| 572 |
+
"grad_norm": 0.25816696882247925,
|
| 573 |
+
"learning_rate": 9.632203014341889e-07,
|
| 574 |
+
"loss": -0.0448,
|
| 575 |
+
"num_tokens": 24250292.0,
|
| 576 |
+
"reward": 0.64375,
|
| 577 |
+
"reward_std": 0.4732906401157379,
|
| 578 |
+
"rewards/reward_correct/mean": 0.64375,
|
| 579 |
+
"rewards/reward_correct/std": 0.4732906550168991,
|
| 580 |
+
"sampling/importance_sampling_ratio/max": 2.515523314476013,
|
| 581 |
+
"sampling/importance_sampling_ratio/mean": 0.45121900737285614,
|
| 582 |
+
"sampling/importance_sampling_ratio/min": 5.720088031707649e-16,
|
| 583 |
+
"sampling/sampling_logp_difference/max": 18.85363140106201,
|
| 584 |
+
"sampling/sampling_logp_difference/mean": 0.01874276315793395,
|
| 585 |
+
"step": 180,
|
| 586 |
+
"step_time": 35.822446891106665
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"clip_ratio/high_max": 0.0,
|
| 590 |
+
"clip_ratio/high_mean": 0.0,
|
| 591 |
+
"clip_ratio/low_mean": 0.0,
|
| 592 |
+
"clip_ratio/low_min": 0.0,
|
| 593 |
+
"clip_ratio/region_mean": 0.0,
|
| 594 |
+
"completions/clipped_ratio": 0.1421875,
|
| 595 |
+
"completions/max_length": 4096.0,
|
| 596 |
+
"completions/max_terminated_length": 2912.1,
|
| 597 |
+
"completions/mean_length": 1814.25,
|
| 598 |
+
"completions/mean_terminated_length": 1438.4544067382812,
|
| 599 |
+
"completions/min_length": 485.2,
|
| 600 |
+
"completions/min_terminated_length": 485.2,
|
| 601 |
+
"entropy": 0.38771476671099664,
|
| 602 |
+
"epoch": 0.2781844802342606,
|
| 603 |
+
"frac_reward_zero_std": 0.2125,
|
| 604 |
+
"grad_norm": 0.5499361157417297,
|
| 605 |
+
"learning_rate": 9.579722134048505e-07,
|
| 606 |
+
"loss": -0.0664,
|
| 607 |
+
"num_tokens": 25455380.0,
|
| 608 |
+
"reward": 0.696875,
|
| 609 |
+
"reward_std": 0.45076643824577334,
|
| 610 |
+
"rewards/reward_correct/mean": 0.696875,
|
| 611 |
+
"rewards/reward_correct/std": 0.45076645314693453,
|
| 612 |
+
"sampling/importance_sampling_ratio/max": 2.7236300706863403,
|
| 613 |
+
"sampling/importance_sampling_ratio/mean": 0.4416166603565216,
|
| 614 |
+
"sampling/importance_sampling_ratio/min": 4.50560732981835e-14,
|
| 615 |
+
"sampling/sampling_logp_difference/max": 18.057205963134766,
|
| 616 |
+
"sampling/sampling_logp_difference/mean": 0.018269804771989584,
|
| 617 |
+
"step": 190,
|
| 618 |
+
"step_time": 35.50249644275755
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"clip_ratio/high_max": 0.0,
|
| 622 |
+
"clip_ratio/high_mean": 0.0,
|
| 623 |
+
"clip_ratio/low_mean": 0.0,
|
| 624 |
+
"clip_ratio/low_min": 0.0,
|
| 625 |
+
"clip_ratio/region_mean": 0.0,
|
| 626 |
+
"completions/clipped_ratio": 0.178125,
|
| 627 |
+
"completions/max_length": 4096.0,
|
| 628 |
+
"completions/max_terminated_length": 2725.0,
|
| 629 |
+
"completions/mean_length": 1798.475,
|
| 630 |
+
"completions/mean_terminated_length": 1306.3749267578125,
|
| 631 |
+
"completions/min_length": 467.3,
|
| 632 |
+
"completions/min_terminated_length": 467.3,
|
| 633 |
+
"entropy": 0.403516604192555,
|
| 634 |
+
"epoch": 0.29282576866764276,
|
| 635 |
+
"frac_reward_zero_std": 0.3,
|
| 636 |
+
"grad_norm": 0.24104301631450653,
|
| 637 |
+
"learning_rate": 9.523905403475602e-07,
|
| 638 |
+
"loss": -0.0377,
|
| 639 |
+
"num_tokens": 26657748.0,
|
| 640 |
+
"reward": 0.6421875,
|
| 641 |
+
"reward_std": 0.4670192450284958,
|
| 642 |
+
"rewards/reward_correct/mean": 0.6421875,
|
| 643 |
+
"rewards/reward_correct/std": 0.467019259929657,
|
| 644 |
+
"sampling/importance_sampling_ratio/max": 2.6622950792312623,
|
| 645 |
+
"sampling/importance_sampling_ratio/mean": 0.4573585122823715,
|
| 646 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 647 |
+
"sampling/sampling_logp_difference/max": 14.958099842071533,
|
| 648 |
+
"sampling/sampling_logp_difference/mean": 0.019307527132332324,
|
| 649 |
+
"step": 200,
|
| 650 |
+
"step_time": 35.87465734221041
|
| 651 |
+
},
|
| 652 |
+
{
|
| 653 |
+
"clip_ratio/high_max": 0.0,
|
| 654 |
+
"clip_ratio/high_mean": 0.0,
|
| 655 |
+
"clip_ratio/low_mean": 0.0,
|
| 656 |
+
"clip_ratio/low_min": 0.0,
|
| 657 |
+
"clip_ratio/region_mean": 0.0,
|
| 658 |
+
"completions/clipped_ratio": 0.1484375,
|
| 659 |
+
"completions/max_length": 4096.0,
|
| 660 |
+
"completions/max_terminated_length": 2780.8,
|
| 661 |
+
"completions/mean_length": 1691.4671875,
|
| 662 |
+
"completions/mean_terminated_length": 1279.5517211914062,
|
| 663 |
+
"completions/min_length": 462.5,
|
| 664 |
+
"completions/min_terminated_length": 462.5,
|
| 665 |
+
"entropy": 0.4017993725836277,
|
| 666 |
+
"epoch": 0.3074670571010249,
|
| 667 |
+
"frac_reward_zero_std": 0.2125,
|
| 668 |
+
"grad_norm": 0.43709596991539,
|
| 669 |
+
"learning_rate": 9.464793479294231e-07,
|
| 670 |
+
"loss": -0.0476,
|
| 671 |
+
"num_tokens": 27786791.0,
|
| 672 |
+
"reward": 0.6515625,
|
| 673 |
+
"reward_std": 0.4750798672437668,
|
| 674 |
+
"rewards/reward_correct/mean": 0.6515625,
|
| 675 |
+
"rewards/reward_correct/std": 0.4750798732042313,
|
| 676 |
+
"sampling/importance_sampling_ratio/max": 2.6835455656051637,
|
| 677 |
+
"sampling/importance_sampling_ratio/mean": 0.5069015234708786,
|
| 678 |
+
"sampling/importance_sampling_ratio/min": 5.857610837350924e-13,
|
| 679 |
+
"sampling/sampling_logp_difference/max": 14.076149034500123,
|
| 680 |
+
"sampling/sampling_logp_difference/mean": 0.018997256830334663,
|
| 681 |
+
"step": 210,
|
| 682 |
+
"step_time": 34.91050934363157
|
| 683 |
+
},
|
| 684 |
+
{
|
| 685 |
+
"clip_ratio/high_max": 0.0,
|
| 686 |
+
"clip_ratio/high_mean": 0.0,
|
| 687 |
+
"clip_ratio/low_mean": 0.0,
|
| 688 |
+
"clip_ratio/low_min": 0.0,
|
| 689 |
+
"clip_ratio/region_mean": 0.0,
|
| 690 |
+
"completions/clipped_ratio": 0.1140625,
|
| 691 |
+
"completions/max_length": 4096.0,
|
| 692 |
+
"completions/max_terminated_length": 2781.9,
|
| 693 |
+
"completions/mean_length": 1601.453125,
|
| 694 |
+
"completions/mean_terminated_length": 1284.7239868164063,
|
| 695 |
+
"completions/min_length": 455.6,
|
| 696 |
+
"completions/min_terminated_length": 455.6,
|
| 697 |
+
"entropy": 0.35529792681336403,
|
| 698 |
+
"epoch": 0.32210834553440704,
|
| 699 |
+
"frac_reward_zero_std": 0.1875,
|
| 700 |
+
"grad_norm": 0.47860920429229736,
|
| 701 |
+
"learning_rate": 9.402429418380553e-07,
|
| 702 |
+
"loss": -0.0524,
|
| 703 |
+
"num_tokens": 28853673.0,
|
| 704 |
+
"reward": 0.6625,
|
| 705 |
+
"reward_std": 0.4586958348751068,
|
| 706 |
+
"rewards/reward_correct/mean": 0.6625,
|
| 707 |
+
"rewards/reward_correct/std": 0.45869584381580353,
|
| 708 |
+
"sampling/importance_sampling_ratio/max": 2.5586405754089356,
|
| 709 |
+
"sampling/importance_sampling_ratio/mean": 0.5027410387992859,
|
| 710 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 711 |
+
"sampling/sampling_logp_difference/max": 16.85229778289795,
|
| 712 |
+
"sampling/sampling_logp_difference/mean": 0.016478382982313633,
|
| 713 |
+
"step": 220,
|
| 714 |
+
"step_time": 34.23139138985425
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"clip_ratio/high_max": 0.0,
|
| 718 |
+
"clip_ratio/high_mean": 0.0,
|
| 719 |
+
"clip_ratio/low_mean": 0.0,
|
| 720 |
+
"clip_ratio/low_min": 0.0,
|
| 721 |
+
"clip_ratio/region_mean": 0.0,
|
| 722 |
+
"completions/clipped_ratio": 0.115625,
|
| 723 |
+
"completions/max_length": 4096.0,
|
| 724 |
+
"completions/max_terminated_length": 2731.4,
|
| 725 |
+
"completions/mean_length": 1624.2125,
|
| 726 |
+
"completions/mean_terminated_length": 1311.4201293945312,
|
| 727 |
+
"completions/min_length": 476.9,
|
| 728 |
+
"completions/min_terminated_length": 476.9,
|
| 729 |
+
"entropy": 0.3669202409684658,
|
| 730 |
+
"epoch": 0.3367496339677892,
|
| 731 |
+
"frac_reward_zero_std": 0.3,
|
| 732 |
+
"grad_norm": 0.24832919239997864,
|
| 733 |
+
"learning_rate": 9.336858646453414e-07,
|
| 734 |
+
"loss": -0.0322,
|
| 735 |
+
"num_tokens": 29936905.0,
|
| 736 |
+
"reward": 0.6765625,
|
| 737 |
+
"reward_std": 0.4523905426263809,
|
| 738 |
+
"rewards/reward_correct/mean": 0.6765625,
|
| 739 |
+
"rewards/reward_correct/std": 0.4523905456066132,
|
| 740 |
+
"sampling/importance_sampling_ratio/max": 2.542170763015747,
|
| 741 |
+
"sampling/importance_sampling_ratio/mean": 0.4556583046913147,
|
| 742 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 743 |
+
"sampling/sampling_logp_difference/max": 12.38556728363037,
|
| 744 |
+
"sampling/sampling_logp_difference/mean": 0.016565939877182245,
|
| 745 |
+
"step": 230,
|
| 746 |
+
"step_time": 34.123054202459755
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"clip_ratio/high_max": 0.0,
|
| 750 |
+
"clip_ratio/high_mean": 0.0,
|
| 751 |
+
"clip_ratio/low_mean": 0.0,
|
| 752 |
+
"clip_ratio/low_min": 0.0,
|
| 753 |
+
"clip_ratio/region_mean": 0.0,
|
| 754 |
+
"completions/clipped_ratio": 0.1015625,
|
| 755 |
+
"completions/max_length": 4096.0,
|
| 756 |
+
"completions/max_terminated_length": 2746.9,
|
| 757 |
+
"completions/mean_length": 1570.1953125,
|
| 758 |
+
"completions/mean_terminated_length": 1285.9392578125,
|
| 759 |
+
"completions/min_length": 418.9,
|
| 760 |
+
"completions/min_terminated_length": 418.9,
|
| 761 |
+
"entropy": 0.3694750224240124,
|
| 762 |
+
"epoch": 0.3513909224011713,
|
| 763 |
+
"frac_reward_zero_std": 0.2625,
|
| 764 |
+
"grad_norm": 0.257592111825943,
|
| 765 |
+
"learning_rate": 9.268128924986423e-07,
|
| 766 |
+
"loss": -0.0237,
|
| 767 |
+
"num_tokens": 30982974.0,
|
| 768 |
+
"reward": 0.7078125,
|
| 769 |
+
"reward_std": 0.44998968243598936,
|
| 770 |
+
"rewards/reward_correct/mean": 0.7078125,
|
| 771 |
+
"rewards/reward_correct/std": 0.44998968839645387,
|
| 772 |
+
"sampling/importance_sampling_ratio/max": 2.7356862783432008,
|
| 773 |
+
"sampling/importance_sampling_ratio/mean": 0.5219734072685241,
|
| 774 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 775 |
+
"sampling/sampling_logp_difference/max": 17.76656379699707,
|
| 776 |
+
"sampling/sampling_logp_difference/mean": 0.01709262877702713,
|
| 777 |
+
"step": 240,
|
| 778 |
+
"step_time": 33.79627364780754
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"clip_ratio/high_max": 0.0,
|
| 782 |
+
"clip_ratio/high_mean": 0.0,
|
| 783 |
+
"clip_ratio/low_mean": 0.0,
|
| 784 |
+
"clip_ratio/low_min": 0.0,
|
| 785 |
+
"clip_ratio/region_mean": 0.0,
|
| 786 |
+
"completions/clipped_ratio": 0.1515625,
|
| 787 |
+
"completions/max_length": 4096.0,
|
| 788 |
+
"completions/max_terminated_length": 2862.5,
|
| 789 |
+
"completions/mean_length": 1752.46875,
|
| 790 |
+
"completions/mean_terminated_length": 1339.9485717773437,
|
| 791 |
+
"completions/min_length": 511.6,
|
| 792 |
+
"completions/min_terminated_length": 511.6,
|
| 793 |
+
"entropy": 0.3790203006006777,
|
| 794 |
+
"epoch": 0.36603221083455345,
|
| 795 |
+
"frac_reward_zero_std": 0.1875,
|
| 796 |
+
"grad_norm": 0.2643333077430725,
|
| 797 |
+
"learning_rate": 9.196290316418711e-07,
|
| 798 |
+
"loss": -0.0167,
|
| 799 |
+
"num_tokens": 32148106.0,
|
| 800 |
+
"reward": 0.69375,
|
| 801 |
+
"reward_std": 0.4524209886789322,
|
| 802 |
+
"rewards/reward_correct/mean": 0.69375,
|
| 803 |
+
"rewards/reward_correct/std": 0.45242099165916444,
|
| 804 |
+
"sampling/importance_sampling_ratio/max": 2.5667138576507567,
|
| 805 |
+
"sampling/importance_sampling_ratio/mean": 0.46120509803295134,
|
| 806 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 807 |
+
"sampling/sampling_logp_difference/max": 17.062857961654665,
|
| 808 |
+
"sampling/sampling_logp_difference/mean": 0.017286003567278385,
|
| 809 |
+
"step": 250,
|
| 810 |
+
"step_time": 35.38917248025537
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"clip_ratio/high_max": 0.0,
|
| 814 |
+
"clip_ratio/high_mean": 0.0,
|
| 815 |
+
"clip_ratio/low_mean": 0.0,
|
| 816 |
+
"clip_ratio/low_min": 0.0,
|
| 817 |
+
"clip_ratio/region_mean": 0.0,
|
| 818 |
+
"completions/clipped_ratio": 0.14375,
|
| 819 |
+
"completions/max_length": 4096.0,
|
| 820 |
+
"completions/max_terminated_length": 2649.3,
|
| 821 |
+
"completions/mean_length": 1679.1015625,
|
| 822 |
+
"completions/mean_terminated_length": 1278.3498779296874,
|
| 823 |
+
"completions/min_length": 455.0,
|
| 824 |
+
"completions/min_terminated_length": 455.0,
|
| 825 |
+
"entropy": 0.3729710878804326,
|
| 826 |
+
"epoch": 0.3806734992679356,
|
| 827 |
+
"frac_reward_zero_std": 0.25,
|
| 828 |
+
"grad_norm": 0.3721376955509186,
|
| 829 |
+
"learning_rate": 9.121395147689656e-07,
|
| 830 |
+
"loss": -0.0324,
|
| 831 |
+
"num_tokens": 33263731.0,
|
| 832 |
+
"reward": 0.709375,
|
| 833 |
+
"reward_std": 0.44895724058151243,
|
| 834 |
+
"rewards/reward_correct/mean": 0.709375,
|
| 835 |
+
"rewards/reward_correct/std": 0.4489572554826736,
|
| 836 |
+
"sampling/importance_sampling_ratio/max": 2.6168325543403625,
|
| 837 |
+
"sampling/importance_sampling_ratio/mean": 0.4866025298833847,
|
| 838 |
+
"sampling/importance_sampling_ratio/min": 4.2161274329675353e-20,
|
| 839 |
+
"sampling/sampling_logp_difference/max": 17.691544580459595,
|
| 840 |
+
"sampling/sampling_logp_difference/mean": 0.017986807506531477,
|
| 841 |
+
"step": 260,
|
| 842 |
+
"step_time": 34.72450201679021
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"clip_ratio/high_max": 0.0,
|
| 846 |
+
"clip_ratio/high_mean": 0.0,
|
| 847 |
+
"clip_ratio/low_mean": 0.0,
|
| 848 |
+
"clip_ratio/low_min": 0.0,
|
| 849 |
+
"clip_ratio/region_mean": 0.0,
|
| 850 |
+
"completions/clipped_ratio": 0.1640625,
|
| 851 |
+
"completions/max_length": 4096.0,
|
| 852 |
+
"completions/max_terminated_length": 2785.0,
|
| 853 |
+
"completions/mean_length": 1751.3421875,
|
| 854 |
+
"completions/mean_terminated_length": 1291.7200805664063,
|
| 855 |
+
"completions/min_length": 444.2,
|
| 856 |
+
"completions/min_terminated_length": 444.2,
|
| 857 |
+
"entropy": 0.38200761983171105,
|
| 858 |
+
"epoch": 0.3953147877013177,
|
| 859 |
+
"frac_reward_zero_std": 0.2375,
|
| 860 |
+
"grad_norm": 0.4049576222896576,
|
| 861 |
+
"learning_rate": 9.043497972124159e-07,
|
| 862 |
+
"loss": -0.0661,
|
| 863 |
+
"num_tokens": 34428686.0,
|
| 864 |
+
"reward": 0.60625,
|
| 865 |
+
"reward_std": 0.4841457366943359,
|
| 866 |
+
"rewards/reward_correct/mean": 0.60625,
|
| 867 |
+
"rewards/reward_correct/std": 0.4841457486152649,
|
| 868 |
+
"sampling/importance_sampling_ratio/max": 2.7381280183792116,
|
| 869 |
+
"sampling/importance_sampling_ratio/mean": 0.46350172758102415,
|
| 870 |
+
"sampling/importance_sampling_ratio/min": 1.7057631492547668e-22,
|
| 871 |
+
"sampling/sampling_logp_difference/max": 17.866797351837157,
|
| 872 |
+
"sampling/sampling_logp_difference/mean": 0.018646900169551374,
|
| 873 |
+
"step": 270,
|
| 874 |
+
"step_time": 35.4160362392664
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"clip_ratio/high_max": 0.0,
|
| 878 |
+
"clip_ratio/high_mean": 0.0,
|
| 879 |
+
"clip_ratio/low_mean": 0.0,
|
| 880 |
+
"clip_ratio/low_min": 0.0,
|
| 881 |
+
"clip_ratio/region_mean": 0.0,
|
| 882 |
+
"completions/clipped_ratio": 0.115625,
|
| 883 |
+
"completions/max_length": 4096.0,
|
| 884 |
+
"completions/max_terminated_length": 2516.1,
|
| 885 |
+
"completions/mean_length": 1570.7015625,
|
| 886 |
+
"completions/mean_terminated_length": 1243.3549255371095,
|
| 887 |
+
"completions/min_length": 434.5,
|
| 888 |
+
"completions/min_terminated_length": 434.5,
|
| 889 |
+
"entropy": 0.36390284188091754,
|
| 890 |
+
"epoch": 0.40995607613469986,
|
| 891 |
+
"frac_reward_zero_std": 0.2625,
|
| 892 |
+
"grad_norm": 0.3584902286529541,
|
| 893 |
+
"learning_rate": 8.962655529696235e-07,
|
| 894 |
+
"loss": -0.0418,
|
| 895 |
+
"num_tokens": 35477679.0,
|
| 896 |
+
"reward": 0.6875,
|
| 897 |
+
"reward_std": 0.4531699061393738,
|
| 898 |
+
"rewards/reward_correct/mean": 0.6875,
|
| 899 |
+
"rewards/reward_correct/std": 0.4531699150800705,
|
| 900 |
+
"sampling/importance_sampling_ratio/max": 2.442759966850281,
|
| 901 |
+
"sampling/importance_sampling_ratio/mean": 0.5131819605827331,
|
| 902 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 903 |
+
"sampling/sampling_logp_difference/max": 15.253278446197509,
|
| 904 |
+
"sampling/sampling_logp_difference/mean": 0.016866661701351406,
|
| 905 |
+
"step": 280,
|
| 906 |
+
"step_time": 33.91963651422411
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"clip_ratio/high_max": 0.0,
|
| 910 |
+
"clip_ratio/high_mean": 0.0,
|
| 911 |
+
"clip_ratio/low_mean": 0.0,
|
| 912 |
+
"clip_ratio/low_min": 0.0,
|
| 913 |
+
"clip_ratio/region_mean": 0.0,
|
| 914 |
+
"completions/clipped_ratio": 0.125,
|
| 915 |
+
"completions/max_length": 4096.0,
|
| 916 |
+
"completions/max_terminated_length": 2782.3,
|
| 917 |
+
"completions/mean_length": 1638.540625,
|
| 918 |
+
"completions/mean_terminated_length": 1286.608056640625,
|
| 919 |
+
"completions/min_length": 470.6,
|
| 920 |
+
"completions/min_terminated_length": 470.6,
|
| 921 |
+
"entropy": 0.3610599435865879,
|
| 922 |
+
"epoch": 0.424597364568082,
|
| 923 |
+
"frac_reward_zero_std": 0.2625,
|
| 924 |
+
"grad_norm": 0.7691017985343933,
|
| 925 |
+
"learning_rate": 8.878926705699856e-07,
|
| 926 |
+
"loss": -0.0281,
|
| 927 |
+
"num_tokens": 36571065.0,
|
| 928 |
+
"reward": 0.6671875,
|
| 929 |
+
"reward_std": 0.4638109654188156,
|
| 930 |
+
"rewards/reward_correct/mean": 0.6671875,
|
| 931 |
+
"rewards/reward_correct/std": 0.46381097137928007,
|
| 932 |
+
"sampling/importance_sampling_ratio/max": 2.665994715690613,
|
| 933 |
+
"sampling/importance_sampling_ratio/mean": 0.5255463659763336,
|
| 934 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 935 |
+
"sampling/sampling_logp_difference/max": 18.80701427459717,
|
| 936 |
+
"sampling/sampling_logp_difference/mean": 0.01755312941968441,
|
| 937 |
+
"step": 290,
|
| 938 |
+
"step_time": 34.501018999516965
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"clip_ratio/high_max": 0.0,
|
| 942 |
+
"clip_ratio/high_mean": 0.0,
|
| 943 |
+
"clip_ratio/low_mean": 0.0,
|
| 944 |
+
"clip_ratio/low_min": 0.0,
|
| 945 |
+
"clip_ratio/region_mean": 0.0,
|
| 946 |
+
"completions/clipped_ratio": 0.0828125,
|
| 947 |
+
"completions/max_length": 4096.0,
|
| 948 |
+
"completions/max_terminated_length": 2752.6,
|
| 949 |
+
"completions/mean_length": 1450.7203125,
|
| 950 |
+
"completions/mean_terminated_length": 1214.2732421875,
|
| 951 |
+
"completions/min_length": 393.4,
|
| 952 |
+
"completions/min_terminated_length": 393.4,
|
| 953 |
+
"entropy": 0.3570564230903983,
|
| 954 |
+
"epoch": 0.43923865300146414,
|
| 955 |
+
"frac_reward_zero_std": 0.2875,
|
| 956 |
+
"grad_norm": 0.3508993685245514,
|
| 957 |
+
"learning_rate": 8.79237248785715e-07,
|
| 958 |
+
"loss": -0.0214,
|
| 959 |
+
"num_tokens": 37543510.0,
|
| 960 |
+
"reward": 0.7234375,
|
| 961 |
+
"reward_std": 0.4414018362760544,
|
| 962 |
+
"rewards/reward_correct/mean": 0.7234375,
|
| 963 |
+
"rewards/reward_correct/std": 0.4414018452167511,
|
| 964 |
+
"sampling/importance_sampling_ratio/max": 2.632966458797455,
|
| 965 |
+
"sampling/importance_sampling_ratio/mean": 0.5690318822860718,
|
| 966 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 967 |
+
"sampling/sampling_logp_difference/max": 15.237814354896546,
|
| 968 |
+
"sampling/sampling_logp_difference/mean": 0.016272421553730966,
|
| 969 |
+
"step": 300,
|
| 970 |
+
"step_time": 32.97251550052315
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"clip_ratio/high_max": 0.0,
|
| 974 |
+
"clip_ratio/high_mean": 0.0,
|
| 975 |
+
"clip_ratio/low_mean": 0.0,
|
| 976 |
+
"clip_ratio/low_min": 0.0,
|
| 977 |
+
"clip_ratio/region_mean": 0.0,
|
| 978 |
+
"completions/clipped_ratio": 0.11875,
|
| 979 |
+
"completions/max_length": 4096.0,
|
| 980 |
+
"completions/max_terminated_length": 2646.6,
|
| 981 |
+
"completions/mean_length": 1567.734375,
|
| 982 |
+
"completions/mean_terminated_length": 1226.1940612792969,
|
| 983 |
+
"completions/min_length": 445.7,
|
| 984 |
+
"completions/min_terminated_length": 445.7,
|
| 985 |
+
"entropy": 0.3664493842050433,
|
| 986 |
+
"epoch": 0.4538799414348463,
|
| 987 |
+
"frac_reward_zero_std": 0.175,
|
| 988 |
+
"grad_norm": 0.3325318694114685,
|
| 989 |
+
"learning_rate": 8.703055921895199e-07,
|
| 990 |
+
"loss": -0.0714,
|
| 991 |
+
"num_tokens": 38588412.0,
|
| 992 |
+
"reward": 0.671875,
|
| 993 |
+
"reward_std": 0.4696904391050339,
|
| 994 |
+
"rewards/reward_correct/mean": 0.671875,
|
| 995 |
+
"rewards/reward_correct/std": 0.46969045102596285,
|
| 996 |
+
"sampling/importance_sampling_ratio/max": 2.6194750547409056,
|
| 997 |
+
"sampling/importance_sampling_ratio/mean": 0.5207919716835022,
|
| 998 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 999 |
+
"sampling/sampling_logp_difference/max": 16.138701295852663,
|
| 1000 |
+
"sampling/sampling_logp_difference/mean": 0.017311585228890182,
|
| 1001 |
+
"step": 310,
|
| 1002 |
+
"step_time": 33.91836810335517
|
| 1003 |
+
},
|
| 1004 |
+
{
|
| 1005 |
+
"clip_ratio/high_max": 0.0,
|
| 1006 |
+
"clip_ratio/high_mean": 0.0,
|
| 1007 |
+
"clip_ratio/low_mean": 0.0,
|
| 1008 |
+
"clip_ratio/low_min": 0.0,
|
| 1009 |
+
"clip_ratio/region_mean": 0.0,
|
| 1010 |
+
"completions/clipped_ratio": 0.15625,
|
| 1011 |
+
"completions/max_length": 4096.0,
|
| 1012 |
+
"completions/max_terminated_length": 2812.6,
|
| 1013 |
+
"completions/mean_length": 1737.5203125,
|
| 1014 |
+
"completions/mean_terminated_length": 1304.576318359375,
|
| 1015 |
+
"completions/min_length": 466.3,
|
| 1016 |
+
"completions/min_terminated_length": 466.3,
|
| 1017 |
+
"entropy": 0.36455219322815535,
|
| 1018 |
+
"epoch": 0.4685212298682284,
|
| 1019 |
+
"frac_reward_zero_std": 0.2625,
|
| 1020 |
+
"grad_norm": 0.29537466168403625,
|
| 1021 |
+
"learning_rate": 8.611042065623803e-07,
|
| 1022 |
+
"loss": -0.0326,
|
| 1023 |
+
"num_tokens": 39742889.0,
|
| 1024 |
+
"reward": 0.653125,
|
| 1025 |
+
"reward_std": 0.4676573634147644,
|
| 1026 |
+
"rewards/reward_correct/mean": 0.653125,
|
| 1027 |
+
"rewards/reward_correct/std": 0.4676573842763901,
|
| 1028 |
+
"sampling/importance_sampling_ratio/max": 2.652678394317627,
|
| 1029 |
+
"sampling/importance_sampling_ratio/mean": 0.4831114441156387,
|
| 1030 |
+
"sampling/importance_sampling_ratio/min": 0.00019024546490982176,
|
| 1031 |
+
"sampling/sampling_logp_difference/max": 19.12404477596283,
|
| 1032 |
+
"sampling/sampling_logp_difference/mean": 0.01720849359408021,
|
| 1033 |
+
"step": 320,
|
| 1034 |
+
"step_time": 35.216385383345184
|
| 1035 |
+
},
|
| 1036 |
+
{
|
| 1037 |
+
"clip_ratio/high_max": 0.0,
|
| 1038 |
+
"clip_ratio/high_mean": 0.0,
|
| 1039 |
+
"clip_ratio/low_mean": 0.0,
|
| 1040 |
+
"clip_ratio/low_min": 0.0,
|
| 1041 |
+
"clip_ratio/region_mean": 0.0,
|
| 1042 |
+
"completions/clipped_ratio": 0.1375,
|
| 1043 |
+
"completions/max_length": 4096.0,
|
| 1044 |
+
"completions/max_terminated_length": 2757.1,
|
| 1045 |
+
"completions/mean_length": 1635.178125,
|
| 1046 |
+
"completions/mean_terminated_length": 1247.730126953125,
|
| 1047 |
+
"completions/min_length": 447.5,
|
| 1048 |
+
"completions/min_terminated_length": 447.5,
|
| 1049 |
+
"entropy": 0.3698131384328008,
|
| 1050 |
+
"epoch": 0.48316251830161056,
|
| 1051 |
+
"frac_reward_zero_std": 0.275,
|
| 1052 |
+
"grad_norm": 0.4860650897026062,
|
| 1053 |
+
"learning_rate": 8.516397941547642e-07,
|
| 1054 |
+
"loss": -0.0379,
|
| 1055 |
+
"num_tokens": 40831555.0,
|
| 1056 |
+
"reward": 0.64375,
|
| 1057 |
+
"reward_std": 0.4675807595252991,
|
| 1058 |
+
"rewards/reward_correct/mean": 0.64375,
|
| 1059 |
+
"rewards/reward_correct/std": 0.4675807744264603,
|
| 1060 |
+
"sampling/importance_sampling_ratio/max": 2.4814563751220704,
|
| 1061 |
+
"sampling/importance_sampling_ratio/mean": 0.5446478247642517,
|
| 1062 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1063 |
+
"sampling/sampling_logp_difference/max": 17.6794762134552,
|
| 1064 |
+
"sampling/sampling_logp_difference/mean": 0.017301212623715402,
|
| 1065 |
+
"step": 330,
|
| 1066 |
+
"step_time": 34.54350109342486
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"clip_ratio/high_max": 0.0,
|
| 1070 |
+
"clip_ratio/high_mean": 0.0,
|
| 1071 |
+
"clip_ratio/low_mean": 0.0,
|
| 1072 |
+
"clip_ratio/low_min": 0.0,
|
| 1073 |
+
"clip_ratio/region_mean": 0.0,
|
| 1074 |
+
"completions/clipped_ratio": 0.1296875,
|
| 1075 |
+
"completions/max_length": 4096.0,
|
| 1076 |
+
"completions/max_terminated_length": 2816.2,
|
| 1077 |
+
"completions/mean_length": 1657.74375,
|
| 1078 |
+
"completions/mean_terminated_length": 1297.5836242675782,
|
| 1079 |
+
"completions/min_length": 437.8,
|
| 1080 |
+
"completions/min_terminated_length": 437.8,
|
| 1081 |
+
"entropy": 0.36472494443878534,
|
| 1082 |
+
"epoch": 0.4978038067349927,
|
| 1083 |
+
"frac_reward_zero_std": 0.2875,
|
| 1084 |
+
"grad_norm": 0.35601162910461426,
|
| 1085 |
+
"learning_rate": 8.419192488047369e-07,
|
| 1086 |
+
"loss": -0.0519,
|
| 1087 |
+
"num_tokens": 41934135.0,
|
| 1088 |
+
"reward": 0.7125,
|
| 1089 |
+
"reward_std": 0.43097937405109404,
|
| 1090 |
+
"rewards/reward_correct/mean": 0.7125,
|
| 1091 |
+
"rewards/reward_correct/std": 0.43097938448190687,
|
| 1092 |
+
"sampling/importance_sampling_ratio/max": 2.605836796760559,
|
| 1093 |
+
"sampling/importance_sampling_ratio/mean": 0.483393257856369,
|
| 1094 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1095 |
+
"sampling/sampling_logp_difference/max": 17.06987910270691,
|
| 1096 |
+
"sampling/sampling_logp_difference/mean": 0.017136862501502037,
|
| 1097 |
+
"step": 340,
|
| 1098 |
+
"step_time": 34.51869362480939
|
| 1099 |
+
},
|
| 1100 |
+
{
|
| 1101 |
+
"clip_ratio/high_max": 0.0,
|
| 1102 |
+
"clip_ratio/high_mean": 0.0,
|
| 1103 |
+
"clip_ratio/low_mean": 0.0,
|
| 1104 |
+
"clip_ratio/low_min": 0.0,
|
| 1105 |
+
"clip_ratio/region_mean": 0.0,
|
| 1106 |
+
"completions/clipped_ratio": 0.1453125,
|
| 1107 |
+
"completions/max_length": 4096.0,
|
| 1108 |
+
"completions/max_terminated_length": 2704.6,
|
| 1109 |
+
"completions/mean_length": 1647.3359375,
|
| 1110 |
+
"completions/mean_terminated_length": 1231.4567504882812,
|
| 1111 |
+
"completions/min_length": 438.2,
|
| 1112 |
+
"completions/min_terminated_length": 438.2,
|
| 1113 |
+
"entropy": 0.356427114829421,
|
| 1114 |
+
"epoch": 0.5124450951683748,
|
| 1115 |
+
"frac_reward_zero_std": 0.3125,
|
| 1116 |
+
"grad_norm": 0.27125442028045654,
|
| 1117 |
+
"learning_rate": 8.319496509165178e-07,
|
| 1118 |
+
"loss": -0.0427,
|
| 1119 |
+
"num_tokens": 43034726.0,
|
| 1120 |
+
"reward": 0.709375,
|
| 1121 |
+
"reward_std": 0.44495919346809387,
|
| 1122 |
+
"rewards/reward_correct/mean": 0.709375,
|
| 1123 |
+
"rewards/reward_correct/std": 0.4449592143297195,
|
| 1124 |
+
"sampling/importance_sampling_ratio/max": 2.544973075389862,
|
| 1125 |
+
"sampling/importance_sampling_ratio/mean": 0.5312303602695465,
|
| 1126 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1127 |
+
"sampling/sampling_logp_difference/max": 16.840685081481933,
|
| 1128 |
+
"sampling/sampling_logp_difference/mean": 0.016760549787431956,
|
| 1129 |
+
"step": 350,
|
| 1130 |
+
"step_time": 34.627660664729774
|
| 1131 |
+
},
|
| 1132 |
+
{
|
| 1133 |
+
"clip_ratio/high_max": 0.0,
|
| 1134 |
+
"clip_ratio/high_mean": 0.0,
|
| 1135 |
+
"clip_ratio/low_mean": 0.0,
|
| 1136 |
+
"clip_ratio/low_min": 0.0,
|
| 1137 |
+
"clip_ratio/region_mean": 0.0,
|
| 1138 |
+
"completions/clipped_ratio": 0.2046875,
|
| 1139 |
+
"completions/max_length": 4096.0,
|
| 1140 |
+
"completions/max_terminated_length": 2759.0,
|
| 1141 |
+
"completions/mean_length": 1936.9046875,
|
| 1142 |
+
"completions/mean_terminated_length": 1389.5431640625,
|
| 1143 |
+
"completions/min_length": 513.5,
|
| 1144 |
+
"completions/min_terminated_length": 513.5,
|
| 1145 |
+
"entropy": 0.3591486904770136,
|
| 1146 |
+
"epoch": 0.527086383601757,
|
| 1147 |
+
"frac_reward_zero_std": 0.1875,
|
| 1148 |
+
"grad_norm": 0.47527405619621277,
|
| 1149 |
+
"learning_rate": 8.217382623031446e-07,
|
| 1150 |
+
"loss": -0.0398,
|
| 1151 |
+
"num_tokens": 44324201.0,
|
| 1152 |
+
"reward": 0.6375,
|
| 1153 |
+
"reward_std": 0.4755891412496567,
|
| 1154 |
+
"rewards/reward_correct/mean": 0.6375,
|
| 1155 |
+
"rewards/reward_correct/std": 0.4755891591310501,
|
| 1156 |
+
"sampling/importance_sampling_ratio/max": 2.5801383018493653,
|
| 1157 |
+
"sampling/importance_sampling_ratio/mean": 0.4459040939807892,
|
| 1158 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1159 |
+
"sampling/sampling_logp_difference/max": 17.53456029891968,
|
| 1160 |
+
"sampling/sampling_logp_difference/mean": 0.01709551801905036,
|
| 1161 |
+
"step": 360,
|
| 1162 |
+
"step_time": 36.787907522358
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"clip_ratio/high_max": 0.0,
|
| 1166 |
+
"clip_ratio/high_mean": 0.0,
|
| 1167 |
+
"clip_ratio/low_mean": 0.0,
|
| 1168 |
+
"clip_ratio/low_min": 0.0,
|
| 1169 |
+
"clip_ratio/region_mean": 0.0,
|
| 1170 |
+
"completions/clipped_ratio": 0.146875,
|
| 1171 |
+
"completions/max_length": 4096.0,
|
| 1172 |
+
"completions/max_terminated_length": 2759.7,
|
| 1173 |
+
"completions/mean_length": 1691.0171875,
|
| 1174 |
+
"completions/mean_terminated_length": 1281.7273559570312,
|
| 1175 |
+
"completions/min_length": 458.1,
|
| 1176 |
+
"completions/min_terminated_length": 458.1,
|
| 1177 |
+
"entropy": 0.35544084664434195,
|
| 1178 |
+
"epoch": 0.541727672035139,
|
| 1179 |
+
"frac_reward_zero_std": 0.225,
|
| 1180 |
+
"grad_norm": 0.40646737813949585,
|
| 1181 |
+
"learning_rate": 8.112925208969994e-07,
|
| 1182 |
+
"loss": -0.0476,
|
| 1183 |
+
"num_tokens": 45452780.0,
|
| 1184 |
+
"reward": 0.6625,
|
| 1185 |
+
"reward_std": 0.4693898320198059,
|
| 1186 |
+
"rewards/reward_correct/mean": 0.6625,
|
| 1187 |
+
"rewards/reward_correct/std": 0.46938984394073485,
|
| 1188 |
+
"sampling/importance_sampling_ratio/max": 2.414482605457306,
|
| 1189 |
+
"sampling/importance_sampling_ratio/mean": 0.4706720381975174,
|
| 1190 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1191 |
+
"sampling/sampling_logp_difference/max": 16.63887777328491,
|
| 1192 |
+
"sampling/sampling_logp_difference/mean": 0.016511439718306063,
|
| 1193 |
+
"step": 370,
|
| 1194 |
+
"step_time": 35.02858482897282
|
| 1195 |
+
},
|
| 1196 |
+
{
|
| 1197 |
+
"clip_ratio/high_max": 0.0,
|
| 1198 |
+
"clip_ratio/high_mean": 0.0,
|
| 1199 |
+
"clip_ratio/low_mean": 0.0,
|
| 1200 |
+
"clip_ratio/low_min": 0.0,
|
| 1201 |
+
"clip_ratio/region_mean": 0.0,
|
| 1202 |
+
"completions/clipped_ratio": 0.1640625,
|
| 1203 |
+
"completions/max_length": 4096.0,
|
| 1204 |
+
"completions/max_terminated_length": 2776.2,
|
| 1205 |
+
"completions/mean_length": 1821.15625,
|
| 1206 |
+
"completions/mean_terminated_length": 1381.08876953125,
|
| 1207 |
+
"completions/min_length": 544.9,
|
| 1208 |
+
"completions/min_terminated_length": 544.9,
|
| 1209 |
+
"entropy": 0.3640032488852739,
|
| 1210 |
+
"epoch": 0.5563689604685212,
|
| 1211 |
+
"frac_reward_zero_std": 0.2625,
|
| 1212 |
+
"grad_norm": 0.4008844196796417,
|
| 1213 |
+
"learning_rate": 8.006200353320491e-07,
|
| 1214 |
+
"loss": -0.0189,
|
| 1215 |
+
"num_tokens": 46661216.0,
|
| 1216 |
+
"reward": 0.703125,
|
| 1217 |
+
"reward_std": 0.44935562610626223,
|
| 1218 |
+
"rewards/reward_correct/mean": 0.703125,
|
| 1219 |
+
"rewards/reward_correct/std": 0.44935562908649446,
|
| 1220 |
+
"sampling/importance_sampling_ratio/max": 2.6022926807403564,
|
| 1221 |
+
"sampling/importance_sampling_ratio/mean": 0.463966104388237,
|
| 1222 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1223 |
+
"sampling/sampling_logp_difference/max": 21.094895362854004,
|
| 1224 |
+
"sampling/sampling_logp_difference/mean": 0.016442943084985017,
|
| 1225 |
+
"step": 380,
|
| 1226 |
+
"step_time": 35.73085868619383
|
| 1227 |
+
},
|
| 1228 |
+
{
|
| 1229 |
+
"clip_ratio/high_max": 0.0,
|
| 1230 |
+
"clip_ratio/high_mean": 0.0,
|
| 1231 |
+
"clip_ratio/low_mean": 0.0,
|
| 1232 |
+
"clip_ratio/low_min": 0.0,
|
| 1233 |
+
"clip_ratio/region_mean": 0.0,
|
| 1234 |
+
"completions/clipped_ratio": 0.16875,
|
| 1235 |
+
"completions/max_length": 4096.0,
|
| 1236 |
+
"completions/max_terminated_length": 2768.1,
|
| 1237 |
+
"completions/mean_length": 1857.7375,
|
| 1238 |
+
"completions/mean_terminated_length": 1399.4028930664062,
|
| 1239 |
+
"completions/min_length": 489.4,
|
| 1240 |
+
"completions/min_terminated_length": 489.4,
|
| 1241 |
+
"entropy": 0.35788101237267256,
|
| 1242 |
+
"epoch": 0.5710102489019033,
|
| 1243 |
+
"frac_reward_zero_std": 0.25,
|
| 1244 |
+
"grad_norm": 0.23576705157756805,
|
| 1245 |
+
"learning_rate": 7.897285794017496e-07,
|
| 1246 |
+
"loss": -0.0209,
|
| 1247 |
+
"num_tokens": 47894416.0,
|
| 1248 |
+
"reward": 0.6875,
|
| 1249 |
+
"reward_std": 0.45242039263248446,
|
| 1250 |
+
"rewards/reward_correct/mean": 0.6875,
|
| 1251 |
+
"rewards/reward_correct/std": 0.45242040455341337,
|
| 1252 |
+
"sampling/importance_sampling_ratio/max": 2.3218968152999877,
|
| 1253 |
+
"sampling/importance_sampling_ratio/mean": 0.42465601563453675,
|
| 1254 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1255 |
+
"sampling/sampling_logp_difference/max": 20.939725494384767,
|
| 1256 |
+
"sampling/sampling_logp_difference/mean": 0.016080015711486338,
|
| 1257 |
+
"step": 390,
|
| 1258 |
+
"step_time": 36.061240384168926
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"clip_ratio/high_max": 0.0,
|
| 1262 |
+
"clip_ratio/high_mean": 0.0,
|
| 1263 |
+
"clip_ratio/low_mean": 0.0,
|
| 1264 |
+
"clip_ratio/low_min": 0.0,
|
| 1265 |
+
"clip_ratio/region_mean": 0.0,
|
| 1266 |
+
"completions/clipped_ratio": 0.1578125,
|
| 1267 |
+
"completions/max_length": 4096.0,
|
| 1268 |
+
"completions/max_terminated_length": 2684.6,
|
| 1269 |
+
"completions/mean_length": 1719.9484375,
|
| 1270 |
+
"completions/mean_terminated_length": 1274.9297119140624,
|
| 1271 |
+
"completions/min_length": 438.0,
|
| 1272 |
+
"completions/min_terminated_length": 438.0,
|
| 1273 |
+
"entropy": 0.3516252673231065,
|
| 1274 |
+
"epoch": 0.5856515373352855,
|
| 1275 |
+
"frac_reward_zero_std": 0.2125,
|
| 1276 |
+
"grad_norm": 0.37620285153388977,
|
| 1277 |
+
"learning_rate": 7.786260863966467e-07,
|
| 1278 |
+
"loss": -0.0155,
|
| 1279 |
+
"num_tokens": 49039495.0,
|
| 1280 |
+
"reward": 0.65,
|
| 1281 |
+
"reward_std": 0.47073342502117155,
|
| 1282 |
+
"rewards/reward_correct/mean": 0.65,
|
| 1283 |
+
"rewards/reward_correct/std": 0.47073343098163606,
|
| 1284 |
+
"sampling/importance_sampling_ratio/max": 2.62828643321991,
|
| 1285 |
+
"sampling/importance_sampling_ratio/mean": 0.5133629143238068,
|
| 1286 |
+
"sampling/importance_sampling_ratio/min": 0.0,
|
| 1287 |
+
"sampling/sampling_logp_difference/max": 14.084659862518311,
|
| 1288 |
+
"sampling/sampling_logp_difference/mean": 0.015848731249570848,
|
| 1289 |
+
"step": 400,
|
| 1290 |
+
"step_time": 35.166023310273886
|
| 1291 |
+
}
|
| 1292 |
+
],
|
| 1293 |
+
"logging_steps": 10,
|
| 1294 |
+
"max_steps": 1200,
|
| 1295 |
+
"num_input_tokens_seen": 49039495,
|
| 1296 |
+
"num_train_epochs": 2,
|
| 1297 |
+
"save_steps": 100,
|
| 1298 |
+
"stateful_callbacks": {
|
| 1299 |
+
"TrainerControl": {
|
| 1300 |
+
"args": {
|
| 1301 |
+
"should_epoch_stop": false,
|
| 1302 |
+
"should_evaluate": false,
|
| 1303 |
+
"should_log": false,
|
| 1304 |
+
"should_save": true,
|
| 1305 |
+
"should_training_stop": false
|
| 1306 |
+
},
|
| 1307 |
+
"attributes": {}
|
| 1308 |
+
}
|
| 1309 |
+
},
|
| 1310 |
+
"total_flos": 0.0,
|
| 1311 |
+
"train_batch_size": 4,
|
| 1312 |
+
"trial_name": null,
|
| 1313 |
+
"trial_params": null
|
| 1314 |
+
}
|
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:4dc7eaa6b2fd30b7c86489abf67d70e5a110193f4ce54ac38c13cd2ba3a192c2
|
| 3 |
+
size 8017
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|