Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- added_tokens.json +28 -0
- chat_template.jinja +61 -0
- config.json +68 -0
- generation_config.json +12 -0
- merges.txt +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +406 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +239 -0
- trainer_state.json +1474 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
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
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- for message in messages %}
|
| 18 |
+
{%- if message.content is string %}
|
| 19 |
+
{%- set content = message.content %}
|
| 20 |
+
{%- else %}
|
| 21 |
+
{%- set content = '' %}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 24 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 25 |
+
{%- elif message.role == "assistant" %}
|
| 26 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 27 |
+
{%- if message.tool_calls %}
|
| 28 |
+
{%- for tool_call in message.tool_calls %}
|
| 29 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 30 |
+
{{- '\n' }}
|
| 31 |
+
{%- endif %}
|
| 32 |
+
{%- if tool_call.function %}
|
| 33 |
+
{%- set tool_call = tool_call.function %}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 36 |
+
{{- tool_call.name }}
|
| 37 |
+
{{- '", "arguments": ' }}
|
| 38 |
+
{%- if tool_call.arguments is string %}
|
| 39 |
+
{{- tool_call.arguments }}
|
| 40 |
+
{%- else %}
|
| 41 |
+
{{- tool_call.arguments | tojson }}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{{- '}\n</tool_call>' }}
|
| 44 |
+
{%- endfor %}
|
| 45 |
+
{%- endif %}
|
| 46 |
+
{{- '<|im_end|>\n' }}
|
| 47 |
+
{%- elif message.role == "tool" %}
|
| 48 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 49 |
+
{{- '<|im_start|>user' }}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{{- '\n<tool_response>\n' }}
|
| 52 |
+
{{- content }}
|
| 53 |
+
{{- '\n</tool_response>' }}
|
| 54 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 55 |
+
{{- '<|im_end|>\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{%- endfor %}
|
| 59 |
+
{%- if add_generation_prompt %}
|
| 60 |
+
{{- '<|im_start|>assistant\n' }}
|
| 61 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"dtype": "bfloat16",
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
+
"hidden_act": "silu",
|
| 11 |
+
"hidden_size": 2560,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 9728,
|
| 14 |
+
"layer_types": [
|
| 15 |
+
"full_attention",
|
| 16 |
+
"full_attention",
|
| 17 |
+
"full_attention",
|
| 18 |
+
"full_attention",
|
| 19 |
+
"full_attention",
|
| 20 |
+
"full_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"full_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"full_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"full_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"full_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"full_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"full_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"full_attention",
|
| 41 |
+
"full_attention",
|
| 42 |
+
"full_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"full_attention",
|
| 45 |
+
"full_attention",
|
| 46 |
+
"full_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"full_attention",
|
| 49 |
+
"full_attention",
|
| 50 |
+
"full_attention"
|
| 51 |
+
],
|
| 52 |
+
"max_position_embeddings": 262144,
|
| 53 |
+
"max_window_layers": 36,
|
| 54 |
+
"model_type": "qwen3",
|
| 55 |
+
"num_attention_heads": 32,
|
| 56 |
+
"num_hidden_layers": 36,
|
| 57 |
+
"num_key_value_heads": 8,
|
| 58 |
+
"pad_token_id": 151643,
|
| 59 |
+
"rms_norm_eps": 1e-06,
|
| 60 |
+
"rope_scaling": null,
|
| 61 |
+
"rope_theta": 5000000,
|
| 62 |
+
"sliding_window": null,
|
| 63 |
+
"tie_word_embeddings": true,
|
| 64 |
+
"transformers_version": "4.57.3",
|
| 65 |
+
"use_cache": true,
|
| 66 |
+
"use_sliding_window": false,
|
| 67 |
+
"vocab_size": 151936
|
| 68 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_sample": true,
|
| 3 |
+
"eos_token_id": [
|
| 4 |
+
151645,
|
| 5 |
+
151643
|
| 6 |
+
],
|
| 7 |
+
"pad_token_id": 151643,
|
| 8 |
+
"temperature": 0.7,
|
| 9 |
+
"top_k": 20,
|
| 10 |
+
"top_p": 0.8,
|
| 11 |
+
"transformers_version": "4.57.3"
|
| 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:743584f76219bade44886a8cb569d1218a6751fe5338ac032aac689bc7e4d632
|
| 3 |
+
size 4967215360
|
model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6318e7030f8c0f8893cbd288476b9f8f2279b9f154097c9c0b132b5f662dabc6
|
| 3 |
+
size 3077766632
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 196096,
|
| 4 |
+
"total_size": 8044936192
|
| 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-00001-of-00002.safetensors",
|
| 119 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-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-00001-of-00002.safetensors",
|
| 122 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-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-00001-of-00002.safetensors",
|
| 130 |
+
"model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 131 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 132 |
+
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 133 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 134 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 135 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 136 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 137 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 138 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 139 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-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-00001-of-00002.safetensors",
|
| 154 |
+
"model.layers.20.mlp.up_proj.weight": "model-00001-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-00001-of-00002.safetensors",
|
| 157 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 158 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 159 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 160 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 161 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00001-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.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 240 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 241 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 242 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 243 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 244 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 245 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 246 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 247 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 248 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 249 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 250 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 251 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 252 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 253 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 254 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 255 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 256 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 257 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 258 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 259 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 260 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 261 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 262 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 263 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 264 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 265 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 272 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 273 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 274 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 275 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 276 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 277 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 278 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 279 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 280 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 281 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 282 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 283 |
+
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 284 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 285 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 286 |
+
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 287 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 288 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 289 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 290 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 291 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 292 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 293 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 294 |
+
"model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 295 |
+
"model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 296 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 297 |
+
"model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 298 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 299 |
+
"model.layers.32.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 300 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 301 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 302 |
+
"model.layers.32.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 303 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 304 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 305 |
+
"model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 306 |
+
"model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 307 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 308 |
+
"model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 309 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 310 |
+
"model.layers.33.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 311 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 312 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 313 |
+
"model.layers.33.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 314 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 315 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 316 |
+
"model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 317 |
+
"model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 318 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 319 |
+
"model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 320 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 321 |
+
"model.layers.34.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 322 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 323 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 324 |
+
"model.layers.34.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 325 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 326 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 327 |
+
"model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 328 |
+
"model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 329 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 330 |
+
"model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 331 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 332 |
+
"model.layers.35.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
|
| 333 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 334 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 335 |
+
"model.layers.35.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
|
| 336 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 337 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 338 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 339 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 340 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 341 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 342 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 343 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 344 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 345 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 346 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 347 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 348 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 349 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 350 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 351 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 352 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 353 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 354 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 355 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 356 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 357 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 358 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 359 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 360 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 361 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 362 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 363 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 364 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 365 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 366 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 367 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 368 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 369 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 370 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 371 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 372 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 373 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 374 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 375 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 376 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 377 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 378 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 379 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 380 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 381 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 382 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 383 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 384 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 385 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 386 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 387 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 388 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 389 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 390 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 391 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 392 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 393 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 394 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 395 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 396 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 397 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 398 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
|
| 399 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 400 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 401 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
|
| 402 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 403 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 404 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
| 405 |
+
}
|
| 406 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
|
| 3 |
+
size 11422654
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,239 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
+
"lstrip": false,
|
| 184 |
+
"normalized": false,
|
| 185 |
+
"rstrip": false,
|
| 186 |
+
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
+
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
+
"lstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"rstrip": false,
|
| 194 |
+
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
+
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"normalized": false,
|
| 201 |
+
"rstrip": false,
|
| 202 |
+
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
+
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
+
"lstrip": false,
|
| 208 |
+
"normalized": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
+
}
|
| 213 |
+
},
|
| 214 |
+
"additional_special_tokens": [
|
| 215 |
+
"<|im_start|>",
|
| 216 |
+
"<|im_end|>",
|
| 217 |
+
"<|object_ref_start|>",
|
| 218 |
+
"<|object_ref_end|>",
|
| 219 |
+
"<|box_start|>",
|
| 220 |
+
"<|box_end|>",
|
| 221 |
+
"<|quad_start|>",
|
| 222 |
+
"<|quad_end|>",
|
| 223 |
+
"<|vision_start|>",
|
| 224 |
+
"<|vision_end|>",
|
| 225 |
+
"<|vision_pad|>",
|
| 226 |
+
"<|image_pad|>",
|
| 227 |
+
"<|video_pad|>"
|
| 228 |
+
],
|
| 229 |
+
"bos_token": null,
|
| 230 |
+
"clean_up_tokenization_spaces": false,
|
| 231 |
+
"eos_token": "<|im_end|>",
|
| 232 |
+
"errors": "replace",
|
| 233 |
+
"extra_special_tokens": {},
|
| 234 |
+
"model_max_length": 1010000,
|
| 235 |
+
"pad_token": "<|endoftext|>",
|
| 236 |
+
"split_special_tokens": false,
|
| 237 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 238 |
+
"unk_token": null
|
| 239 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1474 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 0.05509641873278237,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 40,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"clip_ratio/high_max": 0.0,
|
| 14 |
+
"clip_ratio/high_mean": 0.0,
|
| 15 |
+
"clip_ratio/low_mean": 0.0,
|
| 16 |
+
"clip_ratio/low_min": 0.0,
|
| 17 |
+
"clip_ratio/region_mean": 0.0,
|
| 18 |
+
"completions/clipped_ratio": 0.0,
|
| 19 |
+
"completions/max_length": 2915.0,
|
| 20 |
+
"completions/max_terminated_length": 2915.0,
|
| 21 |
+
"completions/mean_length": 1900.916748046875,
|
| 22 |
+
"completions/mean_terminated_length": 1900.916748046875,
|
| 23 |
+
"completions/min_length": 1153.0,
|
| 24 |
+
"completions/min_terminated_length": 1153.0,
|
| 25 |
+
"entropy": 0.29732953757047653,
|
| 26 |
+
"epoch": 0.0013774104683195593,
|
| 27 |
+
"frac_reward_zero_std": 0.0,
|
| 28 |
+
"grad_norm": 0.2848003042646487,
|
| 29 |
+
"kl": 0.0,
|
| 30 |
+
"learning_rate": 1e-06,
|
| 31 |
+
"loss": 0.065,
|
| 32 |
+
"num_tokens": 62470.0,
|
| 33 |
+
"reward": 1.875,
|
| 34 |
+
"reward_std": 0.7653362154960632,
|
| 35 |
+
"rewards/cloze_reward/mean": 0.25,
|
| 36 |
+
"rewards/cloze_reward/std": 0.4423258602619171,
|
| 37 |
+
"rewards/code_reward/mean": 0.9166666865348816,
|
| 38 |
+
"rewards/code_reward/std": 0.28232985734939575,
|
| 39 |
+
"rewards/format_reward/mean": 0.7083333134651184,
|
| 40 |
+
"rewards/format_reward/std": 0.4643056094646454,
|
| 41 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 42 |
+
"sampling/importance_sampling_ratio/mean": 1.0003361701965332,
|
| 43 |
+
"sampling/importance_sampling_ratio/min": 0.12010933458805084,
|
| 44 |
+
"sampling/sampling_logp_difference/max": 2.1193528175354004,
|
| 45 |
+
"sampling/sampling_logp_difference/mean": 0.013728929683566093,
|
| 46 |
+
"step": 1
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"clip_ratio/high_max": 0.0,
|
| 50 |
+
"clip_ratio/high_mean": 0.0,
|
| 51 |
+
"clip_ratio/low_mean": 0.0,
|
| 52 |
+
"clip_ratio/low_min": 0.0,
|
| 53 |
+
"clip_ratio/region_mean": 0.0,
|
| 54 |
+
"completions/clipped_ratio": 0.0,
|
| 55 |
+
"completions/max_length": 4209.0,
|
| 56 |
+
"completions/max_terminated_length": 4209.0,
|
| 57 |
+
"completions/mean_length": 1807.125,
|
| 58 |
+
"completions/mean_terminated_length": 1807.125,
|
| 59 |
+
"completions/min_length": 3.0,
|
| 60 |
+
"completions/min_terminated_length": 3.0,
|
| 61 |
+
"entropy": 0.4276350364089012,
|
| 62 |
+
"epoch": 0.0027548209366391185,
|
| 63 |
+
"frac_reward_zero_std": 0.0,
|
| 64 |
+
"grad_norm": 0.27170591036025904,
|
| 65 |
+
"kl": 0.0017779993431759067,
|
| 66 |
+
"learning_rate": 9.999953187068845e-07,
|
| 67 |
+
"loss": -0.0052,
|
| 68 |
+
"num_tokens": 144433.0,
|
| 69 |
+
"reward": 1.375,
|
| 70 |
+
"reward_std": 0.697779655456543,
|
| 71 |
+
"rewards/cloze_reward/mean": 0.4166666567325592,
|
| 72 |
+
"rewards/cloze_reward/std": 0.5036101937294006,
|
| 73 |
+
"rewards/code_reward/mean": 0.4166666567325592,
|
| 74 |
+
"rewards/code_reward/std": 0.5036101937294006,
|
| 75 |
+
"rewards/format_reward/mean": 0.5416666865348816,
|
| 76 |
+
"rewards/format_reward/std": 0.5089773535728455,
|
| 77 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 78 |
+
"sampling/importance_sampling_ratio/mean": 1.0000282526016235,
|
| 79 |
+
"sampling/importance_sampling_ratio/min": 0.054640088230371475,
|
| 80 |
+
"sampling/sampling_logp_difference/max": 2.906987428665161,
|
| 81 |
+
"sampling/sampling_logp_difference/mean": 0.014421815052628517,
|
| 82 |
+
"step": 2
|
| 83 |
+
},
|
| 84 |
+
{
|
| 85 |
+
"clip_ratio/high_max": 0.0,
|
| 86 |
+
"clip_ratio/high_mean": 0.0,
|
| 87 |
+
"clip_ratio/low_mean": 0.0,
|
| 88 |
+
"clip_ratio/low_min": 0.0,
|
| 89 |
+
"clip_ratio/region_mean": 0.0,
|
| 90 |
+
"completions/clipped_ratio": 0.0,
|
| 91 |
+
"completions/max_length": 5955.0,
|
| 92 |
+
"completions/max_terminated_length": 5955.0,
|
| 93 |
+
"completions/mean_length": 1929.8333740234375,
|
| 94 |
+
"completions/mean_terminated_length": 1929.8333740234375,
|
| 95 |
+
"completions/min_length": 30.0,
|
| 96 |
+
"completions/min_terminated_length": 30.0,
|
| 97 |
+
"entropy": 0.15682650730013847,
|
| 98 |
+
"epoch": 0.004132231404958678,
|
| 99 |
+
"frac_reward_zero_std": 0.0,
|
| 100 |
+
"grad_norm": 0.23379512087809812,
|
| 101 |
+
"kl": 0.00041251888615079224,
|
| 102 |
+
"learning_rate": 9.999812749151967e-07,
|
| 103 |
+
"loss": 0.0655,
|
| 104 |
+
"num_tokens": 208821.0,
|
| 105 |
+
"reward": 2.375,
|
| 106 |
+
"reward_std": 0.9505624771118164,
|
| 107 |
+
"rewards/cloze_reward/mean": 0.7916666865348816,
|
| 108 |
+
"rewards/cloze_reward/std": 0.4148511290550232,
|
| 109 |
+
"rewards/code_reward/mean": 0.7916666865348816,
|
| 110 |
+
"rewards/code_reward/std": 0.4148510992527008,
|
| 111 |
+
"rewards/format_reward/mean": 0.7916666865348816,
|
| 112 |
+
"rewards/format_reward/std": 0.4148511290550232,
|
| 113 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 114 |
+
"sampling/importance_sampling_ratio/mean": 1.0001002550125122,
|
| 115 |
+
"sampling/importance_sampling_ratio/min": 0.04702043533325195,
|
| 116 |
+
"sampling/sampling_logp_difference/max": 3.057173013687134,
|
| 117 |
+
"sampling/sampling_logp_difference/mean": 0.008513483218848705,
|
| 118 |
+
"step": 3
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"clip_ratio/high_max": 0.0,
|
| 122 |
+
"clip_ratio/high_mean": 0.0,
|
| 123 |
+
"clip_ratio/low_mean": 0.0,
|
| 124 |
+
"clip_ratio/low_min": 0.0,
|
| 125 |
+
"clip_ratio/region_mean": 0.0,
|
| 126 |
+
"completions/clipped_ratio": 0.0,
|
| 127 |
+
"completions/max_length": 6342.0,
|
| 128 |
+
"completions/max_terminated_length": 6342.0,
|
| 129 |
+
"completions/mean_length": 3278.5,
|
| 130 |
+
"completions/mean_terminated_length": 3278.5,
|
| 131 |
+
"completions/min_length": 990.0,
|
| 132 |
+
"completions/min_terminated_length": 990.0,
|
| 133 |
+
"entropy": 0.23897437751293182,
|
| 134 |
+
"epoch": 0.005509641873278237,
|
| 135 |
+
"frac_reward_zero_std": 0.0,
|
| 136 |
+
"grad_norm": 0.16457158766091876,
|
| 137 |
+
"kl": 0.0004863361318712123,
|
| 138 |
+
"learning_rate": 9.999578688879084e-07,
|
| 139 |
+
"loss": 0.0713,
|
| 140 |
+
"num_tokens": 306505.0,
|
| 141 |
+
"reward": 2.1666667461395264,
|
| 142 |
+
"reward_std": 0.6947464346885681,
|
| 143 |
+
"rewards/cloze_reward/mean": 0.4583333432674408,
|
| 144 |
+
"rewards/cloze_reward/std": 0.5089773535728455,
|
| 145 |
+
"rewards/code_reward/mean": 0.7916666865348816,
|
| 146 |
+
"rewards/code_reward/std": 0.4148511290550232,
|
| 147 |
+
"rewards/format_reward/mean": 0.9166666865348816,
|
| 148 |
+
"rewards/format_reward/std": 0.28232985734939575,
|
| 149 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 150 |
+
"sampling/importance_sampling_ratio/mean": 1.0001260042190552,
|
| 151 |
+
"sampling/importance_sampling_ratio/min": 0.1858593225479126,
|
| 152 |
+
"sampling/sampling_logp_difference/max": 1.682765245437622,
|
| 153 |
+
"sampling/sampling_logp_difference/mean": 0.012356276623904705,
|
| 154 |
+
"step": 4
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"clip_ratio/high_max": 0.0,
|
| 158 |
+
"clip_ratio/high_mean": 0.0,
|
| 159 |
+
"clip_ratio/low_mean": 0.0,
|
| 160 |
+
"clip_ratio/low_min": 0.0,
|
| 161 |
+
"clip_ratio/region_mean": 0.0,
|
| 162 |
+
"completions/clipped_ratio": 0.0833333358168602,
|
| 163 |
+
"completions/max_length": 8192.0,
|
| 164 |
+
"completions/max_terminated_length": 5875.0,
|
| 165 |
+
"completions/mean_length": 2768.08349609375,
|
| 166 |
+
"completions/mean_terminated_length": 2275.0,
|
| 167 |
+
"completions/min_length": 772.0,
|
| 168 |
+
"completions/min_terminated_length": 772.0,
|
| 169 |
+
"entropy": 0.30327995866537094,
|
| 170 |
+
"epoch": 0.006887052341597796,
|
| 171 |
+
"frac_reward_zero_std": 0.0,
|
| 172 |
+
"grad_norm": 0.24551726103614221,
|
| 173 |
+
"kl": 0.000520530593348667,
|
| 174 |
+
"learning_rate": 9.999251010633018e-07,
|
| 175 |
+
"loss": 0.1599,
|
| 176 |
+
"num_tokens": 388843.0,
|
| 177 |
+
"reward": 1.875,
|
| 178 |
+
"reward_std": 0.6055297255516052,
|
| 179 |
+
"rewards/cloze_reward/mean": 0.5833333134651184,
|
| 180 |
+
"rewards/cloze_reward/std": 0.5036101341247559,
|
| 181 |
+
"rewards/code_reward/mean": 0.5,
|
| 182 |
+
"rewards/code_reward/std": 0.5107539296150208,
|
| 183 |
+
"rewards/format_reward/mean": 0.7916666865348816,
|
| 184 |
+
"rewards/format_reward/std": 0.4148510992527008,
|
| 185 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 186 |
+
"sampling/importance_sampling_ratio/mean": 1.0001081228256226,
|
| 187 |
+
"sampling/importance_sampling_ratio/min": 0.07036004215478897,
|
| 188 |
+
"sampling/sampling_logp_difference/max": 2.65412974357605,
|
| 189 |
+
"sampling/sampling_logp_difference/mean": 0.014815382659435272,
|
| 190 |
+
"step": 5
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"clip_ratio/high_max": 0.0,
|
| 194 |
+
"clip_ratio/high_mean": 0.0,
|
| 195 |
+
"clip_ratio/low_mean": 0.0,
|
| 196 |
+
"clip_ratio/low_min": 0.0,
|
| 197 |
+
"clip_ratio/region_mean": 0.0,
|
| 198 |
+
"completions/clipped_ratio": 0.0416666679084301,
|
| 199 |
+
"completions/max_length": 8192.0,
|
| 200 |
+
"completions/max_terminated_length": 4871.0,
|
| 201 |
+
"completions/mean_length": 2609.45849609375,
|
| 202 |
+
"completions/mean_terminated_length": 2366.7392578125,
|
| 203 |
+
"completions/min_length": 1340.0,
|
| 204 |
+
"completions/min_terminated_length": 1340.0,
|
| 205 |
+
"entropy": 0.2581055983901024,
|
| 206 |
+
"epoch": 0.008264462809917356,
|
| 207 |
+
"frac_reward_zero_std": 0.0,
|
| 208 |
+
"grad_norm": 0.2529070676429162,
|
| 209 |
+
"kl": 0.0005087396057206206,
|
| 210 |
+
"learning_rate": 9.998829720549602e-07,
|
| 211 |
+
"loss": 0.1667,
|
| 212 |
+
"num_tokens": 468398.0,
|
| 213 |
+
"reward": 2.1666667461395264,
|
| 214 |
+
"reward_std": 0.5970090627670288,
|
| 215 |
+
"rewards/cloze_reward/mean": 0.4583333432674408,
|
| 216 |
+
"rewards/cloze_reward/std": 0.5089773535728455,
|
| 217 |
+
"rewards/code_reward/mean": 0.75,
|
| 218 |
+
"rewards/code_reward/std": 0.4423258602619171,
|
| 219 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 220 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 221 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 222 |
+
"sampling/importance_sampling_ratio/mean": 0.9997397065162659,
|
| 223 |
+
"sampling/importance_sampling_ratio/min": 0.13575026392936707,
|
| 224 |
+
"sampling/sampling_logp_difference/max": 1.9969384670257568,
|
| 225 |
+
"sampling/sampling_logp_difference/mean": 0.012986009940505028,
|
| 226 |
+
"step": 6
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"clip_ratio/high_max": 0.0,
|
| 230 |
+
"clip_ratio/high_mean": 0.0,
|
| 231 |
+
"clip_ratio/low_mean": 0.0,
|
| 232 |
+
"clip_ratio/low_min": 0.0,
|
| 233 |
+
"clip_ratio/region_mean": 0.0,
|
| 234 |
+
"completions/clipped_ratio": 0.2916666865348816,
|
| 235 |
+
"completions/max_length": 8192.0,
|
| 236 |
+
"completions/max_terminated_length": 7889.0,
|
| 237 |
+
"completions/mean_length": 4482.95849609375,
|
| 238 |
+
"completions/mean_terminated_length": 2955.705810546875,
|
| 239 |
+
"completions/min_length": 809.0,
|
| 240 |
+
"completions/min_terminated_length": 809.0,
|
| 241 |
+
"entropy": 0.3291335925459862,
|
| 242 |
+
"epoch": 0.009641873278236915,
|
| 243 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 244 |
+
"grad_norm": 0.15909916853519945,
|
| 245 |
+
"kl": 0.000712596025550738,
|
| 246 |
+
"learning_rate": 9.998314826517563e-07,
|
| 247 |
+
"loss": 0.062,
|
| 248 |
+
"num_tokens": 600053.0,
|
| 249 |
+
"reward": 0.8333333730697632,
|
| 250 |
+
"reward_std": 0.48678088188171387,
|
| 251 |
+
"rewards/cloze_reward/mean": 0.0,
|
| 252 |
+
"rewards/cloze_reward/std": 0.0,
|
| 253 |
+
"rewards/code_reward/mean": 0.125,
|
| 254 |
+
"rewards/code_reward/std": 0.337831974029541,
|
| 255 |
+
"rewards/format_reward/mean": 0.7083333134651184,
|
| 256 |
+
"rewards/format_reward/std": 0.4643056094646454,
|
| 257 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 258 |
+
"sampling/importance_sampling_ratio/mean": 0.9999268054962158,
|
| 259 |
+
"sampling/importance_sampling_ratio/min": 0.1226503923535347,
|
| 260 |
+
"sampling/sampling_logp_difference/max": 2.098417282104492,
|
| 261 |
+
"sampling/sampling_logp_difference/mean": 0.01600910723209381,
|
| 262 |
+
"step": 7
|
| 263 |
+
},
|
| 264 |
+
{
|
| 265 |
+
"clip_ratio/high_max": 0.0,
|
| 266 |
+
"clip_ratio/high_mean": 0.0,
|
| 267 |
+
"clip_ratio/low_mean": 0.0,
|
| 268 |
+
"clip_ratio/low_min": 0.0,
|
| 269 |
+
"clip_ratio/region_mean": 0.0,
|
| 270 |
+
"completions/clipped_ratio": 0.0,
|
| 271 |
+
"completions/max_length": 4810.0,
|
| 272 |
+
"completions/max_terminated_length": 4810.0,
|
| 273 |
+
"completions/mean_length": 1951.5,
|
| 274 |
+
"completions/mean_terminated_length": 1951.5,
|
| 275 |
+
"completions/min_length": 779.0,
|
| 276 |
+
"completions/min_terminated_length": 779.0,
|
| 277 |
+
"entropy": 0.2874010130763054,
|
| 278 |
+
"epoch": 0.011019283746556474,
|
| 279 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 280 |
+
"grad_norm": 0.22479321113386752,
|
| 281 |
+
"kl": 0.0006854519015178084,
|
| 282 |
+
"learning_rate": 9.99770633817838e-07,
|
| 283 |
+
"loss": 0.0803,
|
| 284 |
+
"num_tokens": 666825.0,
|
| 285 |
+
"reward": 2.0833334922790527,
|
| 286 |
+
"reward_std": 0.4778915345668793,
|
| 287 |
+
"rewards/cloze_reward/mean": 0.4166666567325592,
|
| 288 |
+
"rewards/cloze_reward/std": 0.5036101937294006,
|
| 289 |
+
"rewards/code_reward/mean": 0.6666666865348816,
|
| 290 |
+
"rewards/code_reward/std": 0.4815434217453003,
|
| 291 |
+
"rewards/format_reward/mean": 1.0,
|
| 292 |
+
"rewards/format_reward/std": 0.0,
|
| 293 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 294 |
+
"sampling/importance_sampling_ratio/mean": 1.00015127658844,
|
| 295 |
+
"sampling/importance_sampling_ratio/min": 0.3547181487083435,
|
| 296 |
+
"sampling/sampling_logp_difference/max": 1.0364317893981934,
|
| 297 |
+
"sampling/sampling_logp_difference/mean": 0.012998003512620926,
|
| 298 |
+
"step": 8
|
| 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.0,
|
| 307 |
+
"completions/max_length": 7278.0,
|
| 308 |
+
"completions/max_terminated_length": 7278.0,
|
| 309 |
+
"completions/mean_length": 3300.791748046875,
|
| 310 |
+
"completions/mean_terminated_length": 3300.791748046875,
|
| 311 |
+
"completions/min_length": 1615.0,
|
| 312 |
+
"completions/min_terminated_length": 1615.0,
|
| 313 |
+
"entropy": 0.3161199018359184,
|
| 314 |
+
"epoch": 0.012396694214876033,
|
| 315 |
+
"frac_reward_zero_std": 0.0,
|
| 316 |
+
"grad_norm": 0.22023288782689693,
|
| 317 |
+
"kl": 0.0009353299537906423,
|
| 318 |
+
"learning_rate": 9.997004266926104e-07,
|
| 319 |
+
"loss": -0.063,
|
| 320 |
+
"num_tokens": 769572.0,
|
| 321 |
+
"reward": 1.7083333730697632,
|
| 322 |
+
"reward_std": 0.5078567266464233,
|
| 323 |
+
"rewards/cloze_reward/mean": 0.375,
|
| 324 |
+
"rewards/cloze_reward/std": 0.494535356760025,
|
| 325 |
+
"rewards/code_reward/mean": 0.3333333432674408,
|
| 326 |
+
"rewards/code_reward/std": 0.4815433919429779,
|
| 327 |
+
"rewards/format_reward/mean": 1.0,
|
| 328 |
+
"rewards/format_reward/std": 0.0,
|
| 329 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 330 |
+
"sampling/importance_sampling_ratio/mean": 1.0000706911087036,
|
| 331 |
+
"sampling/importance_sampling_ratio/min": 0.0014537055976688862,
|
| 332 |
+
"sampling/sampling_logp_difference/max": 6.533639430999756,
|
| 333 |
+
"sampling/sampling_logp_difference/mean": 0.015122607350349426,
|
| 334 |
+
"step": 9
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"clip_ratio/high_max": 0.0,
|
| 338 |
+
"clip_ratio/high_mean": 0.0,
|
| 339 |
+
"clip_ratio/low_mean": 0.0,
|
| 340 |
+
"clip_ratio/low_min": 0.0,
|
| 341 |
+
"clip_ratio/region_mean": 0.0,
|
| 342 |
+
"completions/clipped_ratio": 0.0416666679084301,
|
| 343 |
+
"completions/max_length": 8192.0,
|
| 344 |
+
"completions/max_terminated_length": 6813.0,
|
| 345 |
+
"completions/mean_length": 2792.58349609375,
|
| 346 |
+
"completions/mean_terminated_length": 2557.826171875,
|
| 347 |
+
"completions/min_length": 875.0,
|
| 348 |
+
"completions/min_terminated_length": 875.0,
|
| 349 |
+
"entropy": 0.28332703560590744,
|
| 350 |
+
"epoch": 0.013774104683195593,
|
| 351 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 352 |
+
"grad_norm": 0.16710769042355098,
|
| 353 |
+
"kl": 0.0008509723120369017,
|
| 354 |
+
"learning_rate": 9.99620862590714e-07,
|
| 355 |
+
"loss": 0.1348,
|
| 356 |
+
"num_tokens": 858722.0,
|
| 357 |
+
"reward": 2.0,
|
| 358 |
+
"reward_std": 0.39000558853149414,
|
| 359 |
+
"rewards/cloze_reward/mean": 0.375,
|
| 360 |
+
"rewards/cloze_reward/std": 0.494535356760025,
|
| 361 |
+
"rewards/code_reward/mean": 0.7083333134651184,
|
| 362 |
+
"rewards/code_reward/std": 0.4643056094646454,
|
| 363 |
+
"rewards/format_reward/mean": 0.9166666865348816,
|
| 364 |
+
"rewards/format_reward/std": 0.28232985734939575,
|
| 365 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 366 |
+
"sampling/importance_sampling_ratio/mean": 1.000204086303711,
|
| 367 |
+
"sampling/importance_sampling_ratio/min": 0.2697003185749054,
|
| 368 |
+
"sampling/sampling_logp_difference/max": 1.3104438781738281,
|
| 369 |
+
"sampling/sampling_logp_difference/mean": 0.012643387541174889,
|
| 370 |
+
"step": 10
|
| 371 |
+
},
|
| 372 |
+
{
|
| 373 |
+
"clip_ratio/high_max": 0.0,
|
| 374 |
+
"clip_ratio/high_mean": 0.0,
|
| 375 |
+
"clip_ratio/low_mean": 0.0,
|
| 376 |
+
"clip_ratio/low_min": 0.0,
|
| 377 |
+
"clip_ratio/region_mean": 0.0,
|
| 378 |
+
"completions/clipped_ratio": 0.125,
|
| 379 |
+
"completions/max_length": 8192.0,
|
| 380 |
+
"completions/max_terminated_length": 7190.0,
|
| 381 |
+
"completions/mean_length": 3368.791748046875,
|
| 382 |
+
"completions/mean_terminated_length": 2679.761962890625,
|
| 383 |
+
"completions/min_length": 785.0,
|
| 384 |
+
"completions/min_terminated_length": 785.0,
|
| 385 |
+
"entropy": 0.25256290286779404,
|
| 386 |
+
"epoch": 0.015151515151515152,
|
| 387 |
+
"frac_reward_zero_std": 0.0,
|
| 388 |
+
"grad_norm": 0.17645257817462404,
|
| 389 |
+
"kl": 0.0011589039204409346,
|
| 390 |
+
"learning_rate": 9.995319430020003e-07,
|
| 391 |
+
"loss": 0.1181,
|
| 392 |
+
"num_tokens": 959845.0,
|
| 393 |
+
"reward": 1.9583333730697632,
|
| 394 |
+
"reward_std": 0.7435590624809265,
|
| 395 |
+
"rewards/cloze_reward/mean": 0.5416666865348816,
|
| 396 |
+
"rewards/cloze_reward/std": 0.5089773535728455,
|
| 397 |
+
"rewards/code_reward/mean": 0.5416666865348816,
|
| 398 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 399 |
+
"rewards/format_reward/mean": 0.875,
|
| 400 |
+
"rewards/format_reward/std": 0.337831974029541,
|
| 401 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 402 |
+
"sampling/importance_sampling_ratio/mean": 1.0000051259994507,
|
| 403 |
+
"sampling/importance_sampling_ratio/min": 0.011985468678176403,
|
| 404 |
+
"sampling/sampling_logp_difference/max": 4.424060344696045,
|
| 405 |
+
"sampling/sampling_logp_difference/mean": 0.012076009064912796,
|
| 406 |
+
"step": 11
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"clip_ratio/high_max": 0.0,
|
| 410 |
+
"clip_ratio/high_mean": 0.0,
|
| 411 |
+
"clip_ratio/low_mean": 0.0,
|
| 412 |
+
"clip_ratio/low_min": 0.0,
|
| 413 |
+
"clip_ratio/region_mean": 0.0,
|
| 414 |
+
"completions/clipped_ratio": 0.0,
|
| 415 |
+
"completions/max_length": 6058.0,
|
| 416 |
+
"completions/max_terminated_length": 6058.0,
|
| 417 |
+
"completions/mean_length": 2589.5,
|
| 418 |
+
"completions/mean_terminated_length": 2589.5,
|
| 419 |
+
"completions/min_length": 1266.0,
|
| 420 |
+
"completions/min_terminated_length": 1266.0,
|
| 421 |
+
"entropy": 0.2638929449021816,
|
| 422 |
+
"epoch": 0.01652892561983471,
|
| 423 |
+
"frac_reward_zero_std": 0.0,
|
| 424 |
+
"grad_norm": 0.18010496944516938,
|
| 425 |
+
"kl": 0.00098221683583688,
|
| 426 |
+
"learning_rate": 9.99433669591504e-07,
|
| 427 |
+
"loss": 0.1127,
|
| 428 |
+
"num_tokens": 1042353.0,
|
| 429 |
+
"reward": 1.5,
|
| 430 |
+
"reward_std": 0.3900056481361389,
|
| 431 |
+
"rewards/cloze_reward/mean": 0.125,
|
| 432 |
+
"rewards/cloze_reward/std": 0.337831974029541,
|
| 433 |
+
"rewards/code_reward/mean": 0.375,
|
| 434 |
+
"rewards/code_reward/std": 0.494535356760025,
|
| 435 |
+
"rewards/format_reward/mean": 1.0,
|
| 436 |
+
"rewards/format_reward/std": 0.0,
|
| 437 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 438 |
+
"sampling/importance_sampling_ratio/mean": 0.9999534487724304,
|
| 439 |
+
"sampling/importance_sampling_ratio/min": 0.36291250586509705,
|
| 440 |
+
"sampling/sampling_logp_difference/max": 1.3159668445587158,
|
| 441 |
+
"sampling/sampling_logp_difference/mean": 0.013833053410053253,
|
| 442 |
+
"step": 12
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"clip_ratio/high_max": 0.0,
|
| 446 |
+
"clip_ratio/high_mean": 0.0,
|
| 447 |
+
"clip_ratio/low_mean": 0.0,
|
| 448 |
+
"clip_ratio/low_min": 0.0,
|
| 449 |
+
"clip_ratio/region_mean": 0.0,
|
| 450 |
+
"completions/clipped_ratio": 0.0,
|
| 451 |
+
"completions/max_length": 3234.0,
|
| 452 |
+
"completions/max_terminated_length": 3234.0,
|
| 453 |
+
"completions/mean_length": 2078.20849609375,
|
| 454 |
+
"completions/mean_terminated_length": 2078.20849609375,
|
| 455 |
+
"completions/min_length": 1470.0,
|
| 456 |
+
"completions/min_terminated_length": 1470.0,
|
| 457 |
+
"entropy": 0.18643449991941452,
|
| 458 |
+
"epoch": 0.01790633608815427,
|
| 459 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 460 |
+
"grad_norm": 0.23135066334203877,
|
| 461 |
+
"kl": 0.0031637964711990207,
|
| 462 |
+
"learning_rate": 9.993260441994114e-07,
|
| 463 |
+
"loss": -0.002,
|
| 464 |
+
"num_tokens": 1140390.0,
|
| 465 |
+
"reward": 1.375,
|
| 466 |
+
"reward_std": 0.5085179209709167,
|
| 467 |
+
"rewards/cloze_reward/mean": 0.2083333283662796,
|
| 468 |
+
"rewards/cloze_reward/std": 0.4148511290550232,
|
| 469 |
+
"rewards/code_reward/mean": 0.2083333283662796,
|
| 470 |
+
"rewards/code_reward/std": 0.4148511290550232,
|
| 471 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 472 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 473 |
+
"sampling/importance_sampling_ratio/max": 1.9693641662597656,
|
| 474 |
+
"sampling/importance_sampling_ratio/mean": 0.9994663596153259,
|
| 475 |
+
"sampling/importance_sampling_ratio/min": 0.0002035096986219287,
|
| 476 |
+
"sampling/sampling_logp_difference/max": 8.499796867370605,
|
| 477 |
+
"sampling/sampling_logp_difference/mean": 0.011178883723914623,
|
| 478 |
+
"step": 13
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"clip_ratio/high_max": 0.0,
|
| 482 |
+
"clip_ratio/high_mean": 0.0,
|
| 483 |
+
"clip_ratio/low_mean": 0.0,
|
| 484 |
+
"clip_ratio/low_min": 0.0,
|
| 485 |
+
"clip_ratio/region_mean": 0.0,
|
| 486 |
+
"completions/clipped_ratio": 0.0,
|
| 487 |
+
"completions/max_length": 6206.0,
|
| 488 |
+
"completions/max_terminated_length": 6206.0,
|
| 489 |
+
"completions/mean_length": 3248.25,
|
| 490 |
+
"completions/mean_terminated_length": 3248.25,
|
| 491 |
+
"completions/min_length": 686.0,
|
| 492 |
+
"completions/min_terminated_length": 686.0,
|
| 493 |
+
"entropy": 0.28004511073231697,
|
| 494 |
+
"epoch": 0.01928374655647383,
|
| 495 |
+
"frac_reward_zero_std": 0.0,
|
| 496 |
+
"grad_norm": 0.2111608534215747,
|
| 497 |
+
"kl": 0.0016034767031669617,
|
| 498 |
+
"learning_rate": 9.99209068841027e-07,
|
| 499 |
+
"loss": -0.055,
|
| 500 |
+
"num_tokens": 1235948.0,
|
| 501 |
+
"reward": 2.125,
|
| 502 |
+
"reward_std": 0.4082186818122864,
|
| 503 |
+
"rewards/cloze_reward/mean": 0.625,
|
| 504 |
+
"rewards/cloze_reward/std": 0.494535356760025,
|
| 505 |
+
"rewards/code_reward/mean": 0.5,
|
| 506 |
+
"rewards/code_reward/std": 0.5107539296150208,
|
| 507 |
+
"rewards/format_reward/mean": 1.0,
|
| 508 |
+
"rewards/format_reward/std": 0.0,
|
| 509 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 510 |
+
"sampling/importance_sampling_ratio/mean": 0.9996271133422852,
|
| 511 |
+
"sampling/importance_sampling_ratio/min": 0.16397786140441895,
|
| 512 |
+
"sampling/sampling_logp_difference/max": 1.8080238103866577,
|
| 513 |
+
"sampling/sampling_logp_difference/mean": 0.014200962148606777,
|
| 514 |
+
"step": 14
|
| 515 |
+
},
|
| 516 |
+
{
|
| 517 |
+
"clip_ratio/high_max": 0.0,
|
| 518 |
+
"clip_ratio/high_mean": 0.0,
|
| 519 |
+
"clip_ratio/low_mean": 0.0,
|
| 520 |
+
"clip_ratio/low_min": 0.0,
|
| 521 |
+
"clip_ratio/region_mean": 0.0,
|
| 522 |
+
"completions/clipped_ratio": 0.0,
|
| 523 |
+
"completions/max_length": 6290.0,
|
| 524 |
+
"completions/max_terminated_length": 6290.0,
|
| 525 |
+
"completions/mean_length": 2156.5,
|
| 526 |
+
"completions/mean_terminated_length": 2156.5,
|
| 527 |
+
"completions/min_length": 851.0,
|
| 528 |
+
"completions/min_terminated_length": 851.0,
|
| 529 |
+
"entropy": 0.275097768753767,
|
| 530 |
+
"epoch": 0.02066115702479339,
|
| 531 |
+
"frac_reward_zero_std": 0.0,
|
| 532 |
+
"grad_norm": 0.26723864416803433,
|
| 533 |
+
"kl": 0.0022536640462931246,
|
| 534 |
+
"learning_rate": 9.99082745706734e-07,
|
| 535 |
+
"loss": 0.2325,
|
| 536 |
+
"num_tokens": 1304496.0,
|
| 537 |
+
"reward": 2.125,
|
| 538 |
+
"reward_std": 0.503990888595581,
|
| 539 |
+
"rewards/cloze_reward/mean": 0.4166666567325592,
|
| 540 |
+
"rewards/cloze_reward/std": 0.5036101937294006,
|
| 541 |
+
"rewards/code_reward/mean": 0.7083333134651184,
|
| 542 |
+
"rewards/code_reward/std": 0.4643056094646454,
|
| 543 |
+
"rewards/format_reward/mean": 1.0,
|
| 544 |
+
"rewards/format_reward/std": 0.0,
|
| 545 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 546 |
+
"sampling/importance_sampling_ratio/mean": 0.9997144341468811,
|
| 547 |
+
"sampling/importance_sampling_ratio/min": 0.01566636748611927,
|
| 548 |
+
"sampling/sampling_logp_difference/max": 4.156239032745361,
|
| 549 |
+
"sampling/sampling_logp_difference/mean": 0.013950522057712078,
|
| 550 |
+
"step": 15
|
| 551 |
+
},
|
| 552 |
+
{
|
| 553 |
+
"clip_ratio/high_max": 0.0,
|
| 554 |
+
"clip_ratio/high_mean": 0.0,
|
| 555 |
+
"clip_ratio/low_mean": 0.0,
|
| 556 |
+
"clip_ratio/low_min": 0.0,
|
| 557 |
+
"clip_ratio/region_mean": 0.0,
|
| 558 |
+
"completions/clipped_ratio": 0.0833333358168602,
|
| 559 |
+
"completions/max_length": 8192.0,
|
| 560 |
+
"completions/max_terminated_length": 5627.0,
|
| 561 |
+
"completions/mean_length": 2773.95849609375,
|
| 562 |
+
"completions/mean_terminated_length": 2281.4091796875,
|
| 563 |
+
"completions/min_length": 1168.0,
|
| 564 |
+
"completions/min_terminated_length": 1168.0,
|
| 565 |
+
"entropy": 0.24988408759236336,
|
| 566 |
+
"epoch": 0.02203856749311295,
|
| 567 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 568 |
+
"grad_norm": 0.2002566600366291,
|
| 569 |
+
"kl": 0.0017052267503459007,
|
| 570 |
+
"learning_rate": 9.989470771619553e-07,
|
| 571 |
+
"loss": 0.1211,
|
| 572 |
+
"num_tokens": 1394159.0,
|
| 573 |
+
"reward": 1.875,
|
| 574 |
+
"reward_std": 0.5535047054290771,
|
| 575 |
+
"rewards/cloze_reward/mean": 0.2083333283662796,
|
| 576 |
+
"rewards/cloze_reward/std": 0.4148511290550232,
|
| 577 |
+
"rewards/code_reward/mean": 0.75,
|
| 578 |
+
"rewards/code_reward/std": 0.4423258602619171,
|
| 579 |
+
"rewards/format_reward/mean": 0.9166666865348816,
|
| 580 |
+
"rewards/format_reward/std": 0.28232985734939575,
|
| 581 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 582 |
+
"sampling/importance_sampling_ratio/mean": 1.000037670135498,
|
| 583 |
+
"sampling/importance_sampling_ratio/min": 0.08789712190628052,
|
| 584 |
+
"sampling/sampling_logp_difference/max": 4.325733184814453,
|
| 585 |
+
"sampling/sampling_logp_difference/mean": 0.012733320705592632,
|
| 586 |
+
"step": 16
|
| 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.0,
|
| 595 |
+
"completions/max_length": 7212.0,
|
| 596 |
+
"completions/max_terminated_length": 7212.0,
|
| 597 |
+
"completions/mean_length": 3347.291748046875,
|
| 598 |
+
"completions/mean_terminated_length": 3347.291748046875,
|
| 599 |
+
"completions/min_length": 829.0,
|
| 600 |
+
"completions/min_terminated_length": 829.0,
|
| 601 |
+
"entropy": 0.2636777497828007,
|
| 602 |
+
"epoch": 0.023415977961432508,
|
| 603 |
+
"frac_reward_zero_std": 0.0,
|
| 604 |
+
"grad_norm": 0.1893310489949768,
|
| 605 |
+
"kl": 0.0020791269780602306,
|
| 606 |
+
"learning_rate": 9.988020657471077e-07,
|
| 607 |
+
"loss": -0.1188,
|
| 608 |
+
"num_tokens": 1504110.0,
|
| 609 |
+
"reward": 1.625,
|
| 610 |
+
"reward_std": 0.5480016469955444,
|
| 611 |
+
"rewards/cloze_reward/mean": 0.125,
|
| 612 |
+
"rewards/cloze_reward/std": 0.337831974029541,
|
| 613 |
+
"rewards/code_reward/mean": 0.5416666865348816,
|
| 614 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 615 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 616 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 617 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 618 |
+
"sampling/importance_sampling_ratio/mean": 0.9997584819793701,
|
| 619 |
+
"sampling/importance_sampling_ratio/min": 0.021851731464266777,
|
| 620 |
+
"sampling/sampling_logp_difference/max": 3.8234751224517822,
|
| 621 |
+
"sampling/sampling_logp_difference/mean": 0.014004481956362724,
|
| 622 |
+
"step": 17
|
| 623 |
+
},
|
| 624 |
+
{
|
| 625 |
+
"clip_ratio/high_max": 0.0,
|
| 626 |
+
"clip_ratio/high_mean": 0.0,
|
| 627 |
+
"clip_ratio/low_mean": 0.0,
|
| 628 |
+
"clip_ratio/low_min": 0.0,
|
| 629 |
+
"clip_ratio/region_mean": 0.0,
|
| 630 |
+
"completions/clipped_ratio": 0.0,
|
| 631 |
+
"completions/max_length": 2283.0,
|
| 632 |
+
"completions/max_terminated_length": 2283.0,
|
| 633 |
+
"completions/mean_length": 1511.5,
|
| 634 |
+
"completions/mean_terminated_length": 1511.5,
|
| 635 |
+
"completions/min_length": 805.0,
|
| 636 |
+
"completions/min_terminated_length": 805.0,
|
| 637 |
+
"entropy": 0.14751360192894936,
|
| 638 |
+
"epoch": 0.024793388429752067,
|
| 639 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 640 |
+
"grad_norm": 0.20794435707592182,
|
| 641 |
+
"kl": 0.0025478473398834467,
|
| 642 |
+
"learning_rate": 9.98647714177555e-07,
|
| 643 |
+
"loss": -0.0004,
|
| 644 |
+
"num_tokens": 1567602.0,
|
| 645 |
+
"reward": 2.3333334922790527,
|
| 646 |
+
"reward_std": 0.2357022613286972,
|
| 647 |
+
"rewards/cloze_reward/mean": 0.375,
|
| 648 |
+
"rewards/cloze_reward/std": 0.494535356760025,
|
| 649 |
+
"rewards/code_reward/mean": 0.9583333134651184,
|
| 650 |
+
"rewards/code_reward/std": 0.20412415266036987,
|
| 651 |
+
"rewards/format_reward/mean": 1.0,
|
| 652 |
+
"rewards/format_reward/std": 0.0,
|
| 653 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 654 |
+
"sampling/importance_sampling_ratio/mean": 0.9995601177215576,
|
| 655 |
+
"sampling/importance_sampling_ratio/min": 0.19188205897808075,
|
| 656 |
+
"sampling/sampling_logp_difference/max": 1.650874376296997,
|
| 657 |
+
"sampling/sampling_logp_difference/mean": 0.009327586740255356,
|
| 658 |
+
"step": 18
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"clip_ratio/high_max": 0.0,
|
| 662 |
+
"clip_ratio/high_mean": 0.0,
|
| 663 |
+
"clip_ratio/low_mean": 0.0,
|
| 664 |
+
"clip_ratio/low_min": 0.0,
|
| 665 |
+
"clip_ratio/region_mean": 0.0,
|
| 666 |
+
"completions/clipped_ratio": 0.0,
|
| 667 |
+
"completions/max_length": 6061.0,
|
| 668 |
+
"completions/max_terminated_length": 6061.0,
|
| 669 |
+
"completions/mean_length": 2516.166748046875,
|
| 670 |
+
"completions/mean_terminated_length": 2516.166748046875,
|
| 671 |
+
"completions/min_length": 953.0,
|
| 672 |
+
"completions/min_terminated_length": 953.0,
|
| 673 |
+
"entropy": 0.27825580164790154,
|
| 674 |
+
"epoch": 0.026170798898071626,
|
| 675 |
+
"frac_reward_zero_std": 0.6666666865348816,
|
| 676 |
+
"grad_norm": 0.16189513218269783,
|
| 677 |
+
"kl": 0.0023431787849403918,
|
| 678 |
+
"learning_rate": 9.984840253435568e-07,
|
| 679 |
+
"loss": 0.0076,
|
| 680 |
+
"num_tokens": 1653054.0,
|
| 681 |
+
"reward": 2.125,
|
| 682 |
+
"reward_std": 0.17251639068126678,
|
| 683 |
+
"rewards/cloze_reward/mean": 0.6666666865348816,
|
| 684 |
+
"rewards/cloze_reward/std": 0.4815434217453003,
|
| 685 |
+
"rewards/code_reward/mean": 0.4583333432674408,
|
| 686 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 687 |
+
"rewards/format_reward/mean": 1.0,
|
| 688 |
+
"rewards/format_reward/std": 0.0,
|
| 689 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 690 |
+
"sampling/importance_sampling_ratio/mean": 0.9999192357063293,
|
| 691 |
+
"sampling/importance_sampling_ratio/min": 0.06552005559206009,
|
| 692 |
+
"sampling/sampling_logp_difference/max": 2.7253990173339844,
|
| 693 |
+
"sampling/sampling_logp_difference/mean": 0.013308782130479813,
|
| 694 |
+
"step": 19
|
| 695 |
+
},
|
| 696 |
+
{
|
| 697 |
+
"clip_ratio/high_max": 0.0,
|
| 698 |
+
"clip_ratio/high_mean": 0.0,
|
| 699 |
+
"clip_ratio/low_mean": 0.0,
|
| 700 |
+
"clip_ratio/low_min": 0.0,
|
| 701 |
+
"clip_ratio/region_mean": 0.0,
|
| 702 |
+
"completions/clipped_ratio": 0.0,
|
| 703 |
+
"completions/max_length": 5089.0,
|
| 704 |
+
"completions/max_terminated_length": 5089.0,
|
| 705 |
+
"completions/mean_length": 1440.9583740234375,
|
| 706 |
+
"completions/mean_terminated_length": 1440.9583740234375,
|
| 707 |
+
"completions/min_length": 896.0,
|
| 708 |
+
"completions/min_terminated_length": 896.0,
|
| 709 |
+
"entropy": 0.2597235403954983,
|
| 710 |
+
"epoch": 0.027548209366391185,
|
| 711 |
+
"frac_reward_zero_std": 0.0,
|
| 712 |
+
"grad_norm": 0.3058200238239626,
|
| 713 |
+
"kl": 0.004811614111531526,
|
| 714 |
+
"learning_rate": 9.983110023102145e-07,
|
| 715 |
+
"loss": -0.0732,
|
| 716 |
+
"num_tokens": 1709421.0,
|
| 717 |
+
"reward": 2.0833334922790527,
|
| 718 |
+
"reward_std": 0.6257078647613525,
|
| 719 |
+
"rewards/cloze_reward/mean": 0.5833333134651184,
|
| 720 |
+
"rewards/cloze_reward/std": 0.5036101937294006,
|
| 721 |
+
"rewards/code_reward/mean": 0.5416666865348816,
|
| 722 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 723 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 724 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 725 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 726 |
+
"sampling/importance_sampling_ratio/mean": 1.0002235174179077,
|
| 727 |
+
"sampling/importance_sampling_ratio/min": 0.010991987772285938,
|
| 728 |
+
"sampling/sampling_logp_difference/max": 4.510588645935059,
|
| 729 |
+
"sampling/sampling_logp_difference/mean": 0.012450532987713814,
|
| 730 |
+
"step": 20
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"clip_ratio/high_max": 0.0,
|
| 734 |
+
"clip_ratio/high_mean": 0.0,
|
| 735 |
+
"clip_ratio/low_mean": 0.0,
|
| 736 |
+
"clip_ratio/low_min": 0.0,
|
| 737 |
+
"clip_ratio/region_mean": 0.0,
|
| 738 |
+
"completions/clipped_ratio": 0.0416666679084301,
|
| 739 |
+
"completions/max_length": 8192.0,
|
| 740 |
+
"completions/max_terminated_length": 6266.0,
|
| 741 |
+
"completions/mean_length": 2971.95849609375,
|
| 742 |
+
"completions/mean_terminated_length": 2745.0,
|
| 743 |
+
"completions/min_length": 725.0,
|
| 744 |
+
"completions/min_terminated_length": 725.0,
|
| 745 |
+
"entropy": 0.23062221333384514,
|
| 746 |
+
"epoch": 0.028925619834710745,
|
| 747 |
+
"frac_reward_zero_std": 0.0,
|
| 748 |
+
"grad_norm": 0.20922776699151296,
|
| 749 |
+
"kl": 0.002331310883164406,
|
| 750 |
+
"learning_rate": 9.981286483174148e-07,
|
| 751 |
+
"loss": 0.0302,
|
| 752 |
+
"num_tokens": 1808892.0,
|
| 753 |
+
"reward": 1.6666667461395264,
|
| 754 |
+
"reward_std": 0.6947464346885681,
|
| 755 |
+
"rewards/cloze_reward/mean": 0.1666666716337204,
|
| 756 |
+
"rewards/cloze_reward/std": 0.3806934952735901,
|
| 757 |
+
"rewards/code_reward/mean": 0.5416666865348816,
|
| 758 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 759 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 760 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 761 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 762 |
+
"sampling/importance_sampling_ratio/mean": 0.999830424785614,
|
| 763 |
+
"sampling/importance_sampling_ratio/min": 5.94212829982399e-13,
|
| 764 |
+
"sampling/sampling_logp_difference/max": 28.151538848876953,
|
| 765 |
+
"sampling/sampling_logp_difference/mean": 0.013190208002924919,
|
| 766 |
+
"step": 21
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"clip_ratio/high_max": 0.0,
|
| 770 |
+
"clip_ratio/high_mean": 0.0,
|
| 771 |
+
"clip_ratio/low_mean": 0.0,
|
| 772 |
+
"clip_ratio/low_min": 0.0,
|
| 773 |
+
"clip_ratio/region_mean": 0.0,
|
| 774 |
+
"completions/clipped_ratio": 0.0,
|
| 775 |
+
"completions/max_length": 3810.0,
|
| 776 |
+
"completions/max_terminated_length": 3810.0,
|
| 777 |
+
"completions/mean_length": 2031.5,
|
| 778 |
+
"completions/mean_terminated_length": 2031.5,
|
| 779 |
+
"completions/min_length": 1207.0,
|
| 780 |
+
"completions/min_terminated_length": 1207.0,
|
| 781 |
+
"entropy": 0.1824016384780407,
|
| 782 |
+
"epoch": 0.030303030303030304,
|
| 783 |
+
"frac_reward_zero_std": 0.0,
|
| 784 |
+
"grad_norm": 0.2952973607886351,
|
| 785 |
+
"kl": 0.004044964851345867,
|
| 786 |
+
"learning_rate": 9.979369667797674e-07,
|
| 787 |
+
"loss": 0.0554,
|
| 788 |
+
"num_tokens": 1911664.0,
|
| 789 |
+
"reward": 1.5,
|
| 790 |
+
"reward_std": 0.48678088188171387,
|
| 791 |
+
"rewards/cloze_reward/mean": 0.0,
|
| 792 |
+
"rewards/cloze_reward/std": 0.0,
|
| 793 |
+
"rewards/code_reward/mean": 0.5,
|
| 794 |
+
"rewards/code_reward/std": 0.5107539296150208,
|
| 795 |
+
"rewards/format_reward/mean": 1.0,
|
| 796 |
+
"rewards/format_reward/std": 0.0,
|
| 797 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 798 |
+
"sampling/importance_sampling_ratio/mean": 0.9998181462287903,
|
| 799 |
+
"sampling/importance_sampling_ratio/min": 0.0026749928947538137,
|
| 800 |
+
"sampling/sampling_logp_difference/max": 5.923808574676514,
|
| 801 |
+
"sampling/sampling_logp_difference/mean": 0.011196551844477654,
|
| 802 |
+
"step": 22
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"clip_ratio/high_max": 0.0,
|
| 806 |
+
"clip_ratio/high_mean": 0.0,
|
| 807 |
+
"clip_ratio/low_mean": 0.0,
|
| 808 |
+
"clip_ratio/low_min": 0.0,
|
| 809 |
+
"clip_ratio/region_mean": 0.0,
|
| 810 |
+
"completions/clipped_ratio": 0.0,
|
| 811 |
+
"completions/max_length": 7742.0,
|
| 812 |
+
"completions/max_terminated_length": 7742.0,
|
| 813 |
+
"completions/mean_length": 2664.791748046875,
|
| 814 |
+
"completions/mean_terminated_length": 2664.791748046875,
|
| 815 |
+
"completions/min_length": 716.0,
|
| 816 |
+
"completions/min_terminated_length": 716.0,
|
| 817 |
+
"entropy": 0.16602139174938202,
|
| 818 |
+
"epoch": 0.03168044077134986,
|
| 819 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 820 |
+
"grad_norm": 0.18646426939832977,
|
| 821 |
+
"kl": 0.0027883301954716444,
|
| 822 |
+
"learning_rate": 9.977359612865422e-07,
|
| 823 |
+
"loss": -0.1659,
|
| 824 |
+
"num_tokens": 2005483.0,
|
| 825 |
+
"reward": 2.0,
|
| 826 |
+
"reward_std": 0.34503278136253357,
|
| 827 |
+
"rewards/cloze_reward/mean": 0.5416666865348816,
|
| 828 |
+
"rewards/cloze_reward/std": 0.5089773535728455,
|
| 829 |
+
"rewards/code_reward/mean": 0.4583333432674408,
|
| 830 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 831 |
+
"rewards/format_reward/mean": 1.0,
|
| 832 |
+
"rewards/format_reward/std": 0.0,
|
| 833 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 834 |
+
"sampling/importance_sampling_ratio/mean": 1.0000344514846802,
|
| 835 |
+
"sampling/importance_sampling_ratio/min": 2.7512096333753844e-12,
|
| 836 |
+
"sampling/sampling_logp_difference/max": 26.618980407714844,
|
| 837 |
+
"sampling/sampling_logp_difference/mean": 0.010194670408964157,
|
| 838 |
+
"step": 23
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"clip_ratio/high_max": 0.0,
|
| 842 |
+
"clip_ratio/high_mean": 0.0,
|
| 843 |
+
"clip_ratio/low_mean": 0.0,
|
| 844 |
+
"clip_ratio/low_min": 0.0,
|
| 845 |
+
"clip_ratio/region_mean": 0.0,
|
| 846 |
+
"completions/clipped_ratio": 0.0416666679084301,
|
| 847 |
+
"completions/max_length": 8192.0,
|
| 848 |
+
"completions/max_terminated_length": 7718.0,
|
| 849 |
+
"completions/mean_length": 4289.5,
|
| 850 |
+
"completions/mean_terminated_length": 4119.826171875,
|
| 851 |
+
"completions/min_length": 979.0,
|
| 852 |
+
"completions/min_terminated_length": 979.0,
|
| 853 |
+
"entropy": 0.2995450422167778,
|
| 854 |
+
"epoch": 0.03305785123966942,
|
| 855 |
+
"frac_reward_zero_std": 0.0,
|
| 856 |
+
"grad_norm": 0.170700316120424,
|
| 857 |
+
"kl": 0.0018004105950240046,
|
| 858 |
+
"learning_rate": 9.975256356016017e-07,
|
| 859 |
+
"loss": 0.0699,
|
| 860 |
+
"num_tokens": 2128183.0,
|
| 861 |
+
"reward": 2.0,
|
| 862 |
+
"reward_std": 0.6288648843765259,
|
| 863 |
+
"rewards/cloze_reward/mean": 0.4583333432674408,
|
| 864 |
+
"rewards/cloze_reward/std": 0.5089773535728455,
|
| 865 |
+
"rewards/code_reward/mean": 0.5833333134651184,
|
| 866 |
+
"rewards/code_reward/std": 0.5036101341247559,
|
| 867 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 868 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 869 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 870 |
+
"sampling/importance_sampling_ratio/mean": 0.9999317526817322,
|
| 871 |
+
"sampling/importance_sampling_ratio/min": 0.08646544814109802,
|
| 872 |
+
"sampling/sampling_logp_difference/max": 2.4480104446411133,
|
| 873 |
+
"sampling/sampling_logp_difference/mean": 0.014326645992696285,
|
| 874 |
+
"step": 24
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"clip_ratio/high_max": 0.0,
|
| 878 |
+
"clip_ratio/high_mean": 0.0,
|
| 879 |
+
"clip_ratio/low_mean": 0.0,
|
| 880 |
+
"clip_ratio/low_min": 0.0,
|
| 881 |
+
"clip_ratio/region_mean": 0.0,
|
| 882 |
+
"completions/clipped_ratio": 0.0,
|
| 883 |
+
"completions/max_length": 7758.0,
|
| 884 |
+
"completions/max_terminated_length": 7758.0,
|
| 885 |
+
"completions/mean_length": 3043.45849609375,
|
| 886 |
+
"completions/mean_terminated_length": 3043.45849609375,
|
| 887 |
+
"completions/min_length": 1282.0,
|
| 888 |
+
"completions/min_terminated_length": 1282.0,
|
| 889 |
+
"entropy": 0.2883247286081314,
|
| 890 |
+
"epoch": 0.03443526170798898,
|
| 891 |
+
"frac_reward_zero_std": 0.6666666865348816,
|
| 892 |
+
"grad_norm": 0.12988436998967914,
|
| 893 |
+
"kl": 0.0025270123151130974,
|
| 894 |
+
"learning_rate": 9.973059936633306e-07,
|
| 895 |
+
"loss": 0.0545,
|
| 896 |
+
"num_tokens": 2218418.0,
|
| 897 |
+
"reward": 2.2916667461395264,
|
| 898 |
+
"reward_std": 0.21362332999706268,
|
| 899 |
+
"rewards/cloze_reward/mean": 0.75,
|
| 900 |
+
"rewards/cloze_reward/std": 0.4423258602619171,
|
| 901 |
+
"rewards/code_reward/mean": 0.5416666865348816,
|
| 902 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 903 |
+
"rewards/format_reward/mean": 1.0,
|
| 904 |
+
"rewards/format_reward/std": 0.0,
|
| 905 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 906 |
+
"sampling/importance_sampling_ratio/mean": 0.9999663829803467,
|
| 907 |
+
"sampling/importance_sampling_ratio/min": 0.10468851774930954,
|
| 908 |
+
"sampling/sampling_logp_difference/max": 2.256765842437744,
|
| 909 |
+
"sampling/sampling_logp_difference/mean": 0.012674104422330856,
|
| 910 |
+
"step": 25
|
| 911 |
+
},
|
| 912 |
+
{
|
| 913 |
+
"clip_ratio/high_max": 0.0,
|
| 914 |
+
"clip_ratio/high_mean": 0.0,
|
| 915 |
+
"clip_ratio/low_mean": 0.0,
|
| 916 |
+
"clip_ratio/low_min": 0.0,
|
| 917 |
+
"clip_ratio/region_mean": 0.0,
|
| 918 |
+
"completions/clipped_ratio": 0.0416666679084301,
|
| 919 |
+
"completions/max_length": 8192.0,
|
| 920 |
+
"completions/max_terminated_length": 4710.0,
|
| 921 |
+
"completions/mean_length": 2069.625,
|
| 922 |
+
"completions/mean_terminated_length": 1803.434814453125,
|
| 923 |
+
"completions/min_length": 935.0,
|
| 924 |
+
"completions/min_terminated_length": 935.0,
|
| 925 |
+
"entropy": 0.1856878437101841,
|
| 926 |
+
"epoch": 0.03581267217630854,
|
| 927 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 928 |
+
"grad_norm": 0.2189265719041607,
|
| 929 |
+
"kl": 0.0038806990487501025,
|
| 930 |
+
"learning_rate": 9.970770395845622e-07,
|
| 931 |
+
"loss": 0.3118,
|
| 932 |
+
"num_tokens": 2309321.0,
|
| 933 |
+
"reward": 2.375,
|
| 934 |
+
"reward_std": 0.5061727166175842,
|
| 935 |
+
"rewards/cloze_reward/mean": 0.5833333134651184,
|
| 936 |
+
"rewards/cloze_reward/std": 0.5036101341247559,
|
| 937 |
+
"rewards/code_reward/mean": 0.8333333134651184,
|
| 938 |
+
"rewards/code_reward/std": 0.3806934952735901,
|
| 939 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 940 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 941 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 942 |
+
"sampling/importance_sampling_ratio/mean": 0.9998181462287903,
|
| 943 |
+
"sampling/importance_sampling_ratio/min": 0.23940998315811157,
|
| 944 |
+
"sampling/sampling_logp_difference/max": 1.4295778274536133,
|
| 945 |
+
"sampling/sampling_logp_difference/mean": 0.009506626054644585,
|
| 946 |
+
"step": 26
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"clip_ratio/high_max": 0.0,
|
| 950 |
+
"clip_ratio/high_mean": 0.0,
|
| 951 |
+
"clip_ratio/low_mean": 0.0,
|
| 952 |
+
"clip_ratio/low_min": 0.0,
|
| 953 |
+
"clip_ratio/region_mean": 0.0,
|
| 954 |
+
"completions/clipped_ratio": 0.0416666679084301,
|
| 955 |
+
"completions/max_length": 8192.0,
|
| 956 |
+
"completions/max_terminated_length": 8177.0,
|
| 957 |
+
"completions/mean_length": 4914.20849609375,
|
| 958 |
+
"completions/mean_terminated_length": 4771.69580078125,
|
| 959 |
+
"completions/min_length": 1792.0,
|
| 960 |
+
"completions/min_terminated_length": 1792.0,
|
| 961 |
+
"entropy": 0.3651472330093384,
|
| 962 |
+
"epoch": 0.0371900826446281,
|
| 963 |
+
"frac_reward_zero_std": 0.0,
|
| 964 |
+
"grad_norm": 0.16794783472528907,
|
| 965 |
+
"kl": 0.0032920141238719225,
|
| 966 |
+
"learning_rate": 9.968387776525007e-07,
|
| 967 |
+
"loss": 0.0044,
|
| 968 |
+
"num_tokens": 2447670.0,
|
| 969 |
+
"reward": 1.7083333730697632,
|
| 970 |
+
"reward_std": 0.6274997591972351,
|
| 971 |
+
"rewards/cloze_reward/mean": 0.5,
|
| 972 |
+
"rewards/cloze_reward/std": 0.5107539296150208,
|
| 973 |
+
"rewards/code_reward/mean": 0.2916666567325592,
|
| 974 |
+
"rewards/code_reward/std": 0.4643056094646454,
|
| 975 |
+
"rewards/format_reward/mean": 0.9166666865348816,
|
| 976 |
+
"rewards/format_reward/std": 0.28232985734939575,
|
| 977 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 978 |
+
"sampling/importance_sampling_ratio/mean": 0.9998521208763123,
|
| 979 |
+
"sampling/importance_sampling_ratio/min": 0.00022299536794889718,
|
| 980 |
+
"sampling/sampling_logp_difference/max": 8.40835952758789,
|
| 981 |
+
"sampling/sampling_logp_difference/mean": 0.017919987440109253,
|
| 982 |
+
"step": 27
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"clip_ratio/high_max": 0.0,
|
| 986 |
+
"clip_ratio/high_mean": 0.0,
|
| 987 |
+
"clip_ratio/low_mean": 0.0,
|
| 988 |
+
"clip_ratio/low_min": 0.0,
|
| 989 |
+
"clip_ratio/region_mean": 0.0,
|
| 990 |
+
"completions/clipped_ratio": 0.0,
|
| 991 |
+
"completions/max_length": 7702.0,
|
| 992 |
+
"completions/max_terminated_length": 7702.0,
|
| 993 |
+
"completions/mean_length": 3003.375,
|
| 994 |
+
"completions/mean_terminated_length": 3003.375,
|
| 995 |
+
"completions/min_length": 1013.0,
|
| 996 |
+
"completions/min_terminated_length": 1013.0,
|
| 997 |
+
"entropy": 0.30894363671541214,
|
| 998 |
+
"epoch": 0.03856749311294766,
|
| 999 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 1000 |
+
"grad_norm": 0.2662075831826717,
|
| 1001 |
+
"kl": 0.003954145242460072,
|
| 1002 |
+
"learning_rate": 9.965912123286424e-07,
|
| 1003 |
+
"loss": 0.085,
|
| 1004 |
+
"num_tokens": 2537663.0,
|
| 1005 |
+
"reward": 2.5416667461395264,
|
| 1006 |
+
"reward_std": 0.4082186222076416,
|
| 1007 |
+
"rewards/cloze_reward/mean": 0.7083333134651184,
|
| 1008 |
+
"rewards/cloze_reward/std": 0.4643056094646454,
|
| 1009 |
+
"rewards/code_reward/mean": 0.8333333134651184,
|
| 1010 |
+
"rewards/code_reward/std": 0.3806934952735901,
|
| 1011 |
+
"rewards/format_reward/mean": 1.0,
|
| 1012 |
+
"rewards/format_reward/std": 0.0,
|
| 1013 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1014 |
+
"sampling/importance_sampling_ratio/mean": 1.0000332593917847,
|
| 1015 |
+
"sampling/importance_sampling_ratio/min": 0.21365012228488922,
|
| 1016 |
+
"sampling/sampling_logp_difference/max": 2.255774974822998,
|
| 1017 |
+
"sampling/sampling_logp_difference/mean": 0.014759156852960587,
|
| 1018 |
+
"step": 28
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"clip_ratio/high_max": 0.0,
|
| 1022 |
+
"clip_ratio/high_mean": 0.0,
|
| 1023 |
+
"clip_ratio/low_mean": 0.0,
|
| 1024 |
+
"clip_ratio/low_min": 0.0,
|
| 1025 |
+
"clip_ratio/region_mean": 0.0,
|
| 1026 |
+
"completions/clipped_ratio": 0.0416666679084301,
|
| 1027 |
+
"completions/max_length": 8192.0,
|
| 1028 |
+
"completions/max_terminated_length": 7521.0,
|
| 1029 |
+
"completions/mean_length": 2249.291748046875,
|
| 1030 |
+
"completions/mean_terminated_length": 1990.9130859375,
|
| 1031 |
+
"completions/min_length": 932.0,
|
| 1032 |
+
"completions/min_terminated_length": 932.0,
|
| 1033 |
+
"entropy": 0.20293106883764267,
|
| 1034 |
+
"epoch": 0.03994490358126722,
|
| 1035 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 1036 |
+
"grad_norm": 0.30621070115238647,
|
| 1037 |
+
"kl": 0.004532316525001079,
|
| 1038 |
+
"learning_rate": 9.963343482486905e-07,
|
| 1039 |
+
"loss": 0.1541,
|
| 1040 |
+
"num_tokens": 2608934.0,
|
| 1041 |
+
"reward": 2.4166667461395264,
|
| 1042 |
+
"reward_std": 0.5028601884841919,
|
| 1043 |
+
"rewards/cloze_reward/mean": 0.5833333134651184,
|
| 1044 |
+
"rewards/cloze_reward/std": 0.5036101341247559,
|
| 1045 |
+
"rewards/code_reward/mean": 0.875,
|
| 1046 |
+
"rewards/code_reward/std": 0.337831974029541,
|
| 1047 |
+
"rewards/format_reward/mean": 0.9583333134651184,
|
| 1048 |
+
"rewards/format_reward/std": 0.20412415266036987,
|
| 1049 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1050 |
+
"sampling/importance_sampling_ratio/mean": 1.000059962272644,
|
| 1051 |
+
"sampling/importance_sampling_ratio/min": 0.2822778820991516,
|
| 1052 |
+
"sampling/sampling_logp_difference/max": 1.3750309944152832,
|
| 1053 |
+
"sampling/sampling_logp_difference/mean": 0.011287961155176163,
|
| 1054 |
+
"step": 29
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"clip_ratio/high_max": 0.0,
|
| 1058 |
+
"clip_ratio/high_mean": 0.0,
|
| 1059 |
+
"clip_ratio/low_mean": 0.0,
|
| 1060 |
+
"clip_ratio/low_min": 0.0,
|
| 1061 |
+
"clip_ratio/region_mean": 0.0,
|
| 1062 |
+
"completions/clipped_ratio": 0.0,
|
| 1063 |
+
"completions/max_length": 6912.0,
|
| 1064 |
+
"completions/max_terminated_length": 6912.0,
|
| 1065 |
+
"completions/mean_length": 2896.416748046875,
|
| 1066 |
+
"completions/mean_terminated_length": 2896.416748046875,
|
| 1067 |
+
"completions/min_length": 1072.0,
|
| 1068 |
+
"completions/min_terminated_length": 1072.0,
|
| 1069 |
+
"entropy": 0.24397730827331543,
|
| 1070 |
+
"epoch": 0.04132231404958678,
|
| 1071 |
+
"frac_reward_zero_std": 0.0,
|
| 1072 |
+
"grad_norm": 0.2637496585585402,
|
| 1073 |
+
"kl": 0.0052707926370203495,
|
| 1074 |
+
"learning_rate": 9.96068190222469e-07,
|
| 1075 |
+
"loss": -0.0809,
|
| 1076 |
+
"num_tokens": 2696368.0,
|
| 1077 |
+
"reward": 2.3333334922790527,
|
| 1078 |
+
"reward_std": 0.7106520533561707,
|
| 1079 |
+
"rewards/cloze_reward/mean": 0.7916666865348816,
|
| 1080 |
+
"rewards/cloze_reward/std": 0.4148511290550232,
|
| 1081 |
+
"rewards/code_reward/mean": 0.5416666865348816,
|
| 1082 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 1083 |
+
"rewards/format_reward/mean": 1.0,
|
| 1084 |
+
"rewards/format_reward/std": 0.0,
|
| 1085 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1086 |
+
"sampling/importance_sampling_ratio/mean": 1.000116229057312,
|
| 1087 |
+
"sampling/importance_sampling_ratio/min": 0.26414525508880615,
|
| 1088 |
+
"sampling/sampling_logp_difference/max": 1.3681449890136719,
|
| 1089 |
+
"sampling/sampling_logp_difference/mean": 0.012104719877243042,
|
| 1090 |
+
"step": 30
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"clip_ratio/high_max": 0.0,
|
| 1094 |
+
"clip_ratio/high_mean": 0.0,
|
| 1095 |
+
"clip_ratio/low_mean": 0.0,
|
| 1096 |
+
"clip_ratio/low_min": 0.0,
|
| 1097 |
+
"clip_ratio/region_mean": 0.0,
|
| 1098 |
+
"completions/clipped_ratio": 0.0,
|
| 1099 |
+
"completions/max_length": 5352.0,
|
| 1100 |
+
"completions/max_terminated_length": 5352.0,
|
| 1101 |
+
"completions/mean_length": 1967.75,
|
| 1102 |
+
"completions/mean_terminated_length": 1967.75,
|
| 1103 |
+
"completions/min_length": 804.0,
|
| 1104 |
+
"completions/min_terminated_length": 804.0,
|
| 1105 |
+
"entropy": 0.21574077382683754,
|
| 1106 |
+
"epoch": 0.04269972451790634,
|
| 1107 |
+
"frac_reward_zero_std": 0.6666666865348816,
|
| 1108 |
+
"grad_norm": 0.12651354951166632,
|
| 1109 |
+
"kl": 0.0038389787659980357,
|
| 1110 |
+
"learning_rate": 9.95792743233833e-07,
|
| 1111 |
+
"loss": 0.1096,
|
| 1112 |
+
"num_tokens": 2766314.0,
|
| 1113 |
+
"reward": 2.4166667461395264,
|
| 1114 |
+
"reward_std": 0.15430335700511932,
|
| 1115 |
+
"rewards/cloze_reward/mean": 0.4166666567325592,
|
| 1116 |
+
"rewards/cloze_reward/std": 0.5036101937294006,
|
| 1117 |
+
"rewards/code_reward/mean": 1.0,
|
| 1118 |
+
"rewards/code_reward/std": 0.0,
|
| 1119 |
+
"rewards/format_reward/mean": 1.0,
|
| 1120 |
+
"rewards/format_reward/std": 0.0,
|
| 1121 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1122 |
+
"sampling/importance_sampling_ratio/mean": 0.9996727108955383,
|
| 1123 |
+
"sampling/importance_sampling_ratio/min": 0.11743912100791931,
|
| 1124 |
+
"sampling/sampling_logp_difference/max": 2.1418352127075195,
|
| 1125 |
+
"sampling/sampling_logp_difference/mean": 0.011217731051146984,
|
| 1126 |
+
"step": 31
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"clip_ratio/high_max": 0.0,
|
| 1130 |
+
"clip_ratio/high_mean": 0.0,
|
| 1131 |
+
"clip_ratio/low_mean": 0.0,
|
| 1132 |
+
"clip_ratio/low_min": 0.0,
|
| 1133 |
+
"clip_ratio/region_mean": 0.0,
|
| 1134 |
+
"completions/clipped_ratio": 0.0,
|
| 1135 |
+
"completions/max_length": 6975.0,
|
| 1136 |
+
"completions/max_terminated_length": 6975.0,
|
| 1137 |
+
"completions/mean_length": 2998.25,
|
| 1138 |
+
"completions/mean_terminated_length": 2998.25,
|
| 1139 |
+
"completions/min_length": 1004.0,
|
| 1140 |
+
"completions/min_terminated_length": 1004.0,
|
| 1141 |
+
"entropy": 0.34803634136915207,
|
| 1142 |
+
"epoch": 0.0440771349862259,
|
| 1143 |
+
"frac_reward_zero_std": 0.0,
|
| 1144 |
+
"grad_norm": 0.18832712543023003,
|
| 1145 |
+
"kl": 0.003418200241867453,
|
| 1146 |
+
"learning_rate": 9.95508012440575e-07,
|
| 1147 |
+
"loss": 0.0195,
|
| 1148 |
+
"num_tokens": 2858208.0,
|
| 1149 |
+
"reward": 2.25,
|
| 1150 |
+
"reward_std": 0.5748276710510254,
|
| 1151 |
+
"rewards/cloze_reward/mean": 0.625,
|
| 1152 |
+
"rewards/cloze_reward/std": 0.494535356760025,
|
| 1153 |
+
"rewards/code_reward/mean": 0.625,
|
| 1154 |
+
"rewards/code_reward/std": 0.494535356760025,
|
| 1155 |
+
"rewards/format_reward/mean": 1.0,
|
| 1156 |
+
"rewards/format_reward/std": 0.0,
|
| 1157 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1158 |
+
"sampling/importance_sampling_ratio/mean": 1.0001078844070435,
|
| 1159 |
+
"sampling/importance_sampling_ratio/min": 0.33018070459365845,
|
| 1160 |
+
"sampling/sampling_logp_difference/max": 1.1081151962280273,
|
| 1161 |
+
"sampling/sampling_logp_difference/mean": 0.01556301862001419,
|
| 1162 |
+
"step": 32
|
| 1163 |
+
},
|
| 1164 |
+
{
|
| 1165 |
+
"clip_ratio/high_max": 0.0,
|
| 1166 |
+
"clip_ratio/high_mean": 0.0,
|
| 1167 |
+
"clip_ratio/low_mean": 0.0,
|
| 1168 |
+
"clip_ratio/low_min": 0.0,
|
| 1169 |
+
"clip_ratio/region_mean": 0.0,
|
| 1170 |
+
"completions/clipped_ratio": 0.0,
|
| 1171 |
+
"completions/max_length": 4436.0,
|
| 1172 |
+
"completions/max_terminated_length": 4436.0,
|
| 1173 |
+
"completions/mean_length": 2222.33349609375,
|
| 1174 |
+
"completions/mean_terminated_length": 2222.33349609375,
|
| 1175 |
+
"completions/min_length": 961.0,
|
| 1176 |
+
"completions/min_terminated_length": 961.0,
|
| 1177 |
+
"entropy": 0.2771223820745945,
|
| 1178 |
+
"epoch": 0.045454545454545456,
|
| 1179 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 1180 |
+
"grad_norm": 0.17495461933111076,
|
| 1181 |
+
"kl": 0.0048337242333218455,
|
| 1182 |
+
"learning_rate": 9.95214003174328e-07,
|
| 1183 |
+
"loss": -0.0133,
|
| 1184 |
+
"num_tokens": 2930472.0,
|
| 1185 |
+
"reward": 2.5,
|
| 1186 |
+
"reward_std": 0.36585909128189087,
|
| 1187 |
+
"rewards/cloze_reward/mean": 0.6666666865348816,
|
| 1188 |
+
"rewards/cloze_reward/std": 0.4815434217453003,
|
| 1189 |
+
"rewards/code_reward/mean": 0.8333333134651184,
|
| 1190 |
+
"rewards/code_reward/std": 0.3806934952735901,
|
| 1191 |
+
"rewards/format_reward/mean": 1.0,
|
| 1192 |
+
"rewards/format_reward/std": 0.0,
|
| 1193 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1194 |
+
"sampling/importance_sampling_ratio/mean": 0.9997199177742004,
|
| 1195 |
+
"sampling/importance_sampling_ratio/min": 0.17066244781017303,
|
| 1196 |
+
"sampling/sampling_logp_difference/max": 2.808061122894287,
|
| 1197 |
+
"sampling/sampling_logp_difference/mean": 0.012434008531272411,
|
| 1198 |
+
"step": 33
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"clip_ratio/high_max": 0.0,
|
| 1202 |
+
"clip_ratio/high_mean": 0.0,
|
| 1203 |
+
"clip_ratio/low_mean": 0.0,
|
| 1204 |
+
"clip_ratio/low_min": 0.0,
|
| 1205 |
+
"clip_ratio/region_mean": 0.0,
|
| 1206 |
+
"completions/clipped_ratio": 0.0,
|
| 1207 |
+
"completions/max_length": 6776.0,
|
| 1208 |
+
"completions/max_terminated_length": 6776.0,
|
| 1209 |
+
"completions/mean_length": 3140.70849609375,
|
| 1210 |
+
"completions/mean_terminated_length": 3140.70849609375,
|
| 1211 |
+
"completions/min_length": 726.0,
|
| 1212 |
+
"completions/min_terminated_length": 726.0,
|
| 1213 |
+
"entropy": 0.28713061660528183,
|
| 1214 |
+
"epoch": 0.046831955922865015,
|
| 1215 |
+
"frac_reward_zero_std": 0.0,
|
| 1216 |
+
"grad_norm": 0.5763177612619246,
|
| 1217 |
+
"kl": 0.005852235772181302,
|
| 1218 |
+
"learning_rate": 9.949107209404663e-07,
|
| 1219 |
+
"loss": 0.0443,
|
| 1220 |
+
"num_tokens": 3043473.0,
|
| 1221 |
+
"reward": 2.0416667461395264,
|
| 1222 |
+
"reward_std": 0.5222300291061401,
|
| 1223 |
+
"rewards/cloze_reward/mean": 0.5,
|
| 1224 |
+
"rewards/cloze_reward/std": 0.5107539296150208,
|
| 1225 |
+
"rewards/code_reward/mean": 0.5416666865348816,
|
| 1226 |
+
"rewards/code_reward/std": 0.5089773535728455,
|
| 1227 |
+
"rewards/format_reward/mean": 1.0,
|
| 1228 |
+
"rewards/format_reward/std": 0.0,
|
| 1229 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1230 |
+
"sampling/importance_sampling_ratio/mean": 1.0002092123031616,
|
| 1231 |
+
"sampling/importance_sampling_ratio/min": 0.010155132971704006,
|
| 1232 |
+
"sampling/sampling_logp_difference/max": 4.589776039123535,
|
| 1233 |
+
"sampling/sampling_logp_difference/mean": 0.012913873419165611,
|
| 1234 |
+
"step": 34
|
| 1235 |
+
},
|
| 1236 |
+
{
|
| 1237 |
+
"clip_ratio/high_max": 0.0,
|
| 1238 |
+
"clip_ratio/high_mean": 0.0,
|
| 1239 |
+
"clip_ratio/low_mean": 0.0,
|
| 1240 |
+
"clip_ratio/low_min": 0.0,
|
| 1241 |
+
"clip_ratio/region_mean": 0.0,
|
| 1242 |
+
"completions/clipped_ratio": 0.0833333358168602,
|
| 1243 |
+
"completions/max_length": 8192.0,
|
| 1244 |
+
"completions/max_terminated_length": 7808.0,
|
| 1245 |
+
"completions/mean_length": 2782.75,
|
| 1246 |
+
"completions/mean_terminated_length": 2291.0,
|
| 1247 |
+
"completions/min_length": 736.0,
|
| 1248 |
+
"completions/min_terminated_length": 736.0,
|
| 1249 |
+
"entropy": 0.23918093740940094,
|
| 1250 |
+
"epoch": 0.048209366391184574,
|
| 1251 |
+
"frac_reward_zero_std": 0.6666666865348816,
|
| 1252 |
+
"grad_norm": 0.19663548974567993,
|
| 1253 |
+
"kl": 0.004491619183681905,
|
| 1254 |
+
"learning_rate": 9.94598171418002e-07,
|
| 1255 |
+
"loss": 0.1035,
|
| 1256 |
+
"num_tokens": 3126827.0,
|
| 1257 |
+
"reward": 2.1666667461395264,
|
| 1258 |
+
"reward_std": 0.35634833574295044,
|
| 1259 |
+
"rewards/cloze_reward/mean": 0.4166666567325592,
|
| 1260 |
+
"rewards/cloze_reward/std": 0.5036101937294006,
|
| 1261 |
+
"rewards/code_reward/mean": 0.8333333134651184,
|
| 1262 |
+
"rewards/code_reward/std": 0.3806934952735901,
|
| 1263 |
+
"rewards/format_reward/mean": 0.9166666865348816,
|
| 1264 |
+
"rewards/format_reward/std": 0.28232985734939575,
|
| 1265 |
+
"sampling/importance_sampling_ratio/max": 1.8434656858444214,
|
| 1266 |
+
"sampling/importance_sampling_ratio/mean": 1.0001463890075684,
|
| 1267 |
+
"sampling/importance_sampling_ratio/min": 0.14892546832561493,
|
| 1268 |
+
"sampling/sampling_logp_difference/max": 1.9043092727661133,
|
| 1269 |
+
"sampling/sampling_logp_difference/mean": 0.011121454648673534,
|
| 1270 |
+
"step": 35
|
| 1271 |
+
},
|
| 1272 |
+
{
|
| 1273 |
+
"clip_ratio/high_max": 0.0,
|
| 1274 |
+
"clip_ratio/high_mean": 0.0,
|
| 1275 |
+
"clip_ratio/low_mean": 0.0,
|
| 1276 |
+
"clip_ratio/low_min": 0.0,
|
| 1277 |
+
"clip_ratio/region_mean": 0.0,
|
| 1278 |
+
"completions/clipped_ratio": 0.0,
|
| 1279 |
+
"completions/max_length": 6397.0,
|
| 1280 |
+
"completions/max_terminated_length": 6397.0,
|
| 1281 |
+
"completions/mean_length": 2130.70849609375,
|
| 1282 |
+
"completions/mean_terminated_length": 2130.70849609375,
|
| 1283 |
+
"completions/min_length": 908.0,
|
| 1284 |
+
"completions/min_terminated_length": 908.0,
|
| 1285 |
+
"entropy": 0.25559694319963455,
|
| 1286 |
+
"epoch": 0.049586776859504134,
|
| 1287 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 1288 |
+
"grad_norm": 0.20044650714243367,
|
| 1289 |
+
"kl": 0.004921266925521195,
|
| 1290 |
+
"learning_rate": 9.94276360459479e-07,
|
| 1291 |
+
"loss": 0.0668,
|
| 1292 |
+
"num_tokens": 3204780.0,
|
| 1293 |
+
"reward": 2.0,
|
| 1294 |
+
"reward_std": 0.34503278136253357,
|
| 1295 |
+
"rewards/cloze_reward/mean": 0.125,
|
| 1296 |
+
"rewards/cloze_reward/std": 0.337831974029541,
|
| 1297 |
+
"rewards/code_reward/mean": 0.875,
|
| 1298 |
+
"rewards/code_reward/std": 0.337831974029541,
|
| 1299 |
+
"rewards/format_reward/mean": 1.0,
|
| 1300 |
+
"rewards/format_reward/std": 0.0,
|
| 1301 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1302 |
+
"sampling/importance_sampling_ratio/mean": 0.9998623728752136,
|
| 1303 |
+
"sampling/importance_sampling_ratio/min": 0.17689232528209686,
|
| 1304 |
+
"sampling/sampling_logp_difference/max": 1.732214093208313,
|
| 1305 |
+
"sampling/sampling_logp_difference/mean": 0.012361792847514153,
|
| 1306 |
+
"step": 36
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"clip_ratio/high_max": 0.0,
|
| 1310 |
+
"clip_ratio/high_mean": 0.0,
|
| 1311 |
+
"clip_ratio/low_mean": 0.0,
|
| 1312 |
+
"clip_ratio/low_min": 0.0,
|
| 1313 |
+
"clip_ratio/region_mean": 0.0,
|
| 1314 |
+
"completions/clipped_ratio": 0.0,
|
| 1315 |
+
"completions/max_length": 4222.0,
|
| 1316 |
+
"completions/max_terminated_length": 4222.0,
|
| 1317 |
+
"completions/mean_length": 1950.666748046875,
|
| 1318 |
+
"completions/mean_terminated_length": 1950.666748046875,
|
| 1319 |
+
"completions/min_length": 1084.0,
|
| 1320 |
+
"completions/min_terminated_length": 1084.0,
|
| 1321 |
+
"entropy": 0.2424805425107479,
|
| 1322 |
+
"epoch": 0.05096418732782369,
|
| 1323 |
+
"frac_reward_zero_std": 0.0,
|
| 1324 |
+
"grad_norm": 0.2413970223564091,
|
| 1325 |
+
"kl": 0.004224332165904343,
|
| 1326 |
+
"learning_rate": 9.939452940908626e-07,
|
| 1327 |
+
"loss": 0.0541,
|
| 1328 |
+
"num_tokens": 3282572.0,
|
| 1329 |
+
"reward": 1.8333333730697632,
|
| 1330 |
+
"reward_std": 0.48678088188171387,
|
| 1331 |
+
"rewards/cloze_reward/mean": 0.0833333358168602,
|
| 1332 |
+
"rewards/cloze_reward/std": 0.28232985734939575,
|
| 1333 |
+
"rewards/code_reward/mean": 0.75,
|
| 1334 |
+
"rewards/code_reward/std": 0.4423258602619171,
|
| 1335 |
+
"rewards/format_reward/mean": 1.0,
|
| 1336 |
+
"rewards/format_reward/std": 0.0,
|
| 1337 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1338 |
+
"sampling/importance_sampling_ratio/mean": 0.999829113483429,
|
| 1339 |
+
"sampling/importance_sampling_ratio/min": 0.16516301035881042,
|
| 1340 |
+
"sampling/sampling_logp_difference/max": 1.800822377204895,
|
| 1341 |
+
"sampling/sampling_logp_difference/mean": 0.01168552041053772,
|
| 1342 |
+
"step": 37
|
| 1343 |
+
},
|
| 1344 |
+
{
|
| 1345 |
+
"clip_ratio/high_max": 0.0,
|
| 1346 |
+
"clip_ratio/high_mean": 0.0,
|
| 1347 |
+
"clip_ratio/low_mean": 0.0,
|
| 1348 |
+
"clip_ratio/low_min": 0.0,
|
| 1349 |
+
"clip_ratio/region_mean": 0.0,
|
| 1350 |
+
"completions/clipped_ratio": 0.0,
|
| 1351 |
+
"completions/max_length": 6989.0,
|
| 1352 |
+
"completions/max_terminated_length": 6989.0,
|
| 1353 |
+
"completions/mean_length": 2920.041748046875,
|
| 1354 |
+
"completions/mean_terminated_length": 2920.041748046875,
|
| 1355 |
+
"completions/min_length": 1364.0,
|
| 1356 |
+
"completions/min_terminated_length": 1364.0,
|
| 1357 |
+
"entropy": 0.2422230765223503,
|
| 1358 |
+
"epoch": 0.05234159779614325,
|
| 1359 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 1360 |
+
"grad_norm": 0.16283138475922154,
|
| 1361 |
+
"kl": 0.004039893392473459,
|
| 1362 |
+
"learning_rate": 9.936049785114279e-07,
|
| 1363 |
+
"loss": 0.0391,
|
| 1364 |
+
"num_tokens": 3380365.0,
|
| 1365 |
+
"reward": 1.8333333730697632,
|
| 1366 |
+
"reward_std": 0.43015047907829285,
|
| 1367 |
+
"rewards/cloze_reward/mean": 0.125,
|
| 1368 |
+
"rewards/cloze_reward/std": 0.337831974029541,
|
| 1369 |
+
"rewards/code_reward/mean": 0.7083333134651184,
|
| 1370 |
+
"rewards/code_reward/std": 0.4643056094646454,
|
| 1371 |
+
"rewards/format_reward/mean": 1.0,
|
| 1372 |
+
"rewards/format_reward/std": 0.0,
|
| 1373 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1374 |
+
"sampling/importance_sampling_ratio/mean": 0.9998534321784973,
|
| 1375 |
+
"sampling/importance_sampling_ratio/min": 0.11749733984470367,
|
| 1376 |
+
"sampling/sampling_logp_difference/max": 2.1413395404815674,
|
| 1377 |
+
"sampling/sampling_logp_difference/mean": 0.012631865218281746,
|
| 1378 |
+
"step": 38
|
| 1379 |
+
},
|
| 1380 |
+
{
|
| 1381 |
+
"clip_ratio/high_max": 0.0,
|
| 1382 |
+
"clip_ratio/high_mean": 0.0,
|
| 1383 |
+
"clip_ratio/low_mean": 0.0,
|
| 1384 |
+
"clip_ratio/low_min": 0.0,
|
| 1385 |
+
"clip_ratio/region_mean": 0.0,
|
| 1386 |
+
"completions/clipped_ratio": 0.0,
|
| 1387 |
+
"completions/max_length": 7304.0,
|
| 1388 |
+
"completions/max_terminated_length": 7304.0,
|
| 1389 |
+
"completions/mean_length": 3322.041748046875,
|
| 1390 |
+
"completions/mean_terminated_length": 3322.041748046875,
|
| 1391 |
+
"completions/min_length": 1.0,
|
| 1392 |
+
"completions/min_terminated_length": 1.0,
|
| 1393 |
+
"entropy": 0.4101082310080528,
|
| 1394 |
+
"epoch": 0.05371900826446281,
|
| 1395 |
+
"frac_reward_zero_std": 0.0,
|
| 1396 |
+
"grad_norm": 0.181795370019662,
|
| 1397 |
+
"kl": 0.0036983516183681786,
|
| 1398 |
+
"learning_rate": 9.932554200936426e-07,
|
| 1399 |
+
"loss": -0.1581,
|
| 1400 |
+
"num_tokens": 3488278.0,
|
| 1401 |
+
"reward": 1.2083333730697632,
|
| 1402 |
+
"reward_std": 0.6043562889099121,
|
| 1403 |
+
"rewards/cloze_reward/mean": 0.1666666716337204,
|
| 1404 |
+
"rewards/cloze_reward/std": 0.3806934952735901,
|
| 1405 |
+
"rewards/code_reward/mean": 0.375,
|
| 1406 |
+
"rewards/code_reward/std": 0.494535356760025,
|
| 1407 |
+
"rewards/format_reward/mean": 0.6666666865348816,
|
| 1408 |
+
"rewards/format_reward/std": 0.4815434217453003,
|
| 1409 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1410 |
+
"sampling/importance_sampling_ratio/mean": 0.9999675154685974,
|
| 1411 |
+
"sampling/importance_sampling_ratio/min": 0.04754088446497917,
|
| 1412 |
+
"sampling/sampling_logp_difference/max": 3.0461652278900146,
|
| 1413 |
+
"sampling/sampling_logp_difference/mean": 0.01610734686255455,
|
| 1414 |
+
"step": 39
|
| 1415 |
+
},
|
| 1416 |
+
{
|
| 1417 |
+
"clip_ratio/high_max": 0.0,
|
| 1418 |
+
"clip_ratio/high_mean": 0.0,
|
| 1419 |
+
"clip_ratio/low_mean": 0.0,
|
| 1420 |
+
"clip_ratio/low_min": 0.0,
|
| 1421 |
+
"clip_ratio/region_mean": 0.0,
|
| 1422 |
+
"completions/clipped_ratio": 0.0,
|
| 1423 |
+
"completions/max_length": 5011.0,
|
| 1424 |
+
"completions/max_terminated_length": 5011.0,
|
| 1425 |
+
"completions/mean_length": 2942.58349609375,
|
| 1426 |
+
"completions/mean_terminated_length": 2942.58349609375,
|
| 1427 |
+
"completions/min_length": 1454.0,
|
| 1428 |
+
"completions/min_terminated_length": 1454.0,
|
| 1429 |
+
"entropy": 0.35880884528160095,
|
| 1430 |
+
"epoch": 0.05509641873278237,
|
| 1431 |
+
"frac_reward_zero_std": 0.3333333432674408,
|
| 1432 |
+
"grad_norm": 0.17000406623354494,
|
| 1433 |
+
"kl": 0.003319010080303997,
|
| 1434 |
+
"learning_rate": 9.92896625383049e-07,
|
| 1435 |
+
"loss": -0.0559,
|
| 1436 |
+
"num_tokens": 3575956.0,
|
| 1437 |
+
"reward": 1.875,
|
| 1438 |
+
"reward_std": 0.4023112952709198,
|
| 1439 |
+
"rewards/cloze_reward/mean": 0.4583333432674408,
|
| 1440 |
+
"rewards/cloze_reward/std": 0.5089773535728455,
|
| 1441 |
+
"rewards/code_reward/mean": 0.4166666567325592,
|
| 1442 |
+
"rewards/code_reward/std": 0.5036101937294006,
|
| 1443 |
+
"rewards/format_reward/mean": 1.0,
|
| 1444 |
+
"rewards/format_reward/std": 0.0,
|
| 1445 |
+
"sampling/importance_sampling_ratio/max": 2.0,
|
| 1446 |
+
"sampling/importance_sampling_ratio/mean": 1.0000556707382202,
|
| 1447 |
+
"sampling/importance_sampling_ratio/min": 0.27387282252311707,
|
| 1448 |
+
"sampling/sampling_logp_difference/max": 1.2950913906097412,
|
| 1449 |
+
"sampling/sampling_logp_difference/mean": 0.01579936034977436,
|
| 1450 |
+
"step": 40
|
| 1451 |
+
}
|
| 1452 |
+
],
|
| 1453 |
+
"logging_steps": 1.0,
|
| 1454 |
+
"max_steps": 726,
|
| 1455 |
+
"num_input_tokens_seen": 3575956,
|
| 1456 |
+
"num_train_epochs": 1,
|
| 1457 |
+
"save_steps": 20,
|
| 1458 |
+
"stateful_callbacks": {
|
| 1459 |
+
"TrainerControl": {
|
| 1460 |
+
"args": {
|
| 1461 |
+
"should_epoch_stop": false,
|
| 1462 |
+
"should_evaluate": false,
|
| 1463 |
+
"should_log": false,
|
| 1464 |
+
"should_save": true,
|
| 1465 |
+
"should_training_stop": false
|
| 1466 |
+
},
|
| 1467 |
+
"attributes": {}
|
| 1468 |
+
}
|
| 1469 |
+
},
|
| 1470 |
+
"total_flos": 0.0,
|
| 1471 |
+
"train_batch_size": 1,
|
| 1472 |
+
"trial_name": null,
|
| 1473 |
+
"trial_params": null
|
| 1474 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:400c06d2fd822d2508c9d6f0b826f17d303bbe43322b8eb0e229cb0e2d1a95fa
|
| 3 |
+
size 9553
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|