smirki commited on
Commit
a42d07d
·
verified ·
1 Parent(s): c2c9437

Upload checkpoint from step 950

Browse files
.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,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for forward_message in messages %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- set message = messages[index] %}
21
+ {%- set tool_start = '<tool_response>' %}
22
+ {%- set tool_start_length = tool_start|length %}
23
+ {%- set start_of_message = message.content[:tool_start_length] %}
24
+ {%- set tool_end = '</tool_response>' %}
25
+ {%- set tool_end_length = tool_end|length %}
26
+ {%- set start_pos = (message.content|length) - tool_end_length %}
27
+ {%- if start_pos < 0 %}
28
+ {%- set start_pos = 0 %}
29
+ {%- endif %}
30
+ {%- set end_of_message = message.content[start_pos:] %}
31
+ {%- if ns.multi_step_tool and message.role == "user" and not(start_of_message == tool_start and end_of_message == tool_end) %}
32
+ {%- set ns.multi_step_tool = false %}
33
+ {%- set ns.last_query_index = index %}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- for message in messages %}
37
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
38
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
39
+ {%- elif message.role == "assistant" %}
40
+ {%- set content = message.content %}
41
+ {%- set reasoning_content = '' %}
42
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
43
+ {%- set reasoning_content = message.reasoning_content %}
44
+ {%- else %}
45
+ {%- if '</think>' in message.content %}
46
+ {%- set content = (message.content.split('</think>')|last).lstrip('\n') %}
47
+ {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}
48
+ {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- if loop.index0 > ns.last_query_index %}
52
+ {%- if loop.last or (not loop.last and reasoning_content) %}
53
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
54
+ {%- else %}
55
+ {{- '<|im_start|>' + message.role + '\n' + content }}
56
+ {%- endif %}
57
+ {%- else %}
58
+ {{- '<|im_start|>' + message.role + '\n' + content }}
59
+ {%- endif %}
60
+ {%- if message.tool_calls %}
61
+ {%- for tool_call in message.tool_calls %}
62
+ {%- if (loop.first and content) or (not loop.first) %}
63
+ {{- '\n' }}
64
+ {%- endif %}
65
+ {%- if tool_call.function %}
66
+ {%- set tool_call = tool_call.function %}
67
+ {%- endif %}
68
+ {{- '<tool_call>\n{"name": "' }}
69
+ {{- tool_call.name }}
70
+ {{- '", "arguments": ' }}
71
+ {%- if tool_call.arguments is string %}
72
+ {{- tool_call.arguments }}
73
+ {%- else %}
74
+ {{- tool_call.arguments | tojson }}
75
+ {%- endif %}
76
+ {{- '}\n</tool_call>' }}
77
+ {%- endfor %}
78
+ {%- endif %}
79
+ {{- '<|im_end|>\n' }}
80
+ {%- elif message.role == "tool" %}
81
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
82
+ {{- '<|im_start|>user' }}
83
+ {%- endif %}
84
+ {{- '\n<tool_response>\n' }}
85
+ {{- message.content }}
86
+ {{- '\n</tool_response>' }}
87
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
88
+ {{- '<|im_end|>\n' }}
89
+ {%- endif %}
90
+ {%- endif %}
91
+ {%- endfor %}
92
+ {%- if add_generation_prompt %}
93
+ {{- '<|im_start|>assistant\n' }}
94
+ {%- if enable_thinking is defined and enable_thinking is false %}
95
+ {{- '<think>\n\n</think>\n\n' }}
96
+ {%- endif %}
97
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 4096,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 12288,
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": 40960,
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": 151654,
59
+ "rms_norm_eps": 1e-06,
60
+ "rope_scaling": null,
61
+ "rope_theta": 1000000,
62
+ "sliding_window": null,
63
+ "tie_word_embeddings": false,
64
+ "transformers_version": "4.56.1",
65
+ "unsloth_fixed": true,
66
+ "unsloth_version": "2025.7.4",
67
+ "use_cache": false,
68
+ "use_sliding_window": false,
69
+ "vocab_size": 151936
70
+ }
generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151643
6
+ ],
7
+ "max_length": 40960,
8
+ "pad_token_id": 151654,
9
+ "temperature": 0.6,
10
+ "top_k": 20,
11
+ "top_p": 0.95,
12
+ "transformers_version": "4.56.1"
13
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66618bf4bbeaaca30667d66c41f1bf9de15d683abb76b9b570f3d72978d53a5f
3
+ size 4902257696
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:720f4e1c7a61e3f3e9e28cd9af16240ddc05d175796cb168f399a8c905938404
3
+ size 4915960368
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4557a045047091576f9a50118b840f468ea683751f77f99403e05560f64ef7c
3
+ size 4983068496
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ccc1251ffa293d41dd3e05d77bfce91fe96029fd6f5c21b87ddd39fb1c5cf72
3
+ size 1580230264
model.safetensors.index.json ADDED
@@ -0,0 +1,407 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 8190735360,
4
+ "total_size": 16381470720
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00004-of-00004.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
17
+ "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
18
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
25
+ "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
26
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
27
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
28
+ "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
29
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
30
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
31
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
32
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
33
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
34
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
35
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
36
+ "model.layers.10.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
37
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
38
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
39
+ "model.layers.10.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
40
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
41
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
42
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
43
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
44
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
45
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
46
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
47
+ "model.layers.11.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
48
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
49
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
50
+ "model.layers.11.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
51
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
52
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
53
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
54
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
55
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
56
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
57
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
58
+ "model.layers.12.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
59
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
60
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
61
+ "model.layers.12.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
62
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
63
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
64
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
65
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
66
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
67
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
68
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
69
+ "model.layers.13.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
70
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
71
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
72
+ "model.layers.13.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
73
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
74
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
75
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
76
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
77
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
78
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
79
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
80
+ "model.layers.14.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
81
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
82
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
83
+ "model.layers.14.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
84
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
85
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
86
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
87
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
88
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
89
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
90
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
91
+ "model.layers.15.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
92
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
93
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
94
+ "model.layers.15.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
95
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
96
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
97
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
98
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
99
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
100
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
101
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
102
+ "model.layers.16.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
103
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
104
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
105
+ "model.layers.16.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
106
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
107
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
108
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
109
+ "model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
110
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
111
+ "model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
112
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
113
+ "model.layers.17.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
114
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
115
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
116
+ "model.layers.17.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
117
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
118
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
119
+ "model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
120
+ "model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
121
+ "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
122
+ "model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
123
+ "model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
124
+ "model.layers.18.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
125
+ "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
126
+ "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
127
+ "model.layers.18.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
128
+ "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
129
+ "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
130
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
131
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
132
+ "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
133
+ "model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
134
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
135
+ "model.layers.19.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
136
+ "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
137
+ "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
138
+ "model.layers.19.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
139
+ "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
140
+ "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
141
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
142
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
143
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
144
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
145
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
146
+ "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
147
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
148
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
149
+ "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
150
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
151
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
152
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00004.safetensors",
153
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
154
+ "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
155
+ "model.layers.20.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
156
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
157
+ "model.layers.20.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
158
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
159
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
160
+ "model.layers.20.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
161
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
162
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
163
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00004.safetensors",
164
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
165
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
166
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
167
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
168
+ "model.layers.21.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
169
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
170
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
171
+ "model.layers.21.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
172
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
173
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
174
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
175
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
176
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
177
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
178
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
179
+ "model.layers.22.self_attn.k_norm.weight": "model-00002-of-00004.safetensors",
180
+ "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
181
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
182
+ "model.layers.22.self_attn.q_norm.weight": "model-00002-of-00004.safetensors",
183
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
184
+ "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
185
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
186
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
187
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
188
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
189
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
190
+ "model.layers.23.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
191
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
192
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
193
+ "model.layers.23.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
194
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
195
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
196
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
197
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
198
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
199
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
200
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
201
+ "model.layers.24.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
202
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
203
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
204
+ "model.layers.24.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
205
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
206
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
207
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
208
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
209
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
210
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
211
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
212
+ "model.layers.25.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
213
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
214
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
215
+ "model.layers.25.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
216
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
217
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
218
+ "model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
219
+ "model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
220
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
221
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
222
+ "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
223
+ "model.layers.26.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
224
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
225
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
226
+ "model.layers.26.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
227
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
228
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
229
+ "model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
230
+ "model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
231
+ "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
232
+ "model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
233
+ "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
234
+ "model.layers.27.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
235
+ "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
236
+ "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
237
+ "model.layers.27.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
238
+ "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
239
+ "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
240
+ "model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
241
+ "model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
242
+ "model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
243
+ "model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
244
+ "model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
245
+ "model.layers.28.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
246
+ "model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
247
+ "model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
248
+ "model.layers.28.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
249
+ "model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
250
+ "model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
251
+ "model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
252
+ "model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
253
+ "model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
254
+ "model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
255
+ "model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
256
+ "model.layers.29.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
257
+ "model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
258
+ "model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
259
+ "model.layers.29.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
260
+ "model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
261
+ "model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
262
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
263
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
264
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
265
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
266
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
267
+ "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
268
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
269
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
270
+ "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
271
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
272
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
273
+ "model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
274
+ "model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
275
+ "model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
276
+ "model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
277
+ "model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
278
+ "model.layers.30.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
279
+ "model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
280
+ "model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
281
+ "model.layers.30.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
282
+ "model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
283
+ "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
284
+ "model.layers.31.input_layernorm.weight": "model-00003-of-00004.safetensors",
285
+ "model.layers.31.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
286
+ "model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
287
+ "model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
288
+ "model.layers.31.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
289
+ "model.layers.31.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
290
+ "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
291
+ "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
292
+ "model.layers.31.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
293
+ "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
294
+ "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
295
+ "model.layers.32.input_layernorm.weight": "model-00003-of-00004.safetensors",
296
+ "model.layers.32.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
297
+ "model.layers.32.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
298
+ "model.layers.32.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
299
+ "model.layers.32.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
300
+ "model.layers.32.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
301
+ "model.layers.32.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
302
+ "model.layers.32.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
303
+ "model.layers.32.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
304
+ "model.layers.32.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
305
+ "model.layers.32.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
306
+ "model.layers.33.input_layernorm.weight": "model-00003-of-00004.safetensors",
307
+ "model.layers.33.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
308
+ "model.layers.33.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
309
+ "model.layers.33.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
310
+ "model.layers.33.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
311
+ "model.layers.33.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
312
+ "model.layers.33.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
313
+ "model.layers.33.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
314
+ "model.layers.33.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
315
+ "model.layers.33.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
316
+ "model.layers.33.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
317
+ "model.layers.34.input_layernorm.weight": "model-00003-of-00004.safetensors",
318
+ "model.layers.34.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
319
+ "model.layers.34.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
320
+ "model.layers.34.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
321
+ "model.layers.34.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
322
+ "model.layers.34.self_attn.k_norm.weight": "model-00003-of-00004.safetensors",
323
+ "model.layers.34.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
324
+ "model.layers.34.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
325
+ "model.layers.34.self_attn.q_norm.weight": "model-00003-of-00004.safetensors",
326
+ "model.layers.34.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
327
+ "model.layers.34.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
328
+ "model.layers.35.input_layernorm.weight": "model-00004-of-00004.safetensors",
329
+ "model.layers.35.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
330
+ "model.layers.35.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
331
+ "model.layers.35.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
332
+ "model.layers.35.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
333
+ "model.layers.35.self_attn.k_norm.weight": "model-00004-of-00004.safetensors",
334
+ "model.layers.35.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
335
+ "model.layers.35.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
336
+ "model.layers.35.self_attn.q_norm.weight": "model-00004-of-00004.safetensors",
337
+ "model.layers.35.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
338
+ "model.layers.35.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
339
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
340
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
341
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
342
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
343
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
344
+ "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
345
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
346
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
347
+ "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
348
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
349
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
350
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
351
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
352
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
353
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
354
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
355
+ "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
356
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
357
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
358
+ "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
359
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
360
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
361
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
362
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
363
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
364
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
365
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
366
+ "model.layers.6.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
367
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
368
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
369
+ "model.layers.6.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
370
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
371
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
372
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
373
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
374
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
375
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
376
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
377
+ "model.layers.7.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
378
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
379
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
380
+ "model.layers.7.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
381
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
382
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
383
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
384
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
385
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
386
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
387
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
388
+ "model.layers.8.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
389
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
390
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
391
+ "model.layers.8.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
392
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
393
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
394
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
395
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
396
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
397
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
398
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
399
+ "model.layers.9.self_attn.k_norm.weight": "model-00001-of-00004.safetensors",
400
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
401
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
402
+ "model.layers.9.self_attn.q_norm.weight": "model-00001-of-00004.safetensors",
403
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
404
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
405
+ "model.norm.weight": "model-00004-of-00004.safetensors"
406
+ }
407
+ }
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f772b2bf68cfe8ae9a2c09ce475680ebd33f98e8d810baf70825ec4a668cf3e
3
+ size 32763296520
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61c19bab1174704a4a4441475683bf1270277af15d2e2c95e964789128e482c4
3
+ size 14645
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf18f7e8ee46120fc5618da558bfc6f30d047897e85a0c36d0c5004216d1b080
3
+ size 1465
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": "<|vision_pad|>",
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,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 40960,
235
+ "pad_token": "<|vision_pad|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
trainer_state.json ADDED
@@ -0,0 +1,984 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.172316063938329,
6
+ "eval_steps": 500,
7
+ "global_step": 950,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.401060389354825,
14
+ "epoch": 0.0018138533046139895,
15
+ "grad_norm": 0.5078125,
16
+ "learning_rate": 4.999991783232007e-05,
17
+ "loss": 0.3909,
18
+ "mean_token_accuracy": 0.8833676137030124,
19
+ "num_tokens": 689094.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.35119859240949153,
24
+ "epoch": 0.003627706609227979,
25
+ "grad_norm": 0.3515625,
26
+ "learning_rate": 4.999963379658905e-05,
27
+ "loss": 0.3488,
28
+ "mean_token_accuracy": 0.8924659512937069,
29
+ "num_tokens": 1431066.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.330338497646153,
34
+ "epoch": 0.005441559913841968,
35
+ "grad_norm": 0.3359375,
36
+ "learning_rate": 4.999914688069563e-05,
37
+ "loss": 0.3263,
38
+ "mean_token_accuracy": 0.8976220838725567,
39
+ "num_tokens": 2149722.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.3173067133873701,
44
+ "epoch": 0.007255413218455958,
45
+ "grad_norm": 0.37109375,
46
+ "learning_rate": 4.9998457088591286e-05,
47
+ "loss": 0.3126,
48
+ "mean_token_accuracy": 0.900362791121006,
49
+ "num_tokens": 2839517.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.3035059319809079,
54
+ "epoch": 0.009069266523069946,
55
+ "grad_norm": 0.37890625,
56
+ "learning_rate": 4.999756442587392e-05,
57
+ "loss": 0.2985,
58
+ "mean_token_accuracy": 0.9043247863650322,
59
+ "num_tokens": 3562428.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.31549433059990406,
64
+ "epoch": 0.010883119827683935,
65
+ "grad_norm": 0.447265625,
66
+ "learning_rate": 4.999646889978778e-05,
67
+ "loss": 0.3119,
68
+ "mean_token_accuracy": 0.9018740214407444,
69
+ "num_tokens": 679264.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.3051564427092671,
74
+ "epoch": 0.012696973132297925,
75
+ "grad_norm": 0.349609375,
76
+ "learning_rate": 4.99951705192234e-05,
77
+ "loss": 0.3007,
78
+ "mean_token_accuracy": 0.9044437751173973,
79
+ "num_tokens": 1386187.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 0.29480861593037844,
84
+ "epoch": 0.014510826436911916,
85
+ "grad_norm": 0.35546875,
86
+ "learning_rate": 4.999366929471757e-05,
87
+ "loss": 0.2925,
88
+ "mean_token_accuracy": 0.9076969392597676,
89
+ "num_tokens": 2069407.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 0.29471962377429006,
94
+ "epoch": 0.016324679741525905,
95
+ "grad_norm": 0.392578125,
96
+ "learning_rate": 4.999196523845322e-05,
97
+ "loss": 0.2822,
98
+ "mean_token_accuracy": 0.9081305578351021,
99
+ "num_tokens": 2751799.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 0.2778853852301836,
104
+ "epoch": 0.018138533046139892,
105
+ "grad_norm": 0.390625,
106
+ "learning_rate": 4.9990058364259315e-05,
107
+ "loss": 0.2757,
108
+ "mean_token_accuracy": 0.9112294614315033,
109
+ "num_tokens": 3432327.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 0.2759243570268154,
114
+ "epoch": 0.019952386350753883,
115
+ "grad_norm": 0.33984375,
116
+ "learning_rate": 4.998794868761076e-05,
117
+ "loss": 0.2709,
118
+ "mean_token_accuracy": 0.9125727131962776,
119
+ "num_tokens": 4120004.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 0.2782453015446663,
124
+ "epoch": 0.02176623965536787,
125
+ "grad_norm": 0.3515625,
126
+ "learning_rate": 4.9985636225628276e-05,
127
+ "loss": 0.2707,
128
+ "mean_token_accuracy": 0.9114268697798252,
129
+ "num_tokens": 4818399.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 0.28113641776144505,
134
+ "epoch": 0.023580092959981862,
135
+ "grad_norm": 0.318359375,
136
+ "learning_rate": 4.998312099707823e-05,
137
+ "loss": 0.2816,
138
+ "mean_token_accuracy": 0.9110292144119739,
139
+ "num_tokens": 5530113.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 0.2701249118894339,
144
+ "epoch": 0.02539394626459585,
145
+ "grad_norm": 0.384765625,
146
+ "learning_rate": 4.998040302237253e-05,
147
+ "loss": 0.2633,
148
+ "mean_token_accuracy": 0.9143483161926269,
149
+ "num_tokens": 6202520.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 0.26040864232927563,
154
+ "epoch": 0.02720779956920984,
155
+ "grad_norm": 0.376953125,
156
+ "learning_rate": 4.997748232356841e-05,
157
+ "loss": 0.2595,
158
+ "mean_token_accuracy": 0.9160367086529732,
159
+ "num_tokens": 6897257.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 0.26147676482796667,
164
+ "epoch": 0.02902165287382383,
165
+ "grad_norm": 0.37890625,
166
+ "learning_rate": 4.997435892436832e-05,
167
+ "loss": 0.2607,
168
+ "mean_token_accuracy": 0.9158791072666645,
169
+ "num_tokens": 7596780.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 0.2591979356482625,
174
+ "epoch": 0.03083550617843782,
175
+ "grad_norm": 0.333984375,
176
+ "learning_rate": 4.997103285011964e-05,
177
+ "loss": 0.2498,
178
+ "mean_token_accuracy": 0.917728378623724,
179
+ "num_tokens": 8327856.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 0.262632866948843,
184
+ "epoch": 0.03264935948305181,
185
+ "grad_norm": 0.35546875,
186
+ "learning_rate": 4.996750412781454e-05,
187
+ "loss": 0.2615,
188
+ "mean_token_accuracy": 0.9157723136246204,
189
+ "num_tokens": 9035609.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 0.2631745539605618,
194
+ "epoch": 0.0344632127876658,
195
+ "grad_norm": 0.392578125,
196
+ "learning_rate": 4.996377278608977e-05,
197
+ "loss": 0.2632,
198
+ "mean_token_accuracy": 0.9168937481939793,
199
+ "num_tokens": 9761489.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 0.2691297778859735,
204
+ "epoch": 0.036277066092279785,
205
+ "grad_norm": 0.349609375,
206
+ "learning_rate": 4.995983885522636e-05,
207
+ "loss": 0.267,
208
+ "mean_token_accuracy": 0.9136621370911598,
209
+ "num_tokens": 10480790.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 0.2528717964887619,
214
+ "epoch": 0.038090919396893776,
215
+ "grad_norm": 0.3671875,
216
+ "learning_rate": 4.995570236714945e-05,
217
+ "loss": 0.2457,
218
+ "mean_token_accuracy": 0.9190806046128273,
219
+ "num_tokens": 11166729.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 0.25353531800210477,
224
+ "epoch": 0.03990477270150777,
225
+ "grad_norm": 0.48046875,
226
+ "learning_rate": 4.995136335542799e-05,
227
+ "loss": 0.2538,
228
+ "mean_token_accuracy": 0.9182398840785027,
229
+ "num_tokens": 11883461.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 0.2523710783571005,
234
+ "epoch": 0.04171862600612176,
235
+ "grad_norm": 0.380859375,
236
+ "learning_rate": 4.9946821855274475e-05,
237
+ "loss": 0.2471,
238
+ "mean_token_accuracy": 0.9204144366085529,
239
+ "num_tokens": 12586996.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 0.24951837193220855,
244
+ "epoch": 0.04353247931073574,
245
+ "grad_norm": 0.375,
246
+ "learning_rate": 4.994207790354464e-05,
247
+ "loss": 0.2439,
248
+ "mean_token_accuracy": 0.9190732814371586,
249
+ "num_tokens": 13294833.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 0.2435963459312916,
254
+ "epoch": 0.04534633261534973,
255
+ "grad_norm": 0.361328125,
256
+ "learning_rate": 4.993713153873721e-05,
257
+ "loss": 0.2387,
258
+ "mean_token_accuracy": 0.9220220901072025,
259
+ "num_tokens": 13964074.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 0.24172000139951705,
264
+ "epoch": 0.047160185919963724,
265
+ "grad_norm": 0.36328125,
266
+ "learning_rate": 4.9931982800993535e-05,
267
+ "loss": 0.2409,
268
+ "mean_token_accuracy": 0.9220294274389744,
269
+ "num_tokens": 14699210.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 0.24300440158694983,
274
+ "epoch": 0.048974039224577715,
275
+ "grad_norm": 0.3828125,
276
+ "learning_rate": 4.992663173209732e-05,
277
+ "loss": 0.2383,
278
+ "mean_token_accuracy": 0.9216976344585419,
279
+ "num_tokens": 15397171.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 0.23483966048806906,
284
+ "epoch": 0.0507878925291917,
285
+ "grad_norm": 0.412109375,
286
+ "learning_rate": 4.992107837547419e-05,
287
+ "loss": 0.2312,
288
+ "mean_token_accuracy": 0.9239355817437171,
289
+ "num_tokens": 16084594.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 0.22807897245511413,
294
+ "epoch": 0.05260174583380569,
295
+ "grad_norm": 0.4296875,
296
+ "learning_rate": 4.991532277619149e-05,
297
+ "loss": 0.225,
298
+ "mean_token_accuracy": 0.9266773730516433,
299
+ "num_tokens": 16814512.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 0.23185804225504397,
304
+ "epoch": 0.05441559913841968,
305
+ "grad_norm": 0.396484375,
306
+ "learning_rate": 4.9909364980957735e-05,
307
+ "loss": 0.227,
308
+ "mean_token_accuracy": 0.9256549589335918,
309
+ "num_tokens": 17530989.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 0.227366485260427,
314
+ "epoch": 0.05622945244303367,
315
+ "grad_norm": 0.392578125,
316
+ "learning_rate": 4.99032050381224e-05,
317
+ "loss": 0.2258,
318
+ "mean_token_accuracy": 0.9261060066521167,
319
+ "num_tokens": 18206500.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 0.2307612099684775,
324
+ "epoch": 0.05804330574764766,
325
+ "grad_norm": 0.369140625,
326
+ "learning_rate": 4.989684299767541e-05,
327
+ "loss": 0.2252,
328
+ "mean_token_accuracy": 0.9251494728028774,
329
+ "num_tokens": 18876031.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 0.23350342214107514,
334
+ "epoch": 0.059857159052261646,
335
+ "grad_norm": 0.349609375,
336
+ "learning_rate": 4.9890278911246805e-05,
337
+ "loss": 0.2307,
338
+ "mean_token_accuracy": 0.9253196962177753,
339
+ "num_tokens": 19628445.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 0.22912344289943576,
344
+ "epoch": 0.06167101235687564,
345
+ "grad_norm": 0.365234375,
346
+ "learning_rate": 4.9883512832106286e-05,
347
+ "loss": 0.2253,
348
+ "mean_token_accuracy": 0.926545312255621,
349
+ "num_tokens": 20323150.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 0.22221376914530994,
354
+ "epoch": 0.06348486566148963,
355
+ "grad_norm": 0.404296875,
356
+ "learning_rate": 4.987654481516276e-05,
357
+ "loss": 0.2179,
358
+ "mean_token_accuracy": 0.92796630859375,
359
+ "num_tokens": 21008346.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 0.220701056253165,
364
+ "epoch": 0.06529871896610362,
365
+ "grad_norm": 0.38671875,
366
+ "learning_rate": 4.9869374916963983e-05,
367
+ "loss": 0.2147,
368
+ "mean_token_accuracy": 0.9299234464764595,
369
+ "num_tokens": 21709970.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 0.2218360759317875,
374
+ "epoch": 0.06711257227071761,
375
+ "grad_norm": 0.349609375,
376
+ "learning_rate": 4.9862003195696e-05,
377
+ "loss": 0.2175,
378
+ "mean_token_accuracy": 0.9282336570322514,
379
+ "num_tokens": 22414407.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 0.21832106141373514,
384
+ "epoch": 0.0689264255753316,
385
+ "grad_norm": 0.388671875,
386
+ "learning_rate": 4.985442971118273e-05,
387
+ "loss": 0.2154,
388
+ "mean_token_accuracy": 0.9296296700835228,
389
+ "num_tokens": 23105526.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 0.22634686436504126,
394
+ "epoch": 0.07074027887994558,
395
+ "grad_norm": 0.41796875,
396
+ "learning_rate": 4.984665452488545e-05,
397
+ "loss": 0.2291,
398
+ "mean_token_accuracy": 0.9264358282089233,
399
+ "num_tokens": 23783734.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 0.21892870962619781,
404
+ "epoch": 0.07255413218455957,
405
+ "grad_norm": 0.361328125,
406
+ "learning_rate": 4.983867769990233e-05,
407
+ "loss": 0.2138,
408
+ "mean_token_accuracy": 0.929813839495182,
409
+ "num_tokens": 24499302.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 0.20870111417025328,
414
+ "epoch": 0.07436798548917356,
415
+ "grad_norm": 0.373046875,
416
+ "learning_rate": 4.9830499300967924e-05,
417
+ "loss": 0.2059,
418
+ "mean_token_accuracy": 0.9323622785508633,
419
+ "num_tokens": 25187005.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 0.2046168447472155,
424
+ "epoch": 0.07618183879378755,
425
+ "grad_norm": 0.35546875,
426
+ "learning_rate": 4.9822119394452575e-05,
427
+ "loss": 0.2022,
428
+ "mean_token_accuracy": 0.9341225482523441,
429
+ "num_tokens": 25894789.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 0.21055085053667427,
434
+ "epoch": 0.07799569209840154,
435
+ "grad_norm": 0.3984375,
436
+ "learning_rate": 4.981353804836196e-05,
437
+ "loss": 0.2088,
438
+ "mean_token_accuracy": 0.9323237225413322,
439
+ "num_tokens": 26605837.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 0.22691676011309028,
444
+ "epoch": 0.07980954540301553,
445
+ "grad_norm": 0.3828125,
446
+ "learning_rate": 4.98047553323365e-05,
447
+ "loss": 0.2232,
448
+ "mean_token_accuracy": 0.9282535433769226,
449
+ "num_tokens": 27306059.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 0.21169109037145972,
454
+ "epoch": 0.08162339870762952,
455
+ "grad_norm": 0.349609375,
456
+ "learning_rate": 4.979577131765079e-05,
457
+ "loss": 0.2094,
458
+ "mean_token_accuracy": 0.9311828054487705,
459
+ "num_tokens": 28027405.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 0.21191262369975447,
464
+ "epoch": 0.08343725201224352,
465
+ "grad_norm": 0.408203125,
466
+ "learning_rate": 4.978658607721301e-05,
467
+ "loss": 0.2076,
468
+ "mean_token_accuracy": 0.9319212548434734,
469
+ "num_tokens": 28717583.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 0.20386602552607655,
474
+ "epoch": 0.08525110531685749,
475
+ "grad_norm": 0.498046875,
476
+ "learning_rate": 4.977719968556441e-05,
477
+ "loss": 0.1973,
478
+ "mean_token_accuracy": 0.9341823615133762,
479
+ "num_tokens": 29415356.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 0.21132566928863525,
484
+ "epoch": 0.08706495862147148,
485
+ "grad_norm": 0.400390625,
486
+ "learning_rate": 4.976761221887859e-05,
487
+ "loss": 0.2095,
488
+ "mean_token_accuracy": 0.9307463005185127,
489
+ "num_tokens": 30130018.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 0.2104976624250412,
494
+ "epoch": 0.08887881192608547,
495
+ "grad_norm": 0.3359375,
496
+ "learning_rate": 4.975782375496098e-05,
497
+ "loss": 0.2057,
498
+ "mean_token_accuracy": 0.9317945875227451,
499
+ "num_tokens": 30871597.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 0.20463952338322997,
504
+ "epoch": 0.09069266523069947,
505
+ "grad_norm": 0.392578125,
506
+ "learning_rate": 4.974783437324812e-05,
507
+ "loss": 0.203,
508
+ "mean_token_accuracy": 0.934221388399601,
509
+ "num_tokens": 31571911.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 0.20768251903355123,
514
+ "epoch": 0.09250651853531346,
515
+ "grad_norm": 0.376953125,
516
+ "learning_rate": 4.9737644154807126e-05,
517
+ "loss": 0.2058,
518
+ "mean_token_accuracy": 0.9322210021317006,
519
+ "num_tokens": 32245409.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 0.20007140738889576,
524
+ "epoch": 0.09432037183992745,
525
+ "grad_norm": 0.3984375,
526
+ "learning_rate": 4.972725318233492e-05,
527
+ "loss": 0.1977,
528
+ "mean_token_accuracy": 0.9346926286816597,
529
+ "num_tokens": 32960743.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 0.20683543616905808,
534
+ "epoch": 0.09613422514454144,
535
+ "grad_norm": 0.376953125,
536
+ "learning_rate": 4.971666154015762e-05,
537
+ "loss": 0.2034,
538
+ "mean_token_accuracy": 0.9335305042564869,
539
+ "num_tokens": 33657841.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 0.2172858018428087,
544
+ "epoch": 0.09794807844915543,
545
+ "grad_norm": 0.451171875,
546
+ "learning_rate": 4.970586931422985e-05,
547
+ "loss": 0.2102,
548
+ "mean_token_accuracy": 0.9308790504932404,
549
+ "num_tokens": 34304617.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 0.19533313820138573,
554
+ "epoch": 0.09976193175376942,
555
+ "grad_norm": 0.443359375,
556
+ "learning_rate": 4.969487659213404e-05,
557
+ "loss": 0.1942,
558
+ "mean_token_accuracy": 0.9365381173789501,
559
+ "num_tokens": 35002676.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 0.19501794883981347,
564
+ "epoch": 0.1015757850583834,
565
+ "grad_norm": 0.396484375,
566
+ "learning_rate": 4.9683683463079716e-05,
567
+ "loss": 0.194,
568
+ "mean_token_accuracy": 0.9368167445063591,
569
+ "num_tokens": 35721130.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 0.19730768594890832,
574
+ "epoch": 0.10338963836299739,
575
+ "grad_norm": 0.4375,
576
+ "learning_rate": 4.967229001790275e-05,
577
+ "loss": 0.1912,
578
+ "mean_token_accuracy": 0.9373390160501003,
579
+ "num_tokens": 36452825.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 0.20269922027364373,
584
+ "epoch": 0.10520349166761138,
585
+ "grad_norm": 0.416015625,
586
+ "learning_rate": 4.966069634906465e-05,
587
+ "loss": 0.1976,
588
+ "mean_token_accuracy": 0.9344136849045753,
589
+ "num_tokens": 37150583.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 0.1830467650666833,
594
+ "epoch": 0.10701734497222537,
595
+ "grad_norm": 0.36328125,
596
+ "learning_rate": 4.964890255065182e-05,
597
+ "loss": 0.1813,
598
+ "mean_token_accuracy": 0.9408909261226654,
599
+ "num_tokens": 37856958.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 0.18502615857869387,
604
+ "epoch": 0.10883119827683936,
605
+ "grad_norm": 0.38671875,
606
+ "learning_rate": 4.9636908718374776e-05,
607
+ "loss": 0.1811,
608
+ "mean_token_accuracy": 0.9401354268193245,
609
+ "num_tokens": 38557749.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 0.17543947864323856,
614
+ "epoch": 0.11064505158145335,
615
+ "grad_norm": 0.3828125,
616
+ "learning_rate": 4.962471494956736e-05,
617
+ "loss": 0.1742,
618
+ "mean_token_accuracy": 0.9421761430799961,
619
+ "num_tokens": 39302134.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 0.18896188419312238,
624
+ "epoch": 0.11245890488606734,
625
+ "grad_norm": 0.376953125,
626
+ "learning_rate": 4.961232134318597e-05,
627
+ "loss": 0.1848,
628
+ "mean_token_accuracy": 0.9393556989729405,
629
+ "num_tokens": 40012713.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 0.19227341655641794,
634
+ "epoch": 0.11427275819068133,
635
+ "grad_norm": 0.408203125,
636
+ "learning_rate": 4.9599727999808776e-05,
637
+ "loss": 0.1813,
638
+ "mean_token_accuracy": 0.9380827076733113,
639
+ "num_tokens": 40728293.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 0.17786815362051128,
644
+ "epoch": 0.11608661149529532,
645
+ "grad_norm": 0.75,
646
+ "learning_rate": 4.9586935021634835e-05,
647
+ "loss": 0.1764,
648
+ "mean_token_accuracy": 0.9420537509024143,
649
+ "num_tokens": 41434153.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 0.18211883958429098,
654
+ "epoch": 0.1179004647999093,
655
+ "grad_norm": 0.412109375,
656
+ "learning_rate": 4.957394251248334e-05,
657
+ "loss": 0.1771,
658
+ "mean_token_accuracy": 0.9409064181149006,
659
+ "num_tokens": 42140372.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 0.1796271875500679,
664
+ "epoch": 0.11971431810452329,
665
+ "grad_norm": 0.41796875,
666
+ "learning_rate": 4.9560750577792715e-05,
667
+ "loss": 0.1747,
668
+ "mean_token_accuracy": 0.942291560024023,
669
+ "num_tokens": 42838039.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 0.17686794362962246,
674
+ "epoch": 0.12152817140913728,
675
+ "grad_norm": 0.388671875,
676
+ "learning_rate": 4.954735932461982e-05,
677
+ "loss": 0.1741,
678
+ "mean_token_accuracy": 0.942273823171854,
679
+ "num_tokens": 43550368.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 0.18043181113898754,
684
+ "epoch": 0.12334202471375127,
685
+ "grad_norm": 0.458984375,
686
+ "learning_rate": 4.9533768861639016e-05,
687
+ "loss": 0.1758,
688
+ "mean_token_accuracy": 0.9421767868101597,
689
+ "num_tokens": 44249323.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 0.17555835144594312,
694
+ "epoch": 0.12515587801836525,
695
+ "grad_norm": 0.453125,
696
+ "learning_rate": 4.951997929914135e-05,
697
+ "loss": 0.1712,
698
+ "mean_token_accuracy": 0.9432690389454365,
699
+ "num_tokens": 44934599.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 0.1881471230648458,
704
+ "epoch": 0.12696973132297926,
705
+ "grad_norm": 0.44921875,
706
+ "learning_rate": 4.9505990749033596e-05,
707
+ "loss": 0.1814,
708
+ "mean_token_accuracy": 0.9401827119290829,
709
+ "num_tokens": 45627988.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 0.1738990875892341,
714
+ "epoch": 0.12878358462759323,
715
+ "grad_norm": 0.396484375,
716
+ "learning_rate": 4.9491803324837394e-05,
717
+ "loss": 0.1669,
718
+ "mean_token_accuracy": 0.9448154501616954,
719
+ "num_tokens": 46344816.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 0.1657118304632604,
724
+ "epoch": 0.13059743793220724,
725
+ "grad_norm": 0.39453125,
726
+ "learning_rate": 4.94774171416883e-05,
727
+ "loss": 0.1635,
728
+ "mean_token_accuracy": 0.9460572391748429,
729
+ "num_tokens": 47031930.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 0.17199594508856536,
734
+ "epoch": 0.13241129123682122,
735
+ "grad_norm": 0.3828125,
736
+ "learning_rate": 4.946283231633488e-05,
737
+ "loss": 0.1677,
738
+ "mean_token_accuracy": 0.9447118684649467,
739
+ "num_tokens": 47700276.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 0.17147760968655348,
744
+ "epoch": 0.13422514454143522,
745
+ "grad_norm": 0.380859375,
746
+ "learning_rate": 4.944804896713773e-05,
747
+ "loss": 0.1699,
748
+ "mean_token_accuracy": 0.9442392319440842,
749
+ "num_tokens": 48399953.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 0.16508059948682785,
754
+ "epoch": 0.1360389978460492,
755
+ "grad_norm": 0.400390625,
756
+ "learning_rate": 4.943306721406854e-05,
757
+ "loss": 0.1605,
758
+ "mean_token_accuracy": 0.9466995656490326,
759
+ "num_tokens": 49117167.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 0.1752813272178173,
764
+ "epoch": 0.1378528511506632,
765
+ "grad_norm": 0.39453125,
766
+ "learning_rate": 4.941788717870912e-05,
767
+ "loss": 0.1733,
768
+ "mean_token_accuracy": 0.9437988288700581,
769
+ "num_tokens": 49824093.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 0.17272874722257256,
774
+ "epoch": 0.13966670445527718,
775
+ "grad_norm": 0.431640625,
776
+ "learning_rate": 4.940250898425039e-05,
777
+ "loss": 0.1678,
778
+ "mean_token_accuracy": 0.9446949861943722,
779
+ "num_tokens": 50511512.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 0.16612791642546654,
784
+ "epoch": 0.14148055775989116,
785
+ "grad_norm": 0.421875,
786
+ "learning_rate": 4.93869327554914e-05,
787
+ "loss": 0.1624,
788
+ "mean_token_accuracy": 0.9459903188049793,
789
+ "num_tokens": 51215026.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 0.16376803433522583,
794
+ "epoch": 0.14329441106450516,
795
+ "grad_norm": 0.369140625,
796
+ "learning_rate": 4.937115861883831e-05,
797
+ "loss": 0.1604,
798
+ "mean_token_accuracy": 0.9473146192729474,
799
+ "num_tokens": 51929249.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 0.1707521677017212,
804
+ "epoch": 0.14510826436911914,
805
+ "grad_norm": 0.359375,
806
+ "learning_rate": 4.935518670230339e-05,
807
+ "loss": 0.1664,
808
+ "mean_token_accuracy": 0.9445839419960975,
809
+ "num_tokens": 52626389.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 0.15680131250992418,
814
+ "epoch": 0.14692211767373314,
815
+ "grad_norm": 0.345703125,
816
+ "learning_rate": 4.933901713550391e-05,
817
+ "loss": 0.1565,
818
+ "mean_token_accuracy": 0.9488645300269127,
819
+ "num_tokens": 53324625.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 0.16342241717502476,
824
+ "epoch": 0.14873597097834712,
825
+ "grad_norm": 0.353515625,
826
+ "learning_rate": 4.932265004966119e-05,
827
+ "loss": 0.1582,
828
+ "mean_token_accuracy": 0.9477129466831684,
829
+ "num_tokens": 54022972.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 0.16008385811001064,
834
+ "epoch": 0.15054982428296113,
835
+ "grad_norm": 0.46484375,
836
+ "learning_rate": 4.930608557759945e-05,
837
+ "loss": 0.1552,
838
+ "mean_token_accuracy": 0.9485097445547581,
839
+ "num_tokens": 54705358.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 0.15298983799293636,
844
+ "epoch": 0.1523636775875751,
845
+ "grad_norm": 0.35546875,
846
+ "learning_rate": 4.928932385374477e-05,
847
+ "loss": 0.15,
848
+ "mean_token_accuracy": 0.9502383783459664,
849
+ "num_tokens": 55415741.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 0.16001109983772038,
854
+ "epoch": 0.1541775308921891,
855
+ "grad_norm": 0.39453125,
856
+ "learning_rate": 4.927236501412399e-05,
857
+ "loss": 0.1576,
858
+ "mean_token_accuracy": 0.9483717873692512,
859
+ "num_tokens": 56107468.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 0.15251143919304014,
864
+ "epoch": 0.15599138419680308,
865
+ "grad_norm": 0.3828125,
866
+ "learning_rate": 4.925520919636361e-05,
867
+ "loss": 0.1469,
868
+ "mean_token_accuracy": 0.9511617720127106,
869
+ "num_tokens": 56823057.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 0.1463920651935041,
874
+ "epoch": 0.15780523750141706,
875
+ "grad_norm": 0.349609375,
876
+ "learning_rate": 4.923785653968868e-05,
877
+ "loss": 0.1465,
878
+ "mean_token_accuracy": 0.9523930512368679,
879
+ "num_tokens": 57549593.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 0.1542105100117624,
884
+ "epoch": 0.15961909080603107,
885
+ "grad_norm": 0.388671875,
886
+ "learning_rate": 4.922030718492166e-05,
887
+ "loss": 0.1522,
888
+ "mean_token_accuracy": 0.9503716394305229,
889
+ "num_tokens": 58266995.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 0.16295539326965808,
894
+ "epoch": 0.16143294411064504,
895
+ "grad_norm": 0.36328125,
896
+ "learning_rate": 4.920256127448125e-05,
897
+ "loss": 0.1583,
898
+ "mean_token_accuracy": 0.9478306032717227,
899
+ "num_tokens": 58991460.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 0.16300919009372591,
904
+ "epoch": 0.16324679741525905,
905
+ "grad_norm": 0.39453125,
906
+ "learning_rate": 4.9184618952381314e-05,
907
+ "loss": 0.161,
908
+ "mean_token_accuracy": 0.9473481513559818,
909
+ "num_tokens": 59703569.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 0.1508354874327779,
914
+ "epoch": 0.16506065071987303,
915
+ "grad_norm": 0.357421875,
916
+ "learning_rate": 4.916648036422962e-05,
917
+ "loss": 0.1496,
918
+ "mean_token_accuracy": 0.9515601739287376,
919
+ "num_tokens": 60396836.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 0.14858688032254577,
924
+ "epoch": 0.16687450402448703,
925
+ "grad_norm": 0.36328125,
926
+ "learning_rate": 4.914814565722671e-05,
927
+ "loss": 0.1445,
928
+ "mean_token_accuracy": 0.9528601355850697,
929
+ "num_tokens": 61112387.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 0.15294391922652723,
934
+ "epoch": 0.168688357329101,
935
+ "grad_norm": 0.3828125,
936
+ "learning_rate": 4.91296149801647e-05,
937
+ "loss": 0.1515,
938
+ "mean_token_accuracy": 0.9504486098885536,
939
+ "num_tokens": 61840615.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 0.16582977958023548,
944
+ "epoch": 0.17050221063371498,
945
+ "grad_norm": 0.341796875,
946
+ "learning_rate": 4.9110888483426075e-05,
947
+ "loss": 0.1642,
948
+ "mean_token_accuracy": 0.948068980127573,
949
+ "num_tokens": 62517757.0,
950
+ "step": 940
951
+ },
952
+ {
953
+ "entropy": 0.1455585315823555,
954
+ "epoch": 0.172316063938329,
955
+ "grad_norm": 0.337890625,
956
+ "learning_rate": 4.909196631898244e-05,
957
+ "loss": 0.1438,
958
+ "mean_token_accuracy": 0.9531501352787017,
959
+ "num_tokens": 63235939.0,
960
+ "step": 950
961
+ }
962
+ ],
963
+ "logging_steps": 10,
964
+ "max_steps": 11028,
965
+ "num_input_tokens_seen": 0,
966
+ "num_train_epochs": 2,
967
+ "save_steps": 50,
968
+ "stateful_callbacks": {
969
+ "TrainerControl": {
970
+ "args": {
971
+ "should_epoch_stop": false,
972
+ "should_evaluate": false,
973
+ "should_log": false,
974
+ "should_save": true,
975
+ "should_training_stop": false
976
+ },
977
+ "attributes": {}
978
+ }
979
+ },
980
+ "total_flos": 3.033342770766072e+18,
981
+ "train_batch_size": 1,
982
+ "trial_name": null,
983
+ "trial_params": null
984
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d3320605f3a81285438af587e983bfef181c74b93185545ccd0f1d943992a1e
3
+ size 6225
vocab.json ADDED
The diff for this file is too large to render. See raw diff