roonbug commited on
Commit
2a40a84
·
verified ·
1 Parent(s): 2aa6f98

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -34,3 +34,4 @@ saved_model/**/* 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
  checkpoint-500/tokenizer.json 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
  checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
checkpoint-1000/added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "<image_soft_token>": 262144
3
+ }
checkpoint-1000/chat_template.jinja ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}
2
+ {%- if messages[0]['role'] == 'system' -%}
3
+ {%- if messages[0]['content'] is string -%}
4
+ {%- set first_user_prefix = messages[0]['content'] + '
5
+
6
+ ' -%}
7
+ {%- else -%}
8
+ {%- set first_user_prefix = messages[0]['content'][0]['text'] + '
9
+
10
+ ' -%}
11
+ {%- endif -%}
12
+ {%- set loop_messages = messages[1:] -%}
13
+ {%- else -%}
14
+ {%- set first_user_prefix = "" -%}
15
+ {%- set loop_messages = messages -%}
16
+ {%- endif -%}
17
+ {%- for message in loop_messages -%}
18
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
19
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
20
+ {%- endif -%}
21
+ {%- if (message['role'] == 'assistant') -%}
22
+ {%- set role = "model" -%}
23
+ {%- else -%}
24
+ {%- set role = message['role'] -%}
25
+ {%- endif -%}
26
+ {{ '<start_of_turn>' + role + '
27
+ ' + (first_user_prefix if loop.first else "") }}
28
+ {%- if message['content'] is string -%}
29
+ {{ message['content'] | trim }}
30
+ {%- elif message['content'] is iterable -%}
31
+ {%- for item in message['content'] -%}
32
+ {%- if item['type'] == 'image' -%}
33
+ {{ '<start_of_image>' }}
34
+ {%- elif item['type'] == 'text' -%}
35
+ {{ item['text'] | trim }}
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ {%- else -%}
39
+ {{ raise_exception("Invalid content type") }}
40
+ {%- endif -%}
41
+ {{ '<end_of_turn>
42
+ ' }}
43
+ {%- endfor -%}
44
+ {%- if add_generation_prompt -%}
45
+ {{'<start_of_turn>model
46
+ '}}
47
+ {%- endif -%}
checkpoint-1000/config.json ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_sliding_window_pattern": 6,
3
+ "architectures": [
4
+ "Gemma3ForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "attn_logit_softcapping": null,
9
+ "bos_token_id": 2,
10
+ "dtype": "bfloat16",
11
+ "eos_token_id": 1,
12
+ "final_logit_softcapping": null,
13
+ "head_dim": 256,
14
+ "hidden_activation": "gelu_pytorch_tanh",
15
+ "hidden_size": 3840,
16
+ "initializer_range": 0.02,
17
+ "intermediate_size": 15360,
18
+ "layer_types": [
19
+ "sliding_attention",
20
+ "sliding_attention",
21
+ "sliding_attention",
22
+ "sliding_attention",
23
+ "sliding_attention",
24
+ "full_attention",
25
+ "sliding_attention",
26
+ "sliding_attention",
27
+ "sliding_attention",
28
+ "sliding_attention",
29
+ "sliding_attention",
30
+ "full_attention",
31
+ "sliding_attention",
32
+ "sliding_attention",
33
+ "sliding_attention",
34
+ "sliding_attention",
35
+ "sliding_attention",
36
+ "full_attention",
37
+ "sliding_attention",
38
+ "sliding_attention",
39
+ "sliding_attention",
40
+ "sliding_attention",
41
+ "sliding_attention",
42
+ "full_attention",
43
+ "sliding_attention",
44
+ "sliding_attention",
45
+ "sliding_attention",
46
+ "sliding_attention",
47
+ "sliding_attention",
48
+ "full_attention",
49
+ "sliding_attention",
50
+ "sliding_attention",
51
+ "sliding_attention",
52
+ "sliding_attention",
53
+ "sliding_attention",
54
+ "full_attention",
55
+ "sliding_attention",
56
+ "sliding_attention",
57
+ "sliding_attention",
58
+ "sliding_attention",
59
+ "sliding_attention",
60
+ "full_attention",
61
+ "sliding_attention",
62
+ "sliding_attention",
63
+ "sliding_attention",
64
+ "sliding_attention",
65
+ "sliding_attention",
66
+ "full_attention"
67
+ ],
68
+ "max_position_embeddings": 131072,
69
+ "model_type": "gemma3_text",
70
+ "num_attention_heads": 16,
71
+ "num_hidden_layers": 48,
72
+ "num_key_value_heads": 8,
73
+ "pad_token_id": 0,
74
+ "query_pre_attn_scalar": 256,
75
+ "rms_norm_eps": 1e-06,
76
+ "rope_local_base_freq": 10000.0,
77
+ "rope_scaling": {
78
+ "factor": 8.0,
79
+ "rope_type": "linear"
80
+ },
81
+ "rope_theta": 1000000.0,
82
+ "sliding_window": 1024,
83
+ "transformers_version": "4.56.1",
84
+ "use_cache": true,
85
+ "vocab_size": 262208
86
+ }
checkpoint-1000/generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 2,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 1,
6
+ 106
7
+ ],
8
+ "pad_token_id": 0,
9
+ "top_k": 64,
10
+ "top_p": 0.95,
11
+ "transformers_version": "4.56.1"
12
+ }
checkpoint-1000/model-00001-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a4c14f38ffc9e23d873fa999eea1fc965dcedcec267e7a99f07c6fdbe8760d8
3
+ size 4915892992
checkpoint-1000/model-00002-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0335ce336b31e38c581326acb77ff28330c2073764b1924ad7108d788b56ba68
3
+ size 4931294472
checkpoint-1000/model-00003-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0d6a60cf6a1708be0613ab7c4d10457ad99b98c02e40ebd5f320fe02aa0d50c
3
+ size 4931294528
checkpoint-1000/model-00004-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bd9340bc368427bcc805e329f32ec7f6a73ab12274d00a8b9c03d49fe0853d0
3
+ size 4931294528
checkpoint-1000/model-00005-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d80ec30fa09df9cb78149b3af4da5e7f22bbe89087198871d4f36c70903e30a6
3
+ size 3822364808
checkpoint-1000/model.safetensors.index.json ADDED
@@ -0,0 +1,634 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 11766034176,
4
+ "total_size": 23532068352
5
+ },
6
+ "weight_map": {
7
+ "model.embed_tokens.weight": "model-00001-of-00005.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00005.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
13
+ "model.layers.0.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
14
+ "model.layers.0.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
15
+ "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
16
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
17
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
18
+ "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
19
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
20
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
21
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00005.safetensors",
22
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
23
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
24
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
25
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
26
+ "model.layers.1.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
27
+ "model.layers.1.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
28
+ "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
29
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
30
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
31
+ "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
32
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
33
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
34
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00005.safetensors",
35
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
36
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
37
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
38
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
39
+ "model.layers.10.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
40
+ "model.layers.10.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
41
+ "model.layers.10.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
42
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
43
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
44
+ "model.layers.10.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
45
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
46
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
47
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00005.safetensors",
48
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
49
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
50
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
51
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
52
+ "model.layers.11.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
53
+ "model.layers.11.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
54
+ "model.layers.11.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
55
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
56
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
57
+ "model.layers.11.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
58
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
59
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
60
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00005.safetensors",
61
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
62
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
63
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
64
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
65
+ "model.layers.12.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
66
+ "model.layers.12.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
67
+ "model.layers.12.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
68
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
69
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
70
+ "model.layers.12.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
71
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
72
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
73
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00005.safetensors",
74
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
75
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
76
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
77
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
78
+ "model.layers.13.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
79
+ "model.layers.13.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
80
+ "model.layers.13.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
81
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
82
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
83
+ "model.layers.13.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
84
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
85
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
86
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00005.safetensors",
87
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
88
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
89
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
90
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
91
+ "model.layers.14.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
92
+ "model.layers.14.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
93
+ "model.layers.14.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
94
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
95
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
96
+ "model.layers.14.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
97
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
98
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
99
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00005.safetensors",
100
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
101
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
102
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
103
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
104
+ "model.layers.15.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
105
+ "model.layers.15.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
106
+ "model.layers.15.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
107
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
108
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
109
+ "model.layers.15.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
110
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
111
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
112
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00005.safetensors",
113
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
114
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
115
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
116
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
117
+ "model.layers.16.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
118
+ "model.layers.16.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
119
+ "model.layers.16.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
120
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
121
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
122
+ "model.layers.16.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
123
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
124
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
125
+ "model.layers.17.input_layernorm.weight": "model-00003-of-00005.safetensors",
126
+ "model.layers.17.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
127
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
128
+ "model.layers.17.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
129
+ "model.layers.17.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
130
+ "model.layers.17.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
131
+ "model.layers.17.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
132
+ "model.layers.17.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
133
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
134
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
135
+ "model.layers.17.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
136
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
137
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
138
+ "model.layers.18.input_layernorm.weight": "model-00003-of-00005.safetensors",
139
+ "model.layers.18.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
140
+ "model.layers.18.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
141
+ "model.layers.18.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
142
+ "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
143
+ "model.layers.18.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
144
+ "model.layers.18.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
145
+ "model.layers.18.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
146
+ "model.layers.18.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
147
+ "model.layers.18.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
148
+ "model.layers.18.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
149
+ "model.layers.18.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
150
+ "model.layers.18.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
151
+ "model.layers.19.input_layernorm.weight": "model-00003-of-00005.safetensors",
152
+ "model.layers.19.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
153
+ "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
154
+ "model.layers.19.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
155
+ "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
156
+ "model.layers.19.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
157
+ "model.layers.19.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
158
+ "model.layers.19.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
159
+ "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
160
+ "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
161
+ "model.layers.19.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
162
+ "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
163
+ "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
164
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00005.safetensors",
165
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
166
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
167
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
168
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
169
+ "model.layers.2.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
170
+ "model.layers.2.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
171
+ "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
172
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
173
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
174
+ "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
175
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
176
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
177
+ "model.layers.20.input_layernorm.weight": "model-00003-of-00005.safetensors",
178
+ "model.layers.20.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
179
+ "model.layers.20.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
180
+ "model.layers.20.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
181
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
182
+ "model.layers.20.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
183
+ "model.layers.20.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
184
+ "model.layers.20.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
185
+ "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
186
+ "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
187
+ "model.layers.20.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
188
+ "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
189
+ "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
190
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00005.safetensors",
191
+ "model.layers.21.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
192
+ "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
193
+ "model.layers.21.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
194
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
195
+ "model.layers.21.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
196
+ "model.layers.21.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
197
+ "model.layers.21.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
198
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
199
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
200
+ "model.layers.21.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
201
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
202
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
203
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00005.safetensors",
204
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
205
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
206
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
207
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
208
+ "model.layers.22.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
209
+ "model.layers.22.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
210
+ "model.layers.22.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
211
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
212
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
213
+ "model.layers.22.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
214
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
215
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
216
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00005.safetensors",
217
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
218
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
219
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
220
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
221
+ "model.layers.23.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
222
+ "model.layers.23.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
223
+ "model.layers.23.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
224
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
225
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
226
+ "model.layers.23.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
227
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
228
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
229
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00005.safetensors",
230
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
231
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
232
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
233
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
234
+ "model.layers.24.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
235
+ "model.layers.24.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
236
+ "model.layers.24.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
237
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
238
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
239
+ "model.layers.24.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
240
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
241
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
242
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00005.safetensors",
243
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
244
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
245
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
246
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
247
+ "model.layers.25.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
248
+ "model.layers.25.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
249
+ "model.layers.25.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
250
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
251
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
252
+ "model.layers.25.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
253
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
254
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
255
+ "model.layers.26.input_layernorm.weight": "model-00003-of-00005.safetensors",
256
+ "model.layers.26.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
257
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
258
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
259
+ "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
260
+ "model.layers.26.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
261
+ "model.layers.26.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
262
+ "model.layers.26.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
263
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
264
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
265
+ "model.layers.26.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
266
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
267
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
268
+ "model.layers.27.input_layernorm.weight": "model-00003-of-00005.safetensors",
269
+ "model.layers.27.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
270
+ "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
271
+ "model.layers.27.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
272
+ "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00005.safetensors",
273
+ "model.layers.27.post_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
274
+ "model.layers.27.pre_feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
275
+ "model.layers.27.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
276
+ "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
277
+ "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
278
+ "model.layers.27.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
279
+ "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
280
+ "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
281
+ "model.layers.28.input_layernorm.weight": "model-00004-of-00005.safetensors",
282
+ "model.layers.28.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
283
+ "model.layers.28.mlp.gate_proj.weight": "model-00003-of-00005.safetensors",
284
+ "model.layers.28.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
285
+ "model.layers.28.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
286
+ "model.layers.28.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
287
+ "model.layers.28.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
288
+ "model.layers.28.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
289
+ "model.layers.28.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
290
+ "model.layers.28.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
291
+ "model.layers.28.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
292
+ "model.layers.28.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
293
+ "model.layers.28.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
294
+ "model.layers.29.input_layernorm.weight": "model-00004-of-00005.safetensors",
295
+ "model.layers.29.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
296
+ "model.layers.29.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
297
+ "model.layers.29.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
298
+ "model.layers.29.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
299
+ "model.layers.29.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
300
+ "model.layers.29.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
301
+ "model.layers.29.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
302
+ "model.layers.29.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
303
+ "model.layers.29.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
304
+ "model.layers.29.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
305
+ "model.layers.29.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
306
+ "model.layers.29.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
307
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00005.safetensors",
308
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
309
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
310
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
311
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
312
+ "model.layers.3.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
313
+ "model.layers.3.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
314
+ "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
315
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
316
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
317
+ "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
318
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
319
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
320
+ "model.layers.30.input_layernorm.weight": "model-00004-of-00005.safetensors",
321
+ "model.layers.30.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
322
+ "model.layers.30.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
323
+ "model.layers.30.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
324
+ "model.layers.30.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
325
+ "model.layers.30.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
326
+ "model.layers.30.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
327
+ "model.layers.30.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
328
+ "model.layers.30.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
329
+ "model.layers.30.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
330
+ "model.layers.30.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
331
+ "model.layers.30.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
332
+ "model.layers.30.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
333
+ "model.layers.31.input_layernorm.weight": "model-00004-of-00005.safetensors",
334
+ "model.layers.31.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
335
+ "model.layers.31.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
336
+ "model.layers.31.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
337
+ "model.layers.31.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
338
+ "model.layers.31.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
339
+ "model.layers.31.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
340
+ "model.layers.31.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
341
+ "model.layers.31.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
342
+ "model.layers.31.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
343
+ "model.layers.31.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
344
+ "model.layers.31.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
345
+ "model.layers.31.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
346
+ "model.layers.32.input_layernorm.weight": "model-00004-of-00005.safetensors",
347
+ "model.layers.32.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
348
+ "model.layers.32.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
349
+ "model.layers.32.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
350
+ "model.layers.32.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
351
+ "model.layers.32.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
352
+ "model.layers.32.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
353
+ "model.layers.32.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
354
+ "model.layers.32.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
355
+ "model.layers.32.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
356
+ "model.layers.32.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
357
+ "model.layers.32.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
358
+ "model.layers.32.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
359
+ "model.layers.33.input_layernorm.weight": "model-00004-of-00005.safetensors",
360
+ "model.layers.33.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
361
+ "model.layers.33.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
362
+ "model.layers.33.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
363
+ "model.layers.33.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
364
+ "model.layers.33.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
365
+ "model.layers.33.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
366
+ "model.layers.33.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
367
+ "model.layers.33.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
368
+ "model.layers.33.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
369
+ "model.layers.33.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
370
+ "model.layers.33.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
371
+ "model.layers.33.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
372
+ "model.layers.34.input_layernorm.weight": "model-00004-of-00005.safetensors",
373
+ "model.layers.34.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
374
+ "model.layers.34.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
375
+ "model.layers.34.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
376
+ "model.layers.34.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
377
+ "model.layers.34.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
378
+ "model.layers.34.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
379
+ "model.layers.34.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
380
+ "model.layers.34.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
381
+ "model.layers.34.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
382
+ "model.layers.34.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
383
+ "model.layers.34.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
384
+ "model.layers.34.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
385
+ "model.layers.35.input_layernorm.weight": "model-00004-of-00005.safetensors",
386
+ "model.layers.35.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
387
+ "model.layers.35.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
388
+ "model.layers.35.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
389
+ "model.layers.35.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
390
+ "model.layers.35.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
391
+ "model.layers.35.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
392
+ "model.layers.35.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
393
+ "model.layers.35.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
394
+ "model.layers.35.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
395
+ "model.layers.35.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
396
+ "model.layers.35.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
397
+ "model.layers.35.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
398
+ "model.layers.36.input_layernorm.weight": "model-00004-of-00005.safetensors",
399
+ "model.layers.36.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
400
+ "model.layers.36.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
401
+ "model.layers.36.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
402
+ "model.layers.36.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
403
+ "model.layers.36.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
404
+ "model.layers.36.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
405
+ "model.layers.36.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
406
+ "model.layers.36.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
407
+ "model.layers.36.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
408
+ "model.layers.36.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
409
+ "model.layers.36.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
410
+ "model.layers.36.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
411
+ "model.layers.37.input_layernorm.weight": "model-00004-of-00005.safetensors",
412
+ "model.layers.37.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
413
+ "model.layers.37.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
414
+ "model.layers.37.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
415
+ "model.layers.37.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
416
+ "model.layers.37.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
417
+ "model.layers.37.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
418
+ "model.layers.37.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
419
+ "model.layers.37.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
420
+ "model.layers.37.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
421
+ "model.layers.37.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
422
+ "model.layers.37.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
423
+ "model.layers.37.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
424
+ "model.layers.38.input_layernorm.weight": "model-00004-of-00005.safetensors",
425
+ "model.layers.38.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
426
+ "model.layers.38.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
427
+ "model.layers.38.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
428
+ "model.layers.38.post_attention_layernorm.weight": "model-00004-of-00005.safetensors",
429
+ "model.layers.38.post_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
430
+ "model.layers.38.pre_feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
431
+ "model.layers.38.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
432
+ "model.layers.38.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
433
+ "model.layers.38.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
434
+ "model.layers.38.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
435
+ "model.layers.38.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
436
+ "model.layers.38.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
437
+ "model.layers.39.input_layernorm.weight": "model-00005-of-00005.safetensors",
438
+ "model.layers.39.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
439
+ "model.layers.39.mlp.gate_proj.weight": "model-00004-of-00005.safetensors",
440
+ "model.layers.39.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
441
+ "model.layers.39.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
442
+ "model.layers.39.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
443
+ "model.layers.39.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
444
+ "model.layers.39.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
445
+ "model.layers.39.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
446
+ "model.layers.39.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
447
+ "model.layers.39.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
448
+ "model.layers.39.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
449
+ "model.layers.39.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
450
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00005.safetensors",
451
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
452
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
453
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
454
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
455
+ "model.layers.4.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
456
+ "model.layers.4.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
457
+ "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
458
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
459
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
460
+ "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
461
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
462
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
463
+ "model.layers.40.input_layernorm.weight": "model-00005-of-00005.safetensors",
464
+ "model.layers.40.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
465
+ "model.layers.40.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
466
+ "model.layers.40.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
467
+ "model.layers.40.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
468
+ "model.layers.40.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
469
+ "model.layers.40.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
470
+ "model.layers.40.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
471
+ "model.layers.40.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
472
+ "model.layers.40.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
473
+ "model.layers.40.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
474
+ "model.layers.40.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
475
+ "model.layers.40.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
476
+ "model.layers.41.input_layernorm.weight": "model-00005-of-00005.safetensors",
477
+ "model.layers.41.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
478
+ "model.layers.41.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
479
+ "model.layers.41.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
480
+ "model.layers.41.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
481
+ "model.layers.41.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
482
+ "model.layers.41.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
483
+ "model.layers.41.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
484
+ "model.layers.41.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
485
+ "model.layers.41.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
486
+ "model.layers.41.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
487
+ "model.layers.41.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
488
+ "model.layers.41.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
489
+ "model.layers.42.input_layernorm.weight": "model-00005-of-00005.safetensors",
490
+ "model.layers.42.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
491
+ "model.layers.42.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
492
+ "model.layers.42.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
493
+ "model.layers.42.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
494
+ "model.layers.42.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
495
+ "model.layers.42.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
496
+ "model.layers.42.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
497
+ "model.layers.42.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
498
+ "model.layers.42.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
499
+ "model.layers.42.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
500
+ "model.layers.42.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
501
+ "model.layers.42.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
502
+ "model.layers.43.input_layernorm.weight": "model-00005-of-00005.safetensors",
503
+ "model.layers.43.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
504
+ "model.layers.43.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
505
+ "model.layers.43.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
506
+ "model.layers.43.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
507
+ "model.layers.43.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
508
+ "model.layers.43.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
509
+ "model.layers.43.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
510
+ "model.layers.43.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
511
+ "model.layers.43.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
512
+ "model.layers.43.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
513
+ "model.layers.43.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
514
+ "model.layers.43.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
515
+ "model.layers.44.input_layernorm.weight": "model-00005-of-00005.safetensors",
516
+ "model.layers.44.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
517
+ "model.layers.44.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
518
+ "model.layers.44.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
519
+ "model.layers.44.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
520
+ "model.layers.44.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
521
+ "model.layers.44.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
522
+ "model.layers.44.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
523
+ "model.layers.44.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
524
+ "model.layers.44.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
525
+ "model.layers.44.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
526
+ "model.layers.44.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
527
+ "model.layers.44.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
528
+ "model.layers.45.input_layernorm.weight": "model-00005-of-00005.safetensors",
529
+ "model.layers.45.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
530
+ "model.layers.45.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
531
+ "model.layers.45.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
532
+ "model.layers.45.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
533
+ "model.layers.45.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
534
+ "model.layers.45.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
535
+ "model.layers.45.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
536
+ "model.layers.45.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
537
+ "model.layers.45.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
538
+ "model.layers.45.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
539
+ "model.layers.45.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
540
+ "model.layers.45.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
541
+ "model.layers.46.input_layernorm.weight": "model-00005-of-00005.safetensors",
542
+ "model.layers.46.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
543
+ "model.layers.46.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
544
+ "model.layers.46.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
545
+ "model.layers.46.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
546
+ "model.layers.46.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
547
+ "model.layers.46.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
548
+ "model.layers.46.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
549
+ "model.layers.46.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
550
+ "model.layers.46.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
551
+ "model.layers.46.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
552
+ "model.layers.46.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
553
+ "model.layers.46.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
554
+ "model.layers.47.input_layernorm.weight": "model-00005-of-00005.safetensors",
555
+ "model.layers.47.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
556
+ "model.layers.47.mlp.gate_proj.weight": "model-00005-of-00005.safetensors",
557
+ "model.layers.47.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
558
+ "model.layers.47.post_attention_layernorm.weight": "model-00005-of-00005.safetensors",
559
+ "model.layers.47.post_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
560
+ "model.layers.47.pre_feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
561
+ "model.layers.47.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
562
+ "model.layers.47.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
563
+ "model.layers.47.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
564
+ "model.layers.47.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
565
+ "model.layers.47.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
566
+ "model.layers.47.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
567
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00005.safetensors",
568
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
569
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
570
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
571
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00005.safetensors",
572
+ "model.layers.5.post_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
573
+ "model.layers.5.pre_feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
574
+ "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
575
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
576
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
577
+ "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
578
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
579
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
580
+ "model.layers.6.input_layernorm.weight": "model-00002-of-00005.safetensors",
581
+ "model.layers.6.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
582
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00005.safetensors",
583
+ "model.layers.6.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
584
+ "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
585
+ "model.layers.6.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
586
+ "model.layers.6.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
587
+ "model.layers.6.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
588
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
589
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
590
+ "model.layers.6.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
591
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
592
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
593
+ "model.layers.7.input_layernorm.weight": "model-00002-of-00005.safetensors",
594
+ "model.layers.7.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
595
+ "model.layers.7.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
596
+ "model.layers.7.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
597
+ "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
598
+ "model.layers.7.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
599
+ "model.layers.7.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
600
+ "model.layers.7.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
601
+ "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
602
+ "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
603
+ "model.layers.7.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
604
+ "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
605
+ "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
606
+ "model.layers.8.input_layernorm.weight": "model-00002-of-00005.safetensors",
607
+ "model.layers.8.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
608
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
609
+ "model.layers.8.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
610
+ "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
611
+ "model.layers.8.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
612
+ "model.layers.8.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
613
+ "model.layers.8.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
614
+ "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
615
+ "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
616
+ "model.layers.8.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
617
+ "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
618
+ "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
619
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00005.safetensors",
620
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
621
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00005.safetensors",
622
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
623
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00005.safetensors",
624
+ "model.layers.9.post_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
625
+ "model.layers.9.pre_feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
626
+ "model.layers.9.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
627
+ "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
628
+ "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
629
+ "model.layers.9.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
630
+ "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
631
+ "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
632
+ "model.norm.weight": "model-00005-of-00005.safetensors"
633
+ }
634
+ }
checkpoint-1000/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0f5256bfbab00aa85d7c55ad6fe4e5625f8817e209f8fd38dc4bfcd3c1cd9c3
3
+ size 18355
checkpoint-1000/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acd74ad34e3c5060506b53a8a3fafbfb35d44065ee496b2abf3a0b9a3b93ba09
3
+ size 14645
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6078e52773a379f026b8fbbbc5546ab7ed9418d05b713f8aff2a4f3c7e12f108
3
+ size 1465
checkpoint-1000/special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boi_token": "<start_of_image>",
3
+ "bos_token": {
4
+ "content": "<bos>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "eoi_token": "<end_of_image>",
11
+ "eos_token": {
12
+ "content": "<eos>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "image_token": "<image_soft_token>",
19
+ "pad_token": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "unk_token": {
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
checkpoint-1000/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
checkpoint-1000/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
checkpoint-1000/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1000/trainer_state.json ADDED
@@ -0,0 +1,1254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.890224225226729,
6
+ "eval_steps": 100,
7
+ "global_step": 1000,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 2.4347459591925142,
14
+ "epoch": 0.00890224225226729,
15
+ "grad_norm": 0.00732421875,
16
+ "learning_rate": 1.8e-07,
17
+ "loss": 3.3392,
18
+ "mean_token_accuracy": 0.4414398778229952,
19
+ "num_tokens": 128968.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 2.5189025782048704,
24
+ "epoch": 0.01780448450453458,
25
+ "grad_norm": 0.0098876953125,
26
+ "learning_rate": 3.8e-07,
27
+ "loss": 3.4461,
28
+ "mean_token_accuracy": 0.42950069066137075,
29
+ "num_tokens": 257189.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 2.4521907046437263,
34
+ "epoch": 0.026706726756801868,
35
+ "grad_norm": 0.007659912109375,
36
+ "learning_rate": 5.800000000000001e-07,
37
+ "loss": 3.3929,
38
+ "mean_token_accuracy": 0.43435896690934894,
39
+ "num_tokens": 394654.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 2.4908889502286913,
44
+ "epoch": 0.03560896900906916,
45
+ "grad_norm": 0.00909423828125,
46
+ "learning_rate": 7.8e-07,
47
+ "loss": 3.3731,
48
+ "mean_token_accuracy": 0.4337937039323151,
49
+ "num_tokens": 528285.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 2.4656582184135916,
54
+ "epoch": 0.04451121126133645,
55
+ "grad_norm": 0.0078125,
56
+ "learning_rate": 9.800000000000001e-07,
57
+ "loss": 3.3705,
58
+ "mean_token_accuracy": 0.4305401614867151,
59
+ "num_tokens": 663126.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 2.5354390598833563,
64
+ "epoch": 0.053413453513603736,
65
+ "grad_norm": 0.007659912109375,
66
+ "learning_rate": 1.1800000000000001e-06,
67
+ "loss": 3.4166,
68
+ "mean_token_accuracy": 0.42836275026202203,
69
+ "num_tokens": 801635.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 2.496990965306759,
74
+ "epoch": 0.06231569576587103,
75
+ "grad_norm": 0.00885009765625,
76
+ "learning_rate": 1.3800000000000001e-06,
77
+ "loss": 3.4009,
78
+ "mean_token_accuracy": 0.43142524575814606,
79
+ "num_tokens": 931344.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 2.5406345002353192,
84
+ "epoch": 0.07121793801813832,
85
+ "grad_norm": 0.007171630859375,
86
+ "learning_rate": 1.5800000000000001e-06,
87
+ "loss": 3.4506,
88
+ "mean_token_accuracy": 0.42618109108880164,
89
+ "num_tokens": 1060812.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 2.4690978921949864,
94
+ "epoch": 0.08012018027040561,
95
+ "grad_norm": 0.0111083984375,
96
+ "learning_rate": 1.7800000000000001e-06,
97
+ "loss": 3.375,
98
+ "mean_token_accuracy": 0.4317979410290718,
99
+ "num_tokens": 1200650.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 2.537689981609583,
104
+ "epoch": 0.0890224225226729,
105
+ "grad_norm": 0.009033203125,
106
+ "learning_rate": 1.98e-06,
107
+ "loss": 3.4588,
108
+ "mean_token_accuracy": 0.4282337296754122,
109
+ "num_tokens": 1327380.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "epoch": 0.0890224225226729,
114
+ "eval_coding_entropy": 1.266241003036499,
115
+ "eval_coding_loss": 1.2625732421875,
116
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
117
+ "eval_coding_num_tokens": 1327380.0,
118
+ "eval_coding_runtime": 96.2988,
119
+ "eval_coding_samples_per_second": 5.192,
120
+ "eval_coding_steps_per_second": 2.596,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.0890224225226729,
125
+ "eval_chemistry_entropy": 2.520227357387543,
126
+ "eval_chemistry_loss": 3.5777227878570557,
127
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
128
+ "eval_chemistry_num_tokens": 1327380.0,
129
+ "eval_chemistry_runtime": 53.689,
130
+ "eval_chemistry_samples_per_second": 9.313,
131
+ "eval_chemistry_steps_per_second": 4.656,
132
+ "step": 100
133
+ },
134
+ {
135
+ "entropy": 2.541736252605915,
136
+ "epoch": 0.09792466477494019,
137
+ "grad_norm": 0.0079345703125,
138
+ "learning_rate": 2.1800000000000003e-06,
139
+ "loss": 3.4778,
140
+ "mean_token_accuracy": 0.42182709854096173,
141
+ "num_tokens": 1460130.0,
142
+ "step": 110
143
+ },
144
+ {
145
+ "entropy": 2.4891932401806116,
146
+ "epoch": 0.10682690702720747,
147
+ "grad_norm": 0.0091552734375,
148
+ "learning_rate": 2.38e-06,
149
+ "loss": 3.4123,
150
+ "mean_token_accuracy": 0.4318336697295308,
151
+ "num_tokens": 1597405.0,
152
+ "step": 120
153
+ },
154
+ {
155
+ "entropy": 2.549714620411396,
156
+ "epoch": 0.11572914927947477,
157
+ "grad_norm": 0.013427734375,
158
+ "learning_rate": 2.5800000000000003e-06,
159
+ "loss": 3.5233,
160
+ "mean_token_accuracy": 0.4176134932786226,
161
+ "num_tokens": 1728207.0,
162
+ "step": 130
163
+ },
164
+ {
165
+ "entropy": 2.5017867423594,
166
+ "epoch": 0.12463139153174206,
167
+ "grad_norm": 0.00921630859375,
168
+ "learning_rate": 2.7800000000000005e-06,
169
+ "loss": 3.4252,
170
+ "mean_token_accuracy": 0.4325200604274869,
171
+ "num_tokens": 1859684.0,
172
+ "step": 140
173
+ },
174
+ {
175
+ "entropy": 2.607860314100981,
176
+ "epoch": 0.13353363378400934,
177
+ "grad_norm": 0.0086669921875,
178
+ "learning_rate": 2.9800000000000003e-06,
179
+ "loss": 3.5854,
180
+ "mean_token_accuracy": 0.41672497261315583,
181
+ "num_tokens": 1985766.0,
182
+ "step": 150
183
+ },
184
+ {
185
+ "entropy": 2.546873392164707,
186
+ "epoch": 0.14243587603627664,
187
+ "grad_norm": 0.0096435546875,
188
+ "learning_rate": 3.1800000000000005e-06,
189
+ "loss": 3.4451,
190
+ "mean_token_accuracy": 0.42558788452297447,
191
+ "num_tokens": 2118068.0,
192
+ "step": 160
193
+ },
194
+ {
195
+ "entropy": 2.5062545992434027,
196
+ "epoch": 0.15133811828854393,
197
+ "grad_norm": 0.0125732421875,
198
+ "learning_rate": 3.3800000000000007e-06,
199
+ "loss": 3.4525,
200
+ "mean_token_accuracy": 0.42451597433537247,
201
+ "num_tokens": 2252650.0,
202
+ "step": 170
203
+ },
204
+ {
205
+ "entropy": 2.490347370505333,
206
+ "epoch": 0.16024036054081123,
207
+ "grad_norm": 0.0106201171875,
208
+ "learning_rate": 3.58e-06,
209
+ "loss": 3.398,
210
+ "mean_token_accuracy": 0.4340389359742403,
211
+ "num_tokens": 2388824.0,
212
+ "step": 180
213
+ },
214
+ {
215
+ "entropy": 2.5069186124950646,
216
+ "epoch": 0.1691426027930785,
217
+ "grad_norm": 0.01055908203125,
218
+ "learning_rate": 3.7800000000000002e-06,
219
+ "loss": 3.4995,
220
+ "mean_token_accuracy": 0.42545853555202484,
221
+ "num_tokens": 2515325.0,
222
+ "step": 190
223
+ },
224
+ {
225
+ "entropy": 2.569493807852268,
226
+ "epoch": 0.1780448450453458,
227
+ "grad_norm": 0.0174560546875,
228
+ "learning_rate": 3.980000000000001e-06,
229
+ "loss": 3.5293,
230
+ "mean_token_accuracy": 0.4203047439455986,
231
+ "num_tokens": 2644330.0,
232
+ "step": 200
233
+ },
234
+ {
235
+ "epoch": 0.1780448450453458,
236
+ "eval_coding_entropy": 1.266241003036499,
237
+ "eval_coding_loss": 1.2625732421875,
238
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
239
+ "eval_coding_num_tokens": 2644330.0,
240
+ "eval_coding_runtime": 95.9249,
241
+ "eval_coding_samples_per_second": 5.212,
242
+ "eval_coding_steps_per_second": 2.606,
243
+ "step": 200
244
+ },
245
+ {
246
+ "epoch": 0.1780448450453458,
247
+ "eval_chemistry_entropy": 2.520227357387543,
248
+ "eval_chemistry_loss": 3.5777227878570557,
249
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
250
+ "eval_chemistry_num_tokens": 2644330.0,
251
+ "eval_chemistry_runtime": 53.6456,
252
+ "eval_chemistry_samples_per_second": 9.32,
253
+ "eval_chemistry_steps_per_second": 4.66,
254
+ "step": 200
255
+ },
256
+ {
257
+ "entropy": 2.463035849481821,
258
+ "epoch": 0.18694708729761308,
259
+ "grad_norm": 0.01226806640625,
260
+ "learning_rate": 4.18e-06,
261
+ "loss": 3.3809,
262
+ "mean_token_accuracy": 0.43558520982041954,
263
+ "num_tokens": 2783261.0,
264
+ "step": 210
265
+ },
266
+ {
267
+ "entropy": 2.5025305368006228,
268
+ "epoch": 0.19584932954988038,
269
+ "grad_norm": 0.007476806640625,
270
+ "learning_rate": 4.38e-06,
271
+ "loss": 3.4253,
272
+ "mean_token_accuracy": 0.4310411293059587,
273
+ "num_tokens": 2913700.0,
274
+ "step": 220
275
+ },
276
+ {
277
+ "entropy": 2.455498095601797,
278
+ "epoch": 0.20475157180214767,
279
+ "grad_norm": 0.0068359375,
280
+ "learning_rate": 4.58e-06,
281
+ "loss": 3.3586,
282
+ "mean_token_accuracy": 0.43719491101801394,
283
+ "num_tokens": 3048973.0,
284
+ "step": 230
285
+ },
286
+ {
287
+ "entropy": 2.5426308810710907,
288
+ "epoch": 0.21365381405441494,
289
+ "grad_norm": 0.007598876953125,
290
+ "learning_rate": 4.78e-06,
291
+ "loss": 3.406,
292
+ "mean_token_accuracy": 0.43309843018651006,
293
+ "num_tokens": 3185255.0,
294
+ "step": 240
295
+ },
296
+ {
297
+ "entropy": 2.444308698922396,
298
+ "epoch": 0.22255605630668224,
299
+ "grad_norm": 0.01324462890625,
300
+ "learning_rate": 4.980000000000001e-06,
301
+ "loss": 3.337,
302
+ "mean_token_accuracy": 0.44262526389211415,
303
+ "num_tokens": 3322823.0,
304
+ "step": 250
305
+ },
306
+ {
307
+ "entropy": 2.526992666721344,
308
+ "epoch": 0.23145829855894953,
309
+ "grad_norm": 0.0103759765625,
310
+ "learning_rate": 5.18e-06,
311
+ "loss": 3.478,
312
+ "mean_token_accuracy": 0.42772163953632114,
313
+ "num_tokens": 3454750.0,
314
+ "step": 260
315
+ },
316
+ {
317
+ "entropy": 2.468804422393441,
318
+ "epoch": 0.24036054081121683,
319
+ "grad_norm": 0.0084228515625,
320
+ "learning_rate": 5.380000000000001e-06,
321
+ "loss": 3.3899,
322
+ "mean_token_accuracy": 0.4310757084749639,
323
+ "num_tokens": 3589449.0,
324
+ "step": 270
325
+ },
326
+ {
327
+ "entropy": 2.5963171511888503,
328
+ "epoch": 0.24926278306348412,
329
+ "grad_norm": 0.00823974609375,
330
+ "learning_rate": 5.580000000000001e-06,
331
+ "loss": 3.5597,
332
+ "mean_token_accuracy": 0.4164831433445215,
333
+ "num_tokens": 3719113.0,
334
+ "step": 280
335
+ },
336
+ {
337
+ "entropy": 2.6820507936179636,
338
+ "epoch": 0.2581650253157514,
339
+ "grad_norm": 0.008056640625,
340
+ "learning_rate": 5.78e-06,
341
+ "loss": 3.6014,
342
+ "mean_token_accuracy": 0.4143718365579844,
343
+ "num_tokens": 3852276.0,
344
+ "step": 290
345
+ },
346
+ {
347
+ "entropy": 2.5068675063550474,
348
+ "epoch": 0.2670672675680187,
349
+ "grad_norm": 0.01226806640625,
350
+ "learning_rate": 5.98e-06,
351
+ "loss": 3.4183,
352
+ "mean_token_accuracy": 0.4291886316612363,
353
+ "num_tokens": 3990505.0,
354
+ "step": 300
355
+ },
356
+ {
357
+ "epoch": 0.2670672675680187,
358
+ "eval_coding_entropy": 1.266241003036499,
359
+ "eval_coding_loss": 1.2625732421875,
360
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
361
+ "eval_coding_num_tokens": 3990505.0,
362
+ "eval_coding_runtime": 95.8518,
363
+ "eval_coding_samples_per_second": 5.216,
364
+ "eval_coding_steps_per_second": 2.608,
365
+ "step": 300
366
+ },
367
+ {
368
+ "epoch": 0.2670672675680187,
369
+ "eval_chemistry_entropy": 2.520227357387543,
370
+ "eval_chemistry_loss": 3.5777227878570557,
371
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
372
+ "eval_chemistry_num_tokens": 3990505.0,
373
+ "eval_chemistry_runtime": 53.7283,
374
+ "eval_chemistry_samples_per_second": 9.306,
375
+ "eval_chemistry_steps_per_second": 4.653,
376
+ "step": 300
377
+ },
378
+ {
379
+ "entropy": 2.4614722445607184,
380
+ "epoch": 0.275969509820286,
381
+ "grad_norm": 0.0091552734375,
382
+ "learning_rate": 6.18e-06,
383
+ "loss": 3.3329,
384
+ "mean_token_accuracy": 0.4380343802273273,
385
+ "num_tokens": 4133119.0,
386
+ "step": 310
387
+ },
388
+ {
389
+ "entropy": 2.4565507762134073,
390
+ "epoch": 0.2848717520725533,
391
+ "grad_norm": 0.0074462890625,
392
+ "learning_rate": 6.380000000000001e-06,
393
+ "loss": 3.376,
394
+ "mean_token_accuracy": 0.4339581592008471,
395
+ "num_tokens": 4267403.0,
396
+ "step": 320
397
+ },
398
+ {
399
+ "entropy": 2.4726619601249693,
400
+ "epoch": 0.29377399432482054,
401
+ "grad_norm": 0.007781982421875,
402
+ "learning_rate": 6.5800000000000005e-06,
403
+ "loss": 3.3584,
404
+ "mean_token_accuracy": 0.43662677630782126,
405
+ "num_tokens": 4400242.0,
406
+ "step": 330
407
+ },
408
+ {
409
+ "entropy": 2.4780636690557003,
410
+ "epoch": 0.30267623657708786,
411
+ "grad_norm": 0.009765625,
412
+ "learning_rate": 6.780000000000001e-06,
413
+ "loss": 3.3561,
414
+ "mean_token_accuracy": 0.4329976743087173,
415
+ "num_tokens": 4535458.0,
416
+ "step": 340
417
+ },
418
+ {
419
+ "entropy": 2.4669046089053155,
420
+ "epoch": 0.31157847882935513,
421
+ "grad_norm": 0.01031494140625,
422
+ "learning_rate": 6.98e-06,
423
+ "loss": 3.4031,
424
+ "mean_token_accuracy": 0.43433742690831423,
425
+ "num_tokens": 4662903.0,
426
+ "step": 350
427
+ },
428
+ {
429
+ "entropy": 2.5689725764095783,
430
+ "epoch": 0.32048072108162245,
431
+ "grad_norm": 0.00732421875,
432
+ "learning_rate": 7.180000000000001e-06,
433
+ "loss": 3.4889,
434
+ "mean_token_accuracy": 0.4287034338340163,
435
+ "num_tokens": 4796815.0,
436
+ "step": 360
437
+ },
438
+ {
439
+ "entropy": 2.4410855643451215,
440
+ "epoch": 0.3293829633338897,
441
+ "grad_norm": 0.00836181640625,
442
+ "learning_rate": 7.3800000000000005e-06,
443
+ "loss": 3.3643,
444
+ "mean_token_accuracy": 0.43710872549563645,
445
+ "num_tokens": 4932671.0,
446
+ "step": 370
447
+ },
448
+ {
449
+ "entropy": 2.5445352010428905,
450
+ "epoch": 0.338285205586157,
451
+ "grad_norm": 0.01129150390625,
452
+ "learning_rate": 7.58e-06,
453
+ "loss": 3.4525,
454
+ "mean_token_accuracy": 0.42816965784877536,
455
+ "num_tokens": 5066948.0,
456
+ "step": 380
457
+ },
458
+ {
459
+ "entropy": 2.565714708715677,
460
+ "epoch": 0.3471874478384243,
461
+ "grad_norm": 0.01470947265625,
462
+ "learning_rate": 7.78e-06,
463
+ "loss": 3.4661,
464
+ "mean_token_accuracy": 0.4264904214069247,
465
+ "num_tokens": 5193519.0,
466
+ "step": 390
467
+ },
468
+ {
469
+ "entropy": 2.516895131766796,
470
+ "epoch": 0.3560896900906916,
471
+ "grad_norm": 0.01031494140625,
472
+ "learning_rate": 7.980000000000002e-06,
473
+ "loss": 3.4401,
474
+ "mean_token_accuracy": 0.4265883769840002,
475
+ "num_tokens": 5324751.0,
476
+ "step": 400
477
+ },
478
+ {
479
+ "epoch": 0.3560896900906916,
480
+ "eval_coding_entropy": 1.266241003036499,
481
+ "eval_coding_loss": 1.2625732421875,
482
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
483
+ "eval_coding_num_tokens": 5324751.0,
484
+ "eval_coding_runtime": 95.8822,
485
+ "eval_coding_samples_per_second": 5.215,
486
+ "eval_coding_steps_per_second": 2.607,
487
+ "step": 400
488
+ },
489
+ {
490
+ "epoch": 0.3560896900906916,
491
+ "eval_chemistry_entropy": 2.520227357387543,
492
+ "eval_chemistry_loss": 3.5777227878570557,
493
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
494
+ "eval_chemistry_num_tokens": 5324751.0,
495
+ "eval_chemistry_runtime": 53.6645,
496
+ "eval_chemistry_samples_per_second": 9.317,
497
+ "eval_chemistry_steps_per_second": 4.659,
498
+ "step": 400
499
+ },
500
+ {
501
+ "entropy": 2.4508687026798723,
502
+ "epoch": 0.3649919323429589,
503
+ "grad_norm": 0.010986328125,
504
+ "learning_rate": 8.18e-06,
505
+ "loss": 3.3874,
506
+ "mean_token_accuracy": 0.4385754197835922,
507
+ "num_tokens": 5458519.0,
508
+ "step": 410
509
+ },
510
+ {
511
+ "entropy": 2.4801586009562016,
512
+ "epoch": 0.37389417459522617,
513
+ "grad_norm": 0.00714111328125,
514
+ "learning_rate": 8.380000000000001e-06,
515
+ "loss": 3.4012,
516
+ "mean_token_accuracy": 0.43559422083199023,
517
+ "num_tokens": 5585508.0,
518
+ "step": 420
519
+ },
520
+ {
521
+ "entropy": 2.4704861216247083,
522
+ "epoch": 0.38279641684749344,
523
+ "grad_norm": 0.007659912109375,
524
+ "learning_rate": 8.580000000000001e-06,
525
+ "loss": 3.4353,
526
+ "mean_token_accuracy": 0.43275914546102284,
527
+ "num_tokens": 5716321.0,
528
+ "step": 430
529
+ },
530
+ {
531
+ "entropy": 2.537934695184231,
532
+ "epoch": 0.39169865909976076,
533
+ "grad_norm": 0.0081787109375,
534
+ "learning_rate": 8.78e-06,
535
+ "loss": 3.4176,
536
+ "mean_token_accuracy": 0.4291856364347041,
537
+ "num_tokens": 5848889.0,
538
+ "step": 440
539
+ },
540
+ {
541
+ "entropy": 2.513765400648117,
542
+ "epoch": 0.400600901352028,
543
+ "grad_norm": 0.00927734375,
544
+ "learning_rate": 8.98e-06,
545
+ "loss": 3.4106,
546
+ "mean_token_accuracy": 0.42827712278813124,
547
+ "num_tokens": 5980229.0,
548
+ "step": 450
549
+ },
550
+ {
551
+ "entropy": 2.4634178556501864,
552
+ "epoch": 0.40950314360429535,
553
+ "grad_norm": 0.01068115234375,
554
+ "learning_rate": 9.180000000000002e-06,
555
+ "loss": 3.4007,
556
+ "mean_token_accuracy": 0.4337839787825942,
557
+ "num_tokens": 6114855.0,
558
+ "step": 460
559
+ },
560
+ {
561
+ "entropy": 2.5320842534303667,
562
+ "epoch": 0.4184053858565626,
563
+ "grad_norm": 0.007049560546875,
564
+ "learning_rate": 9.38e-06,
565
+ "loss": 3.4216,
566
+ "mean_token_accuracy": 0.4268041457980871,
567
+ "num_tokens": 6244987.0,
568
+ "step": 470
569
+ },
570
+ {
571
+ "entropy": 2.4959075897932053,
572
+ "epoch": 0.4273076281088299,
573
+ "grad_norm": 0.0079345703125,
574
+ "learning_rate": 9.58e-06,
575
+ "loss": 3.3715,
576
+ "mean_token_accuracy": 0.432720182929188,
577
+ "num_tokens": 6378152.0,
578
+ "step": 480
579
+ },
580
+ {
581
+ "entropy": 2.503755620121956,
582
+ "epoch": 0.4362098703610972,
583
+ "grad_norm": 0.01708984375,
584
+ "learning_rate": 9.780000000000001e-06,
585
+ "loss": 3.4343,
586
+ "mean_token_accuracy": 0.43189559010788797,
587
+ "num_tokens": 6510231.0,
588
+ "step": 490
589
+ },
590
+ {
591
+ "entropy": 2.539106211811304,
592
+ "epoch": 0.4451121126133645,
593
+ "grad_norm": 0.0115966796875,
594
+ "learning_rate": 9.980000000000001e-06,
595
+ "loss": 3.4747,
596
+ "mean_token_accuracy": 0.42332094311714175,
597
+ "num_tokens": 6637273.0,
598
+ "step": 500
599
+ },
600
+ {
601
+ "epoch": 0.4451121126133645,
602
+ "eval_coding_entropy": 1.266241003036499,
603
+ "eval_coding_loss": 1.2625732421875,
604
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
605
+ "eval_coding_num_tokens": 6637273.0,
606
+ "eval_coding_runtime": 95.8134,
607
+ "eval_coding_samples_per_second": 5.218,
608
+ "eval_coding_steps_per_second": 2.609,
609
+ "step": 500
610
+ },
611
+ {
612
+ "epoch": 0.4451121126133645,
613
+ "eval_chemistry_entropy": 2.520227357387543,
614
+ "eval_chemistry_loss": 3.5777227878570557,
615
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
616
+ "eval_chemistry_num_tokens": 6637273.0,
617
+ "eval_chemistry_runtime": 53.3031,
618
+ "eval_chemistry_samples_per_second": 9.38,
619
+ "eval_chemistry_steps_per_second": 4.69,
620
+ "step": 500
621
+ },
622
+ {
623
+ "entropy": 2.536660289019346,
624
+ "epoch": 0.4540143548656318,
625
+ "grad_norm": 0.0146484375,
626
+ "learning_rate": 1.018e-05,
627
+ "loss": 3.4613,
628
+ "mean_token_accuracy": 0.4232974941842258,
629
+ "num_tokens": 6765798.0,
630
+ "step": 510
631
+ },
632
+ {
633
+ "entropy": 2.459078107774258,
634
+ "epoch": 0.46291659711789906,
635
+ "grad_norm": 0.0079345703125,
636
+ "learning_rate": 1.038e-05,
637
+ "loss": 3.3655,
638
+ "mean_token_accuracy": 0.43400888703763485,
639
+ "num_tokens": 6896684.0,
640
+ "step": 520
641
+ },
642
+ {
643
+ "entropy": 2.454593952000141,
644
+ "epoch": 0.4718188393701664,
645
+ "grad_norm": 0.014404296875,
646
+ "learning_rate": 1.0580000000000002e-05,
647
+ "loss": 3.3614,
648
+ "mean_token_accuracy": 0.43178336657583716,
649
+ "num_tokens": 7033417.0,
650
+ "step": 530
651
+ },
652
+ {
653
+ "entropy": 2.558536158502102,
654
+ "epoch": 0.48072108162243365,
655
+ "grad_norm": 0.018310546875,
656
+ "learning_rate": 1.0780000000000002e-05,
657
+ "loss": 3.4999,
658
+ "mean_token_accuracy": 0.4232194619253278,
659
+ "num_tokens": 7166608.0,
660
+ "step": 540
661
+ },
662
+ {
663
+ "entropy": 2.4503342963755133,
664
+ "epoch": 0.4896233238747009,
665
+ "grad_norm": 0.0150146484375,
666
+ "learning_rate": 1.0980000000000002e-05,
667
+ "loss": 3.3626,
668
+ "mean_token_accuracy": 0.4358119173906744,
669
+ "num_tokens": 7311968.0,
670
+ "step": 550
671
+ },
672
+ {
673
+ "entropy": 2.4068671748042108,
674
+ "epoch": 0.49852556612696824,
675
+ "grad_norm": 0.00836181640625,
676
+ "learning_rate": 1.1180000000000001e-05,
677
+ "loss": 3.2928,
678
+ "mean_token_accuracy": 0.44231050591915844,
679
+ "num_tokens": 7444923.0,
680
+ "step": 560
681
+ },
682
+ {
683
+ "entropy": 2.5063270702958107,
684
+ "epoch": 0.5074278083792355,
685
+ "grad_norm": 0.007171630859375,
686
+ "learning_rate": 1.138e-05,
687
+ "loss": 3.4094,
688
+ "mean_token_accuracy": 0.42552004270255567,
689
+ "num_tokens": 7576456.0,
690
+ "step": 570
691
+ },
692
+ {
693
+ "entropy": 2.5186563402414324,
694
+ "epoch": 0.5163300506315028,
695
+ "grad_norm": 0.00994873046875,
696
+ "learning_rate": 1.1580000000000001e-05,
697
+ "loss": 3.4523,
698
+ "mean_token_accuracy": 0.42800150997936726,
699
+ "num_tokens": 7706502.0,
700
+ "step": 580
701
+ },
702
+ {
703
+ "entropy": 2.500379876047373,
704
+ "epoch": 0.52523229288377,
705
+ "grad_norm": 0.016357421875,
706
+ "learning_rate": 1.178e-05,
707
+ "loss": 3.4366,
708
+ "mean_token_accuracy": 0.42906679548323157,
709
+ "num_tokens": 7838516.0,
710
+ "step": 590
711
+ },
712
+ {
713
+ "entropy": 2.535025441646576,
714
+ "epoch": 0.5341345351360374,
715
+ "grad_norm": 0.0087890625,
716
+ "learning_rate": 1.198e-05,
717
+ "loss": 3.5082,
718
+ "mean_token_accuracy": 0.42478432394564153,
719
+ "num_tokens": 7969704.0,
720
+ "step": 600
721
+ },
722
+ {
723
+ "epoch": 0.5341345351360374,
724
+ "eval_coding_entropy": 1.266241003036499,
725
+ "eval_coding_loss": 1.2625732421875,
726
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
727
+ "eval_coding_num_tokens": 7969704.0,
728
+ "eval_coding_runtime": 95.8333,
729
+ "eval_coding_samples_per_second": 5.217,
730
+ "eval_coding_steps_per_second": 2.609,
731
+ "step": 600
732
+ },
733
+ {
734
+ "epoch": 0.5341345351360374,
735
+ "eval_chemistry_entropy": 2.520227357387543,
736
+ "eval_chemistry_loss": 3.5777227878570557,
737
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
738
+ "eval_chemistry_num_tokens": 7969704.0,
739
+ "eval_chemistry_runtime": 53.6736,
740
+ "eval_chemistry_samples_per_second": 9.316,
741
+ "eval_chemistry_steps_per_second": 4.658,
742
+ "step": 600
743
+ },
744
+ {
745
+ "entropy": 2.542660507559776,
746
+ "epoch": 0.5430367773883047,
747
+ "grad_norm": 0.009765625,
748
+ "learning_rate": 1.218e-05,
749
+ "loss": 3.4959,
750
+ "mean_token_accuracy": 0.42042196970433,
751
+ "num_tokens": 8103869.0,
752
+ "step": 610
753
+ },
754
+ {
755
+ "entropy": 2.5036643177270888,
756
+ "epoch": 0.551939019640572,
757
+ "grad_norm": 0.007781982421875,
758
+ "learning_rate": 1.2380000000000002e-05,
759
+ "loss": 3.4222,
760
+ "mean_token_accuracy": 0.43322109896689653,
761
+ "num_tokens": 8242162.0,
762
+ "step": 620
763
+ },
764
+ {
765
+ "entropy": 2.5407710492610933,
766
+ "epoch": 0.5608412618928392,
767
+ "grad_norm": 0.01031494140625,
768
+ "learning_rate": 1.2580000000000002e-05,
769
+ "loss": 3.5112,
770
+ "mean_token_accuracy": 0.424757894128561,
771
+ "num_tokens": 8365617.0,
772
+ "step": 630
773
+ },
774
+ {
775
+ "entropy": 2.4822314344346523,
776
+ "epoch": 0.5697435041451065,
777
+ "grad_norm": 0.009033203125,
778
+ "learning_rate": 1.2780000000000001e-05,
779
+ "loss": 3.4362,
780
+ "mean_token_accuracy": 0.43353409245610236,
781
+ "num_tokens": 8497852.0,
782
+ "step": 640
783
+ },
784
+ {
785
+ "entropy": 2.5407922022044658,
786
+ "epoch": 0.5786457463973739,
787
+ "grad_norm": 0.0172119140625,
788
+ "learning_rate": 1.2980000000000001e-05,
789
+ "loss": 3.5164,
790
+ "mean_token_accuracy": 0.42170737963169813,
791
+ "num_tokens": 8622868.0,
792
+ "step": 650
793
+ },
794
+ {
795
+ "entropy": 2.577139265835285,
796
+ "epoch": 0.5875479886496411,
797
+ "grad_norm": 0.01007080078125,
798
+ "learning_rate": 1.3180000000000001e-05,
799
+ "loss": 3.5058,
800
+ "mean_token_accuracy": 0.41903221048414707,
801
+ "num_tokens": 8757753.0,
802
+ "step": 660
803
+ },
804
+ {
805
+ "entropy": 2.475165160000324,
806
+ "epoch": 0.5964502309019084,
807
+ "grad_norm": 0.01422119140625,
808
+ "learning_rate": 1.3380000000000002e-05,
809
+ "loss": 3.4273,
810
+ "mean_token_accuracy": 0.4251199818216264,
811
+ "num_tokens": 8886401.0,
812
+ "step": 670
813
+ },
814
+ {
815
+ "entropy": 2.4363515108823774,
816
+ "epoch": 0.6053524731541757,
817
+ "grad_norm": 0.01300048828125,
818
+ "learning_rate": 1.3580000000000002e-05,
819
+ "loss": 3.3275,
820
+ "mean_token_accuracy": 0.43763177264481784,
821
+ "num_tokens": 9024677.0,
822
+ "step": 680
823
+ },
824
+ {
825
+ "entropy": 2.56791525632143,
826
+ "epoch": 0.614254715406443,
827
+ "grad_norm": 0.0074462890625,
828
+ "learning_rate": 1.378e-05,
829
+ "loss": 3.4703,
830
+ "mean_token_accuracy": 0.42369468677788974,
831
+ "num_tokens": 9153771.0,
832
+ "step": 690
833
+ },
834
+ {
835
+ "entropy": 2.484988895058632,
836
+ "epoch": 0.6231569576587103,
837
+ "grad_norm": 0.0126953125,
838
+ "learning_rate": 1.398e-05,
839
+ "loss": 3.3769,
840
+ "mean_token_accuracy": 0.4326890670694411,
841
+ "num_tokens": 9291760.0,
842
+ "step": 700
843
+ },
844
+ {
845
+ "epoch": 0.6231569576587103,
846
+ "eval_coding_entropy": 1.266241003036499,
847
+ "eval_coding_loss": 1.2625732421875,
848
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
849
+ "eval_coding_num_tokens": 9291760.0,
850
+ "eval_coding_runtime": 95.8189,
851
+ "eval_coding_samples_per_second": 5.218,
852
+ "eval_coding_steps_per_second": 2.609,
853
+ "step": 700
854
+ },
855
+ {
856
+ "epoch": 0.6231569576587103,
857
+ "eval_chemistry_entropy": 2.520227357387543,
858
+ "eval_chemistry_loss": 3.5777227878570557,
859
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
860
+ "eval_chemistry_num_tokens": 9291760.0,
861
+ "eval_chemistry_runtime": 53.6652,
862
+ "eval_chemistry_samples_per_second": 9.317,
863
+ "eval_chemistry_steps_per_second": 4.659,
864
+ "step": 700
865
+ },
866
+ {
867
+ "entropy": 2.4618755050003527,
868
+ "epoch": 0.6320591999109776,
869
+ "grad_norm": 0.00921630859375,
870
+ "learning_rate": 1.418e-05,
871
+ "loss": 3.4035,
872
+ "mean_token_accuracy": 0.4318504808470607,
873
+ "num_tokens": 9425022.0,
874
+ "step": 710
875
+ },
876
+ {
877
+ "entropy": 2.4683789536356926,
878
+ "epoch": 0.6409614421632449,
879
+ "grad_norm": 0.0076904296875,
880
+ "learning_rate": 1.4380000000000001e-05,
881
+ "loss": 3.3571,
882
+ "mean_token_accuracy": 0.43439894206821916,
883
+ "num_tokens": 9561091.0,
884
+ "step": 720
885
+ },
886
+ {
887
+ "entropy": 2.4340669311583043,
888
+ "epoch": 0.6498636844155121,
889
+ "grad_norm": 0.00970458984375,
890
+ "learning_rate": 1.4580000000000001e-05,
891
+ "loss": 3.3348,
892
+ "mean_token_accuracy": 0.4359587837010622,
893
+ "num_tokens": 9695723.0,
894
+ "step": 730
895
+ },
896
+ {
897
+ "entropy": 2.504717104136944,
898
+ "epoch": 0.6587659266677794,
899
+ "grad_norm": 0.0174560546875,
900
+ "learning_rate": 1.478e-05,
901
+ "loss": 3.4563,
902
+ "mean_token_accuracy": 0.4270874824374914,
903
+ "num_tokens": 9827272.0,
904
+ "step": 740
905
+ },
906
+ {
907
+ "entropy": 2.4963896624743938,
908
+ "epoch": 0.6676681689200468,
909
+ "grad_norm": 0.010498046875,
910
+ "learning_rate": 1.498e-05,
911
+ "loss": 3.3969,
912
+ "mean_token_accuracy": 0.4328357223421335,
913
+ "num_tokens": 9955369.0,
914
+ "step": 750
915
+ },
916
+ {
917
+ "entropy": 2.47789601534605,
918
+ "epoch": 0.676570411172314,
919
+ "grad_norm": 0.015869140625,
920
+ "learning_rate": 1.5180000000000002e-05,
921
+ "loss": 3.3672,
922
+ "mean_token_accuracy": 0.43644896559417246,
923
+ "num_tokens": 10096065.0,
924
+ "step": 760
925
+ },
926
+ {
927
+ "entropy": 2.4533426530659197,
928
+ "epoch": 0.6854726534245813,
929
+ "grad_norm": 0.00982666015625,
930
+ "learning_rate": 1.5380000000000002e-05,
931
+ "loss": 3.3724,
932
+ "mean_token_accuracy": 0.43634699024260043,
933
+ "num_tokens": 10233806.0,
934
+ "step": 770
935
+ },
936
+ {
937
+ "entropy": 2.5112246222794057,
938
+ "epoch": 0.6943748956768486,
939
+ "grad_norm": 0.00885009765625,
940
+ "learning_rate": 1.5580000000000003e-05,
941
+ "loss": 3.4341,
942
+ "mean_token_accuracy": 0.4313540508970618,
943
+ "num_tokens": 10364601.0,
944
+ "step": 780
945
+ },
946
+ {
947
+ "entropy": 2.467985014617443,
948
+ "epoch": 0.703277137929116,
949
+ "grad_norm": 0.01171875,
950
+ "learning_rate": 1.578e-05,
951
+ "loss": 3.379,
952
+ "mean_token_accuracy": 0.4354724214412272,
953
+ "num_tokens": 10500891.0,
954
+ "step": 790
955
+ },
956
+ {
957
+ "entropy": 2.4910646095871924,
958
+ "epoch": 0.7121793801813832,
959
+ "grad_norm": 0.0089111328125,
960
+ "learning_rate": 1.5980000000000003e-05,
961
+ "loss": 3.4174,
962
+ "mean_token_accuracy": 0.4264952681958675,
963
+ "num_tokens": 10633325.0,
964
+ "step": 800
965
+ },
966
+ {
967
+ "epoch": 0.7121793801813832,
968
+ "eval_coding_entropy": 1.266241003036499,
969
+ "eval_coding_loss": 1.2625732421875,
970
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
971
+ "eval_coding_num_tokens": 10633325.0,
972
+ "eval_coding_runtime": 95.7207,
973
+ "eval_coding_samples_per_second": 5.224,
974
+ "eval_coding_steps_per_second": 2.612,
975
+ "step": 800
976
+ },
977
+ {
978
+ "epoch": 0.7121793801813832,
979
+ "eval_chemistry_entropy": 2.520227357387543,
980
+ "eval_chemistry_loss": 3.5777227878570557,
981
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
982
+ "eval_chemistry_num_tokens": 10633325.0,
983
+ "eval_chemistry_runtime": 53.6314,
984
+ "eval_chemistry_samples_per_second": 9.323,
985
+ "eval_chemistry_steps_per_second": 4.661,
986
+ "step": 800
987
+ },
988
+ {
989
+ "entropy": 2.421719251573086,
990
+ "epoch": 0.7210816224336505,
991
+ "grad_norm": 0.009033203125,
992
+ "learning_rate": 1.618e-05,
993
+ "loss": 3.373,
994
+ "mean_token_accuracy": 0.4373985629528761,
995
+ "num_tokens": 10764319.0,
996
+ "step": 810
997
+ },
998
+ {
999
+ "entropy": 2.43545116186142,
1000
+ "epoch": 0.7299838646859178,
1001
+ "grad_norm": 0.01287841796875,
1002
+ "learning_rate": 1.638e-05,
1003
+ "loss": 3.3444,
1004
+ "mean_token_accuracy": 0.43578007342293856,
1005
+ "num_tokens": 10897916.0,
1006
+ "step": 820
1007
+ },
1008
+ {
1009
+ "entropy": 2.5303331069648265,
1010
+ "epoch": 0.738886106938185,
1011
+ "grad_norm": 0.0125732421875,
1012
+ "learning_rate": 1.658e-05,
1013
+ "loss": 3.4252,
1014
+ "mean_token_accuracy": 0.4248075334355235,
1015
+ "num_tokens": 11030485.0,
1016
+ "step": 830
1017
+ },
1018
+ {
1019
+ "entropy": 2.4731515564024447,
1020
+ "epoch": 0.7477883491904523,
1021
+ "grad_norm": 0.007659912109375,
1022
+ "learning_rate": 1.6780000000000002e-05,
1023
+ "loss": 3.4258,
1024
+ "mean_token_accuracy": 0.43433472914621235,
1025
+ "num_tokens": 11165356.0,
1026
+ "step": 840
1027
+ },
1028
+ {
1029
+ "entropy": 2.4785347141325476,
1030
+ "epoch": 0.7566905914427197,
1031
+ "grad_norm": 0.0087890625,
1032
+ "learning_rate": 1.698e-05,
1033
+ "loss": 3.4161,
1034
+ "mean_token_accuracy": 0.4306844290345907,
1035
+ "num_tokens": 11299223.0,
1036
+ "step": 850
1037
+ },
1038
+ {
1039
+ "entropy": 2.4768461272120477,
1040
+ "epoch": 0.7655928336949869,
1041
+ "grad_norm": 0.01287841796875,
1042
+ "learning_rate": 1.718e-05,
1043
+ "loss": 3.3776,
1044
+ "mean_token_accuracy": 0.4344117846339941,
1045
+ "num_tokens": 11436799.0,
1046
+ "step": 860
1047
+ },
1048
+ {
1049
+ "entropy": 2.5141974300146104,
1050
+ "epoch": 0.7744950759472542,
1051
+ "grad_norm": 0.00830078125,
1052
+ "learning_rate": 1.7380000000000003e-05,
1053
+ "loss": 3.3958,
1054
+ "mean_token_accuracy": 0.4330358326435089,
1055
+ "num_tokens": 11567422.0,
1056
+ "step": 870
1057
+ },
1058
+ {
1059
+ "entropy": 2.515311509370804,
1060
+ "epoch": 0.7833973181995215,
1061
+ "grad_norm": 0.009765625,
1062
+ "learning_rate": 1.758e-05,
1063
+ "loss": 3.4031,
1064
+ "mean_token_accuracy": 0.4312752116471529,
1065
+ "num_tokens": 11703496.0,
1066
+ "step": 880
1067
+ },
1068
+ {
1069
+ "entropy": 2.453214881569147,
1070
+ "epoch": 0.7922995604517888,
1071
+ "grad_norm": 0.0093994140625,
1072
+ "learning_rate": 1.7780000000000003e-05,
1073
+ "loss": 3.3834,
1074
+ "mean_token_accuracy": 0.4389944301918149,
1075
+ "num_tokens": 11840317.0,
1076
+ "step": 890
1077
+ },
1078
+ {
1079
+ "entropy": 2.6043091461062433,
1080
+ "epoch": 0.801201802704056,
1081
+ "grad_norm": 0.01116943359375,
1082
+ "learning_rate": 1.798e-05,
1083
+ "loss": 3.5713,
1084
+ "mean_token_accuracy": 0.4135642783716321,
1085
+ "num_tokens": 11965530.0,
1086
+ "step": 900
1087
+ },
1088
+ {
1089
+ "epoch": 0.801201802704056,
1090
+ "eval_coding_entropy": 1.266241003036499,
1091
+ "eval_coding_loss": 1.2625732421875,
1092
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
1093
+ "eval_coding_num_tokens": 11965530.0,
1094
+ "eval_coding_runtime": 95.8462,
1095
+ "eval_coding_samples_per_second": 5.217,
1096
+ "eval_coding_steps_per_second": 2.608,
1097
+ "step": 900
1098
+ },
1099
+ {
1100
+ "epoch": 0.801201802704056,
1101
+ "eval_chemistry_entropy": 2.520227357387543,
1102
+ "eval_chemistry_loss": 3.5777227878570557,
1103
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
1104
+ "eval_chemistry_num_tokens": 11965530.0,
1105
+ "eval_chemistry_runtime": 53.6177,
1106
+ "eval_chemistry_samples_per_second": 9.325,
1107
+ "eval_chemistry_steps_per_second": 4.663,
1108
+ "step": 900
1109
+ },
1110
+ {
1111
+ "entropy": 2.4632391795516013,
1112
+ "epoch": 0.8101040449563234,
1113
+ "grad_norm": 0.00836181640625,
1114
+ "learning_rate": 1.8180000000000002e-05,
1115
+ "loss": 3.4352,
1116
+ "mean_token_accuracy": 0.42954989019781353,
1117
+ "num_tokens": 12097917.0,
1118
+ "step": 910
1119
+ },
1120
+ {
1121
+ "entropy": 2.468993365764618,
1122
+ "epoch": 0.8190062872085907,
1123
+ "grad_norm": 0.0089111328125,
1124
+ "learning_rate": 1.8380000000000004e-05,
1125
+ "loss": 3.4071,
1126
+ "mean_token_accuracy": 0.4282375952228904,
1127
+ "num_tokens": 12224427.0,
1128
+ "step": 920
1129
+ },
1130
+ {
1131
+ "entropy": 2.468296863883734,
1132
+ "epoch": 0.8279085294608579,
1133
+ "grad_norm": 0.008056640625,
1134
+ "learning_rate": 1.858e-05,
1135
+ "loss": 3.3355,
1136
+ "mean_token_accuracy": 0.43817838532850145,
1137
+ "num_tokens": 12365332.0,
1138
+ "step": 930
1139
+ },
1140
+ {
1141
+ "entropy": 2.427542605996132,
1142
+ "epoch": 0.8368107717131252,
1143
+ "grad_norm": 0.01031494140625,
1144
+ "learning_rate": 1.878e-05,
1145
+ "loss": 3.317,
1146
+ "mean_token_accuracy": 0.44397469637915493,
1147
+ "num_tokens": 12509124.0,
1148
+ "step": 940
1149
+ },
1150
+ {
1151
+ "entropy": 2.4841547794640064,
1152
+ "epoch": 0.8457130139653926,
1153
+ "grad_norm": 0.018798828125,
1154
+ "learning_rate": 1.898e-05,
1155
+ "loss": 3.3654,
1156
+ "mean_token_accuracy": 0.434748101234436,
1157
+ "num_tokens": 12642651.0,
1158
+ "step": 950
1159
+ },
1160
+ {
1161
+ "entropy": 2.449143522232771,
1162
+ "epoch": 0.8546152562176598,
1163
+ "grad_norm": 0.00738525390625,
1164
+ "learning_rate": 1.918e-05,
1165
+ "loss": 3.4035,
1166
+ "mean_token_accuracy": 0.43319537229835986,
1167
+ "num_tokens": 12778408.0,
1168
+ "step": 960
1169
+ },
1170
+ {
1171
+ "entropy": 2.387574986368418,
1172
+ "epoch": 0.8635174984699271,
1173
+ "grad_norm": 0.0072021484375,
1174
+ "learning_rate": 1.938e-05,
1175
+ "loss": 3.2822,
1176
+ "mean_token_accuracy": 0.4413015801459551,
1177
+ "num_tokens": 12910630.0,
1178
+ "step": 970
1179
+ },
1180
+ {
1181
+ "entropy": 2.5341439098119736,
1182
+ "epoch": 0.8724197407221944,
1183
+ "grad_norm": 0.01055908203125,
1184
+ "learning_rate": 1.9580000000000002e-05,
1185
+ "loss": 3.4749,
1186
+ "mean_token_accuracy": 0.4271688721142709,
1187
+ "num_tokens": 13046473.0,
1188
+ "step": 980
1189
+ },
1190
+ {
1191
+ "entropy": 2.5607902660965918,
1192
+ "epoch": 0.8813219829744617,
1193
+ "grad_norm": 0.00848388671875,
1194
+ "learning_rate": 1.978e-05,
1195
+ "loss": 3.4981,
1196
+ "mean_token_accuracy": 0.4231617606244981,
1197
+ "num_tokens": 13167768.0,
1198
+ "step": 990
1199
+ },
1200
+ {
1201
+ "entropy": 2.4919896230101584,
1202
+ "epoch": 0.890224225226729,
1203
+ "grad_norm": 0.009765625,
1204
+ "learning_rate": 1.9980000000000002e-05,
1205
+ "loss": 3.3681,
1206
+ "mean_token_accuracy": 0.43273249492049215,
1207
+ "num_tokens": 13301659.0,
1208
+ "step": 1000
1209
+ },
1210
+ {
1211
+ "epoch": 0.890224225226729,
1212
+ "eval_coding_entropy": 1.266241003036499,
1213
+ "eval_coding_loss": 1.2625732421875,
1214
+ "eval_coding_mean_token_accuracy": 0.6838934738636017,
1215
+ "eval_coding_num_tokens": 13301659.0,
1216
+ "eval_coding_runtime": 95.788,
1217
+ "eval_coding_samples_per_second": 5.22,
1218
+ "eval_coding_steps_per_second": 2.61,
1219
+ "step": 1000
1220
+ },
1221
+ {
1222
+ "epoch": 0.890224225226729,
1223
+ "eval_chemistry_entropy": 2.520227357387543,
1224
+ "eval_chemistry_loss": 3.5777227878570557,
1225
+ "eval_chemistry_mean_token_accuracy": 0.4262875291109085,
1226
+ "eval_chemistry_num_tokens": 13301659.0,
1227
+ "eval_chemistry_runtime": 53.3313,
1228
+ "eval_chemistry_samples_per_second": 9.375,
1229
+ "eval_chemistry_steps_per_second": 4.688,
1230
+ "step": 1000
1231
+ }
1232
+ ],
1233
+ "logging_steps": 10,
1234
+ "max_steps": 10000,
1235
+ "num_input_tokens_seen": 0,
1236
+ "num_train_epochs": 9,
1237
+ "save_steps": 500,
1238
+ "stateful_callbacks": {
1239
+ "TrainerControl": {
1240
+ "args": {
1241
+ "should_epoch_stop": false,
1242
+ "should_evaluate": false,
1243
+ "should_log": false,
1244
+ "should_save": true,
1245
+ "should_training_stop": false
1246
+ },
1247
+ "attributes": {}
1248
+ }
1249
+ },
1250
+ "total_flos": 1.1048995053730529e+18,
1251
+ "train_batch_size": 2,
1252
+ "trial_name": null,
1253
+ "trial_params": null
1254
+ }
checkpoint-1000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98f6a4eed050ba43d4f1f37cb84e4a0e4c7e84f48c9b66045451e2ca37bc478d
3
+ size 6417