roonbug commited on
Commit
976dbdd
·
verified ·
1 Parent(s): f9b65dc

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -37,3 +37,4 @@ checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
  checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
  checkpoint-1500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
  checkpoint-2000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
37
  checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
  checkpoint-1500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
  checkpoint-2000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
+ checkpoint-2500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
checkpoint-2500/added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "<image_soft_token>": 262144
3
+ }
checkpoint-2500/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-2500/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-2500/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-2500/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-2500/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-2500/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-2500/model-00004-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8b76dd5c3b1bb971354de059db455aac1c59fea624bf8a0289e37557ff43261
3
+ size 4931294528
checkpoint-2500/model-00005-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d9c549d5bc84e50ecc0c62c8bf5edebd5036ac83bceabccf75b83689f58f370
3
+ size 3822364808
checkpoint-2500/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-2500/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8049d31c13de86d96e760da7d40c3608195644bd1450be3de26bcde740b1d41a
3
+ size 18355
checkpoint-2500/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a20c201038acb2b5be3712dad6f6fa43496cb4adb00a20e372deb568fe40db13
3
+ size 14645
checkpoint-2500/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd200143f139327b4d41bcb99ffeaa13b2acc11ded5b3dbab181a6ff2ce855d7
3
+ size 1465
checkpoint-2500/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-2500/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
checkpoint-2500/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
checkpoint-2500/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-2500/trainer_state.json ADDED
@@ -0,0 +1,3084 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.0,
6
+ "eval_steps": 100,
7
+ "global_step": 2500,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.9169743306934834,
14
+ "epoch": 0.008,
15
+ "grad_norm": 0.10595703125,
16
+ "learning_rate": 1.8e-07,
17
+ "loss": 11.4093,
18
+ "mean_token_accuracy": 0.16113518364727497,
19
+ "num_tokens": 103172.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 1.943360574543476,
24
+ "epoch": 0.016,
25
+ "grad_norm": 0.11328125,
26
+ "learning_rate": 3.8e-07,
27
+ "loss": 11.3724,
28
+ "mean_token_accuracy": 0.15745336734689772,
29
+ "num_tokens": 195524.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 1.8853021122515201,
34
+ "epoch": 0.024,
35
+ "grad_norm": 0.11376953125,
36
+ "learning_rate": 5.800000000000001e-07,
37
+ "loss": 11.4536,
38
+ "mean_token_accuracy": 0.1584921860601753,
39
+ "num_tokens": 296999.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 1.9313011743128299,
44
+ "epoch": 0.032,
45
+ "grad_norm": 0.11962890625,
46
+ "learning_rate": 7.8e-07,
47
+ "loss": 11.4176,
48
+ "mean_token_accuracy": 0.15730738821439444,
49
+ "num_tokens": 390903.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 1.886887714266777,
54
+ "epoch": 0.04,
55
+ "grad_norm": 0.11083984375,
56
+ "learning_rate": 9.800000000000001e-07,
57
+ "loss": 11.362,
58
+ "mean_token_accuracy": 0.15966884773224593,
59
+ "num_tokens": 488481.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 1.8928033113479614,
64
+ "epoch": 0.048,
65
+ "grad_norm": 0.10791015625,
66
+ "learning_rate": 1.1800000000000001e-06,
67
+ "loss": 11.4662,
68
+ "mean_token_accuracy": 0.1601271564140916,
69
+ "num_tokens": 589868.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 1.9126614801585675,
74
+ "epoch": 0.056,
75
+ "grad_norm": 0.11083984375,
76
+ "learning_rate": 1.3800000000000001e-06,
77
+ "loss": 11.4393,
78
+ "mean_token_accuracy": 0.15678977984935044,
79
+ "num_tokens": 690754.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.8982849732041358,
84
+ "epoch": 0.064,
85
+ "grad_norm": 0.11279296875,
86
+ "learning_rate": 1.5800000000000001e-06,
87
+ "loss": 11.428,
88
+ "mean_token_accuracy": 0.15833127587102352,
89
+ "num_tokens": 791190.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.9196412533521652,
94
+ "epoch": 0.072,
95
+ "grad_norm": 0.11181640625,
96
+ "learning_rate": 1.7800000000000001e-06,
97
+ "loss": 11.3783,
98
+ "mean_token_accuracy": 0.1575094529427588,
99
+ "num_tokens": 890075.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.8977599568665027,
104
+ "epoch": 0.08,
105
+ "grad_norm": 0.1142578125,
106
+ "learning_rate": 1.98e-06,
107
+ "loss": 11.3874,
108
+ "mean_token_accuracy": 0.16100947242230176,
109
+ "num_tokens": 989860.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "epoch": 0.08,
114
+ "eval_coding_entropy": 1.000721924304962,
115
+ "eval_coding_loss": 8.267828941345215,
116
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
117
+ "eval_coding_num_tokens": 989860.0,
118
+ "eval_coding_runtime": 94.7373,
119
+ "eval_coding_samples_per_second": 5.278,
120
+ "eval_coding_steps_per_second": 2.639,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.08,
125
+ "eval_biology_entropy": 1.8729813146591185,
126
+ "eval_biology_loss": 11.396076202392578,
127
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
128
+ "eval_biology_num_tokens": 989860.0,
129
+ "eval_biology_runtime": 41.4821,
130
+ "eval_biology_samples_per_second": 12.053,
131
+ "eval_biology_steps_per_second": 6.027,
132
+ "step": 100
133
+ },
134
+ {
135
+ "entropy": 1.9323325648903846,
136
+ "epoch": 0.088,
137
+ "grad_norm": 0.109375,
138
+ "learning_rate": 2.1800000000000003e-06,
139
+ "loss": 11.43,
140
+ "mean_token_accuracy": 0.15889165913686157,
141
+ "num_tokens": 1087099.0,
142
+ "step": 110
143
+ },
144
+ {
145
+ "entropy": 1.9131557896733284,
146
+ "epoch": 0.096,
147
+ "grad_norm": 0.1123046875,
148
+ "learning_rate": 2.38e-06,
149
+ "loss": 11.2832,
150
+ "mean_token_accuracy": 0.15686040292494,
151
+ "num_tokens": 1181777.0,
152
+ "step": 120
153
+ },
154
+ {
155
+ "entropy": 1.8847123883664607,
156
+ "epoch": 0.104,
157
+ "grad_norm": 0.1181640625,
158
+ "learning_rate": 2.5800000000000003e-06,
159
+ "loss": 11.5591,
160
+ "mean_token_accuracy": 0.15738505702465772,
161
+ "num_tokens": 1283881.0,
162
+ "step": 130
163
+ },
164
+ {
165
+ "entropy": 1.871863854676485,
166
+ "epoch": 0.112,
167
+ "grad_norm": 0.10888671875,
168
+ "learning_rate": 2.7800000000000005e-06,
169
+ "loss": 11.3822,
170
+ "mean_token_accuracy": 0.15778318694792687,
171
+ "num_tokens": 1385513.0,
172
+ "step": 140
173
+ },
174
+ {
175
+ "entropy": 1.9166233658790588,
176
+ "epoch": 0.12,
177
+ "grad_norm": 0.115234375,
178
+ "learning_rate": 2.9800000000000003e-06,
179
+ "loss": 11.3895,
180
+ "mean_token_accuracy": 0.15918795759789645,
181
+ "num_tokens": 1483667.0,
182
+ "step": 150
183
+ },
184
+ {
185
+ "entropy": 1.902534269541502,
186
+ "epoch": 0.128,
187
+ "grad_norm": 0.10888671875,
188
+ "learning_rate": 3.1800000000000005e-06,
189
+ "loss": 11.4745,
190
+ "mean_token_accuracy": 0.15784057211130859,
191
+ "num_tokens": 1582368.0,
192
+ "step": 160
193
+ },
194
+ {
195
+ "entropy": 1.9250910609960556,
196
+ "epoch": 0.136,
197
+ "grad_norm": 0.1015625,
198
+ "learning_rate": 3.3800000000000007e-06,
199
+ "loss": 11.3645,
200
+ "mean_token_accuracy": 0.15877335243858398,
201
+ "num_tokens": 1677060.0,
202
+ "step": 170
203
+ },
204
+ {
205
+ "entropy": 1.888841236382723,
206
+ "epoch": 0.144,
207
+ "grad_norm": 0.1201171875,
208
+ "learning_rate": 3.58e-06,
209
+ "loss": 11.3131,
210
+ "mean_token_accuracy": 0.15988174122758209,
211
+ "num_tokens": 1773764.0,
212
+ "step": 180
213
+ },
214
+ {
215
+ "entropy": 1.923802337050438,
216
+ "epoch": 0.152,
217
+ "grad_norm": 0.10986328125,
218
+ "learning_rate": 3.7800000000000002e-06,
219
+ "loss": 11.4321,
220
+ "mean_token_accuracy": 0.15674821990542115,
221
+ "num_tokens": 1873167.0,
222
+ "step": 190
223
+ },
224
+ {
225
+ "entropy": 1.913605347275734,
226
+ "epoch": 0.16,
227
+ "grad_norm": 0.10693359375,
228
+ "learning_rate": 3.980000000000001e-06,
229
+ "loss": 11.5801,
230
+ "mean_token_accuracy": 0.1564559088088572,
231
+ "num_tokens": 1970077.0,
232
+ "step": 200
233
+ },
234
+ {
235
+ "epoch": 0.16,
236
+ "eval_coding_entropy": 1.000721924304962,
237
+ "eval_coding_loss": 8.267828941345215,
238
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
239
+ "eval_coding_num_tokens": 1970077.0,
240
+ "eval_coding_runtime": 94.3843,
241
+ "eval_coding_samples_per_second": 5.297,
242
+ "eval_coding_steps_per_second": 2.649,
243
+ "step": 200
244
+ },
245
+ {
246
+ "epoch": 0.16,
247
+ "eval_biology_entropy": 1.8729813146591185,
248
+ "eval_biology_loss": 11.396076202392578,
249
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
250
+ "eval_biology_num_tokens": 1970077.0,
251
+ "eval_biology_runtime": 41.5158,
252
+ "eval_biology_samples_per_second": 12.044,
253
+ "eval_biology_steps_per_second": 6.022,
254
+ "step": 200
255
+ },
256
+ {
257
+ "entropy": 1.9281546145677566,
258
+ "epoch": 0.168,
259
+ "grad_norm": 0.11083984375,
260
+ "learning_rate": 4.18e-06,
261
+ "loss": 11.4462,
262
+ "mean_token_accuracy": 0.15564582953229547,
263
+ "num_tokens": 2066815.0,
264
+ "step": 210
265
+ },
266
+ {
267
+ "entropy": 1.883149204403162,
268
+ "epoch": 0.176,
269
+ "grad_norm": 0.103515625,
270
+ "learning_rate": 4.38e-06,
271
+ "loss": 11.4588,
272
+ "mean_token_accuracy": 0.1579661637544632,
273
+ "num_tokens": 2168354.0,
274
+ "step": 220
275
+ },
276
+ {
277
+ "entropy": 1.914576094597578,
278
+ "epoch": 0.184,
279
+ "grad_norm": 0.10400390625,
280
+ "learning_rate": 4.58e-06,
281
+ "loss": 11.3803,
282
+ "mean_token_accuracy": 0.15757576958276331,
283
+ "num_tokens": 2270617.0,
284
+ "step": 230
285
+ },
286
+ {
287
+ "entropy": 1.9133810736238956,
288
+ "epoch": 0.192,
289
+ "grad_norm": 0.11083984375,
290
+ "learning_rate": 4.78e-06,
291
+ "loss": 11.5562,
292
+ "mean_token_accuracy": 0.15540659767575563,
293
+ "num_tokens": 2365822.0,
294
+ "step": 240
295
+ },
296
+ {
297
+ "entropy": 1.9234349891543387,
298
+ "epoch": 0.2,
299
+ "grad_norm": 0.1142578125,
300
+ "learning_rate": 4.980000000000001e-06,
301
+ "loss": 11.5222,
302
+ "mean_token_accuracy": 0.15323229427449406,
303
+ "num_tokens": 2459876.0,
304
+ "step": 250
305
+ },
306
+ {
307
+ "entropy": 1.9399859428405761,
308
+ "epoch": 0.208,
309
+ "grad_norm": 0.109375,
310
+ "learning_rate": 5.18e-06,
311
+ "loss": 11.428,
312
+ "mean_token_accuracy": 0.1552271238528192,
313
+ "num_tokens": 2558762.0,
314
+ "step": 260
315
+ },
316
+ {
317
+ "entropy": 1.9029304042458535,
318
+ "epoch": 0.216,
319
+ "grad_norm": 0.10205078125,
320
+ "learning_rate": 5.380000000000001e-06,
321
+ "loss": 11.2925,
322
+ "mean_token_accuracy": 0.16210160069167615,
323
+ "num_tokens": 2654953.0,
324
+ "step": 270
325
+ },
326
+ {
327
+ "entropy": 1.9189352929592132,
328
+ "epoch": 0.224,
329
+ "grad_norm": 0.09912109375,
330
+ "learning_rate": 5.580000000000001e-06,
331
+ "loss": 11.3849,
332
+ "mean_token_accuracy": 0.15769596104510128,
333
+ "num_tokens": 2755347.0,
334
+ "step": 280
335
+ },
336
+ {
337
+ "entropy": 1.8914753369987012,
338
+ "epoch": 0.232,
339
+ "grad_norm": 0.1181640625,
340
+ "learning_rate": 5.78e-06,
341
+ "loss": 11.4031,
342
+ "mean_token_accuracy": 0.16200053002685308,
343
+ "num_tokens": 2852298.0,
344
+ "step": 290
345
+ },
346
+ {
347
+ "entropy": 1.9092405900359153,
348
+ "epoch": 0.24,
349
+ "grad_norm": 0.10302734375,
350
+ "learning_rate": 5.98e-06,
351
+ "loss": 11.2327,
352
+ "mean_token_accuracy": 0.16136883310973643,
353
+ "num_tokens": 2947346.0,
354
+ "step": 300
355
+ },
356
+ {
357
+ "epoch": 0.24,
358
+ "eval_coding_entropy": 1.000721924304962,
359
+ "eval_coding_loss": 8.267828941345215,
360
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
361
+ "eval_coding_num_tokens": 2947346.0,
362
+ "eval_coding_runtime": 94.4237,
363
+ "eval_coding_samples_per_second": 5.295,
364
+ "eval_coding_steps_per_second": 2.648,
365
+ "step": 300
366
+ },
367
+ {
368
+ "epoch": 0.24,
369
+ "eval_biology_entropy": 1.8729813146591185,
370
+ "eval_biology_loss": 11.396076202392578,
371
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
372
+ "eval_biology_num_tokens": 2947346.0,
373
+ "eval_biology_runtime": 41.4944,
374
+ "eval_biology_samples_per_second": 12.05,
375
+ "eval_biology_steps_per_second": 6.025,
376
+ "step": 300
377
+ },
378
+ {
379
+ "entropy": 1.9313343465328217,
380
+ "epoch": 0.248,
381
+ "grad_norm": 0.1123046875,
382
+ "learning_rate": 6.18e-06,
383
+ "loss": 11.5425,
384
+ "mean_token_accuracy": 0.15317737096920608,
385
+ "num_tokens": 3043128.0,
386
+ "step": 310
387
+ },
388
+ {
389
+ "entropy": 1.9211706645786761,
390
+ "epoch": 0.256,
391
+ "grad_norm": 0.1083984375,
392
+ "learning_rate": 6.380000000000001e-06,
393
+ "loss": 11.4729,
394
+ "mean_token_accuracy": 0.1547949264757335,
395
+ "num_tokens": 3139957.0,
396
+ "step": 320
397
+ },
398
+ {
399
+ "entropy": 1.923046988248825,
400
+ "epoch": 0.264,
401
+ "grad_norm": 0.10693359375,
402
+ "learning_rate": 6.5800000000000005e-06,
403
+ "loss": 11.4159,
404
+ "mean_token_accuracy": 0.15573964624200015,
405
+ "num_tokens": 3232159.0,
406
+ "step": 330
407
+ },
408
+ {
409
+ "entropy": 1.8901807874441148,
410
+ "epoch": 0.272,
411
+ "grad_norm": 0.1083984375,
412
+ "learning_rate": 6.780000000000001e-06,
413
+ "loss": 11.3543,
414
+ "mean_token_accuracy": 0.1617777702398598,
415
+ "num_tokens": 3335951.0,
416
+ "step": 340
417
+ },
418
+ {
419
+ "entropy": 1.8801799044013023,
420
+ "epoch": 0.28,
421
+ "grad_norm": 0.10498046875,
422
+ "learning_rate": 6.98e-06,
423
+ "loss": 11.4879,
424
+ "mean_token_accuracy": 0.15775063186883925,
425
+ "num_tokens": 3437213.0,
426
+ "step": 350
427
+ },
428
+ {
429
+ "entropy": 1.9043901436030866,
430
+ "epoch": 0.288,
431
+ "grad_norm": 0.11474609375,
432
+ "learning_rate": 7.180000000000001e-06,
433
+ "loss": 11.5366,
434
+ "mean_token_accuracy": 0.15751364254392683,
435
+ "num_tokens": 3539731.0,
436
+ "step": 360
437
+ },
438
+ {
439
+ "entropy": 1.9588028222322464,
440
+ "epoch": 0.296,
441
+ "grad_norm": 0.1064453125,
442
+ "learning_rate": 7.3800000000000005e-06,
443
+ "loss": 11.3894,
444
+ "mean_token_accuracy": 0.153670167690143,
445
+ "num_tokens": 3633448.0,
446
+ "step": 370
447
+ },
448
+ {
449
+ "entropy": 1.881439681351185,
450
+ "epoch": 0.304,
451
+ "grad_norm": 0.1064453125,
452
+ "learning_rate": 7.58e-06,
453
+ "loss": 11.3016,
454
+ "mean_token_accuracy": 0.16050010859034955,
455
+ "num_tokens": 3733488.0,
456
+ "step": 380
457
+ },
458
+ {
459
+ "entropy": 1.9542286798357964,
460
+ "epoch": 0.312,
461
+ "grad_norm": 0.103515625,
462
+ "learning_rate": 7.78e-06,
463
+ "loss": 11.273,
464
+ "mean_token_accuracy": 0.15929239662364125,
465
+ "num_tokens": 3825212.0,
466
+ "step": 390
467
+ },
468
+ {
469
+ "entropy": 1.9287514887750148,
470
+ "epoch": 0.32,
471
+ "grad_norm": 0.10107421875,
472
+ "learning_rate": 7.980000000000002e-06,
473
+ "loss": 11.3054,
474
+ "mean_token_accuracy": 0.1604186396114528,
475
+ "num_tokens": 3920545.0,
476
+ "step": 400
477
+ },
478
+ {
479
+ "epoch": 0.32,
480
+ "eval_coding_entropy": 1.000721924304962,
481
+ "eval_coding_loss": 8.267828941345215,
482
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
483
+ "eval_coding_num_tokens": 3920545.0,
484
+ "eval_coding_runtime": 94.3958,
485
+ "eval_coding_samples_per_second": 5.297,
486
+ "eval_coding_steps_per_second": 2.648,
487
+ "step": 400
488
+ },
489
+ {
490
+ "epoch": 0.32,
491
+ "eval_biology_entropy": 1.8729813146591185,
492
+ "eval_biology_loss": 11.396076202392578,
493
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
494
+ "eval_biology_num_tokens": 3920545.0,
495
+ "eval_biology_runtime": 41.4886,
496
+ "eval_biology_samples_per_second": 12.052,
497
+ "eval_biology_steps_per_second": 6.026,
498
+ "step": 400
499
+ },
500
+ {
501
+ "entropy": 1.9058279685676098,
502
+ "epoch": 0.328,
503
+ "grad_norm": 0.11181640625,
504
+ "learning_rate": 8.18e-06,
505
+ "loss": 11.3842,
506
+ "mean_token_accuracy": 0.15871414174325765,
507
+ "num_tokens": 4016673.0,
508
+ "step": 410
509
+ },
510
+ {
511
+ "entropy": 1.930207794904709,
512
+ "epoch": 0.336,
513
+ "grad_norm": 0.10888671875,
514
+ "learning_rate": 8.380000000000001e-06,
515
+ "loss": 11.3961,
516
+ "mean_token_accuracy": 0.1579543233383447,
517
+ "num_tokens": 4114077.0,
518
+ "step": 420
519
+ },
520
+ {
521
+ "entropy": 1.9419952422380446,
522
+ "epoch": 0.344,
523
+ "grad_norm": 0.111328125,
524
+ "learning_rate": 8.580000000000001e-06,
525
+ "loss": 11.362,
526
+ "mean_token_accuracy": 0.15992560391314328,
527
+ "num_tokens": 4210403.0,
528
+ "step": 430
529
+ },
530
+ {
531
+ "entropy": 1.913541816174984,
532
+ "epoch": 0.352,
533
+ "grad_norm": 0.1142578125,
534
+ "learning_rate": 8.78e-06,
535
+ "loss": 11.3323,
536
+ "mean_token_accuracy": 0.1633904448710382,
537
+ "num_tokens": 4306949.0,
538
+ "step": 440
539
+ },
540
+ {
541
+ "entropy": 1.913567177206278,
542
+ "epoch": 0.36,
543
+ "grad_norm": 0.1240234375,
544
+ "learning_rate": 8.98e-06,
545
+ "loss": 11.458,
546
+ "mean_token_accuracy": 0.15837323614396154,
547
+ "num_tokens": 4406104.0,
548
+ "step": 450
549
+ },
550
+ {
551
+ "entropy": 1.931741751730442,
552
+ "epoch": 0.368,
553
+ "grad_norm": 0.1025390625,
554
+ "learning_rate": 9.180000000000002e-06,
555
+ "loss": 11.2873,
556
+ "mean_token_accuracy": 0.15801281332969666,
557
+ "num_tokens": 4504001.0,
558
+ "step": 460
559
+ },
560
+ {
561
+ "entropy": 1.904297123849392,
562
+ "epoch": 0.376,
563
+ "grad_norm": 0.1025390625,
564
+ "learning_rate": 9.38e-06,
565
+ "loss": 11.3813,
566
+ "mean_token_accuracy": 0.155983364302665,
567
+ "num_tokens": 4597559.0,
568
+ "step": 470
569
+ },
570
+ {
571
+ "entropy": 1.9029462151229382,
572
+ "epoch": 0.384,
573
+ "grad_norm": 0.09716796875,
574
+ "learning_rate": 9.58e-06,
575
+ "loss": 11.3823,
576
+ "mean_token_accuracy": 0.15874490085989237,
577
+ "num_tokens": 4693812.0,
578
+ "step": 480
579
+ },
580
+ {
581
+ "entropy": 1.9272562205791473,
582
+ "epoch": 0.392,
583
+ "grad_norm": 0.11474609375,
584
+ "learning_rate": 9.780000000000001e-06,
585
+ "loss": 11.2937,
586
+ "mean_token_accuracy": 0.1593953504692763,
587
+ "num_tokens": 4790965.0,
588
+ "step": 490
589
+ },
590
+ {
591
+ "entropy": 1.9103233270347117,
592
+ "epoch": 0.4,
593
+ "grad_norm": 0.1083984375,
594
+ "learning_rate": 9.980000000000001e-06,
595
+ "loss": 11.3472,
596
+ "mean_token_accuracy": 0.15859601702541112,
597
+ "num_tokens": 4887094.0,
598
+ "step": 500
599
+ },
600
+ {
601
+ "epoch": 0.4,
602
+ "eval_coding_entropy": 1.000721924304962,
603
+ "eval_coding_loss": 8.267828941345215,
604
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
605
+ "eval_coding_num_tokens": 4887094.0,
606
+ "eval_coding_runtime": 94.4464,
607
+ "eval_coding_samples_per_second": 5.294,
608
+ "eval_coding_steps_per_second": 2.647,
609
+ "step": 500
610
+ },
611
+ {
612
+ "epoch": 0.4,
613
+ "eval_biology_entropy": 1.8729813146591185,
614
+ "eval_biology_loss": 11.396076202392578,
615
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
616
+ "eval_biology_num_tokens": 4887094.0,
617
+ "eval_biology_runtime": 41.1698,
618
+ "eval_biology_samples_per_second": 12.145,
619
+ "eval_biology_steps_per_second": 6.072,
620
+ "step": 500
621
+ },
622
+ {
623
+ "entropy": 1.9290625013411045,
624
+ "epoch": 0.408,
625
+ "grad_norm": 0.1142578125,
626
+ "learning_rate": 1.018e-05,
627
+ "loss": 11.375,
628
+ "mean_token_accuracy": 0.16000252263620496,
629
+ "num_tokens": 4985394.0,
630
+ "step": 510
631
+ },
632
+ {
633
+ "entropy": 1.9234229408204555,
634
+ "epoch": 0.416,
635
+ "grad_norm": 0.10595703125,
636
+ "learning_rate": 1.038e-05,
637
+ "loss": 11.4479,
638
+ "mean_token_accuracy": 0.1574494892731309,
639
+ "num_tokens": 5085369.0,
640
+ "step": 520
641
+ },
642
+ {
643
+ "entropy": 1.9453741960227489,
644
+ "epoch": 0.424,
645
+ "grad_norm": 0.1162109375,
646
+ "learning_rate": 1.0580000000000002e-05,
647
+ "loss": 11.3764,
648
+ "mean_token_accuracy": 0.15493024131283165,
649
+ "num_tokens": 5176083.0,
650
+ "step": 530
651
+ },
652
+ {
653
+ "entropy": 1.9170791164040566,
654
+ "epoch": 0.432,
655
+ "grad_norm": 0.10498046875,
656
+ "learning_rate": 1.0780000000000002e-05,
657
+ "loss": 11.4612,
658
+ "mean_token_accuracy": 0.15664362437091767,
659
+ "num_tokens": 5271275.0,
660
+ "step": 540
661
+ },
662
+ {
663
+ "entropy": 1.9397698909044265,
664
+ "epoch": 0.44,
665
+ "grad_norm": 0.1044921875,
666
+ "learning_rate": 1.0980000000000002e-05,
667
+ "loss": 11.2801,
668
+ "mean_token_accuracy": 0.15725393719039857,
669
+ "num_tokens": 5362624.0,
670
+ "step": 550
671
+ },
672
+ {
673
+ "entropy": 1.9190262392163278,
674
+ "epoch": 0.448,
675
+ "grad_norm": 0.10205078125,
676
+ "learning_rate": 1.1180000000000001e-05,
677
+ "loss": 11.4585,
678
+ "mean_token_accuracy": 0.157243634108454,
679
+ "num_tokens": 5460559.0,
680
+ "step": 560
681
+ },
682
+ {
683
+ "entropy": 1.9073573514819144,
684
+ "epoch": 0.456,
685
+ "grad_norm": 0.10791015625,
686
+ "learning_rate": 1.138e-05,
687
+ "loss": 11.4459,
688
+ "mean_token_accuracy": 0.15579957109875978,
689
+ "num_tokens": 5558471.0,
690
+ "step": 570
691
+ },
692
+ {
693
+ "entropy": 1.92078455388546,
694
+ "epoch": 0.464,
695
+ "grad_norm": 0.10693359375,
696
+ "learning_rate": 1.1580000000000001e-05,
697
+ "loss": 11.3866,
698
+ "mean_token_accuracy": 0.15736165479756892,
699
+ "num_tokens": 5653809.0,
700
+ "step": 580
701
+ },
702
+ {
703
+ "entropy": 1.9094278007745742,
704
+ "epoch": 0.472,
705
+ "grad_norm": 0.10595703125,
706
+ "learning_rate": 1.178e-05,
707
+ "loss": 11.4047,
708
+ "mean_token_accuracy": 0.15574069027788937,
709
+ "num_tokens": 5751529.0,
710
+ "step": 590
711
+ },
712
+ {
713
+ "entropy": 1.9597051613032819,
714
+ "epoch": 0.48,
715
+ "grad_norm": 0.1181640625,
716
+ "learning_rate": 1.198e-05,
717
+ "loss": 11.4724,
718
+ "mean_token_accuracy": 0.1529582162387669,
719
+ "num_tokens": 5850176.0,
720
+ "step": 600
721
+ },
722
+ {
723
+ "epoch": 0.48,
724
+ "eval_coding_entropy": 1.000721924304962,
725
+ "eval_coding_loss": 8.267828941345215,
726
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
727
+ "eval_coding_num_tokens": 5850176.0,
728
+ "eval_coding_runtime": 94.5801,
729
+ "eval_coding_samples_per_second": 5.287,
730
+ "eval_coding_steps_per_second": 2.643,
731
+ "step": 600
732
+ },
733
+ {
734
+ "epoch": 0.48,
735
+ "eval_biology_entropy": 1.8729813146591185,
736
+ "eval_biology_loss": 11.396076202392578,
737
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
738
+ "eval_biology_num_tokens": 5850176.0,
739
+ "eval_biology_runtime": 41.4513,
740
+ "eval_biology_samples_per_second": 12.062,
741
+ "eval_biology_steps_per_second": 6.031,
742
+ "step": 600
743
+ },
744
+ {
745
+ "entropy": 1.8962870091199875,
746
+ "epoch": 0.488,
747
+ "grad_norm": 0.10302734375,
748
+ "learning_rate": 1.218e-05,
749
+ "loss": 11.3305,
750
+ "mean_token_accuracy": 0.16129443161189555,
751
+ "num_tokens": 5948898.0,
752
+ "step": 610
753
+ },
754
+ {
755
+ "entropy": 1.9090802267193794,
756
+ "epoch": 0.496,
757
+ "grad_norm": 0.10009765625,
758
+ "learning_rate": 1.2380000000000002e-05,
759
+ "loss": 11.2714,
760
+ "mean_token_accuracy": 0.16270390092395245,
761
+ "num_tokens": 6046503.0,
762
+ "step": 620
763
+ },
764
+ {
765
+ "entropy": 1.9413189493119716,
766
+ "epoch": 0.504,
767
+ "grad_norm": 0.1064453125,
768
+ "learning_rate": 1.2580000000000002e-05,
769
+ "loss": 11.348,
770
+ "mean_token_accuracy": 0.15744470418430864,
771
+ "num_tokens": 6138649.0,
772
+ "step": 630
773
+ },
774
+ {
775
+ "entropy": 1.9004696995019912,
776
+ "epoch": 0.512,
777
+ "grad_norm": 0.1142578125,
778
+ "learning_rate": 1.2780000000000001e-05,
779
+ "loss": 11.5757,
780
+ "mean_token_accuracy": 0.15675477078184485,
781
+ "num_tokens": 6240456.0,
782
+ "step": 640
783
+ },
784
+ {
785
+ "entropy": 1.9349555149674416,
786
+ "epoch": 0.52,
787
+ "grad_norm": 0.109375,
788
+ "learning_rate": 1.2980000000000001e-05,
789
+ "loss": 11.3673,
790
+ "mean_token_accuracy": 0.15686554382555187,
791
+ "num_tokens": 6333958.0,
792
+ "step": 650
793
+ },
794
+ {
795
+ "entropy": 1.9110501252114773,
796
+ "epoch": 0.528,
797
+ "grad_norm": 0.111328125,
798
+ "learning_rate": 1.3180000000000001e-05,
799
+ "loss": 11.3261,
800
+ "mean_token_accuracy": 0.15933070508763195,
801
+ "num_tokens": 6430555.0,
802
+ "step": 660
803
+ },
804
+ {
805
+ "entropy": 1.89276999309659,
806
+ "epoch": 0.536,
807
+ "grad_norm": 0.1103515625,
808
+ "learning_rate": 1.3380000000000002e-05,
809
+ "loss": 11.3362,
810
+ "mean_token_accuracy": 0.16168827014043927,
811
+ "num_tokens": 6533033.0,
812
+ "step": 670
813
+ },
814
+ {
815
+ "entropy": 1.9395132802426815,
816
+ "epoch": 0.544,
817
+ "grad_norm": 0.11083984375,
818
+ "learning_rate": 1.3580000000000002e-05,
819
+ "loss": 11.4779,
820
+ "mean_token_accuracy": 0.15581823773682119,
821
+ "num_tokens": 6626006.0,
822
+ "step": 680
823
+ },
824
+ {
825
+ "entropy": 1.941649568080902,
826
+ "epoch": 0.552,
827
+ "grad_norm": 0.10986328125,
828
+ "learning_rate": 1.378e-05,
829
+ "loss": 11.4785,
830
+ "mean_token_accuracy": 0.15422701863572003,
831
+ "num_tokens": 6719864.0,
832
+ "step": 690
833
+ },
834
+ {
835
+ "entropy": 1.8964682638645172,
836
+ "epoch": 0.56,
837
+ "grad_norm": 0.109375,
838
+ "learning_rate": 1.398e-05,
839
+ "loss": 11.3283,
840
+ "mean_token_accuracy": 0.16160819460637868,
841
+ "num_tokens": 6820754.0,
842
+ "step": 700
843
+ },
844
+ {
845
+ "epoch": 0.56,
846
+ "eval_coding_entropy": 1.000721924304962,
847
+ "eval_coding_loss": 8.267828941345215,
848
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
849
+ "eval_coding_num_tokens": 6820754.0,
850
+ "eval_coding_runtime": 94.3102,
851
+ "eval_coding_samples_per_second": 5.302,
852
+ "eval_coding_steps_per_second": 2.651,
853
+ "step": 700
854
+ },
855
+ {
856
+ "epoch": 0.56,
857
+ "eval_biology_entropy": 1.8729813146591185,
858
+ "eval_biology_loss": 11.396076202392578,
859
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
860
+ "eval_biology_num_tokens": 6820754.0,
861
+ "eval_biology_runtime": 41.4143,
862
+ "eval_biology_samples_per_second": 12.073,
863
+ "eval_biology_steps_per_second": 6.037,
864
+ "step": 700
865
+ },
866
+ {
867
+ "entropy": 1.8812049485743045,
868
+ "epoch": 0.568,
869
+ "grad_norm": 0.10986328125,
870
+ "learning_rate": 1.418e-05,
871
+ "loss": 11.4292,
872
+ "mean_token_accuracy": 0.15740878535434605,
873
+ "num_tokens": 6924942.0,
874
+ "step": 710
875
+ },
876
+ {
877
+ "entropy": 1.9126729860901832,
878
+ "epoch": 0.576,
879
+ "grad_norm": 0.10205078125,
880
+ "learning_rate": 1.4380000000000001e-05,
881
+ "loss": 11.4497,
882
+ "mean_token_accuracy": 0.15626165526919067,
883
+ "num_tokens": 7021844.0,
884
+ "step": 720
885
+ },
886
+ {
887
+ "entropy": 1.9178711868822576,
888
+ "epoch": 0.584,
889
+ "grad_norm": 0.1083984375,
890
+ "learning_rate": 1.4580000000000001e-05,
891
+ "loss": 11.4406,
892
+ "mean_token_accuracy": 0.1565072405152023,
893
+ "num_tokens": 7118443.0,
894
+ "step": 730
895
+ },
896
+ {
897
+ "entropy": 1.899195620045066,
898
+ "epoch": 0.592,
899
+ "grad_norm": 0.10498046875,
900
+ "learning_rate": 1.478e-05,
901
+ "loss": 11.3891,
902
+ "mean_token_accuracy": 0.15970171936787664,
903
+ "num_tokens": 7213951.0,
904
+ "step": 740
905
+ },
906
+ {
907
+ "entropy": 1.8711984746158123,
908
+ "epoch": 0.6,
909
+ "grad_norm": 0.107421875,
910
+ "learning_rate": 1.498e-05,
911
+ "loss": 11.6155,
912
+ "mean_token_accuracy": 0.1571272831875831,
913
+ "num_tokens": 7317984.0,
914
+ "step": 750
915
+ },
916
+ {
917
+ "entropy": 1.8990586549043655,
918
+ "epoch": 0.608,
919
+ "grad_norm": 0.10888671875,
920
+ "learning_rate": 1.5180000000000002e-05,
921
+ "loss": 11.5369,
922
+ "mean_token_accuracy": 0.15493298289366067,
923
+ "num_tokens": 7416773.0,
924
+ "step": 760
925
+ },
926
+ {
927
+ "entropy": 1.8844982825219632,
928
+ "epoch": 0.616,
929
+ "grad_norm": 0.11376953125,
930
+ "learning_rate": 1.5380000000000002e-05,
931
+ "loss": 11.4661,
932
+ "mean_token_accuracy": 0.15754226935096086,
933
+ "num_tokens": 7514031.0,
934
+ "step": 770
935
+ },
936
+ {
937
+ "entropy": 1.9250130340456963,
938
+ "epoch": 0.624,
939
+ "grad_norm": 0.1142578125,
940
+ "learning_rate": 1.5580000000000003e-05,
941
+ "loss": 11.5539,
942
+ "mean_token_accuracy": 0.15620456612668931,
943
+ "num_tokens": 7612843.0,
944
+ "step": 780
945
+ },
946
+ {
947
+ "entropy": 1.9027365200221538,
948
+ "epoch": 0.632,
949
+ "grad_norm": 0.11572265625,
950
+ "learning_rate": 1.578e-05,
951
+ "loss": 11.397,
952
+ "mean_token_accuracy": 0.15837502111680807,
953
+ "num_tokens": 7710332.0,
954
+ "step": 790
955
+ },
956
+ {
957
+ "entropy": 1.9388741664588451,
958
+ "epoch": 0.64,
959
+ "grad_norm": 0.1015625,
960
+ "learning_rate": 1.5980000000000003e-05,
961
+ "loss": 11.2848,
962
+ "mean_token_accuracy": 0.15811930843628944,
963
+ "num_tokens": 7801633.0,
964
+ "step": 800
965
+ },
966
+ {
967
+ "epoch": 0.64,
968
+ "eval_coding_entropy": 1.000721924304962,
969
+ "eval_coding_loss": 8.267828941345215,
970
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
971
+ "eval_coding_num_tokens": 7801633.0,
972
+ "eval_coding_runtime": 94.2999,
973
+ "eval_coding_samples_per_second": 5.302,
974
+ "eval_coding_steps_per_second": 2.651,
975
+ "step": 800
976
+ },
977
+ {
978
+ "epoch": 0.64,
979
+ "eval_biology_entropy": 1.8729813146591185,
980
+ "eval_biology_loss": 11.396076202392578,
981
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
982
+ "eval_biology_num_tokens": 7801633.0,
983
+ "eval_biology_runtime": 41.4102,
984
+ "eval_biology_samples_per_second": 12.074,
985
+ "eval_biology_steps_per_second": 6.037,
986
+ "step": 800
987
+ },
988
+ {
989
+ "entropy": 1.8989893589168787,
990
+ "epoch": 0.648,
991
+ "grad_norm": 0.1123046875,
992
+ "learning_rate": 1.618e-05,
993
+ "loss": 11.4501,
994
+ "mean_token_accuracy": 0.1592996684834361,
995
+ "num_tokens": 7899038.0,
996
+ "step": 810
997
+ },
998
+ {
999
+ "entropy": 1.9489813253283501,
1000
+ "epoch": 0.656,
1001
+ "grad_norm": 0.1103515625,
1002
+ "learning_rate": 1.638e-05,
1003
+ "loss": 11.6214,
1004
+ "mean_token_accuracy": 0.15152352401055397,
1005
+ "num_tokens": 7995843.0,
1006
+ "step": 820
1007
+ },
1008
+ {
1009
+ "entropy": 1.9073718406260014,
1010
+ "epoch": 0.664,
1011
+ "grad_norm": 0.109375,
1012
+ "learning_rate": 1.658e-05,
1013
+ "loss": 11.4378,
1014
+ "mean_token_accuracy": 0.1551885347813368,
1015
+ "num_tokens": 8092148.0,
1016
+ "step": 830
1017
+ },
1018
+ {
1019
+ "entropy": 1.9346605040133,
1020
+ "epoch": 0.672,
1021
+ "grad_norm": 0.1142578125,
1022
+ "learning_rate": 1.6780000000000002e-05,
1023
+ "loss": 11.4991,
1024
+ "mean_token_accuracy": 0.15528175202198327,
1025
+ "num_tokens": 8183103.0,
1026
+ "step": 840
1027
+ },
1028
+ {
1029
+ "entropy": 1.8954717583954335,
1030
+ "epoch": 0.68,
1031
+ "grad_norm": 0.11328125,
1032
+ "learning_rate": 1.698e-05,
1033
+ "loss": 11.5802,
1034
+ "mean_token_accuracy": 0.15582030937075614,
1035
+ "num_tokens": 8283708.0,
1036
+ "step": 850
1037
+ },
1038
+ {
1039
+ "entropy": 1.8708562321960926,
1040
+ "epoch": 0.688,
1041
+ "grad_norm": 0.10986328125,
1042
+ "learning_rate": 1.718e-05,
1043
+ "loss": 11.3021,
1044
+ "mean_token_accuracy": 0.16033690557815133,
1045
+ "num_tokens": 8385976.0,
1046
+ "step": 860
1047
+ },
1048
+ {
1049
+ "entropy": 1.940383419394493,
1050
+ "epoch": 0.696,
1051
+ "grad_norm": 0.11376953125,
1052
+ "learning_rate": 1.7380000000000003e-05,
1053
+ "loss": 11.5672,
1054
+ "mean_token_accuracy": 0.15030423626303674,
1055
+ "num_tokens": 8480263.0,
1056
+ "step": 870
1057
+ },
1058
+ {
1059
+ "entropy": 1.8808147184550763,
1060
+ "epoch": 0.704,
1061
+ "grad_norm": 0.10986328125,
1062
+ "learning_rate": 1.758e-05,
1063
+ "loss": 11.3381,
1064
+ "mean_token_accuracy": 0.16111928690224886,
1065
+ "num_tokens": 8578431.0,
1066
+ "step": 880
1067
+ },
1068
+ {
1069
+ "entropy": 1.8877504222095012,
1070
+ "epoch": 0.712,
1071
+ "grad_norm": 0.10791015625,
1072
+ "learning_rate": 1.7780000000000003e-05,
1073
+ "loss": 11.3877,
1074
+ "mean_token_accuracy": 0.1602990841027349,
1075
+ "num_tokens": 8679830.0,
1076
+ "step": 890
1077
+ },
1078
+ {
1079
+ "entropy": 1.8855501756072044,
1080
+ "epoch": 0.72,
1081
+ "grad_norm": 0.11279296875,
1082
+ "learning_rate": 1.798e-05,
1083
+ "loss": 11.5192,
1084
+ "mean_token_accuracy": 0.1597036702558398,
1085
+ "num_tokens": 8781342.0,
1086
+ "step": 900
1087
+ },
1088
+ {
1089
+ "epoch": 0.72,
1090
+ "eval_coding_entropy": 1.000721924304962,
1091
+ "eval_coding_loss": 8.267828941345215,
1092
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1093
+ "eval_coding_num_tokens": 8781342.0,
1094
+ "eval_coding_runtime": 94.3294,
1095
+ "eval_coding_samples_per_second": 5.301,
1096
+ "eval_coding_steps_per_second": 2.65,
1097
+ "step": 900
1098
+ },
1099
+ {
1100
+ "epoch": 0.72,
1101
+ "eval_biology_entropy": 1.8729813146591185,
1102
+ "eval_biology_loss": 11.396076202392578,
1103
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1104
+ "eval_biology_num_tokens": 8781342.0,
1105
+ "eval_biology_runtime": 41.3937,
1106
+ "eval_biology_samples_per_second": 12.079,
1107
+ "eval_biology_steps_per_second": 6.04,
1108
+ "step": 900
1109
+ },
1110
+ {
1111
+ "entropy": 1.8865461751818657,
1112
+ "epoch": 0.728,
1113
+ "grad_norm": 0.1083984375,
1114
+ "learning_rate": 1.8180000000000002e-05,
1115
+ "loss": 11.4372,
1116
+ "mean_token_accuracy": 0.15840516053140163,
1117
+ "num_tokens": 8876240.0,
1118
+ "step": 910
1119
+ },
1120
+ {
1121
+ "entropy": 1.8957439251244068,
1122
+ "epoch": 0.736,
1123
+ "grad_norm": 0.1201171875,
1124
+ "learning_rate": 1.8380000000000004e-05,
1125
+ "loss": 11.4042,
1126
+ "mean_token_accuracy": 0.16179822930134832,
1127
+ "num_tokens": 8977918.0,
1128
+ "step": 920
1129
+ },
1130
+ {
1131
+ "entropy": 1.9178364366292953,
1132
+ "epoch": 0.744,
1133
+ "grad_norm": 0.11279296875,
1134
+ "learning_rate": 1.858e-05,
1135
+ "loss": 11.3294,
1136
+ "mean_token_accuracy": 0.15907879420556129,
1137
+ "num_tokens": 9073936.0,
1138
+ "step": 930
1139
+ },
1140
+ {
1141
+ "entropy": 1.8959111988544464,
1142
+ "epoch": 0.752,
1143
+ "grad_norm": 0.11328125,
1144
+ "learning_rate": 1.878e-05,
1145
+ "loss": 11.5083,
1146
+ "mean_token_accuracy": 0.1573775229975581,
1147
+ "num_tokens": 9169322.0,
1148
+ "step": 940
1149
+ },
1150
+ {
1151
+ "entropy": 1.9043195970356463,
1152
+ "epoch": 0.76,
1153
+ "grad_norm": 0.10595703125,
1154
+ "learning_rate": 1.898e-05,
1155
+ "loss": 11.4335,
1156
+ "mean_token_accuracy": 0.15969336559064687,
1157
+ "num_tokens": 9267416.0,
1158
+ "step": 950
1159
+ },
1160
+ {
1161
+ "entropy": 1.8812848784029483,
1162
+ "epoch": 0.768,
1163
+ "grad_norm": 0.1044921875,
1164
+ "learning_rate": 1.918e-05,
1165
+ "loss": 11.4766,
1166
+ "mean_token_accuracy": 0.16011672262102367,
1167
+ "num_tokens": 9368141.0,
1168
+ "step": 960
1169
+ },
1170
+ {
1171
+ "entropy": 1.9347192905843258,
1172
+ "epoch": 0.776,
1173
+ "grad_norm": 0.1171875,
1174
+ "learning_rate": 1.938e-05,
1175
+ "loss": 11.4781,
1176
+ "mean_token_accuracy": 0.15778247057460248,
1177
+ "num_tokens": 9463691.0,
1178
+ "step": 970
1179
+ },
1180
+ {
1181
+ "entropy": 1.8791780702769756,
1182
+ "epoch": 0.784,
1183
+ "grad_norm": 0.11376953125,
1184
+ "learning_rate": 1.9580000000000002e-05,
1185
+ "loss": 11.3971,
1186
+ "mean_token_accuracy": 0.16152906292118133,
1187
+ "num_tokens": 9565236.0,
1188
+ "step": 980
1189
+ },
1190
+ {
1191
+ "entropy": 1.9060623526573182,
1192
+ "epoch": 0.792,
1193
+ "grad_norm": 0.11474609375,
1194
+ "learning_rate": 1.978e-05,
1195
+ "loss": 11.3989,
1196
+ "mean_token_accuracy": 0.15776223079301416,
1197
+ "num_tokens": 9664805.0,
1198
+ "step": 990
1199
+ },
1200
+ {
1201
+ "entropy": 1.9234035909175873,
1202
+ "epoch": 0.8,
1203
+ "grad_norm": 0.109375,
1204
+ "learning_rate": 1.9980000000000002e-05,
1205
+ "loss": 11.363,
1206
+ "mean_token_accuracy": 0.15743429348804056,
1207
+ "num_tokens": 9761227.0,
1208
+ "step": 1000
1209
+ },
1210
+ {
1211
+ "epoch": 0.8,
1212
+ "eval_coding_entropy": 1.000721924304962,
1213
+ "eval_coding_loss": 8.267828941345215,
1214
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1215
+ "eval_coding_num_tokens": 9761227.0,
1216
+ "eval_coding_runtime": 94.3423,
1217
+ "eval_coding_samples_per_second": 5.3,
1218
+ "eval_coding_steps_per_second": 2.65,
1219
+ "step": 1000
1220
+ },
1221
+ {
1222
+ "epoch": 0.8,
1223
+ "eval_biology_entropy": 1.8729813146591185,
1224
+ "eval_biology_loss": 11.396076202392578,
1225
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1226
+ "eval_biology_num_tokens": 9761227.0,
1227
+ "eval_biology_runtime": 41.1308,
1228
+ "eval_biology_samples_per_second": 12.156,
1229
+ "eval_biology_steps_per_second": 6.078,
1230
+ "step": 1000
1231
+ },
1232
+ {
1233
+ "entropy": 1.872146301716566,
1234
+ "epoch": 0.808,
1235
+ "grad_norm": 0.11279296875,
1236
+ "learning_rate": 1.9980000000000002e-05,
1237
+ "loss": 11.3733,
1238
+ "mean_token_accuracy": 0.1633847408927977,
1239
+ "num_tokens": 9863410.0,
1240
+ "step": 1010
1241
+ },
1242
+ {
1243
+ "entropy": 1.9263332709670067,
1244
+ "epoch": 0.816,
1245
+ "grad_norm": 0.11669921875,
1246
+ "learning_rate": 1.995777777777778e-05,
1247
+ "loss": 11.4047,
1248
+ "mean_token_accuracy": 0.15647466196678578,
1249
+ "num_tokens": 9958727.0,
1250
+ "step": 1020
1251
+ },
1252
+ {
1253
+ "entropy": 1.9192464537918568,
1254
+ "epoch": 0.824,
1255
+ "grad_norm": 0.1162109375,
1256
+ "learning_rate": 1.9935555555555557e-05,
1257
+ "loss": 11.4102,
1258
+ "mean_token_accuracy": 0.15872471225447954,
1259
+ "num_tokens": 10059078.0,
1260
+ "step": 1030
1261
+ },
1262
+ {
1263
+ "entropy": 1.9027912005782128,
1264
+ "epoch": 0.832,
1265
+ "grad_norm": 0.1015625,
1266
+ "learning_rate": 1.9913333333333335e-05,
1267
+ "loss": 11.2532,
1268
+ "mean_token_accuracy": 0.16170275984331967,
1269
+ "num_tokens": 10155771.0,
1270
+ "step": 1040
1271
+ },
1272
+ {
1273
+ "entropy": 1.8838146448135376,
1274
+ "epoch": 0.84,
1275
+ "grad_norm": 0.10400390625,
1276
+ "learning_rate": 1.9891111111111112e-05,
1277
+ "loss": 11.3128,
1278
+ "mean_token_accuracy": 0.15962061467580496,
1279
+ "num_tokens": 10255927.0,
1280
+ "step": 1050
1281
+ },
1282
+ {
1283
+ "entropy": 1.8773360393941403,
1284
+ "epoch": 0.848,
1285
+ "grad_norm": 0.109375,
1286
+ "learning_rate": 1.986888888888889e-05,
1287
+ "loss": 11.4155,
1288
+ "mean_token_accuracy": 0.16165038282051683,
1289
+ "num_tokens": 10357721.0,
1290
+ "step": 1060
1291
+ },
1292
+ {
1293
+ "entropy": 1.9122937515377998,
1294
+ "epoch": 0.856,
1295
+ "grad_norm": 0.1162109375,
1296
+ "learning_rate": 1.9846666666666668e-05,
1297
+ "loss": 11.3491,
1298
+ "mean_token_accuracy": 0.15969276065006852,
1299
+ "num_tokens": 10454335.0,
1300
+ "step": 1070
1301
+ },
1302
+ {
1303
+ "entropy": 1.9112751238048076,
1304
+ "epoch": 0.864,
1305
+ "grad_norm": 0.10546875,
1306
+ "learning_rate": 1.9824444444444445e-05,
1307
+ "loss": 11.3171,
1308
+ "mean_token_accuracy": 0.1582150506321341,
1309
+ "num_tokens": 10552495.0,
1310
+ "step": 1080
1311
+ },
1312
+ {
1313
+ "entropy": 1.8869936399161815,
1314
+ "epoch": 0.872,
1315
+ "grad_norm": 0.11767578125,
1316
+ "learning_rate": 1.9802222222222226e-05,
1317
+ "loss": 11.3723,
1318
+ "mean_token_accuracy": 0.159729657554999,
1319
+ "num_tokens": 10651501.0,
1320
+ "step": 1090
1321
+ },
1322
+ {
1323
+ "entropy": 1.9142157301306724,
1324
+ "epoch": 0.88,
1325
+ "grad_norm": 0.11083984375,
1326
+ "learning_rate": 1.978e-05,
1327
+ "loss": 11.4287,
1328
+ "mean_token_accuracy": 0.15900661037303507,
1329
+ "num_tokens": 10748749.0,
1330
+ "step": 1100
1331
+ },
1332
+ {
1333
+ "epoch": 0.88,
1334
+ "eval_coding_entropy": 1.000721924304962,
1335
+ "eval_coding_loss": 8.267828941345215,
1336
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1337
+ "eval_coding_num_tokens": 10748749.0,
1338
+ "eval_coding_runtime": 94.4026,
1339
+ "eval_coding_samples_per_second": 5.296,
1340
+ "eval_coding_steps_per_second": 2.648,
1341
+ "step": 1100
1342
+ },
1343
+ {
1344
+ "epoch": 0.88,
1345
+ "eval_biology_entropy": 1.8729813146591185,
1346
+ "eval_biology_loss": 11.396076202392578,
1347
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1348
+ "eval_biology_num_tokens": 10748749.0,
1349
+ "eval_biology_runtime": 41.4381,
1350
+ "eval_biology_samples_per_second": 12.066,
1351
+ "eval_biology_steps_per_second": 6.033,
1352
+ "step": 1100
1353
+ },
1354
+ {
1355
+ "entropy": 1.8793569900095464,
1356
+ "epoch": 0.888,
1357
+ "grad_norm": 0.1123046875,
1358
+ "learning_rate": 1.975777777777778e-05,
1359
+ "loss": 11.5877,
1360
+ "mean_token_accuracy": 0.157168534072116,
1361
+ "num_tokens": 10852932.0,
1362
+ "step": 1110
1363
+ },
1364
+ {
1365
+ "entropy": 1.9415382850915193,
1366
+ "epoch": 0.896,
1367
+ "grad_norm": 0.10546875,
1368
+ "learning_rate": 1.9735555555555556e-05,
1369
+ "loss": 11.3746,
1370
+ "mean_token_accuracy": 0.15685343989171088,
1371
+ "num_tokens": 10943319.0,
1372
+ "step": 1120
1373
+ },
1374
+ {
1375
+ "entropy": 1.928680495172739,
1376
+ "epoch": 0.904,
1377
+ "grad_norm": 0.1083984375,
1378
+ "learning_rate": 1.9713333333333337e-05,
1379
+ "loss": 11.3322,
1380
+ "mean_token_accuracy": 0.15655601797625424,
1381
+ "num_tokens": 11037833.0,
1382
+ "step": 1130
1383
+ },
1384
+ {
1385
+ "entropy": 1.8811852902173996,
1386
+ "epoch": 0.912,
1387
+ "grad_norm": 0.11865234375,
1388
+ "learning_rate": 1.969111111111111e-05,
1389
+ "loss": 11.3788,
1390
+ "mean_token_accuracy": 0.15932427351363004,
1391
+ "num_tokens": 11136935.0,
1392
+ "step": 1140
1393
+ },
1394
+ {
1395
+ "entropy": 1.9035414353013038,
1396
+ "epoch": 0.92,
1397
+ "grad_norm": 0.10107421875,
1398
+ "learning_rate": 1.9668888888888892e-05,
1399
+ "loss": 11.4397,
1400
+ "mean_token_accuracy": 0.15855442080646753,
1401
+ "num_tokens": 11238002.0,
1402
+ "step": 1150
1403
+ },
1404
+ {
1405
+ "entropy": 1.9215666435658931,
1406
+ "epoch": 0.928,
1407
+ "grad_norm": 0.1103515625,
1408
+ "learning_rate": 1.9646666666666666e-05,
1409
+ "loss": 11.3836,
1410
+ "mean_token_accuracy": 0.15947869322262703,
1411
+ "num_tokens": 11331098.0,
1412
+ "step": 1160
1413
+ },
1414
+ {
1415
+ "entropy": 1.8665415190160275,
1416
+ "epoch": 0.936,
1417
+ "grad_norm": 0.11181640625,
1418
+ "learning_rate": 1.9624444444444447e-05,
1419
+ "loss": 11.3554,
1420
+ "mean_token_accuracy": 0.163870263681747,
1421
+ "num_tokens": 11435812.0,
1422
+ "step": 1170
1423
+ },
1424
+ {
1425
+ "entropy": 1.9265005595982074,
1426
+ "epoch": 0.944,
1427
+ "grad_norm": 0.11181640625,
1428
+ "learning_rate": 1.9602222222222225e-05,
1429
+ "loss": 11.3103,
1430
+ "mean_token_accuracy": 0.15953028812073172,
1431
+ "num_tokens": 11530550.0,
1432
+ "step": 1180
1433
+ },
1434
+ {
1435
+ "entropy": 1.9132369719445705,
1436
+ "epoch": 0.952,
1437
+ "grad_norm": 0.10986328125,
1438
+ "learning_rate": 1.9580000000000002e-05,
1439
+ "loss": 11.2875,
1440
+ "mean_token_accuracy": 0.16013024668209255,
1441
+ "num_tokens": 11629080.0,
1442
+ "step": 1190
1443
+ },
1444
+ {
1445
+ "entropy": 1.9029541954398155,
1446
+ "epoch": 0.96,
1447
+ "grad_norm": 0.10595703125,
1448
+ "learning_rate": 1.955777777777778e-05,
1449
+ "loss": 11.5258,
1450
+ "mean_token_accuracy": 0.15739277489483355,
1451
+ "num_tokens": 11729645.0,
1452
+ "step": 1200
1453
+ },
1454
+ {
1455
+ "epoch": 0.96,
1456
+ "eval_coding_entropy": 1.000721924304962,
1457
+ "eval_coding_loss": 8.267828941345215,
1458
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1459
+ "eval_coding_num_tokens": 11729645.0,
1460
+ "eval_coding_runtime": 94.4976,
1461
+ "eval_coding_samples_per_second": 5.291,
1462
+ "eval_coding_steps_per_second": 2.646,
1463
+ "step": 1200
1464
+ },
1465
+ {
1466
+ "epoch": 0.96,
1467
+ "eval_biology_entropy": 1.8729813146591185,
1468
+ "eval_biology_loss": 11.396076202392578,
1469
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1470
+ "eval_biology_num_tokens": 11729645.0,
1471
+ "eval_biology_runtime": 41.458,
1472
+ "eval_biology_samples_per_second": 12.06,
1473
+ "eval_biology_steps_per_second": 6.03,
1474
+ "step": 1200
1475
+ },
1476
+ {
1477
+ "entropy": 1.924806034564972,
1478
+ "epoch": 0.968,
1479
+ "grad_norm": 0.111328125,
1480
+ "learning_rate": 1.9535555555555557e-05,
1481
+ "loss": 11.3332,
1482
+ "mean_token_accuracy": 0.1609709003008902,
1483
+ "num_tokens": 11823767.0,
1484
+ "step": 1210
1485
+ },
1486
+ {
1487
+ "entropy": 1.9001309793442487,
1488
+ "epoch": 0.976,
1489
+ "grad_norm": 0.1083984375,
1490
+ "learning_rate": 1.9513333333333335e-05,
1491
+ "loss": 11.3968,
1492
+ "mean_token_accuracy": 0.16173409800976515,
1493
+ "num_tokens": 11924644.0,
1494
+ "step": 1220
1495
+ },
1496
+ {
1497
+ "entropy": 1.926213839650154,
1498
+ "epoch": 0.984,
1499
+ "grad_norm": 0.11181640625,
1500
+ "learning_rate": 1.9491111111111113e-05,
1501
+ "loss": 11.2886,
1502
+ "mean_token_accuracy": 0.15953713809140027,
1503
+ "num_tokens": 12022090.0,
1504
+ "step": 1230
1505
+ },
1506
+ {
1507
+ "entropy": 1.896909598261118,
1508
+ "epoch": 0.992,
1509
+ "grad_norm": 0.11083984375,
1510
+ "learning_rate": 1.946888888888889e-05,
1511
+ "loss": 11.44,
1512
+ "mean_token_accuracy": 0.15784551627002658,
1513
+ "num_tokens": 12123059.0,
1514
+ "step": 1240
1515
+ },
1516
+ {
1517
+ "entropy": 1.9211212292313575,
1518
+ "epoch": 1.0,
1519
+ "grad_norm": 0.1142578125,
1520
+ "learning_rate": 1.9446666666666668e-05,
1521
+ "loss": 11.3871,
1522
+ "mean_token_accuracy": 0.15915677635930478,
1523
+ "num_tokens": 12221291.0,
1524
+ "step": 1250
1525
+ },
1526
+ {
1527
+ "entropy": 1.9072089441120625,
1528
+ "epoch": 1.008,
1529
+ "grad_norm": 0.1171875,
1530
+ "learning_rate": 1.9424444444444446e-05,
1531
+ "loss": 11.3831,
1532
+ "mean_token_accuracy": 0.1602979816030711,
1533
+ "num_tokens": 12319366.0,
1534
+ "step": 1260
1535
+ },
1536
+ {
1537
+ "entropy": 1.8810669101774693,
1538
+ "epoch": 1.016,
1539
+ "grad_norm": 0.11328125,
1540
+ "learning_rate": 1.9402222222222223e-05,
1541
+ "loss": 11.3728,
1542
+ "mean_token_accuracy": 0.1634572588838637,
1543
+ "num_tokens": 12422323.0,
1544
+ "step": 1270
1545
+ },
1546
+ {
1547
+ "entropy": 1.8920352309942245,
1548
+ "epoch": 1.024,
1549
+ "grad_norm": 0.10986328125,
1550
+ "learning_rate": 1.938e-05,
1551
+ "loss": 11.4291,
1552
+ "mean_token_accuracy": 0.1560253918170929,
1553
+ "num_tokens": 12524183.0,
1554
+ "step": 1280
1555
+ },
1556
+ {
1557
+ "entropy": 1.9242343619465827,
1558
+ "epoch": 1.032,
1559
+ "grad_norm": 0.11083984375,
1560
+ "learning_rate": 1.935777777777778e-05,
1561
+ "loss": 11.4591,
1562
+ "mean_token_accuracy": 0.15780404200777412,
1563
+ "num_tokens": 12621565.0,
1564
+ "step": 1290
1565
+ },
1566
+ {
1567
+ "entropy": 1.9213342539966107,
1568
+ "epoch": 1.04,
1569
+ "grad_norm": 0.1103515625,
1570
+ "learning_rate": 1.9335555555555556e-05,
1571
+ "loss": 11.4174,
1572
+ "mean_token_accuracy": 0.15637533548288046,
1573
+ "num_tokens": 12718593.0,
1574
+ "step": 1300
1575
+ },
1576
+ {
1577
+ "epoch": 1.04,
1578
+ "eval_coding_entropy": 1.000721924304962,
1579
+ "eval_coding_loss": 8.267828941345215,
1580
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1581
+ "eval_coding_num_tokens": 12718593.0,
1582
+ "eval_coding_runtime": 95.1843,
1583
+ "eval_coding_samples_per_second": 5.253,
1584
+ "eval_coding_steps_per_second": 2.626,
1585
+ "step": 1300
1586
+ },
1587
+ {
1588
+ "epoch": 1.04,
1589
+ "eval_biology_entropy": 1.8729813146591185,
1590
+ "eval_biology_loss": 11.396076202392578,
1591
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1592
+ "eval_biology_num_tokens": 12718593.0,
1593
+ "eval_biology_runtime": 41.989,
1594
+ "eval_biology_samples_per_second": 11.908,
1595
+ "eval_biology_steps_per_second": 5.954,
1596
+ "step": 1300
1597
+ },
1598
+ {
1599
+ "entropy": 1.8875514529645443,
1600
+ "epoch": 1.048,
1601
+ "grad_norm": 0.11376953125,
1602
+ "learning_rate": 1.9313333333333334e-05,
1603
+ "loss": 11.3486,
1604
+ "mean_token_accuracy": 0.1649646230507642,
1605
+ "num_tokens": 12817611.0,
1606
+ "step": 1310
1607
+ },
1608
+ {
1609
+ "entropy": 1.884049878269434,
1610
+ "epoch": 1.056,
1611
+ "grad_norm": 0.1171875,
1612
+ "learning_rate": 1.9291111111111115e-05,
1613
+ "loss": 11.3444,
1614
+ "mean_token_accuracy": 0.16324606756679713,
1615
+ "num_tokens": 12917803.0,
1616
+ "step": 1320
1617
+ },
1618
+ {
1619
+ "entropy": 1.897967816144228,
1620
+ "epoch": 1.064,
1621
+ "grad_norm": 0.11767578125,
1622
+ "learning_rate": 1.926888888888889e-05,
1623
+ "loss": 11.4133,
1624
+ "mean_token_accuracy": 0.1546560618560761,
1625
+ "num_tokens": 13013009.0,
1626
+ "step": 1330
1627
+ },
1628
+ {
1629
+ "entropy": 1.9011694863438606,
1630
+ "epoch": 1.072,
1631
+ "grad_norm": 0.103515625,
1632
+ "learning_rate": 1.924666666666667e-05,
1633
+ "loss": 11.4129,
1634
+ "mean_token_accuracy": 0.1572916334029287,
1635
+ "num_tokens": 13105826.0,
1636
+ "step": 1340
1637
+ },
1638
+ {
1639
+ "entropy": 1.9191783390939237,
1640
+ "epoch": 1.08,
1641
+ "grad_norm": 0.1103515625,
1642
+ "learning_rate": 1.9224444444444444e-05,
1643
+ "loss": 11.5042,
1644
+ "mean_token_accuracy": 0.15683019561693073,
1645
+ "num_tokens": 13201601.0,
1646
+ "step": 1350
1647
+ },
1648
+ {
1649
+ "entropy": 1.9041197896003723,
1650
+ "epoch": 1.088,
1651
+ "grad_norm": 0.10693359375,
1652
+ "learning_rate": 1.9202222222222225e-05,
1653
+ "loss": 11.3016,
1654
+ "mean_token_accuracy": 0.16032634493894876,
1655
+ "num_tokens": 13298619.0,
1656
+ "step": 1360
1657
+ },
1658
+ {
1659
+ "entropy": 1.9777653701603413,
1660
+ "epoch": 1.096,
1661
+ "grad_norm": 0.10546875,
1662
+ "learning_rate": 1.918e-05,
1663
+ "loss": 11.4078,
1664
+ "mean_token_accuracy": 0.1558103010058403,
1665
+ "num_tokens": 13390496.0,
1666
+ "step": 1370
1667
+ },
1668
+ {
1669
+ "entropy": 1.8881109297275542,
1670
+ "epoch": 1.104,
1671
+ "grad_norm": 0.1083984375,
1672
+ "learning_rate": 1.915777777777778e-05,
1673
+ "loss": 11.4555,
1674
+ "mean_token_accuracy": 0.1594717210624367,
1675
+ "num_tokens": 13491486.0,
1676
+ "step": 1380
1677
+ },
1678
+ {
1679
+ "entropy": 1.9563044786453248,
1680
+ "epoch": 1.112,
1681
+ "grad_norm": 0.11865234375,
1682
+ "learning_rate": 1.9135555555555555e-05,
1683
+ "loss": 11.3942,
1684
+ "mean_token_accuracy": 0.15433563021942973,
1685
+ "num_tokens": 13580102.0,
1686
+ "step": 1390
1687
+ },
1688
+ {
1689
+ "entropy": 1.9426785811781884,
1690
+ "epoch": 1.12,
1691
+ "grad_norm": 0.10302734375,
1692
+ "learning_rate": 1.9113333333333336e-05,
1693
+ "loss": 11.3608,
1694
+ "mean_token_accuracy": 0.15766524169594048,
1695
+ "num_tokens": 13674663.0,
1696
+ "step": 1400
1697
+ },
1698
+ {
1699
+ "epoch": 1.12,
1700
+ "eval_coding_entropy": 1.000721924304962,
1701
+ "eval_coding_loss": 8.267828941345215,
1702
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1703
+ "eval_coding_num_tokens": 13674663.0,
1704
+ "eval_coding_runtime": 94.9841,
1705
+ "eval_coding_samples_per_second": 5.264,
1706
+ "eval_coding_steps_per_second": 2.632,
1707
+ "step": 1400
1708
+ },
1709
+ {
1710
+ "epoch": 1.12,
1711
+ "eval_biology_entropy": 1.8729813146591185,
1712
+ "eval_biology_loss": 11.396076202392578,
1713
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1714
+ "eval_biology_num_tokens": 13674663.0,
1715
+ "eval_biology_runtime": 41.7134,
1716
+ "eval_biology_samples_per_second": 11.987,
1717
+ "eval_biology_steps_per_second": 5.993,
1718
+ "step": 1400
1719
+ },
1720
+ {
1721
+ "entropy": 1.8810144498944283,
1722
+ "epoch": 1.1280000000000001,
1723
+ "grad_norm": 0.10693359375,
1724
+ "learning_rate": 1.9091111111111113e-05,
1725
+ "loss": 11.4009,
1726
+ "mean_token_accuracy": 0.15898247696459294,
1727
+ "num_tokens": 13774234.0,
1728
+ "step": 1410
1729
+ },
1730
+ {
1731
+ "entropy": 1.9516346745193005,
1732
+ "epoch": 1.1360000000000001,
1733
+ "grad_norm": 0.10888671875,
1734
+ "learning_rate": 1.906888888888889e-05,
1735
+ "loss": 11.3674,
1736
+ "mean_token_accuracy": 0.1572843327652663,
1737
+ "num_tokens": 13869134.0,
1738
+ "step": 1420
1739
+ },
1740
+ {
1741
+ "entropy": 1.9005931705236434,
1742
+ "epoch": 1.144,
1743
+ "grad_norm": 0.123046875,
1744
+ "learning_rate": 1.904666666666667e-05,
1745
+ "loss": 11.4935,
1746
+ "mean_token_accuracy": 0.15715239457786084,
1747
+ "num_tokens": 13973498.0,
1748
+ "step": 1430
1749
+ },
1750
+ {
1751
+ "entropy": 1.863999791443348,
1752
+ "epoch": 1.152,
1753
+ "grad_norm": 0.11083984375,
1754
+ "learning_rate": 1.9024444444444446e-05,
1755
+ "loss": 11.3597,
1756
+ "mean_token_accuracy": 0.16133098863065243,
1757
+ "num_tokens": 14078365.0,
1758
+ "step": 1440
1759
+ },
1760
+ {
1761
+ "entropy": 1.9424147799611091,
1762
+ "epoch": 1.16,
1763
+ "grad_norm": 0.09765625,
1764
+ "learning_rate": 1.9002222222222224e-05,
1765
+ "loss": 11.3612,
1766
+ "mean_token_accuracy": 0.15900293425656856,
1767
+ "num_tokens": 14171486.0,
1768
+ "step": 1450
1769
+ },
1770
+ {
1771
+ "entropy": 1.9269852563738823,
1772
+ "epoch": 1.168,
1773
+ "grad_norm": 0.1123046875,
1774
+ "learning_rate": 1.898e-05,
1775
+ "loss": 11.4704,
1776
+ "mean_token_accuracy": 0.15463799880817533,
1777
+ "num_tokens": 14266831.0,
1778
+ "step": 1460
1779
+ },
1780
+ {
1781
+ "entropy": 1.9132212005555629,
1782
+ "epoch": 1.176,
1783
+ "grad_norm": 0.11669921875,
1784
+ "learning_rate": 1.895777777777778e-05,
1785
+ "loss": 11.3853,
1786
+ "mean_token_accuracy": 0.16369018028490245,
1787
+ "num_tokens": 14370559.0,
1788
+ "step": 1470
1789
+ },
1790
+ {
1791
+ "entropy": 1.9134477652609347,
1792
+ "epoch": 1.184,
1793
+ "grad_norm": 0.11279296875,
1794
+ "learning_rate": 1.8935555555555556e-05,
1795
+ "loss": 11.4252,
1796
+ "mean_token_accuracy": 0.1567579856608063,
1797
+ "num_tokens": 14465660.0,
1798
+ "step": 1480
1799
+ },
1800
+ {
1801
+ "entropy": 1.9147060811519623,
1802
+ "epoch": 1.192,
1803
+ "grad_norm": 0.10546875,
1804
+ "learning_rate": 1.8913333333333334e-05,
1805
+ "loss": 11.3604,
1806
+ "mean_token_accuracy": 0.15956381279975176,
1807
+ "num_tokens": 14559282.0,
1808
+ "step": 1490
1809
+ },
1810
+ {
1811
+ "entropy": 1.9207824341952802,
1812
+ "epoch": 1.2,
1813
+ "grad_norm": 0.11083984375,
1814
+ "learning_rate": 1.8891111111111115e-05,
1815
+ "loss": 11.2929,
1816
+ "mean_token_accuracy": 0.15796949863433837,
1817
+ "num_tokens": 14653228.0,
1818
+ "step": 1500
1819
+ },
1820
+ {
1821
+ "epoch": 1.2,
1822
+ "eval_coding_entropy": 1.000721924304962,
1823
+ "eval_coding_loss": 8.267828941345215,
1824
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1825
+ "eval_coding_num_tokens": 14653228.0,
1826
+ "eval_coding_runtime": 94.9462,
1827
+ "eval_coding_samples_per_second": 5.266,
1828
+ "eval_coding_steps_per_second": 2.633,
1829
+ "step": 1500
1830
+ },
1831
+ {
1832
+ "epoch": 1.2,
1833
+ "eval_biology_entropy": 1.8729813146591185,
1834
+ "eval_biology_loss": 11.396076202392578,
1835
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1836
+ "eval_biology_num_tokens": 14653228.0,
1837
+ "eval_biology_runtime": 41.2157,
1838
+ "eval_biology_samples_per_second": 12.131,
1839
+ "eval_biology_steps_per_second": 6.066,
1840
+ "step": 1500
1841
+ },
1842
+ {
1843
+ "entropy": 1.8704286485910415,
1844
+ "epoch": 1.208,
1845
+ "grad_norm": 0.111328125,
1846
+ "learning_rate": 1.886888888888889e-05,
1847
+ "loss": 11.4975,
1848
+ "mean_token_accuracy": 0.16043112352490424,
1849
+ "num_tokens": 14756972.0,
1850
+ "step": 1510
1851
+ },
1852
+ {
1853
+ "entropy": 1.9115773357450963,
1854
+ "epoch": 1.216,
1855
+ "grad_norm": 0.10888671875,
1856
+ "learning_rate": 1.884666666666667e-05,
1857
+ "loss": 11.4561,
1858
+ "mean_token_accuracy": 0.15903587290085852,
1859
+ "num_tokens": 14857782.0,
1860
+ "step": 1520
1861
+ },
1862
+ {
1863
+ "entropy": 1.9327999822795392,
1864
+ "epoch": 1.224,
1865
+ "grad_norm": 0.10595703125,
1866
+ "learning_rate": 1.8824444444444445e-05,
1867
+ "loss": 11.3866,
1868
+ "mean_token_accuracy": 0.15627011358737947,
1869
+ "num_tokens": 14950496.0,
1870
+ "step": 1530
1871
+ },
1872
+ {
1873
+ "entropy": 1.8955214098095894,
1874
+ "epoch": 1.232,
1875
+ "grad_norm": 0.1220703125,
1876
+ "learning_rate": 1.8802222222222226e-05,
1877
+ "loss": 11.3568,
1878
+ "mean_token_accuracy": 0.15990630425512792,
1879
+ "num_tokens": 15047356.0,
1880
+ "step": 1540
1881
+ },
1882
+ {
1883
+ "entropy": 1.9376576729118824,
1884
+ "epoch": 1.24,
1885
+ "grad_norm": 0.109375,
1886
+ "learning_rate": 1.878e-05,
1887
+ "loss": 11.3893,
1888
+ "mean_token_accuracy": 0.1599413577467203,
1889
+ "num_tokens": 15142592.0,
1890
+ "step": 1550
1891
+ },
1892
+ {
1893
+ "entropy": 1.9254475340247155,
1894
+ "epoch": 1.248,
1895
+ "grad_norm": 0.1162109375,
1896
+ "learning_rate": 1.875777777777778e-05,
1897
+ "loss": 11.4126,
1898
+ "mean_token_accuracy": 0.1606173425912857,
1899
+ "num_tokens": 15241098.0,
1900
+ "step": 1560
1901
+ },
1902
+ {
1903
+ "entropy": 1.9526181869208812,
1904
+ "epoch": 1.256,
1905
+ "grad_norm": 0.10546875,
1906
+ "learning_rate": 1.873555555555556e-05,
1907
+ "loss": 11.2484,
1908
+ "mean_token_accuracy": 0.15649163788184522,
1909
+ "num_tokens": 15335851.0,
1910
+ "step": 1570
1911
+ },
1912
+ {
1913
+ "entropy": 1.8829004153609277,
1914
+ "epoch": 1.264,
1915
+ "grad_norm": 0.10546875,
1916
+ "learning_rate": 1.8713333333333336e-05,
1917
+ "loss": 11.4768,
1918
+ "mean_token_accuracy": 0.15737718129530548,
1919
+ "num_tokens": 15437657.0,
1920
+ "step": 1580
1921
+ },
1922
+ {
1923
+ "entropy": 1.9331139042973517,
1924
+ "epoch": 1.272,
1925
+ "grad_norm": 0.11328125,
1926
+ "learning_rate": 1.8691111111111114e-05,
1927
+ "loss": 11.2952,
1928
+ "mean_token_accuracy": 0.15551234567537903,
1929
+ "num_tokens": 15530753.0,
1930
+ "step": 1590
1931
+ },
1932
+ {
1933
+ "entropy": 1.9040869876742363,
1934
+ "epoch": 1.28,
1935
+ "grad_norm": 0.115234375,
1936
+ "learning_rate": 1.866888888888889e-05,
1937
+ "loss": 11.3958,
1938
+ "mean_token_accuracy": 0.16075886362232267,
1939
+ "num_tokens": 15630795.0,
1940
+ "step": 1600
1941
+ },
1942
+ {
1943
+ "epoch": 1.28,
1944
+ "eval_coding_entropy": 1.000721924304962,
1945
+ "eval_coding_loss": 8.267828941345215,
1946
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
1947
+ "eval_coding_num_tokens": 15630795.0,
1948
+ "eval_coding_runtime": 94.4186,
1949
+ "eval_coding_samples_per_second": 5.296,
1950
+ "eval_coding_steps_per_second": 2.648,
1951
+ "step": 1600
1952
+ },
1953
+ {
1954
+ "epoch": 1.28,
1955
+ "eval_biology_entropy": 1.8729813146591185,
1956
+ "eval_biology_loss": 11.396076202392578,
1957
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
1958
+ "eval_biology_num_tokens": 15630795.0,
1959
+ "eval_biology_runtime": 41.4372,
1960
+ "eval_biology_samples_per_second": 12.066,
1961
+ "eval_biology_steps_per_second": 6.033,
1962
+ "step": 1600
1963
+ },
1964
+ {
1965
+ "entropy": 1.949748583137989,
1966
+ "epoch": 1.288,
1967
+ "grad_norm": 0.1015625,
1968
+ "learning_rate": 1.864666666666667e-05,
1969
+ "loss": 11.3105,
1970
+ "mean_token_accuracy": 0.15701372702606023,
1971
+ "num_tokens": 15725428.0,
1972
+ "step": 1610
1973
+ },
1974
+ {
1975
+ "entropy": 1.9060676544904709,
1976
+ "epoch": 1.296,
1977
+ "grad_norm": 0.111328125,
1978
+ "learning_rate": 1.8624444444444446e-05,
1979
+ "loss": 11.4172,
1980
+ "mean_token_accuracy": 0.15982052269391717,
1981
+ "num_tokens": 15827105.0,
1982
+ "step": 1620
1983
+ },
1984
+ {
1985
+ "entropy": 1.9177203148603439,
1986
+ "epoch": 1.304,
1987
+ "grad_norm": 0.123046875,
1988
+ "learning_rate": 1.8602222222222224e-05,
1989
+ "loss": 11.5038,
1990
+ "mean_token_accuracy": 0.15568662905134262,
1991
+ "num_tokens": 15923902.0,
1992
+ "step": 1630
1993
+ },
1994
+ {
1995
+ "entropy": 1.9236695282161236,
1996
+ "epoch": 1.312,
1997
+ "grad_norm": 0.10791015625,
1998
+ "learning_rate": 1.858e-05,
1999
+ "loss": 11.3814,
2000
+ "mean_token_accuracy": 0.15766759933903812,
2001
+ "num_tokens": 16019645.0,
2002
+ "step": 1640
2003
+ },
2004
+ {
2005
+ "entropy": 1.9366594329476357,
2006
+ "epoch": 1.32,
2007
+ "grad_norm": 0.111328125,
2008
+ "learning_rate": 1.855777777777778e-05,
2009
+ "loss": 11.4536,
2010
+ "mean_token_accuracy": 0.15385150196962058,
2011
+ "num_tokens": 16115487.0,
2012
+ "step": 1650
2013
+ },
2014
+ {
2015
+ "entropy": 1.883201529085636,
2016
+ "epoch": 1.328,
2017
+ "grad_norm": 0.1123046875,
2018
+ "learning_rate": 1.8535555555555557e-05,
2019
+ "loss": 11.4721,
2020
+ "mean_token_accuracy": 0.15817170958034693,
2021
+ "num_tokens": 16221726.0,
2022
+ "step": 1660
2023
+ },
2024
+ {
2025
+ "entropy": 1.864897334575653,
2026
+ "epoch": 1.336,
2027
+ "grad_norm": 0.11572265625,
2028
+ "learning_rate": 1.8513333333333335e-05,
2029
+ "loss": 11.3423,
2030
+ "mean_token_accuracy": 0.1640611401759088,
2031
+ "num_tokens": 16322791.0,
2032
+ "step": 1670
2033
+ },
2034
+ {
2035
+ "entropy": 1.9057570204138756,
2036
+ "epoch": 1.3439999999999999,
2037
+ "grad_norm": 0.1064453125,
2038
+ "learning_rate": 1.8491111111111112e-05,
2039
+ "loss": 11.6343,
2040
+ "mean_token_accuracy": 0.15843453146517278,
2041
+ "num_tokens": 16427594.0,
2042
+ "step": 1680
2043
+ },
2044
+ {
2045
+ "entropy": 1.8997819542884826,
2046
+ "epoch": 1.3519999999999999,
2047
+ "grad_norm": 0.10986328125,
2048
+ "learning_rate": 1.846888888888889e-05,
2049
+ "loss": 11.4734,
2050
+ "mean_token_accuracy": 0.15844294875860215,
2051
+ "num_tokens": 16527485.0,
2052
+ "step": 1690
2053
+ },
2054
+ {
2055
+ "entropy": 1.9108400709927083,
2056
+ "epoch": 1.3599999999999999,
2057
+ "grad_norm": 0.1083984375,
2058
+ "learning_rate": 1.8446666666666667e-05,
2059
+ "loss": 11.3154,
2060
+ "mean_token_accuracy": 0.15963923330418767,
2061
+ "num_tokens": 16621605.0,
2062
+ "step": 1700
2063
+ },
2064
+ {
2065
+ "epoch": 1.3599999999999999,
2066
+ "eval_coding_entropy": 1.000721924304962,
2067
+ "eval_coding_loss": 8.267828941345215,
2068
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2069
+ "eval_coding_num_tokens": 16621605.0,
2070
+ "eval_coding_runtime": 94.7291,
2071
+ "eval_coding_samples_per_second": 5.278,
2072
+ "eval_coding_steps_per_second": 2.639,
2073
+ "step": 1700
2074
+ },
2075
+ {
2076
+ "epoch": 1.3599999999999999,
2077
+ "eval_biology_entropy": 1.8729813146591185,
2078
+ "eval_biology_loss": 11.396076202392578,
2079
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2080
+ "eval_biology_num_tokens": 16621605.0,
2081
+ "eval_biology_runtime": 41.452,
2082
+ "eval_biology_samples_per_second": 12.062,
2083
+ "eval_biology_steps_per_second": 6.031,
2084
+ "step": 1700
2085
+ },
2086
+ {
2087
+ "entropy": 1.9072483718395232,
2088
+ "epoch": 1.3679999999999999,
2089
+ "grad_norm": 0.11083984375,
2090
+ "learning_rate": 1.842444444444445e-05,
2091
+ "loss": 11.3111,
2092
+ "mean_token_accuracy": 0.1618227817583829,
2093
+ "num_tokens": 16719005.0,
2094
+ "step": 1710
2095
+ },
2096
+ {
2097
+ "entropy": 1.9344917692244052,
2098
+ "epoch": 1.376,
2099
+ "grad_norm": 0.1005859375,
2100
+ "learning_rate": 1.8402222222222223e-05,
2101
+ "loss": 11.2864,
2102
+ "mean_token_accuracy": 0.15792911853641273,
2103
+ "num_tokens": 16813444.0,
2104
+ "step": 1720
2105
+ },
2106
+ {
2107
+ "entropy": 1.9180502645671367,
2108
+ "epoch": 1.384,
2109
+ "grad_norm": 0.111328125,
2110
+ "learning_rate": 1.8380000000000004e-05,
2111
+ "loss": 11.4819,
2112
+ "mean_token_accuracy": 0.15618215668946506,
2113
+ "num_tokens": 16908557.0,
2114
+ "step": 1730
2115
+ },
2116
+ {
2117
+ "entropy": 1.908074852079153,
2118
+ "epoch": 1.392,
2119
+ "grad_norm": 0.1181640625,
2120
+ "learning_rate": 1.8357777777777778e-05,
2121
+ "loss": 11.412,
2122
+ "mean_token_accuracy": 0.1577038482762873,
2123
+ "num_tokens": 17006509.0,
2124
+ "step": 1740
2125
+ },
2126
+ {
2127
+ "entropy": 1.9261491410434246,
2128
+ "epoch": 1.4,
2129
+ "grad_norm": 0.10205078125,
2130
+ "learning_rate": 1.833555555555556e-05,
2131
+ "loss": 11.407,
2132
+ "mean_token_accuracy": 0.15843819421716035,
2133
+ "num_tokens": 17097916.0,
2134
+ "step": 1750
2135
+ },
2136
+ {
2137
+ "entropy": 1.901807364076376,
2138
+ "epoch": 1.408,
2139
+ "grad_norm": 0.10888671875,
2140
+ "learning_rate": 1.8313333333333333e-05,
2141
+ "loss": 11.4551,
2142
+ "mean_token_accuracy": 0.1580773525405675,
2143
+ "num_tokens": 17197870.0,
2144
+ "step": 1760
2145
+ },
2146
+ {
2147
+ "entropy": 1.9068179935216905,
2148
+ "epoch": 1.416,
2149
+ "grad_norm": 0.1005859375,
2150
+ "learning_rate": 1.8291111111111114e-05,
2151
+ "loss": 11.4565,
2152
+ "mean_token_accuracy": 0.1564626230392605,
2153
+ "num_tokens": 17296950.0,
2154
+ "step": 1770
2155
+ },
2156
+ {
2157
+ "entropy": 1.9137524850666523,
2158
+ "epoch": 1.424,
2159
+ "grad_norm": 0.10546875,
2160
+ "learning_rate": 1.8268888888888888e-05,
2161
+ "loss": 11.319,
2162
+ "mean_token_accuracy": 0.1580805520527065,
2163
+ "num_tokens": 17394390.0,
2164
+ "step": 1780
2165
+ },
2166
+ {
2167
+ "entropy": 1.86898348107934,
2168
+ "epoch": 1.432,
2169
+ "grad_norm": 0.1142578125,
2170
+ "learning_rate": 1.824666666666667e-05,
2171
+ "loss": 11.3352,
2172
+ "mean_token_accuracy": 0.16185315563343466,
2173
+ "num_tokens": 17498287.0,
2174
+ "step": 1790
2175
+ },
2176
+ {
2177
+ "entropy": 1.9457152262330055,
2178
+ "epoch": 1.44,
2179
+ "grad_norm": 0.0986328125,
2180
+ "learning_rate": 1.8224444444444447e-05,
2181
+ "loss": 11.5085,
2182
+ "mean_token_accuracy": 0.1535401228815317,
2183
+ "num_tokens": 17587777.0,
2184
+ "step": 1800
2185
+ },
2186
+ {
2187
+ "epoch": 1.44,
2188
+ "eval_coding_entropy": 1.000721924304962,
2189
+ "eval_coding_loss": 8.267828941345215,
2190
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2191
+ "eval_coding_num_tokens": 17587777.0,
2192
+ "eval_coding_runtime": 94.4635,
2193
+ "eval_coding_samples_per_second": 5.293,
2194
+ "eval_coding_steps_per_second": 2.647,
2195
+ "step": 1800
2196
+ },
2197
+ {
2198
+ "epoch": 1.44,
2199
+ "eval_biology_entropy": 1.8729813146591185,
2200
+ "eval_biology_loss": 11.396076202392578,
2201
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2202
+ "eval_biology_num_tokens": 17587777.0,
2203
+ "eval_biology_runtime": 41.4569,
2204
+ "eval_biology_samples_per_second": 12.061,
2205
+ "eval_biology_steps_per_second": 6.03,
2206
+ "step": 1800
2207
+ },
2208
+ {
2209
+ "entropy": 1.902113003283739,
2210
+ "epoch": 1.448,
2211
+ "grad_norm": 0.103515625,
2212
+ "learning_rate": 1.8202222222222225e-05,
2213
+ "loss": 11.4753,
2214
+ "mean_token_accuracy": 0.15963359172455965,
2215
+ "num_tokens": 17688697.0,
2216
+ "step": 1810
2217
+ },
2218
+ {
2219
+ "entropy": 1.9020785458385945,
2220
+ "epoch": 1.456,
2221
+ "grad_norm": 0.1103515625,
2222
+ "learning_rate": 1.8180000000000002e-05,
2223
+ "loss": 11.361,
2224
+ "mean_token_accuracy": 0.15817707288078964,
2225
+ "num_tokens": 17788456.0,
2226
+ "step": 1820
2227
+ },
2228
+ {
2229
+ "entropy": 1.9290625780820847,
2230
+ "epoch": 1.464,
2231
+ "grad_norm": 0.10546875,
2232
+ "learning_rate": 1.815777777777778e-05,
2233
+ "loss": 11.3487,
2234
+ "mean_token_accuracy": 0.1603408372029662,
2235
+ "num_tokens": 17882731.0,
2236
+ "step": 1830
2237
+ },
2238
+ {
2239
+ "entropy": 1.9105426162481307,
2240
+ "epoch": 1.472,
2241
+ "grad_norm": 0.111328125,
2242
+ "learning_rate": 1.8135555555555557e-05,
2243
+ "loss": 11.511,
2244
+ "mean_token_accuracy": 0.1596439859829843,
2245
+ "num_tokens": 17984063.0,
2246
+ "step": 1840
2247
+ },
2248
+ {
2249
+ "entropy": 1.9299705654382706,
2250
+ "epoch": 1.48,
2251
+ "grad_norm": 0.11669921875,
2252
+ "learning_rate": 1.8113333333333335e-05,
2253
+ "loss": 11.3816,
2254
+ "mean_token_accuracy": 0.15798658230341972,
2255
+ "num_tokens": 18080829.0,
2256
+ "step": 1850
2257
+ },
2258
+ {
2259
+ "entropy": 1.9229087643325329,
2260
+ "epoch": 1.488,
2261
+ "grad_norm": 0.11181640625,
2262
+ "learning_rate": 1.8091111111111113e-05,
2263
+ "loss": 11.5753,
2264
+ "mean_token_accuracy": 0.15435658004134895,
2265
+ "num_tokens": 18175640.0,
2266
+ "step": 1860
2267
+ },
2268
+ {
2269
+ "entropy": 1.937994058430195,
2270
+ "epoch": 1.496,
2271
+ "grad_norm": 0.11181640625,
2272
+ "learning_rate": 1.806888888888889e-05,
2273
+ "loss": 11.4177,
2274
+ "mean_token_accuracy": 0.15660293828696012,
2275
+ "num_tokens": 18268965.0,
2276
+ "step": 1870
2277
+ },
2278
+ {
2279
+ "entropy": 1.9269187480211258,
2280
+ "epoch": 1.504,
2281
+ "grad_norm": 0.10595703125,
2282
+ "learning_rate": 1.8046666666666668e-05,
2283
+ "loss": 11.4106,
2284
+ "mean_token_accuracy": 0.15928622940555215,
2285
+ "num_tokens": 18367857.0,
2286
+ "step": 1880
2287
+ },
2288
+ {
2289
+ "entropy": 1.92791308760643,
2290
+ "epoch": 1.512,
2291
+ "grad_norm": 0.1064453125,
2292
+ "learning_rate": 1.8024444444444445e-05,
2293
+ "loss": 11.4263,
2294
+ "mean_token_accuracy": 0.15667357984930277,
2295
+ "num_tokens": 18468841.0,
2296
+ "step": 1890
2297
+ },
2298
+ {
2299
+ "entropy": 1.9114290274679662,
2300
+ "epoch": 1.52,
2301
+ "grad_norm": 0.11376953125,
2302
+ "learning_rate": 1.8002222222222223e-05,
2303
+ "loss": 11.5163,
2304
+ "mean_token_accuracy": 0.15518842511810363,
2305
+ "num_tokens": 18569146.0,
2306
+ "step": 1900
2307
+ },
2308
+ {
2309
+ "epoch": 1.52,
2310
+ "eval_coding_entropy": 1.000721924304962,
2311
+ "eval_coding_loss": 8.267828941345215,
2312
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2313
+ "eval_coding_num_tokens": 18569146.0,
2314
+ "eval_coding_runtime": 94.4229,
2315
+ "eval_coding_samples_per_second": 5.295,
2316
+ "eval_coding_steps_per_second": 2.648,
2317
+ "step": 1900
2318
+ },
2319
+ {
2320
+ "epoch": 1.52,
2321
+ "eval_biology_entropy": 1.8729813146591185,
2322
+ "eval_biology_loss": 11.396076202392578,
2323
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2324
+ "eval_biology_num_tokens": 18569146.0,
2325
+ "eval_biology_runtime": 41.4216,
2326
+ "eval_biology_samples_per_second": 12.071,
2327
+ "eval_biology_steps_per_second": 6.036,
2328
+ "step": 1900
2329
+ },
2330
+ {
2331
+ "entropy": 1.9271638520061969,
2332
+ "epoch": 1.528,
2333
+ "grad_norm": 0.10546875,
2334
+ "learning_rate": 1.798e-05,
2335
+ "loss": 11.3061,
2336
+ "mean_token_accuracy": 0.15814642114564775,
2337
+ "num_tokens": 18661379.0,
2338
+ "step": 1910
2339
+ },
2340
+ {
2341
+ "entropy": 1.9256254382431508,
2342
+ "epoch": 1.536,
2343
+ "grad_norm": 0.11572265625,
2344
+ "learning_rate": 1.7957777777777778e-05,
2345
+ "loss": 11.3743,
2346
+ "mean_token_accuracy": 0.1560321016702801,
2347
+ "num_tokens": 18755079.0,
2348
+ "step": 1920
2349
+ },
2350
+ {
2351
+ "entropy": 1.8881871685385705,
2352
+ "epoch": 1.544,
2353
+ "grad_norm": 0.1103515625,
2354
+ "learning_rate": 1.7935555555555556e-05,
2355
+ "loss": 11.367,
2356
+ "mean_token_accuracy": 0.16265541026368738,
2357
+ "num_tokens": 18855275.0,
2358
+ "step": 1930
2359
+ },
2360
+ {
2361
+ "entropy": 1.9023422569036483,
2362
+ "epoch": 1.552,
2363
+ "grad_norm": 0.1142578125,
2364
+ "learning_rate": 1.7913333333333337e-05,
2365
+ "loss": 11.4127,
2366
+ "mean_token_accuracy": 0.15928544756025076,
2367
+ "num_tokens": 18956248.0,
2368
+ "step": 1940
2369
+ },
2370
+ {
2371
+ "entropy": 1.8970495253801345,
2372
+ "epoch": 1.56,
2373
+ "grad_norm": 0.107421875,
2374
+ "learning_rate": 1.789111111111111e-05,
2375
+ "loss": 11.3361,
2376
+ "mean_token_accuracy": 0.1625245711300522,
2377
+ "num_tokens": 19051957.0,
2378
+ "step": 1950
2379
+ },
2380
+ {
2381
+ "entropy": 1.9093870118260383,
2382
+ "epoch": 1.568,
2383
+ "grad_norm": 0.111328125,
2384
+ "learning_rate": 1.7868888888888892e-05,
2385
+ "loss": 11.4793,
2386
+ "mean_token_accuracy": 0.1557660404127091,
2387
+ "num_tokens": 19150315.0,
2388
+ "step": 1960
2389
+ },
2390
+ {
2391
+ "entropy": 1.8911843553185463,
2392
+ "epoch": 1.576,
2393
+ "grad_norm": 0.1044921875,
2394
+ "learning_rate": 1.7846666666666666e-05,
2395
+ "loss": 11.3024,
2396
+ "mean_token_accuracy": 0.1613072390668094,
2397
+ "num_tokens": 19248041.0,
2398
+ "step": 1970
2399
+ },
2400
+ {
2401
+ "entropy": 1.8826511427760124,
2402
+ "epoch": 1.584,
2403
+ "grad_norm": 0.10986328125,
2404
+ "learning_rate": 1.7824444444444447e-05,
2405
+ "loss": 11.2043,
2406
+ "mean_token_accuracy": 0.16279208194464445,
2407
+ "num_tokens": 19344260.0,
2408
+ "step": 1980
2409
+ },
2410
+ {
2411
+ "entropy": 1.9475473545491695,
2412
+ "epoch": 1.592,
2413
+ "grad_norm": 0.1044921875,
2414
+ "learning_rate": 1.780222222222222e-05,
2415
+ "loss": 11.4873,
2416
+ "mean_token_accuracy": 0.15342508563771845,
2417
+ "num_tokens": 19436040.0,
2418
+ "step": 1990
2419
+ },
2420
+ {
2421
+ "entropy": 1.9466259226202964,
2422
+ "epoch": 1.6,
2423
+ "grad_norm": 0.10986328125,
2424
+ "learning_rate": 1.7780000000000003e-05,
2425
+ "loss": 11.5525,
2426
+ "mean_token_accuracy": 0.15283841700293124,
2427
+ "num_tokens": 19532552.0,
2428
+ "step": 2000
2429
+ },
2430
+ {
2431
+ "epoch": 1.6,
2432
+ "eval_coding_entropy": 1.000721924304962,
2433
+ "eval_coding_loss": 8.267828941345215,
2434
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2435
+ "eval_coding_num_tokens": 19532552.0,
2436
+ "eval_coding_runtime": 94.4243,
2437
+ "eval_coding_samples_per_second": 5.295,
2438
+ "eval_coding_steps_per_second": 2.648,
2439
+ "step": 2000
2440
+ },
2441
+ {
2442
+ "epoch": 1.6,
2443
+ "eval_biology_entropy": 1.8729813146591185,
2444
+ "eval_biology_loss": 11.396076202392578,
2445
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2446
+ "eval_biology_num_tokens": 19532552.0,
2447
+ "eval_biology_runtime": 41.075,
2448
+ "eval_biology_samples_per_second": 12.173,
2449
+ "eval_biology_steps_per_second": 6.086,
2450
+ "step": 2000
2451
+ },
2452
+ {
2453
+ "entropy": 1.9087241023778916,
2454
+ "epoch": 1.608,
2455
+ "grad_norm": 0.1123046875,
2456
+ "learning_rate": 1.7757777777777777e-05,
2457
+ "loss": 11.358,
2458
+ "mean_token_accuracy": 0.15919128167442978,
2459
+ "num_tokens": 19631506.0,
2460
+ "step": 2010
2461
+ },
2462
+ {
2463
+ "entropy": 1.8858548194169997,
2464
+ "epoch": 1.616,
2465
+ "grad_norm": 0.1162109375,
2466
+ "learning_rate": 1.7735555555555558e-05,
2467
+ "loss": 11.4741,
2468
+ "mean_token_accuracy": 0.16057525095529854,
2469
+ "num_tokens": 19732719.0,
2470
+ "step": 2020
2471
+ },
2472
+ {
2473
+ "entropy": 1.8991656713187695,
2474
+ "epoch": 1.624,
2475
+ "grad_norm": 0.111328125,
2476
+ "learning_rate": 1.7713333333333335e-05,
2477
+ "loss": 11.452,
2478
+ "mean_token_accuracy": 0.15742587419226767,
2479
+ "num_tokens": 19834441.0,
2480
+ "step": 2030
2481
+ },
2482
+ {
2483
+ "entropy": 1.9366624042391778,
2484
+ "epoch": 1.6320000000000001,
2485
+ "grad_norm": 0.11376953125,
2486
+ "learning_rate": 1.7691111111111113e-05,
2487
+ "loss": 11.3964,
2488
+ "mean_token_accuracy": 0.15863695833832026,
2489
+ "num_tokens": 19926830.0,
2490
+ "step": 2040
2491
+ },
2492
+ {
2493
+ "entropy": 1.9385347999632359,
2494
+ "epoch": 1.6400000000000001,
2495
+ "grad_norm": 0.1044921875,
2496
+ "learning_rate": 1.766888888888889e-05,
2497
+ "loss": 11.3855,
2498
+ "mean_token_accuracy": 0.15577454604208468,
2499
+ "num_tokens": 20017708.0,
2500
+ "step": 2050
2501
+ },
2502
+ {
2503
+ "entropy": 1.8880144242197274,
2504
+ "epoch": 1.6480000000000001,
2505
+ "grad_norm": 0.115234375,
2506
+ "learning_rate": 1.7646666666666668e-05,
2507
+ "loss": 11.427,
2508
+ "mean_token_accuracy": 0.15919531048275531,
2509
+ "num_tokens": 20118800.0,
2510
+ "step": 2060
2511
+ },
2512
+ {
2513
+ "entropy": 1.915343378484249,
2514
+ "epoch": 1.6560000000000001,
2515
+ "grad_norm": 0.11376953125,
2516
+ "learning_rate": 1.7624444444444446e-05,
2517
+ "loss": 11.4617,
2518
+ "mean_token_accuracy": 0.1596326429862529,
2519
+ "num_tokens": 20219215.0,
2520
+ "step": 2070
2521
+ },
2522
+ {
2523
+ "entropy": 1.8944584995508194,
2524
+ "epoch": 1.6640000000000001,
2525
+ "grad_norm": 0.11328125,
2526
+ "learning_rate": 1.7602222222222223e-05,
2527
+ "loss": 11.3653,
2528
+ "mean_token_accuracy": 0.1606519581284374,
2529
+ "num_tokens": 20320511.0,
2530
+ "step": 2080
2531
+ },
2532
+ {
2533
+ "entropy": 1.9216352105140686,
2534
+ "epoch": 1.6720000000000002,
2535
+ "grad_norm": 0.107421875,
2536
+ "learning_rate": 1.758e-05,
2537
+ "loss": 11.3123,
2538
+ "mean_token_accuracy": 0.1593463249038905,
2539
+ "num_tokens": 20414832.0,
2540
+ "step": 2090
2541
+ },
2542
+ {
2543
+ "entropy": 1.9011931098997592,
2544
+ "epoch": 1.6800000000000002,
2545
+ "grad_norm": 0.10498046875,
2546
+ "learning_rate": 1.755777777777778e-05,
2547
+ "loss": 11.4019,
2548
+ "mean_token_accuracy": 0.1574652241077274,
2549
+ "num_tokens": 20513393.0,
2550
+ "step": 2100
2551
+ },
2552
+ {
2553
+ "epoch": 1.6800000000000002,
2554
+ "eval_coding_entropy": 1.000721924304962,
2555
+ "eval_coding_loss": 8.267828941345215,
2556
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2557
+ "eval_coding_num_tokens": 20513393.0,
2558
+ "eval_coding_runtime": 94.3297,
2559
+ "eval_coding_samples_per_second": 5.301,
2560
+ "eval_coding_steps_per_second": 2.65,
2561
+ "step": 2100
2562
+ },
2563
+ {
2564
+ "epoch": 1.6800000000000002,
2565
+ "eval_biology_entropy": 1.8729813146591185,
2566
+ "eval_biology_loss": 11.396076202392578,
2567
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2568
+ "eval_biology_num_tokens": 20513393.0,
2569
+ "eval_biology_runtime": 41.4391,
2570
+ "eval_biology_samples_per_second": 12.066,
2571
+ "eval_biology_steps_per_second": 6.033,
2572
+ "step": 2100
2573
+ },
2574
+ {
2575
+ "entropy": 1.9457669362425805,
2576
+ "epoch": 1.688,
2577
+ "grad_norm": 0.10595703125,
2578
+ "learning_rate": 1.7535555555555556e-05,
2579
+ "loss": 11.4225,
2580
+ "mean_token_accuracy": 0.15737789403647184,
2581
+ "num_tokens": 20604938.0,
2582
+ "step": 2110
2583
+ },
2584
+ {
2585
+ "entropy": 1.9023445054888726,
2586
+ "epoch": 1.696,
2587
+ "grad_norm": 0.10107421875,
2588
+ "learning_rate": 1.7513333333333334e-05,
2589
+ "loss": 11.3753,
2590
+ "mean_token_accuracy": 0.16211591372266412,
2591
+ "num_tokens": 20707237.0,
2592
+ "step": 2120
2593
+ },
2594
+ {
2595
+ "entropy": 1.8882552206516265,
2596
+ "epoch": 1.704,
2597
+ "grad_norm": 0.103515625,
2598
+ "learning_rate": 1.749111111111111e-05,
2599
+ "loss": 11.4613,
2600
+ "mean_token_accuracy": 0.15875514289364218,
2601
+ "num_tokens": 20812088.0,
2602
+ "step": 2130
2603
+ },
2604
+ {
2605
+ "entropy": 1.8843944430351258,
2606
+ "epoch": 1.712,
2607
+ "grad_norm": 0.11083984375,
2608
+ "learning_rate": 1.746888888888889e-05,
2609
+ "loss": 11.4171,
2610
+ "mean_token_accuracy": 0.15933335497975348,
2611
+ "num_tokens": 20910419.0,
2612
+ "step": 2140
2613
+ },
2614
+ {
2615
+ "entropy": 1.9196000188589095,
2616
+ "epoch": 1.72,
2617
+ "grad_norm": 0.11572265625,
2618
+ "learning_rate": 1.7446666666666667e-05,
2619
+ "loss": 11.4545,
2620
+ "mean_token_accuracy": 0.1565834353212267,
2621
+ "num_tokens": 21009172.0,
2622
+ "step": 2150
2623
+ },
2624
+ {
2625
+ "entropy": 1.8814144264906645,
2626
+ "epoch": 1.728,
2627
+ "grad_norm": 0.1103515625,
2628
+ "learning_rate": 1.7424444444444444e-05,
2629
+ "loss": 11.4253,
2630
+ "mean_token_accuracy": 0.1586998355574906,
2631
+ "num_tokens": 21107498.0,
2632
+ "step": 2160
2633
+ },
2634
+ {
2635
+ "entropy": 1.9101394057273864,
2636
+ "epoch": 1.736,
2637
+ "grad_norm": 0.1044921875,
2638
+ "learning_rate": 1.7402222222222222e-05,
2639
+ "loss": 11.515,
2640
+ "mean_token_accuracy": 0.1576042068656534,
2641
+ "num_tokens": 21204959.0,
2642
+ "step": 2170
2643
+ },
2644
+ {
2645
+ "entropy": 1.8962420254945755,
2646
+ "epoch": 1.744,
2647
+ "grad_norm": 0.1083984375,
2648
+ "learning_rate": 1.7380000000000003e-05,
2649
+ "loss": 11.2589,
2650
+ "mean_token_accuracy": 0.16131992358714342,
2651
+ "num_tokens": 21303955.0,
2652
+ "step": 2180
2653
+ },
2654
+ {
2655
+ "entropy": 1.8812646329402924,
2656
+ "epoch": 1.752,
2657
+ "grad_norm": 0.1123046875,
2658
+ "learning_rate": 1.735777777777778e-05,
2659
+ "loss": 11.422,
2660
+ "mean_token_accuracy": 0.1588835945352912,
2661
+ "num_tokens": 21408903.0,
2662
+ "step": 2190
2663
+ },
2664
+ {
2665
+ "entropy": 1.9250748824328183,
2666
+ "epoch": 1.76,
2667
+ "grad_norm": 0.09716796875,
2668
+ "learning_rate": 1.7335555555555558e-05,
2669
+ "loss": 11.5098,
2670
+ "mean_token_accuracy": 0.1589009021408856,
2671
+ "num_tokens": 21499572.0,
2672
+ "step": 2200
2673
+ },
2674
+ {
2675
+ "epoch": 1.76,
2676
+ "eval_coding_entropy": 1.000721924304962,
2677
+ "eval_coding_loss": 8.267828941345215,
2678
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2679
+ "eval_coding_num_tokens": 21499572.0,
2680
+ "eval_coding_runtime": 94.3487,
2681
+ "eval_coding_samples_per_second": 5.299,
2682
+ "eval_coding_steps_per_second": 2.65,
2683
+ "step": 2200
2684
+ },
2685
+ {
2686
+ "epoch": 1.76,
2687
+ "eval_biology_entropy": 1.8729813146591185,
2688
+ "eval_biology_loss": 11.396076202392578,
2689
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2690
+ "eval_biology_num_tokens": 21499572.0,
2691
+ "eval_biology_runtime": 41.4408,
2692
+ "eval_biology_samples_per_second": 12.065,
2693
+ "eval_biology_steps_per_second": 6.033,
2694
+ "step": 2200
2695
+ },
2696
+ {
2697
+ "entropy": 1.9176459647715092,
2698
+ "epoch": 1.768,
2699
+ "grad_norm": 0.107421875,
2700
+ "learning_rate": 1.7313333333333336e-05,
2701
+ "loss": 11.3785,
2702
+ "mean_token_accuracy": 0.1561640478670597,
2703
+ "num_tokens": 21596260.0,
2704
+ "step": 2210
2705
+ },
2706
+ {
2707
+ "entropy": 1.9001624204218388,
2708
+ "epoch": 1.776,
2709
+ "grad_norm": 0.11083984375,
2710
+ "learning_rate": 1.7291111111111113e-05,
2711
+ "loss": 11.3406,
2712
+ "mean_token_accuracy": 0.16171830627135933,
2713
+ "num_tokens": 21692804.0,
2714
+ "step": 2220
2715
+ },
2716
+ {
2717
+ "entropy": 1.890039400756359,
2718
+ "epoch": 1.784,
2719
+ "grad_norm": 0.11279296875,
2720
+ "learning_rate": 1.726888888888889e-05,
2721
+ "loss": 11.3238,
2722
+ "mean_token_accuracy": 0.16518823937512933,
2723
+ "num_tokens": 21796414.0,
2724
+ "step": 2230
2725
+ },
2726
+ {
2727
+ "entropy": 1.9122498795390128,
2728
+ "epoch": 1.792,
2729
+ "grad_norm": 0.1103515625,
2730
+ "learning_rate": 1.724666666666667e-05,
2731
+ "loss": 11.4882,
2732
+ "mean_token_accuracy": 0.15549946581013502,
2733
+ "num_tokens": 21894218.0,
2734
+ "step": 2240
2735
+ },
2736
+ {
2737
+ "entropy": 1.9429917126893996,
2738
+ "epoch": 1.8,
2739
+ "grad_norm": 0.1162109375,
2740
+ "learning_rate": 1.7224444444444446e-05,
2741
+ "loss": 11.3674,
2742
+ "mean_token_accuracy": 0.15660224789753557,
2743
+ "num_tokens": 21985664.0,
2744
+ "step": 2250
2745
+ },
2746
+ {
2747
+ "entropy": 1.8927513837814331,
2748
+ "epoch": 1.808,
2749
+ "grad_norm": 0.09814453125,
2750
+ "learning_rate": 1.7202222222222224e-05,
2751
+ "loss": 11.4481,
2752
+ "mean_token_accuracy": 0.15663987225852907,
2753
+ "num_tokens": 22082522.0,
2754
+ "step": 2260
2755
+ },
2756
+ {
2757
+ "entropy": 1.9026566654443742,
2758
+ "epoch": 1.8159999999999998,
2759
+ "grad_norm": 0.11181640625,
2760
+ "learning_rate": 1.718e-05,
2761
+ "loss": 11.368,
2762
+ "mean_token_accuracy": 0.15799217401072382,
2763
+ "num_tokens": 22180616.0,
2764
+ "step": 2270
2765
+ },
2766
+ {
2767
+ "entropy": 1.9114446617662906,
2768
+ "epoch": 1.8239999999999998,
2769
+ "grad_norm": 0.09912109375,
2770
+ "learning_rate": 1.715777777777778e-05,
2771
+ "loss": 11.3445,
2772
+ "mean_token_accuracy": 0.16169237615540624,
2773
+ "num_tokens": 22278933.0,
2774
+ "step": 2280
2775
+ },
2776
+ {
2777
+ "entropy": 1.9253177329897881,
2778
+ "epoch": 1.8319999999999999,
2779
+ "grad_norm": 0.11279296875,
2780
+ "learning_rate": 1.7135555555555557e-05,
2781
+ "loss": 11.5365,
2782
+ "mean_token_accuracy": 0.15368229574523867,
2783
+ "num_tokens": 22377874.0,
2784
+ "step": 2290
2785
+ },
2786
+ {
2787
+ "entropy": 1.9121784418821335,
2788
+ "epoch": 1.8399999999999999,
2789
+ "grad_norm": 0.1044921875,
2790
+ "learning_rate": 1.7113333333333334e-05,
2791
+ "loss": 11.3564,
2792
+ "mean_token_accuracy": 0.15802422454580664,
2793
+ "num_tokens": 22473801.0,
2794
+ "step": 2300
2795
+ },
2796
+ {
2797
+ "epoch": 1.8399999999999999,
2798
+ "eval_coding_entropy": 1.000721924304962,
2799
+ "eval_coding_loss": 8.267828941345215,
2800
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2801
+ "eval_coding_num_tokens": 22473801.0,
2802
+ "eval_coding_runtime": 94.3518,
2803
+ "eval_coding_samples_per_second": 5.299,
2804
+ "eval_coding_steps_per_second": 2.65,
2805
+ "step": 2300
2806
+ },
2807
+ {
2808
+ "epoch": 1.8399999999999999,
2809
+ "eval_biology_entropy": 1.8729813146591185,
2810
+ "eval_biology_loss": 11.396076202392578,
2811
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2812
+ "eval_biology_num_tokens": 22473801.0,
2813
+ "eval_biology_runtime": 41.6688,
2814
+ "eval_biology_samples_per_second": 11.999,
2815
+ "eval_biology_steps_per_second": 6.0,
2816
+ "step": 2300
2817
+ },
2818
+ {
2819
+ "entropy": 1.8603787779808045,
2820
+ "epoch": 1.8479999999999999,
2821
+ "grad_norm": 0.11669921875,
2822
+ "learning_rate": 1.7091111111111112e-05,
2823
+ "loss": 11.5278,
2824
+ "mean_token_accuracy": 0.15900381957180798,
2825
+ "num_tokens": 22582148.0,
2826
+ "step": 2310
2827
+ },
2828
+ {
2829
+ "entropy": 1.8850210525095463,
2830
+ "epoch": 1.8559999999999999,
2831
+ "grad_norm": 0.1103515625,
2832
+ "learning_rate": 1.706888888888889e-05,
2833
+ "loss": 11.569,
2834
+ "mean_token_accuracy": 0.15426975889131428,
2835
+ "num_tokens": 22677853.0,
2836
+ "step": 2320
2837
+ },
2838
+ {
2839
+ "entropy": 1.8693079382181168,
2840
+ "epoch": 1.8639999999999999,
2841
+ "grad_norm": 0.10302734375,
2842
+ "learning_rate": 1.704666666666667e-05,
2843
+ "loss": 11.4324,
2844
+ "mean_token_accuracy": 0.16082727410830558,
2845
+ "num_tokens": 22775707.0,
2846
+ "step": 2330
2847
+ },
2848
+ {
2849
+ "entropy": 1.9007405743002892,
2850
+ "epoch": 1.8719999999999999,
2851
+ "grad_norm": 0.10400390625,
2852
+ "learning_rate": 1.7024444444444445e-05,
2853
+ "loss": 11.3858,
2854
+ "mean_token_accuracy": 0.16051669786684214,
2855
+ "num_tokens": 22874965.0,
2856
+ "step": 2340
2857
+ },
2858
+ {
2859
+ "entropy": 1.9155317477881908,
2860
+ "epoch": 1.88,
2861
+ "grad_norm": 0.1220703125,
2862
+ "learning_rate": 1.7002222222222226e-05,
2863
+ "loss": 11.5316,
2864
+ "mean_token_accuracy": 0.15344377453438937,
2865
+ "num_tokens": 22972554.0,
2866
+ "step": 2350
2867
+ },
2868
+ {
2869
+ "entropy": 1.8995164781808853,
2870
+ "epoch": 1.888,
2871
+ "grad_norm": 0.1083984375,
2872
+ "learning_rate": 1.698e-05,
2873
+ "loss": 11.3258,
2874
+ "mean_token_accuracy": 0.1600531129632145,
2875
+ "num_tokens": 23068892.0,
2876
+ "step": 2360
2877
+ },
2878
+ {
2879
+ "entropy": 1.9323486879467964,
2880
+ "epoch": 1.896,
2881
+ "grad_norm": 0.10986328125,
2882
+ "learning_rate": 1.695777777777778e-05,
2883
+ "loss": 11.4639,
2884
+ "mean_token_accuracy": 0.1554114448837936,
2885
+ "num_tokens": 23168907.0,
2886
+ "step": 2370
2887
+ },
2888
+ {
2889
+ "entropy": 1.9529826886951924,
2890
+ "epoch": 1.904,
2891
+ "grad_norm": 0.10546875,
2892
+ "learning_rate": 1.6935555555555555e-05,
2893
+ "loss": 11.3384,
2894
+ "mean_token_accuracy": 0.15591429970227183,
2895
+ "num_tokens": 23263827.0,
2896
+ "step": 2380
2897
+ },
2898
+ {
2899
+ "entropy": 1.8884943507611751,
2900
+ "epoch": 1.912,
2901
+ "grad_norm": 0.10888671875,
2902
+ "learning_rate": 1.6913333333333336e-05,
2903
+ "loss": 11.3368,
2904
+ "mean_token_accuracy": 0.15996967633254827,
2905
+ "num_tokens": 23361737.0,
2906
+ "step": 2390
2907
+ },
2908
+ {
2909
+ "entropy": 1.9062687747180462,
2910
+ "epoch": 1.92,
2911
+ "grad_norm": 0.10791015625,
2912
+ "learning_rate": 1.689111111111111e-05,
2913
+ "loss": 11.3189,
2914
+ "mean_token_accuracy": 0.15876830075867474,
2915
+ "num_tokens": 23463627.0,
2916
+ "step": 2400
2917
+ },
2918
+ {
2919
+ "epoch": 1.92,
2920
+ "eval_coding_entropy": 1.000721924304962,
2921
+ "eval_coding_loss": 8.267828941345215,
2922
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
2923
+ "eval_coding_num_tokens": 23463627.0,
2924
+ "eval_coding_runtime": 94.3535,
2925
+ "eval_coding_samples_per_second": 5.299,
2926
+ "eval_coding_steps_per_second": 2.65,
2927
+ "step": 2400
2928
+ },
2929
+ {
2930
+ "epoch": 1.92,
2931
+ "eval_biology_entropy": 1.8729813146591185,
2932
+ "eval_biology_loss": 11.396076202392578,
2933
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
2934
+ "eval_biology_num_tokens": 23463627.0,
2935
+ "eval_biology_runtime": 41.4093,
2936
+ "eval_biology_samples_per_second": 12.075,
2937
+ "eval_biology_steps_per_second": 6.037,
2938
+ "step": 2400
2939
+ },
2940
+ {
2941
+ "entropy": 1.8954006470739841,
2942
+ "epoch": 1.928,
2943
+ "grad_norm": 0.111328125,
2944
+ "learning_rate": 1.686888888888889e-05,
2945
+ "loss": 11.3369,
2946
+ "mean_token_accuracy": 0.1590992364101112,
2947
+ "num_tokens": 23558006.0,
2948
+ "step": 2410
2949
+ },
2950
+ {
2951
+ "entropy": 1.8887307055294513,
2952
+ "epoch": 1.936,
2953
+ "grad_norm": 0.109375,
2954
+ "learning_rate": 1.684666666666667e-05,
2955
+ "loss": 11.4566,
2956
+ "mean_token_accuracy": 0.16132439165376128,
2957
+ "num_tokens": 23660418.0,
2958
+ "step": 2420
2959
+ },
2960
+ {
2961
+ "entropy": 1.845245386660099,
2962
+ "epoch": 1.944,
2963
+ "grad_norm": 0.10888671875,
2964
+ "learning_rate": 1.6824444444444447e-05,
2965
+ "loss": 11.4973,
2966
+ "mean_token_accuracy": 0.16263166088610886,
2967
+ "num_tokens": 23764848.0,
2968
+ "step": 2430
2969
+ },
2970
+ {
2971
+ "entropy": 1.9215773575007915,
2972
+ "epoch": 1.952,
2973
+ "grad_norm": 0.1123046875,
2974
+ "learning_rate": 1.6802222222222224e-05,
2975
+ "loss": 11.3361,
2976
+ "mean_token_accuracy": 0.15789743876084686,
2977
+ "num_tokens": 23858145.0,
2978
+ "step": 2440
2979
+ },
2980
+ {
2981
+ "entropy": 1.914723663777113,
2982
+ "epoch": 1.96,
2983
+ "grad_norm": 0.111328125,
2984
+ "learning_rate": 1.6780000000000002e-05,
2985
+ "loss": 11.3811,
2986
+ "mean_token_accuracy": 0.1588454409968108,
2987
+ "num_tokens": 23957580.0,
2988
+ "step": 2450
2989
+ },
2990
+ {
2991
+ "entropy": 1.9352627888321876,
2992
+ "epoch": 1.968,
2993
+ "grad_norm": 0.12060546875,
2994
+ "learning_rate": 1.675777777777778e-05,
2995
+ "loss": 11.6394,
2996
+ "mean_token_accuracy": 0.15175382704474033,
2997
+ "num_tokens": 24053364.0,
2998
+ "step": 2460
2999
+ },
3000
+ {
3001
+ "entropy": 1.9044601261615752,
3002
+ "epoch": 1.976,
3003
+ "grad_norm": 0.1171875,
3004
+ "learning_rate": 1.6735555555555557e-05,
3005
+ "loss": 11.4335,
3006
+ "mean_token_accuracy": 0.15687427022494377,
3007
+ "num_tokens": 24151503.0,
3008
+ "step": 2470
3009
+ },
3010
+ {
3011
+ "entropy": 1.8967606857419015,
3012
+ "epoch": 1.984,
3013
+ "grad_norm": 0.111328125,
3014
+ "learning_rate": 1.6713333333333335e-05,
3015
+ "loss": 11.3002,
3016
+ "mean_token_accuracy": 0.1592816713731736,
3017
+ "num_tokens": 24249465.0,
3018
+ "step": 2480
3019
+ },
3020
+ {
3021
+ "entropy": 1.8964715145528317,
3022
+ "epoch": 1.992,
3023
+ "grad_norm": 0.10400390625,
3024
+ "learning_rate": 1.6691111111111112e-05,
3025
+ "loss": 11.4641,
3026
+ "mean_token_accuracy": 0.15451558271888644,
3027
+ "num_tokens": 24346850.0,
3028
+ "step": 2490
3029
+ },
3030
+ {
3031
+ "entropy": 1.9223815500736237,
3032
+ "epoch": 2.0,
3033
+ "grad_norm": 0.11328125,
3034
+ "learning_rate": 1.666888888888889e-05,
3035
+ "loss": 11.4094,
3036
+ "mean_token_accuracy": 0.1565131512004882,
3037
+ "num_tokens": 24442582.0,
3038
+ "step": 2500
3039
+ },
3040
+ {
3041
+ "epoch": 2.0,
3042
+ "eval_coding_entropy": 1.000721924304962,
3043
+ "eval_coding_loss": 8.267828941345215,
3044
+ "eval_coding_mean_token_accuracy": 0.2908177390098572,
3045
+ "eval_coding_num_tokens": 24442582.0,
3046
+ "eval_coding_runtime": 94.3854,
3047
+ "eval_coding_samples_per_second": 5.297,
3048
+ "eval_coding_steps_per_second": 2.649,
3049
+ "step": 2500
3050
+ },
3051
+ {
3052
+ "epoch": 2.0,
3053
+ "eval_biology_entropy": 1.8729813146591185,
3054
+ "eval_biology_loss": 11.396076202392578,
3055
+ "eval_biology_mean_token_accuracy": 0.1593981314599514,
3056
+ "eval_biology_num_tokens": 24442582.0,
3057
+ "eval_biology_runtime": 41.1404,
3058
+ "eval_biology_samples_per_second": 12.154,
3059
+ "eval_biology_steps_per_second": 6.077,
3060
+ "step": 2500
3061
+ }
3062
+ ],
3063
+ "logging_steps": 10,
3064
+ "max_steps": 10000,
3065
+ "num_input_tokens_seen": 0,
3066
+ "num_train_epochs": 8,
3067
+ "save_steps": 500,
3068
+ "stateful_callbacks": {
3069
+ "TrainerControl": {
3070
+ "args": {
3071
+ "should_epoch_stop": false,
3072
+ "should_evaluate": false,
3073
+ "should_log": false,
3074
+ "should_save": true,
3075
+ "should_training_stop": false
3076
+ },
3077
+ "attributes": {}
3078
+ }
3079
+ },
3080
+ "total_flos": 2.1024960597720576e+18,
3081
+ "train_batch_size": 2,
3082
+ "trial_name": null,
3083
+ "trial_params": null
3084
+ }
checkpoint-2500/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7fd6102c08f9bb4f3890090beaf916d78d938e27b44f93b8a55a78e9f7e1a9e
3
+ size 6417