roonbug commited on
Commit
0cfa078
·
verified ·
1 Parent(s): 0ce69f4

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,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Gemma3ForConditionalGeneration"
4
+ ],
5
+ "boi_token_index": 255999,
6
+ "bos_token_id": 2,
7
+ "dtype": "bfloat16",
8
+ "eoi_token_index": 256000,
9
+ "eos_token_id": 1,
10
+ "image_token_index": 262144,
11
+ "initializer_range": 0.02,
12
+ "mm_tokens_per_image": 256,
13
+ "model_type": "gemma3",
14
+ "pad_token_id": 0,
15
+ "text_config": {
16
+ "_sliding_window_pattern": 6,
17
+ "attention_bias": false,
18
+ "attention_dropout": 0.0,
19
+ "attn_logit_softcapping": null,
20
+ "dtype": "bfloat16",
21
+ "final_logit_softcapping": null,
22
+ "head_dim": 256,
23
+ "hidden_activation": "gelu_pytorch_tanh",
24
+ "hidden_size": 3840,
25
+ "initializer_range": 0.02,
26
+ "intermediate_size": 15360,
27
+ "layer_types": [
28
+ "sliding_attention",
29
+ "sliding_attention",
30
+ "sliding_attention",
31
+ "sliding_attention",
32
+ "sliding_attention",
33
+ "full_attention",
34
+ "sliding_attention",
35
+ "sliding_attention",
36
+ "sliding_attention",
37
+ "sliding_attention",
38
+ "sliding_attention",
39
+ "full_attention",
40
+ "sliding_attention",
41
+ "sliding_attention",
42
+ "sliding_attention",
43
+ "sliding_attention",
44
+ "sliding_attention",
45
+ "full_attention",
46
+ "sliding_attention",
47
+ "sliding_attention",
48
+ "sliding_attention",
49
+ "sliding_attention",
50
+ "sliding_attention",
51
+ "full_attention",
52
+ "sliding_attention",
53
+ "sliding_attention",
54
+ "sliding_attention",
55
+ "sliding_attention",
56
+ "sliding_attention",
57
+ "full_attention",
58
+ "sliding_attention",
59
+ "sliding_attention",
60
+ "sliding_attention",
61
+ "sliding_attention",
62
+ "sliding_attention",
63
+ "full_attention",
64
+ "sliding_attention",
65
+ "sliding_attention",
66
+ "sliding_attention",
67
+ "sliding_attention",
68
+ "sliding_attention",
69
+ "full_attention",
70
+ "sliding_attention",
71
+ "sliding_attention",
72
+ "sliding_attention",
73
+ "sliding_attention",
74
+ "sliding_attention",
75
+ "full_attention"
76
+ ],
77
+ "max_position_embeddings": 131072,
78
+ "model_type": "gemma3_text",
79
+ "num_attention_heads": 16,
80
+ "num_hidden_layers": 48,
81
+ "num_key_value_heads": 8,
82
+ "query_pre_attn_scalar": 256,
83
+ "rms_norm_eps": 1e-06,
84
+ "rope_local_base_freq": 10000.0,
85
+ "rope_scaling": {
86
+ "factor": 8.0,
87
+ "rope_type": "linear"
88
+ },
89
+ "rope_theta": 1000000.0,
90
+ "sliding_window": 1024,
91
+ "use_cache": true,
92
+ "vocab_size": 262208
93
+ },
94
+ "transformers_version": "4.56.1",
95
+ "vision_config": {
96
+ "attention_dropout": 0.0,
97
+ "dtype": "bfloat16",
98
+ "hidden_act": "gelu_pytorch_tanh",
99
+ "hidden_size": 1152,
100
+ "image_size": 896,
101
+ "intermediate_size": 4304,
102
+ "layer_norm_eps": 1e-06,
103
+ "model_type": "siglip_vision_model",
104
+ "num_attention_heads": 16,
105
+ "num_channels": 3,
106
+ "num_hidden_layers": 27,
107
+ "patch_size": 14,
108
+ "vision_use_head": false
109
+ }
110
+ }
checkpoint-2500/generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 2,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 1,
6
+ 1,
7
+ 106
8
+ ],
9
+ "pad_token_id": 0,
10
+ "top_k": 64,
11
+ "top_p": 0.95,
12
+ "transformers_version": "4.56.1"
13
+ }
checkpoint-2500/model-00001-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4847447e92599833e8dbaa3067cd201c3bb5c052efa91f11ba891e43234f7832
3
+ size 4979902192
checkpoint-2500/model-00002-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:891bd54eed03cba9ee1e705533a02a8217fcc29f356e4a1f53e5fd0d178883ad
3
+ size 4931296592
checkpoint-2500/model-00003-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cee411d9d57324e50ce064a192cc5a858276d508611b12fc599e0c9767112e0
3
+ size 4931296656
checkpoint-2500/model-00004-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2543d5aa67e0b4d65eaada3953806edb311e05c4fd404b6298b5002eb5ba691f
3
+ size 4931296656
checkpoint-2500/model-00005-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f784176bb7b972e169e6b31120c3c2d99229c9d66ab8c0f941d4044f63da3b6
3
+ size 4601000928
checkpoint-2500/model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-2500/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b1be9a8bb198629badaa7f435751cec8ba5d5b454c33238cf3bbbddb1df6fab
3
+ size 7286558019
checkpoint-2500/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bbd07b04584d51483a537ebe86fdb5e065d175fef715f69db1afc368ee4945d
3
+ size 14645
checkpoint-2500/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:401374f6391dea991900232c652375909f9d1e28f273a2842bccb16d538e61ce
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": 4.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.0092366490513087,
14
+ "epoch": 0.016,
15
+ "grad_norm": 74.5,
16
+ "learning_rate": 1.8e-07,
17
+ "loss": 18.8937,
18
+ "mean_token_accuracy": 0.7410404551774263,
19
+ "num_tokens": 338352.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 1.0230814347043633,
24
+ "epoch": 0.032,
25
+ "grad_norm": 76.0,
26
+ "learning_rate": 3.8e-07,
27
+ "loss": 18.9456,
28
+ "mean_token_accuracy": 0.7410476118326187,
29
+ "num_tokens": 671193.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 1.012267287634313,
34
+ "epoch": 0.048,
35
+ "grad_norm": 47.0,
36
+ "learning_rate": 5.800000000000001e-07,
37
+ "loss": 18.671,
38
+ "mean_token_accuracy": 0.7421887803822755,
39
+ "num_tokens": 1001008.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 1.0519745318219065,
44
+ "epoch": 0.064,
45
+ "grad_norm": 50.25,
46
+ "learning_rate": 7.8e-07,
47
+ "loss": 19.1892,
48
+ "mean_token_accuracy": 0.73549969419837,
49
+ "num_tokens": 1331208.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 1.0362586732953787,
54
+ "epoch": 0.08,
55
+ "grad_norm": 60.5,
56
+ "learning_rate": 9.800000000000001e-07,
57
+ "loss": 18.5399,
58
+ "mean_token_accuracy": 0.7425773791968823,
59
+ "num_tokens": 1667532.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 1.0199208352714777,
64
+ "epoch": 0.096,
65
+ "grad_norm": 47.0,
66
+ "learning_rate": 1.1800000000000001e-06,
67
+ "loss": 18.0825,
68
+ "mean_token_accuracy": 0.7469310026615859,
69
+ "num_tokens": 2007176.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 1.0730392780154943,
74
+ "epoch": 0.112,
75
+ "grad_norm": 40.25,
76
+ "learning_rate": 1.3800000000000001e-06,
77
+ "loss": 18.5203,
78
+ "mean_token_accuracy": 0.7405710384249687,
79
+ "num_tokens": 2342259.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.158516400679946,
84
+ "epoch": 0.128,
85
+ "grad_norm": 48.5,
86
+ "learning_rate": 1.5800000000000001e-06,
87
+ "loss": 19.4751,
88
+ "mean_token_accuracy": 0.7302160415798425,
89
+ "num_tokens": 2663987.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.103706269338727,
94
+ "epoch": 0.144,
95
+ "grad_norm": 34.0,
96
+ "learning_rate": 1.7800000000000001e-06,
97
+ "loss": 18.236,
98
+ "mean_token_accuracy": 0.7424531534314156,
99
+ "num_tokens": 2997824.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.1111123770475388,
104
+ "epoch": 0.16,
105
+ "grad_norm": 41.5,
106
+ "learning_rate": 1.98e-06,
107
+ "loss": 18.1903,
108
+ "mean_token_accuracy": 0.7447310462594032,
109
+ "num_tokens": 3330597.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "epoch": 0.16,
114
+ "eval_math_entropy": 0.6746724898815155,
115
+ "eval_math_loss": 0.6892878413200378,
116
+ "eval_math_mean_token_accuracy": 0.8155246863365173,
117
+ "eval_math_num_tokens": 3330597.0,
118
+ "eval_math_runtime": 37.2985,
119
+ "eval_math_samples_per_second": 13.405,
120
+ "eval_math_steps_per_second": 3.351,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.16,
125
+ "eval_physics_entropy": 1.1165525755882264,
126
+ "eval_physics_loss": 1.1379250288009644,
127
+ "eval_physics_mean_token_accuracy": 0.7427083716392517,
128
+ "eval_physics_num_tokens": 3330597.0,
129
+ "eval_physics_runtime": 42.3918,
130
+ "eval_physics_samples_per_second": 11.795,
131
+ "eval_physics_steps_per_second": 2.949,
132
+ "step": 100
133
+ },
134
+ {
135
+ "entropy": 1.1296000629663467,
136
+ "epoch": 0.176,
137
+ "grad_norm": 43.0,
138
+ "learning_rate": 2.1800000000000003e-06,
139
+ "loss": 18.5006,
140
+ "mean_token_accuracy": 0.7395337466150522,
141
+ "num_tokens": 3658264.0,
142
+ "step": 110
143
+ },
144
+ {
145
+ "entropy": 1.1084317233413459,
146
+ "epoch": 0.192,
147
+ "grad_norm": 28.125,
148
+ "learning_rate": 2.38e-06,
149
+ "loss": 18.0132,
150
+ "mean_token_accuracy": 0.7432477563619614,
151
+ "num_tokens": 3995568.0,
152
+ "step": 120
153
+ },
154
+ {
155
+ "entropy": 1.0731435023248195,
156
+ "epoch": 0.208,
157
+ "grad_norm": 34.25,
158
+ "learning_rate": 2.5800000000000003e-06,
159
+ "loss": 17.4019,
160
+ "mean_token_accuracy": 0.7507147442549467,
161
+ "num_tokens": 4321436.0,
162
+ "step": 130
163
+ },
164
+ {
165
+ "entropy": 1.084234836883843,
166
+ "epoch": 0.224,
167
+ "grad_norm": 28.0,
168
+ "learning_rate": 2.7800000000000005e-06,
169
+ "loss": 17.5116,
170
+ "mean_token_accuracy": 0.747317761927843,
171
+ "num_tokens": 4648491.0,
172
+ "step": 140
173
+ },
174
+ {
175
+ "entropy": 1.0654050692915917,
176
+ "epoch": 0.24,
177
+ "grad_norm": 28.75,
178
+ "learning_rate": 2.9800000000000003e-06,
179
+ "loss": 17.2926,
180
+ "mean_token_accuracy": 0.750689634680748,
181
+ "num_tokens": 4986175.0,
182
+ "step": 150
183
+ },
184
+ {
185
+ "entropy": 1.0740458451211452,
186
+ "epoch": 0.256,
187
+ "grad_norm": 30.75,
188
+ "learning_rate": 3.1800000000000005e-06,
189
+ "loss": 17.2845,
190
+ "mean_token_accuracy": 0.7503778677433729,
191
+ "num_tokens": 5329320.0,
192
+ "step": 160
193
+ },
194
+ {
195
+ "entropy": 1.0785667825490237,
196
+ "epoch": 0.272,
197
+ "grad_norm": 31.5,
198
+ "learning_rate": 3.3800000000000007e-06,
199
+ "loss": 17.3538,
200
+ "mean_token_accuracy": 0.7468075532466173,
201
+ "num_tokens": 5658796.0,
202
+ "step": 170
203
+ },
204
+ {
205
+ "entropy": 1.0575236398726702,
206
+ "epoch": 0.288,
207
+ "grad_norm": 27.0,
208
+ "learning_rate": 3.58e-06,
209
+ "loss": 17.2248,
210
+ "mean_token_accuracy": 0.7524373367428779,
211
+ "num_tokens": 5980201.0,
212
+ "step": 180
213
+ },
214
+ {
215
+ "entropy": 1.0599254176020623,
216
+ "epoch": 0.304,
217
+ "grad_norm": 33.75,
218
+ "learning_rate": 3.7800000000000002e-06,
219
+ "loss": 17.0558,
220
+ "mean_token_accuracy": 0.7516172304749489,
221
+ "num_tokens": 6298858.0,
222
+ "step": 190
223
+ },
224
+ {
225
+ "entropy": 1.06340769007802,
226
+ "epoch": 0.32,
227
+ "grad_norm": 25.875,
228
+ "learning_rate": 3.980000000000001e-06,
229
+ "loss": 17.0226,
230
+ "mean_token_accuracy": 0.7516651555895806,
231
+ "num_tokens": 6622798.0,
232
+ "step": 200
233
+ },
234
+ {
235
+ "epoch": 0.32,
236
+ "eval_math_entropy": 0.6770454683303833,
237
+ "eval_math_loss": 0.6920014023780823,
238
+ "eval_math_mean_token_accuracy": 0.8149451169967651,
239
+ "eval_math_num_tokens": 6622798.0,
240
+ "eval_math_runtime": 37.3199,
241
+ "eval_math_samples_per_second": 13.398,
242
+ "eval_math_steps_per_second": 3.349,
243
+ "step": 200
244
+ },
245
+ {
246
+ "epoch": 0.32,
247
+ "eval_physics_entropy": 1.0526363019943237,
248
+ "eval_physics_loss": 1.0609160661697388,
249
+ "eval_physics_mean_token_accuracy": 0.7532025098800659,
250
+ "eval_physics_num_tokens": 6622798.0,
251
+ "eval_physics_runtime": 42.3894,
252
+ "eval_physics_samples_per_second": 11.795,
253
+ "eval_physics_steps_per_second": 2.949,
254
+ "step": 200
255
+ },
256
+ {
257
+ "entropy": 1.0413700450211762,
258
+ "epoch": 0.336,
259
+ "grad_norm": 22.75,
260
+ "learning_rate": 4.18e-06,
261
+ "loss": 16.7861,
262
+ "mean_token_accuracy": 0.7550040531903506,
263
+ "num_tokens": 6953611.0,
264
+ "step": 210
265
+ },
266
+ {
267
+ "entropy": 1.0119973294436932,
268
+ "epoch": 0.352,
269
+ "grad_norm": 26.875,
270
+ "learning_rate": 4.38e-06,
271
+ "loss": 16.2682,
272
+ "mean_token_accuracy": 0.7610075753182173,
273
+ "num_tokens": 7290378.0,
274
+ "step": 220
275
+ },
276
+ {
277
+ "entropy": 1.01713064648211,
278
+ "epoch": 0.368,
279
+ "grad_norm": 28.75,
280
+ "learning_rate": 4.58e-06,
281
+ "loss": 16.3086,
282
+ "mean_token_accuracy": 0.7611279483884573,
283
+ "num_tokens": 7621082.0,
284
+ "step": 230
285
+ },
286
+ {
287
+ "entropy": 1.0563053917139769,
288
+ "epoch": 0.384,
289
+ "grad_norm": 27.125,
290
+ "learning_rate": 4.78e-06,
291
+ "loss": 17.0452,
292
+ "mean_token_accuracy": 0.7495943393558264,
293
+ "num_tokens": 7955570.0,
294
+ "step": 240
295
+ },
296
+ {
297
+ "entropy": 1.0173547353595496,
298
+ "epoch": 0.4,
299
+ "grad_norm": 29.5,
300
+ "learning_rate": 4.980000000000001e-06,
301
+ "loss": 16.2976,
302
+ "mean_token_accuracy": 0.7596513438969851,
303
+ "num_tokens": 8291049.0,
304
+ "step": 250
305
+ },
306
+ {
307
+ "entropy": 0.984210986085236,
308
+ "epoch": 0.416,
309
+ "grad_norm": 27.0,
310
+ "learning_rate": 5.18e-06,
311
+ "loss": 15.9194,
312
+ "mean_token_accuracy": 0.7646323684602976,
313
+ "num_tokens": 8627310.0,
314
+ "step": 260
315
+ },
316
+ {
317
+ "entropy": 1.0042537026107312,
318
+ "epoch": 0.432,
319
+ "grad_norm": 29.625,
320
+ "learning_rate": 5.380000000000001e-06,
321
+ "loss": 16.1695,
322
+ "mean_token_accuracy": 0.7608209282159806,
323
+ "num_tokens": 8958371.0,
324
+ "step": 270
325
+ },
326
+ {
327
+ "entropy": 0.9618185676634312,
328
+ "epoch": 0.448,
329
+ "grad_norm": 27.875,
330
+ "learning_rate": 5.580000000000001e-06,
331
+ "loss": 15.4588,
332
+ "mean_token_accuracy": 0.7696380686014891,
333
+ "num_tokens": 9294388.0,
334
+ "step": 280
335
+ },
336
+ {
337
+ "entropy": 0.9816760478541255,
338
+ "epoch": 0.464,
339
+ "grad_norm": 34.0,
340
+ "learning_rate": 5.78e-06,
341
+ "loss": 15.6523,
342
+ "mean_token_accuracy": 0.7662083100527525,
343
+ "num_tokens": 9620366.0,
344
+ "step": 290
345
+ },
346
+ {
347
+ "entropy": 0.9721551053225994,
348
+ "epoch": 0.48,
349
+ "grad_norm": 30.625,
350
+ "learning_rate": 5.98e-06,
351
+ "loss": 15.7877,
352
+ "mean_token_accuracy": 0.7654597967863083,
353
+ "num_tokens": 9955431.0,
354
+ "step": 300
355
+ },
356
+ {
357
+ "epoch": 0.48,
358
+ "eval_math_entropy": 0.6786130204200744,
359
+ "eval_math_loss": 0.6952713131904602,
360
+ "eval_math_mean_token_accuracy": 0.8145794682502746,
361
+ "eval_math_num_tokens": 9955431.0,
362
+ "eval_math_runtime": 37.3306,
363
+ "eval_math_samples_per_second": 13.394,
364
+ "eval_math_steps_per_second": 3.348,
365
+ "step": 300
366
+ },
367
+ {
368
+ "epoch": 0.48,
369
+ "eval_physics_entropy": 1.001317280292511,
370
+ "eval_physics_loss": 1.0042355060577393,
371
+ "eval_physics_mean_token_accuracy": 0.7617036099433899,
372
+ "eval_physics_num_tokens": 9955431.0,
373
+ "eval_physics_runtime": 42.4154,
374
+ "eval_physics_samples_per_second": 11.788,
375
+ "eval_physics_steps_per_second": 2.947,
376
+ "step": 300
377
+ },
378
+ {
379
+ "entropy": 0.998606894724071,
380
+ "epoch": 0.496,
381
+ "grad_norm": 27.0,
382
+ "learning_rate": 6.18e-06,
383
+ "loss": 15.9637,
384
+ "mean_token_accuracy": 0.7627440579235554,
385
+ "num_tokens": 10289883.0,
386
+ "step": 310
387
+ },
388
+ {
389
+ "entropy": 0.9797808565199375,
390
+ "epoch": 0.512,
391
+ "grad_norm": 31.5,
392
+ "learning_rate": 6.380000000000001e-06,
393
+ "loss": 15.7986,
394
+ "mean_token_accuracy": 0.7650973781943321,
395
+ "num_tokens": 10619468.0,
396
+ "step": 320
397
+ },
398
+ {
399
+ "entropy": 0.9935696642845869,
400
+ "epoch": 0.528,
401
+ "grad_norm": 26.625,
402
+ "learning_rate": 6.5800000000000005e-06,
403
+ "loss": 16.0109,
404
+ "mean_token_accuracy": 0.7615033354610204,
405
+ "num_tokens": 10944904.0,
406
+ "step": 330
407
+ },
408
+ {
409
+ "entropy": 0.9842395279556513,
410
+ "epoch": 0.544,
411
+ "grad_norm": 30.375,
412
+ "learning_rate": 6.780000000000001e-06,
413
+ "loss": 15.7481,
414
+ "mean_token_accuracy": 0.7652762945741415,
415
+ "num_tokens": 11266409.0,
416
+ "step": 340
417
+ },
418
+ {
419
+ "entropy": 0.9608212519437075,
420
+ "epoch": 0.56,
421
+ "grad_norm": 24.5,
422
+ "learning_rate": 6.98e-06,
423
+ "loss": 15.4249,
424
+ "mean_token_accuracy": 0.769417317211628,
425
+ "num_tokens": 11605544.0,
426
+ "step": 350
427
+ },
428
+ {
429
+ "entropy": 0.935908448882401,
430
+ "epoch": 0.576,
431
+ "grad_norm": 27.375,
432
+ "learning_rate": 7.180000000000001e-06,
433
+ "loss": 15.0616,
434
+ "mean_token_accuracy": 0.773730392754078,
435
+ "num_tokens": 11931715.0,
436
+ "step": 360
437
+ },
438
+ {
439
+ "entropy": 0.9477673010900617,
440
+ "epoch": 0.592,
441
+ "grad_norm": 27.75,
442
+ "learning_rate": 7.3800000000000005e-06,
443
+ "loss": 15.2839,
444
+ "mean_token_accuracy": 0.7681151241064071,
445
+ "num_tokens": 12257243.0,
446
+ "step": 370
447
+ },
448
+ {
449
+ "entropy": 0.9456456508487463,
450
+ "epoch": 0.608,
451
+ "grad_norm": 26.875,
452
+ "learning_rate": 7.58e-06,
453
+ "loss": 15.0726,
454
+ "mean_token_accuracy": 0.7709438435733318,
455
+ "num_tokens": 12583154.0,
456
+ "step": 380
457
+ },
458
+ {
459
+ "entropy": 0.9472203815355897,
460
+ "epoch": 0.624,
461
+ "grad_norm": 26.0,
462
+ "learning_rate": 7.78e-06,
463
+ "loss": 15.2406,
464
+ "mean_token_accuracy": 0.7696458593010902,
465
+ "num_tokens": 12905392.0,
466
+ "step": 390
467
+ },
468
+ {
469
+ "entropy": 0.955901001021266,
470
+ "epoch": 0.64,
471
+ "grad_norm": 27.0,
472
+ "learning_rate": 7.980000000000002e-06,
473
+ "loss": 15.4306,
474
+ "mean_token_accuracy": 0.7679449453949928,
475
+ "num_tokens": 13232198.0,
476
+ "step": 400
477
+ },
478
+ {
479
+ "epoch": 0.64,
480
+ "eval_math_entropy": 0.6780883803367614,
481
+ "eval_math_loss": 0.699813723564148,
482
+ "eval_math_mean_token_accuracy": 0.8138141121864318,
483
+ "eval_math_num_tokens": 13232198.0,
484
+ "eval_math_runtime": 37.2424,
485
+ "eval_math_samples_per_second": 13.426,
486
+ "eval_math_steps_per_second": 3.356,
487
+ "step": 400
488
+ },
489
+ {
490
+ "epoch": 0.64,
491
+ "eval_physics_entropy": 0.9454385538101197,
492
+ "eval_physics_loss": 0.954737663269043,
493
+ "eval_physics_mean_token_accuracy": 0.7692720980644226,
494
+ "eval_physics_num_tokens": 13232198.0,
495
+ "eval_physics_runtime": 42.3209,
496
+ "eval_physics_samples_per_second": 11.815,
497
+ "eval_physics_steps_per_second": 2.954,
498
+ "step": 400
499
+ },
500
+ {
501
+ "entropy": 0.9476992039009928,
502
+ "epoch": 0.656,
503
+ "grad_norm": 25.875,
504
+ "learning_rate": 8.18e-06,
505
+ "loss": 15.0903,
506
+ "mean_token_accuracy": 0.7713554214686156,
507
+ "num_tokens": 13575902.0,
508
+ "step": 410
509
+ },
510
+ {
511
+ "entropy": 0.9169062672182917,
512
+ "epoch": 0.672,
513
+ "grad_norm": 31.0,
514
+ "learning_rate": 8.380000000000001e-06,
515
+ "loss": 14.8261,
516
+ "mean_token_accuracy": 0.7750746656209231,
517
+ "num_tokens": 13895997.0,
518
+ "step": 420
519
+ },
520
+ {
521
+ "entropy": 0.9244599049910903,
522
+ "epoch": 0.688,
523
+ "grad_norm": 27.75,
524
+ "learning_rate": 8.580000000000001e-06,
525
+ "loss": 14.8502,
526
+ "mean_token_accuracy": 0.7752744313329458,
527
+ "num_tokens": 14234888.0,
528
+ "step": 430
529
+ },
530
+ {
531
+ "entropy": 0.933361453562975,
532
+ "epoch": 0.704,
533
+ "grad_norm": 33.75,
534
+ "learning_rate": 8.78e-06,
535
+ "loss": 14.9746,
536
+ "mean_token_accuracy": 0.7716180372983217,
537
+ "num_tokens": 14567908.0,
538
+ "step": 440
539
+ },
540
+ {
541
+ "entropy": 0.9235167052596808,
542
+ "epoch": 0.72,
543
+ "grad_norm": 32.75,
544
+ "learning_rate": 8.98e-06,
545
+ "loss": 14.8192,
546
+ "mean_token_accuracy": 0.7735234662890434,
547
+ "num_tokens": 14882927.0,
548
+ "step": 450
549
+ },
550
+ {
551
+ "entropy": 0.9158632257953286,
552
+ "epoch": 0.736,
553
+ "grad_norm": 31.625,
554
+ "learning_rate": 9.180000000000002e-06,
555
+ "loss": 14.7253,
556
+ "mean_token_accuracy": 0.7745446749031544,
557
+ "num_tokens": 15217342.0,
558
+ "step": 460
559
+ },
560
+ {
561
+ "entropy": 0.9053685218095779,
562
+ "epoch": 0.752,
563
+ "grad_norm": 27.25,
564
+ "learning_rate": 9.38e-06,
565
+ "loss": 14.4754,
566
+ "mean_token_accuracy": 0.7773572497069836,
567
+ "num_tokens": 15547710.0,
568
+ "step": 470
569
+ },
570
+ {
571
+ "entropy": 0.939404590241611,
572
+ "epoch": 0.768,
573
+ "grad_norm": 30.625,
574
+ "learning_rate": 9.58e-06,
575
+ "loss": 15.169,
576
+ "mean_token_accuracy": 0.7681807715445756,
577
+ "num_tokens": 15877177.0,
578
+ "step": 480
579
+ },
580
+ {
581
+ "entropy": 0.8850956622511148,
582
+ "epoch": 0.784,
583
+ "grad_norm": 24.5,
584
+ "learning_rate": 9.780000000000001e-06,
585
+ "loss": 14.1945,
586
+ "mean_token_accuracy": 0.7821484938263893,
587
+ "num_tokens": 16219640.0,
588
+ "step": 490
589
+ },
590
+ {
591
+ "entropy": 0.899562518298626,
592
+ "epoch": 0.8,
593
+ "grad_norm": 31.0,
594
+ "learning_rate": 9.980000000000001e-06,
595
+ "loss": 14.4725,
596
+ "mean_token_accuracy": 0.7781291462481021,
597
+ "num_tokens": 16548261.0,
598
+ "step": 500
599
+ },
600
+ {
601
+ "epoch": 0.8,
602
+ "eval_math_entropy": 0.6752088174819947,
603
+ "eval_math_loss": 0.7044452428817749,
604
+ "eval_math_mean_token_accuracy": 0.8128278303146362,
605
+ "eval_math_num_tokens": 16548261.0,
606
+ "eval_math_runtime": 37.3074,
607
+ "eval_math_samples_per_second": 13.402,
608
+ "eval_math_steps_per_second": 3.351,
609
+ "step": 500
610
+ },
611
+ {
612
+ "epoch": 0.8,
613
+ "eval_physics_entropy": 0.9063508882522583,
614
+ "eval_physics_loss": 0.913874089717865,
615
+ "eval_physics_mean_token_accuracy": 0.7756751170158386,
616
+ "eval_physics_num_tokens": 16548261.0,
617
+ "eval_physics_runtime": 42.2317,
618
+ "eval_physics_samples_per_second": 11.839,
619
+ "eval_physics_steps_per_second": 2.96,
620
+ "step": 500
621
+ },
622
+ {
623
+ "entropy": 0.8967189636081457,
624
+ "epoch": 0.816,
625
+ "grad_norm": 27.75,
626
+ "learning_rate": 1.018e-05,
627
+ "loss": 14.4259,
628
+ "mean_token_accuracy": 0.776664936169982,
629
+ "num_tokens": 16870533.0,
630
+ "step": 510
631
+ },
632
+ {
633
+ "entropy": 0.8994548883289099,
634
+ "epoch": 0.832,
635
+ "grad_norm": 27.5,
636
+ "learning_rate": 1.038e-05,
637
+ "loss": 14.4201,
638
+ "mean_token_accuracy": 0.7781281162053346,
639
+ "num_tokens": 17196371.0,
640
+ "step": 520
641
+ },
642
+ {
643
+ "entropy": 0.8786382066085935,
644
+ "epoch": 0.848,
645
+ "grad_norm": 23.875,
646
+ "learning_rate": 1.0580000000000002e-05,
647
+ "loss": 14.1629,
648
+ "mean_token_accuracy": 0.7804178979247809,
649
+ "num_tokens": 17527066.0,
650
+ "step": 530
651
+ },
652
+ {
653
+ "entropy": 0.9056067479774356,
654
+ "epoch": 0.864,
655
+ "grad_norm": 27.75,
656
+ "learning_rate": 1.0780000000000002e-05,
657
+ "loss": 14.4586,
658
+ "mean_token_accuracy": 0.7776577699929476,
659
+ "num_tokens": 17859605.0,
660
+ "step": 540
661
+ },
662
+ {
663
+ "entropy": 0.9013458237051963,
664
+ "epoch": 0.88,
665
+ "grad_norm": 30.75,
666
+ "learning_rate": 1.0980000000000002e-05,
667
+ "loss": 14.4507,
668
+ "mean_token_accuracy": 0.7773088499903679,
669
+ "num_tokens": 18187315.0,
670
+ "step": 550
671
+ },
672
+ {
673
+ "entropy": 0.8363397585228085,
674
+ "epoch": 0.896,
675
+ "grad_norm": 24.875,
676
+ "learning_rate": 1.1180000000000001e-05,
677
+ "loss": 13.4286,
678
+ "mean_token_accuracy": 0.7901293423026801,
679
+ "num_tokens": 18536790.0,
680
+ "step": 560
681
+ },
682
+ {
683
+ "entropy": 0.8889346038922668,
684
+ "epoch": 0.912,
685
+ "grad_norm": 27.625,
686
+ "learning_rate": 1.138e-05,
687
+ "loss": 14.2651,
688
+ "mean_token_accuracy": 0.778273418545723,
689
+ "num_tokens": 18869344.0,
690
+ "step": 570
691
+ },
692
+ {
693
+ "entropy": 0.8685549266636372,
694
+ "epoch": 0.928,
695
+ "grad_norm": 28.375,
696
+ "learning_rate": 1.1580000000000001e-05,
697
+ "loss": 14.0196,
698
+ "mean_token_accuracy": 0.7813166368752718,
699
+ "num_tokens": 19199834.0,
700
+ "step": 580
701
+ },
702
+ {
703
+ "entropy": 0.8552317110821605,
704
+ "epoch": 0.944,
705
+ "grad_norm": 32.75,
706
+ "learning_rate": 1.178e-05,
707
+ "loss": 13.7437,
708
+ "mean_token_accuracy": 0.7851793665438891,
709
+ "num_tokens": 19525385.0,
710
+ "step": 590
711
+ },
712
+ {
713
+ "entropy": 0.8605958197265864,
714
+ "epoch": 0.96,
715
+ "grad_norm": 35.75,
716
+ "learning_rate": 1.198e-05,
717
+ "loss": 13.8362,
718
+ "mean_token_accuracy": 0.7834600981324911,
719
+ "num_tokens": 19856973.0,
720
+ "step": 600
721
+ },
722
+ {
723
+ "epoch": 0.96,
724
+ "eval_math_entropy": 0.6771966469287872,
725
+ "eval_math_loss": 0.7089411020278931,
726
+ "eval_math_mean_token_accuracy": 0.8117777819633484,
727
+ "eval_math_num_tokens": 19856973.0,
728
+ "eval_math_runtime": 37.3206,
729
+ "eval_math_samples_per_second": 13.397,
730
+ "eval_math_steps_per_second": 3.349,
731
+ "step": 600
732
+ },
733
+ {
734
+ "epoch": 0.96,
735
+ "eval_physics_entropy": 0.8764889559745789,
736
+ "eval_physics_loss": 0.8784005641937256,
737
+ "eval_physics_mean_token_accuracy": 0.7810807003974914,
738
+ "eval_physics_num_tokens": 19856973.0,
739
+ "eval_physics_runtime": 42.4096,
740
+ "eval_physics_samples_per_second": 11.79,
741
+ "eval_physics_steps_per_second": 2.947,
742
+ "step": 600
743
+ },
744
+ {
745
+ "entropy": 0.8510318692773581,
746
+ "epoch": 0.976,
747
+ "grad_norm": 28.875,
748
+ "learning_rate": 1.218e-05,
749
+ "loss": 13.7003,
750
+ "mean_token_accuracy": 0.7870899338275195,
751
+ "num_tokens": 20190600.0,
752
+ "step": 610
753
+ },
754
+ {
755
+ "entropy": 0.8734505966305732,
756
+ "epoch": 0.992,
757
+ "grad_norm": 25.625,
758
+ "learning_rate": 1.2380000000000002e-05,
759
+ "loss": 13.9297,
760
+ "mean_token_accuracy": 0.7843606945127248,
761
+ "num_tokens": 20518014.0,
762
+ "step": 620
763
+ },
764
+ {
765
+ "entropy": 0.8346759399399162,
766
+ "epoch": 1.008,
767
+ "grad_norm": 26.625,
768
+ "learning_rate": 1.2580000000000002e-05,
769
+ "loss": 13.3082,
770
+ "mean_token_accuracy": 0.7894357409328222,
771
+ "num_tokens": 20859215.0,
772
+ "step": 630
773
+ },
774
+ {
775
+ "entropy": 0.8322532791644335,
776
+ "epoch": 1.024,
777
+ "grad_norm": 26.125,
778
+ "learning_rate": 1.2780000000000001e-05,
779
+ "loss": 13.4039,
780
+ "mean_token_accuracy": 0.7888920601457358,
781
+ "num_tokens": 21186658.0,
782
+ "step": 640
783
+ },
784
+ {
785
+ "entropy": 0.8312261745333671,
786
+ "epoch": 1.04,
787
+ "grad_norm": 24.25,
788
+ "learning_rate": 1.2980000000000001e-05,
789
+ "loss": 13.3443,
790
+ "mean_token_accuracy": 0.7897948380559683,
791
+ "num_tokens": 21517237.0,
792
+ "step": 650
793
+ },
794
+ {
795
+ "entropy": 0.8096720686182379,
796
+ "epoch": 1.056,
797
+ "grad_norm": 25.625,
798
+ "learning_rate": 1.3180000000000001e-05,
799
+ "loss": 13.0267,
800
+ "mean_token_accuracy": 0.7933571342378855,
801
+ "num_tokens": 21852528.0,
802
+ "step": 660
803
+ },
804
+ {
805
+ "entropy": 0.828827659972012,
806
+ "epoch": 1.072,
807
+ "grad_norm": 23.125,
808
+ "learning_rate": 1.3380000000000002e-05,
809
+ "loss": 13.2583,
810
+ "mean_token_accuracy": 0.7900710258632898,
811
+ "num_tokens": 22192380.0,
812
+ "step": 670
813
+ },
814
+ {
815
+ "entropy": 0.8289778597652913,
816
+ "epoch": 1.088,
817
+ "grad_norm": 28.875,
818
+ "learning_rate": 1.3580000000000002e-05,
819
+ "loss": 13.2961,
820
+ "mean_token_accuracy": 0.7894763175398112,
821
+ "num_tokens": 22517971.0,
822
+ "step": 680
823
+ },
824
+ {
825
+ "entropy": 0.8111658392474055,
826
+ "epoch": 1.104,
827
+ "grad_norm": 24.625,
828
+ "learning_rate": 1.378e-05,
829
+ "loss": 13.068,
830
+ "mean_token_accuracy": 0.7919723801314831,
831
+ "num_tokens": 22848694.0,
832
+ "step": 690
833
+ },
834
+ {
835
+ "entropy": 0.819352557323873,
836
+ "epoch": 1.12,
837
+ "grad_norm": 27.0,
838
+ "learning_rate": 1.398e-05,
839
+ "loss": 13.1764,
840
+ "mean_token_accuracy": 0.790574399009347,
841
+ "num_tokens": 23183889.0,
842
+ "step": 700
843
+ },
844
+ {
845
+ "epoch": 1.12,
846
+ "eval_math_entropy": 0.6765684578418731,
847
+ "eval_math_loss": 0.7148844003677368,
848
+ "eval_math_mean_token_accuracy": 0.8105084261894226,
849
+ "eval_math_num_tokens": 23183889.0,
850
+ "eval_math_runtime": 37.3056,
851
+ "eval_math_samples_per_second": 13.403,
852
+ "eval_math_steps_per_second": 3.351,
853
+ "step": 700
854
+ },
855
+ {
856
+ "epoch": 1.12,
857
+ "eval_physics_entropy": 0.8618767859935761,
858
+ "eval_physics_loss": 0.851262092590332,
859
+ "eval_physics_mean_token_accuracy": 0.7858785772323609,
860
+ "eval_physics_num_tokens": 23183889.0,
861
+ "eval_physics_runtime": 42.3964,
862
+ "eval_physics_samples_per_second": 11.793,
863
+ "eval_physics_steps_per_second": 2.948,
864
+ "step": 700
865
+ },
866
+ {
867
+ "entropy": 0.7947209561243653,
868
+ "epoch": 1.1360000000000001,
869
+ "grad_norm": 24.0,
870
+ "learning_rate": 1.418e-05,
871
+ "loss": 12.7353,
872
+ "mean_token_accuracy": 0.7966287981718778,
873
+ "num_tokens": 23523903.0,
874
+ "step": 710
875
+ },
876
+ {
877
+ "entropy": 0.8054657407104969,
878
+ "epoch": 1.152,
879
+ "grad_norm": 26.375,
880
+ "learning_rate": 1.4380000000000001e-05,
881
+ "loss": 12.9867,
882
+ "mean_token_accuracy": 0.7943034041672945,
883
+ "num_tokens": 23848848.0,
884
+ "step": 720
885
+ },
886
+ {
887
+ "entropy": 0.8241605624556542,
888
+ "epoch": 1.168,
889
+ "grad_norm": 30.625,
890
+ "learning_rate": 1.4580000000000001e-05,
891
+ "loss": 13.2719,
892
+ "mean_token_accuracy": 0.7889104891568423,
893
+ "num_tokens": 24174589.0,
894
+ "step": 730
895
+ },
896
+ {
897
+ "entropy": 0.8090734414756298,
898
+ "epoch": 1.184,
899
+ "grad_norm": 27.375,
900
+ "learning_rate": 1.478e-05,
901
+ "loss": 12.9551,
902
+ "mean_token_accuracy": 0.7938775520771741,
903
+ "num_tokens": 24495981.0,
904
+ "step": 740
905
+ },
906
+ {
907
+ "entropy": 0.7889803951606155,
908
+ "epoch": 1.2,
909
+ "grad_norm": 26.25,
910
+ "learning_rate": 1.498e-05,
911
+ "loss": 12.7263,
912
+ "mean_token_accuracy": 0.7964807048439979,
913
+ "num_tokens": 24826245.0,
914
+ "step": 750
915
+ },
916
+ {
917
+ "entropy": 0.8167023938149214,
918
+ "epoch": 1.216,
919
+ "grad_norm": 31.625,
920
+ "learning_rate": 1.5180000000000002e-05,
921
+ "loss": 13.0451,
922
+ "mean_token_accuracy": 0.7903591353446245,
923
+ "num_tokens": 25147775.0,
924
+ "step": 760
925
+ },
926
+ {
927
+ "entropy": 0.789948632195592,
928
+ "epoch": 1.232,
929
+ "grad_norm": 26.0,
930
+ "learning_rate": 1.5380000000000002e-05,
931
+ "loss": 12.7637,
932
+ "mean_token_accuracy": 0.7966345235705375,
933
+ "num_tokens": 25480033.0,
934
+ "step": 770
935
+ },
936
+ {
937
+ "entropy": 0.8032306229695678,
938
+ "epoch": 1.248,
939
+ "grad_norm": 25.375,
940
+ "learning_rate": 1.5580000000000003e-05,
941
+ "loss": 12.7939,
942
+ "mean_token_accuracy": 0.7953033585101366,
943
+ "num_tokens": 25811978.0,
944
+ "step": 780
945
+ },
946
+ {
947
+ "entropy": 0.7868311481550336,
948
+ "epoch": 1.264,
949
+ "grad_norm": 30.5,
950
+ "learning_rate": 1.578e-05,
951
+ "loss": 12.6982,
952
+ "mean_token_accuracy": 0.7961065553128719,
953
+ "num_tokens": 26146299.0,
954
+ "step": 790
955
+ },
956
+ {
957
+ "entropy": 0.8258139120414854,
958
+ "epoch": 1.28,
959
+ "grad_norm": 29.125,
960
+ "learning_rate": 1.5980000000000003e-05,
961
+ "loss": 13.1783,
962
+ "mean_token_accuracy": 0.7892586536705494,
963
+ "num_tokens": 26478207.0,
964
+ "step": 800
965
+ },
966
+ {
967
+ "epoch": 1.28,
968
+ "eval_math_entropy": 0.6665113575458527,
969
+ "eval_math_loss": 0.7234205603599548,
970
+ "eval_math_mean_token_accuracy": 0.809327778339386,
971
+ "eval_math_num_tokens": 26478207.0,
972
+ "eval_math_runtime": 37.3419,
973
+ "eval_math_samples_per_second": 13.39,
974
+ "eval_math_steps_per_second": 3.347,
975
+ "step": 800
976
+ },
977
+ {
978
+ "epoch": 1.28,
979
+ "eval_physics_entropy": 0.8228767182826996,
980
+ "eval_physics_loss": 0.8289657235145569,
981
+ "eval_physics_mean_token_accuracy": 0.7892685952186584,
982
+ "eval_physics_num_tokens": 26478207.0,
983
+ "eval_physics_runtime": 42.4475,
984
+ "eval_physics_samples_per_second": 11.779,
985
+ "eval_physics_steps_per_second": 2.945,
986
+ "step": 800
987
+ },
988
+ {
989
+ "entropy": 0.7805587112903595,
990
+ "epoch": 1.296,
991
+ "grad_norm": 27.75,
992
+ "learning_rate": 1.618e-05,
993
+ "loss": 12.5534,
994
+ "mean_token_accuracy": 0.7988621093332767,
995
+ "num_tokens": 26806477.0,
996
+ "step": 810
997
+ },
998
+ {
999
+ "entropy": 0.8149383123964071,
1000
+ "epoch": 1.312,
1001
+ "grad_norm": 27.125,
1002
+ "learning_rate": 1.638e-05,
1003
+ "loss": 13.0917,
1004
+ "mean_token_accuracy": 0.7913250483572483,
1005
+ "num_tokens": 27137528.0,
1006
+ "step": 820
1007
+ },
1008
+ {
1009
+ "entropy": 0.7897355943918228,
1010
+ "epoch": 1.328,
1011
+ "grad_norm": 30.375,
1012
+ "learning_rate": 1.658e-05,
1013
+ "loss": 12.7726,
1014
+ "mean_token_accuracy": 0.7949048325419426,
1015
+ "num_tokens": 27465859.0,
1016
+ "step": 830
1017
+ },
1018
+ {
1019
+ "entropy": 0.807949285581708,
1020
+ "epoch": 1.3439999999999999,
1021
+ "grad_norm": 34.75,
1022
+ "learning_rate": 1.6780000000000002e-05,
1023
+ "loss": 12.9002,
1024
+ "mean_token_accuracy": 0.7933759417384862,
1025
+ "num_tokens": 27795568.0,
1026
+ "step": 840
1027
+ },
1028
+ {
1029
+ "entropy": 0.8059511505067348,
1030
+ "epoch": 1.3599999999999999,
1031
+ "grad_norm": 21.875,
1032
+ "learning_rate": 1.698e-05,
1033
+ "loss": 12.87,
1034
+ "mean_token_accuracy": 0.793031033501029,
1035
+ "num_tokens": 28129988.0,
1036
+ "step": 850
1037
+ },
1038
+ {
1039
+ "entropy": 0.7793916024267673,
1040
+ "epoch": 1.376,
1041
+ "grad_norm": 27.0,
1042
+ "learning_rate": 1.718e-05,
1043
+ "loss": 12.617,
1044
+ "mean_token_accuracy": 0.7958804558962583,
1045
+ "num_tokens": 28465903.0,
1046
+ "step": 860
1047
+ },
1048
+ {
1049
+ "entropy": 0.7730198312550783,
1050
+ "epoch": 1.392,
1051
+ "grad_norm": 32.25,
1052
+ "learning_rate": 1.7380000000000003e-05,
1053
+ "loss": 12.3427,
1054
+ "mean_token_accuracy": 0.8008152190595865,
1055
+ "num_tokens": 28801554.0,
1056
+ "step": 870
1057
+ },
1058
+ {
1059
+ "entropy": 0.776485905982554,
1060
+ "epoch": 1.408,
1061
+ "grad_norm": 24.75,
1062
+ "learning_rate": 1.758e-05,
1063
+ "loss": 12.4852,
1064
+ "mean_token_accuracy": 0.7977169454097748,
1065
+ "num_tokens": 29125114.0,
1066
+ "step": 880
1067
+ },
1068
+ {
1069
+ "entropy": 0.800671405531466,
1070
+ "epoch": 1.424,
1071
+ "grad_norm": 24.125,
1072
+ "learning_rate": 1.7780000000000003e-05,
1073
+ "loss": 12.8697,
1074
+ "mean_token_accuracy": 0.7924031157046556,
1075
+ "num_tokens": 29454334.0,
1076
+ "step": 890
1077
+ },
1078
+ {
1079
+ "entropy": 0.7569738568738102,
1080
+ "epoch": 1.44,
1081
+ "grad_norm": 23.75,
1082
+ "learning_rate": 1.798e-05,
1083
+ "loss": 12.1405,
1084
+ "mean_token_accuracy": 0.803036654368043,
1085
+ "num_tokens": 29789253.0,
1086
+ "step": 900
1087
+ },
1088
+ {
1089
+ "epoch": 1.44,
1090
+ "eval_math_entropy": 0.6468490760326385,
1091
+ "eval_math_loss": 0.7321750521659851,
1092
+ "eval_math_mean_token_accuracy": 0.8078626461029053,
1093
+ "eval_math_num_tokens": 29789253.0,
1094
+ "eval_math_runtime": 37.3449,
1095
+ "eval_math_samples_per_second": 13.389,
1096
+ "eval_math_steps_per_second": 3.347,
1097
+ "step": 900
1098
+ },
1099
+ {
1100
+ "epoch": 1.44,
1101
+ "eval_physics_entropy": 0.7729090967178345,
1102
+ "eval_physics_loss": 0.8055168390274048,
1103
+ "eval_physics_mean_token_accuracy": 0.7930156898498535,
1104
+ "eval_physics_num_tokens": 29789253.0,
1105
+ "eval_physics_runtime": 42.7168,
1106
+ "eval_physics_samples_per_second": 11.705,
1107
+ "eval_physics_steps_per_second": 2.926,
1108
+ "step": 900
1109
+ },
1110
+ {
1111
+ "entropy": 0.7531193299219012,
1112
+ "epoch": 1.456,
1113
+ "grad_norm": 21.625,
1114
+ "learning_rate": 1.8180000000000002e-05,
1115
+ "loss": 12.1313,
1116
+ "mean_token_accuracy": 0.8043223068118095,
1117
+ "num_tokens": 30128576.0,
1118
+ "step": 910
1119
+ },
1120
+ {
1121
+ "entropy": 0.8030919276177884,
1122
+ "epoch": 1.472,
1123
+ "grad_norm": 26.875,
1124
+ "learning_rate": 1.8380000000000004e-05,
1125
+ "loss": 12.9003,
1126
+ "mean_token_accuracy": 0.7934082742780447,
1127
+ "num_tokens": 30452719.0,
1128
+ "step": 920
1129
+ },
1130
+ {
1131
+ "entropy": 0.7907818842679262,
1132
+ "epoch": 1.488,
1133
+ "grad_norm": 22.875,
1134
+ "learning_rate": 1.858e-05,
1135
+ "loss": 12.6202,
1136
+ "mean_token_accuracy": 0.7969732403755188,
1137
+ "num_tokens": 30782343.0,
1138
+ "step": 930
1139
+ },
1140
+ {
1141
+ "entropy": 0.763646744005382,
1142
+ "epoch": 1.504,
1143
+ "grad_norm": 21.375,
1144
+ "learning_rate": 1.878e-05,
1145
+ "loss": 12.2876,
1146
+ "mean_token_accuracy": 0.8009975593537092,
1147
+ "num_tokens": 31113238.0,
1148
+ "step": 940
1149
+ },
1150
+ {
1151
+ "entropy": 0.7834568763151765,
1152
+ "epoch": 1.52,
1153
+ "grad_norm": 26.875,
1154
+ "learning_rate": 1.898e-05,
1155
+ "loss": 12.5808,
1156
+ "mean_token_accuracy": 0.7964470848441124,
1157
+ "num_tokens": 31444589.0,
1158
+ "step": 950
1159
+ },
1160
+ {
1161
+ "entropy": 0.7918407360091806,
1162
+ "epoch": 1.536,
1163
+ "grad_norm": 28.75,
1164
+ "learning_rate": 1.918e-05,
1165
+ "loss": 12.7438,
1166
+ "mean_token_accuracy": 0.7937989573925733,
1167
+ "num_tokens": 31774137.0,
1168
+ "step": 960
1169
+ },
1170
+ {
1171
+ "entropy": 0.7553022712469101,
1172
+ "epoch": 1.552,
1173
+ "grad_norm": 24.875,
1174
+ "learning_rate": 1.938e-05,
1175
+ "loss": 12.1698,
1176
+ "mean_token_accuracy": 0.8028277900069952,
1177
+ "num_tokens": 32101776.0,
1178
+ "step": 970
1179
+ },
1180
+ {
1181
+ "entropy": 0.7618934854865074,
1182
+ "epoch": 1.568,
1183
+ "grad_norm": 24.625,
1184
+ "learning_rate": 1.9580000000000002e-05,
1185
+ "loss": 12.194,
1186
+ "mean_token_accuracy": 0.8020534928888082,
1187
+ "num_tokens": 32428021.0,
1188
+ "step": 980
1189
+ },
1190
+ {
1191
+ "entropy": 0.7852840103209019,
1192
+ "epoch": 1.584,
1193
+ "grad_norm": 23.875,
1194
+ "learning_rate": 1.978e-05,
1195
+ "loss": 12.6209,
1196
+ "mean_token_accuracy": 0.793876089900732,
1197
+ "num_tokens": 32752735.0,
1198
+ "step": 990
1199
+ },
1200
+ {
1201
+ "entropy": 0.7698918517678977,
1202
+ "epoch": 1.6,
1203
+ "grad_norm": 23.125,
1204
+ "learning_rate": 1.9980000000000002e-05,
1205
+ "loss": 12.4372,
1206
+ "mean_token_accuracy": 0.7988904159516096,
1207
+ "num_tokens": 33075822.0,
1208
+ "step": 1000
1209
+ },
1210
+ {
1211
+ "epoch": 1.6,
1212
+ "eval_math_entropy": 0.6642975335121155,
1213
+ "eval_math_loss": 0.7357895970344543,
1214
+ "eval_math_mean_token_accuracy": 0.8065607080459595,
1215
+ "eval_math_num_tokens": 33075822.0,
1216
+ "eval_math_runtime": 37.2859,
1217
+ "eval_math_samples_per_second": 13.41,
1218
+ "eval_math_steps_per_second": 3.352,
1219
+ "step": 1000
1220
+ },
1221
+ {
1222
+ "epoch": 1.6,
1223
+ "eval_physics_entropy": 0.7814281928539276,
1224
+ "eval_physics_loss": 0.7896368503570557,
1225
+ "eval_physics_mean_token_accuracy": 0.7963423719406127,
1226
+ "eval_physics_num_tokens": 33075822.0,
1227
+ "eval_physics_runtime": 42.62,
1228
+ "eval_physics_samples_per_second": 11.732,
1229
+ "eval_physics_steps_per_second": 2.933,
1230
+ "step": 1000
1231
+ },
1232
+ {
1233
+ "entropy": 0.7457848465070128,
1234
+ "epoch": 1.616,
1235
+ "grad_norm": 24.25,
1236
+ "learning_rate": 1.9980000000000002e-05,
1237
+ "loss": 11.8937,
1238
+ "mean_token_accuracy": 0.8049711644649505,
1239
+ "num_tokens": 33411850.0,
1240
+ "step": 1010
1241
+ },
1242
+ {
1243
+ "entropy": 0.7540575532242656,
1244
+ "epoch": 1.6320000000000001,
1245
+ "grad_norm": 23.375,
1246
+ "learning_rate": 1.995777777777778e-05,
1247
+ "loss": 12.1774,
1248
+ "mean_token_accuracy": 0.8019963789731264,
1249
+ "num_tokens": 33739456.0,
1250
+ "step": 1020
1251
+ },
1252
+ {
1253
+ "entropy": 0.7294436307623983,
1254
+ "epoch": 1.6480000000000001,
1255
+ "grad_norm": 22.875,
1256
+ "learning_rate": 1.9935555555555557e-05,
1257
+ "loss": 11.7158,
1258
+ "mean_token_accuracy": 0.8073111124336719,
1259
+ "num_tokens": 34072022.0,
1260
+ "step": 1030
1261
+ },
1262
+ {
1263
+ "entropy": 0.7509479133412242,
1264
+ "epoch": 1.6640000000000001,
1265
+ "grad_norm": 26.0,
1266
+ "learning_rate": 1.9913333333333335e-05,
1267
+ "loss": 12.0874,
1268
+ "mean_token_accuracy": 0.804041426628828,
1269
+ "num_tokens": 34398959.0,
1270
+ "step": 1040
1271
+ },
1272
+ {
1273
+ "entropy": 0.7489136515185237,
1274
+ "epoch": 1.6800000000000002,
1275
+ "grad_norm": 22.625,
1276
+ "learning_rate": 1.9891111111111112e-05,
1277
+ "loss": 11.965,
1278
+ "mean_token_accuracy": 0.8045720625668764,
1279
+ "num_tokens": 34732284.0,
1280
+ "step": 1050
1281
+ },
1282
+ {
1283
+ "entropy": 0.7499239794909954,
1284
+ "epoch": 1.696,
1285
+ "grad_norm": 31.625,
1286
+ "learning_rate": 1.986888888888889e-05,
1287
+ "loss": 12.076,
1288
+ "mean_token_accuracy": 0.8027914315462112,
1289
+ "num_tokens": 35053712.0,
1290
+ "step": 1060
1291
+ },
1292
+ {
1293
+ "entropy": 0.7558027764782309,
1294
+ "epoch": 1.712,
1295
+ "grad_norm": 23.875,
1296
+ "learning_rate": 1.9846666666666668e-05,
1297
+ "loss": 12.147,
1298
+ "mean_token_accuracy": 0.8005938410758973,
1299
+ "num_tokens": 35393088.0,
1300
+ "step": 1070
1301
+ },
1302
+ {
1303
+ "entropy": 0.7422181311994791,
1304
+ "epoch": 1.728,
1305
+ "grad_norm": 25.875,
1306
+ "learning_rate": 1.9824444444444445e-05,
1307
+ "loss": 11.8962,
1308
+ "mean_token_accuracy": 0.8054456721991301,
1309
+ "num_tokens": 35729007.0,
1310
+ "step": 1080
1311
+ },
1312
+ {
1313
+ "entropy": 0.7470023760572075,
1314
+ "epoch": 1.744,
1315
+ "grad_norm": 24.375,
1316
+ "learning_rate": 1.9802222222222226e-05,
1317
+ "loss": 11.9451,
1318
+ "mean_token_accuracy": 0.8041820522397757,
1319
+ "num_tokens": 36072489.0,
1320
+ "step": 1090
1321
+ },
1322
+ {
1323
+ "entropy": 0.736881697922945,
1324
+ "epoch": 1.76,
1325
+ "grad_norm": 25.0,
1326
+ "learning_rate": 1.978e-05,
1327
+ "loss": 11.8338,
1328
+ "mean_token_accuracy": 0.8047639206051826,
1329
+ "num_tokens": 36398285.0,
1330
+ "step": 1100
1331
+ },
1332
+ {
1333
+ "epoch": 1.76,
1334
+ "eval_math_entropy": 0.6262362420558929,
1335
+ "eval_math_loss": 0.7465543746948242,
1336
+ "eval_math_mean_token_accuracy": 0.805053071975708,
1337
+ "eval_math_num_tokens": 36398285.0,
1338
+ "eval_math_runtime": 37.6479,
1339
+ "eval_math_samples_per_second": 13.281,
1340
+ "eval_math_steps_per_second": 3.32,
1341
+ "step": 1100
1342
+ },
1343
+ {
1344
+ "epoch": 1.76,
1345
+ "eval_physics_entropy": 0.7200349433422089,
1346
+ "eval_physics_loss": 0.7697470188140869,
1347
+ "eval_physics_mean_token_accuracy": 0.8005799927711487,
1348
+ "eval_physics_num_tokens": 36398285.0,
1349
+ "eval_physics_runtime": 42.4278,
1350
+ "eval_physics_samples_per_second": 11.785,
1351
+ "eval_physics_steps_per_second": 2.946,
1352
+ "step": 1100
1353
+ },
1354
+ {
1355
+ "entropy": 0.7551133055239916,
1356
+ "epoch": 1.776,
1357
+ "grad_norm": 22.125,
1358
+ "learning_rate": 1.975777777777778e-05,
1359
+ "loss": 12.2538,
1360
+ "mean_token_accuracy": 0.7994971070438623,
1361
+ "num_tokens": 36730479.0,
1362
+ "step": 1110
1363
+ },
1364
+ {
1365
+ "entropy": 0.7345263505354523,
1366
+ "epoch": 1.792,
1367
+ "grad_norm": 26.5,
1368
+ "learning_rate": 1.9735555555555556e-05,
1369
+ "loss": 11.7729,
1370
+ "mean_token_accuracy": 0.8065289612859488,
1371
+ "num_tokens": 37057425.0,
1372
+ "step": 1120
1373
+ },
1374
+ {
1375
+ "entropy": 0.7239221159368754,
1376
+ "epoch": 1.808,
1377
+ "grad_norm": 20.875,
1378
+ "learning_rate": 1.9713333333333337e-05,
1379
+ "loss": 11.5735,
1380
+ "mean_token_accuracy": 0.8099185042083263,
1381
+ "num_tokens": 37395449.0,
1382
+ "step": 1130
1383
+ },
1384
+ {
1385
+ "entropy": 0.7373615993186832,
1386
+ "epoch": 1.8239999999999998,
1387
+ "grad_norm": 25.625,
1388
+ "learning_rate": 1.969111111111111e-05,
1389
+ "loss": 11.8409,
1390
+ "mean_token_accuracy": 0.8052641868591308,
1391
+ "num_tokens": 37729535.0,
1392
+ "step": 1140
1393
+ },
1394
+ {
1395
+ "entropy": 0.7255491560325027,
1396
+ "epoch": 1.8399999999999999,
1397
+ "grad_norm": 22.125,
1398
+ "learning_rate": 1.9668888888888892e-05,
1399
+ "loss": 11.71,
1400
+ "mean_token_accuracy": 0.8071777541190386,
1401
+ "num_tokens": 38057839.0,
1402
+ "step": 1150
1403
+ },
1404
+ {
1405
+ "entropy": 0.7327572701498866,
1406
+ "epoch": 1.8559999999999999,
1407
+ "grad_norm": 21.375,
1408
+ "learning_rate": 1.9646666666666666e-05,
1409
+ "loss": 11.7512,
1410
+ "mean_token_accuracy": 0.8067308221012354,
1411
+ "num_tokens": 38398033.0,
1412
+ "step": 1160
1413
+ },
1414
+ {
1415
+ "entropy": 0.7250073075294494,
1416
+ "epoch": 1.8719999999999999,
1417
+ "grad_norm": 23.0,
1418
+ "learning_rate": 1.9624444444444447e-05,
1419
+ "loss": 11.7062,
1420
+ "mean_token_accuracy": 0.804894783347845,
1421
+ "num_tokens": 38729203.0,
1422
+ "step": 1170
1423
+ },
1424
+ {
1425
+ "entropy": 0.7499742954969406,
1426
+ "epoch": 1.888,
1427
+ "grad_norm": 24.0,
1428
+ "learning_rate": 1.9602222222222225e-05,
1429
+ "loss": 12.0141,
1430
+ "mean_token_accuracy": 0.8026742864400148,
1431
+ "num_tokens": 39058791.0,
1432
+ "step": 1180
1433
+ },
1434
+ {
1435
+ "entropy": 0.7552636509761215,
1436
+ "epoch": 1.904,
1437
+ "grad_norm": 24.125,
1438
+ "learning_rate": 1.9580000000000002e-05,
1439
+ "loss": 12.2023,
1440
+ "mean_token_accuracy": 0.801565033942461,
1441
+ "num_tokens": 39386170.0,
1442
+ "step": 1190
1443
+ },
1444
+ {
1445
+ "entropy": 0.7536638176068664,
1446
+ "epoch": 1.92,
1447
+ "grad_norm": 22.5,
1448
+ "learning_rate": 1.955777777777778e-05,
1449
+ "loss": 12.0831,
1450
+ "mean_token_accuracy": 0.802052004635334,
1451
+ "num_tokens": 39710381.0,
1452
+ "step": 1200
1453
+ },
1454
+ {
1455
+ "epoch": 1.92,
1456
+ "eval_math_entropy": 0.6647274706363678,
1457
+ "eval_math_loss": 0.7477448582649231,
1458
+ "eval_math_mean_token_accuracy": 0.8044252181053162,
1459
+ "eval_math_num_tokens": 39710381.0,
1460
+ "eval_math_runtime": 37.3147,
1461
+ "eval_math_samples_per_second": 13.4,
1462
+ "eval_math_steps_per_second": 3.35,
1463
+ "step": 1200
1464
+ },
1465
+ {
1466
+ "epoch": 1.92,
1467
+ "eval_physics_entropy": 0.7363031375408172,
1468
+ "eval_physics_loss": 0.7557728290557861,
1469
+ "eval_physics_mean_token_accuracy": 0.8023755269050599,
1470
+ "eval_physics_num_tokens": 39710381.0,
1471
+ "eval_physics_runtime": 42.3841,
1472
+ "eval_physics_samples_per_second": 11.797,
1473
+ "eval_physics_steps_per_second": 2.949,
1474
+ "step": 1200
1475
+ },
1476
+ {
1477
+ "entropy": 0.7332505928352475,
1478
+ "epoch": 1.936,
1479
+ "grad_norm": 23.625,
1480
+ "learning_rate": 1.9535555555555557e-05,
1481
+ "loss": 11.7747,
1482
+ "mean_token_accuracy": 0.8057302571833134,
1483
+ "num_tokens": 40043354.0,
1484
+ "step": 1210
1485
+ },
1486
+ {
1487
+ "entropy": 0.6865954516455531,
1488
+ "epoch": 1.952,
1489
+ "grad_norm": 22.875,
1490
+ "learning_rate": 1.9513333333333335e-05,
1491
+ "loss": 11.0944,
1492
+ "mean_token_accuracy": 0.8145869821310043,
1493
+ "num_tokens": 40375790.0,
1494
+ "step": 1220
1495
+ },
1496
+ {
1497
+ "entropy": 0.725792682915926,
1498
+ "epoch": 1.968,
1499
+ "grad_norm": 23.5,
1500
+ "learning_rate": 1.9491111111111113e-05,
1501
+ "loss": 11.6981,
1502
+ "mean_token_accuracy": 0.807374369353056,
1503
+ "num_tokens": 40705451.0,
1504
+ "step": 1230
1505
+ },
1506
+ {
1507
+ "entropy": 0.7336347706615924,
1508
+ "epoch": 1.984,
1509
+ "grad_norm": 22.875,
1510
+ "learning_rate": 1.946888888888889e-05,
1511
+ "loss": 11.7816,
1512
+ "mean_token_accuracy": 0.8049177132546902,
1513
+ "num_tokens": 41040313.0,
1514
+ "step": 1240
1515
+ },
1516
+ {
1517
+ "entropy": 0.7291126515716314,
1518
+ "epoch": 2.0,
1519
+ "grad_norm": 19.625,
1520
+ "learning_rate": 1.9446666666666668e-05,
1521
+ "loss": 11.6571,
1522
+ "mean_token_accuracy": 0.8080590449273586,
1523
+ "num_tokens": 41373608.0,
1524
+ "step": 1250
1525
+ },
1526
+ {
1527
+ "entropy": 0.6355575416237116,
1528
+ "epoch": 2.016,
1529
+ "grad_norm": 19.875,
1530
+ "learning_rate": 1.9424444444444446e-05,
1531
+ "loss": 10.132,
1532
+ "mean_token_accuracy": 0.8247552629560232,
1533
+ "num_tokens": 41708226.0,
1534
+ "step": 1260
1535
+ },
1536
+ {
1537
+ "entropy": 0.6331347430124878,
1538
+ "epoch": 2.032,
1539
+ "grad_norm": 25.375,
1540
+ "learning_rate": 1.9402222222222223e-05,
1541
+ "loss": 10.215,
1542
+ "mean_token_accuracy": 0.824965550750494,
1543
+ "num_tokens": 42045433.0,
1544
+ "step": 1270
1545
+ },
1546
+ {
1547
+ "entropy": 0.6594979166984558,
1548
+ "epoch": 2.048,
1549
+ "grad_norm": 25.5,
1550
+ "learning_rate": 1.938e-05,
1551
+ "loss": 10.5643,
1552
+ "mean_token_accuracy": 0.8191797107458114,
1553
+ "num_tokens": 42372694.0,
1554
+ "step": 1280
1555
+ },
1556
+ {
1557
+ "entropy": 0.6339968785643577,
1558
+ "epoch": 2.064,
1559
+ "grad_norm": 22.25,
1560
+ "learning_rate": 1.935777777777778e-05,
1561
+ "loss": 10.1287,
1562
+ "mean_token_accuracy": 0.8256273221224546,
1563
+ "num_tokens": 42710240.0,
1564
+ "step": 1290
1565
+ },
1566
+ {
1567
+ "entropy": 0.6453937565907836,
1568
+ "epoch": 2.08,
1569
+ "grad_norm": 22.375,
1570
+ "learning_rate": 1.9335555555555556e-05,
1571
+ "loss": 10.3686,
1572
+ "mean_token_accuracy": 0.8218923207372427,
1573
+ "num_tokens": 43037844.0,
1574
+ "step": 1300
1575
+ },
1576
+ {
1577
+ "epoch": 2.08,
1578
+ "eval_math_entropy": 0.5932842814922332,
1579
+ "eval_math_loss": 0.7640953660011292,
1580
+ "eval_math_mean_token_accuracy": 0.8026974692344665,
1581
+ "eval_math_num_tokens": 43037844.0,
1582
+ "eval_math_runtime": 37.2894,
1583
+ "eval_math_samples_per_second": 13.409,
1584
+ "eval_math_steps_per_second": 3.352,
1585
+ "step": 1300
1586
+ },
1587
+ {
1588
+ "epoch": 2.08,
1589
+ "eval_physics_entropy": 0.6534187440872192,
1590
+ "eval_physics_loss": 0.7533365488052368,
1591
+ "eval_physics_mean_token_accuracy": 0.8034858341217042,
1592
+ "eval_physics_num_tokens": 43037844.0,
1593
+ "eval_physics_runtime": 42.3739,
1594
+ "eval_physics_samples_per_second": 11.8,
1595
+ "eval_physics_steps_per_second": 2.95,
1596
+ "step": 1300
1597
+ },
1598
+ {
1599
+ "entropy": 0.6423438133671879,
1600
+ "epoch": 2.096,
1601
+ "grad_norm": 21.625,
1602
+ "learning_rate": 1.9313333333333334e-05,
1603
+ "loss": 10.2864,
1604
+ "mean_token_accuracy": 0.8230229053646326,
1605
+ "num_tokens": 43368675.0,
1606
+ "step": 1310
1607
+ },
1608
+ {
1609
+ "entropy": 0.628149182535708,
1610
+ "epoch": 2.112,
1611
+ "grad_norm": 24.0,
1612
+ "learning_rate": 1.9291111111111115e-05,
1613
+ "loss": 10.1059,
1614
+ "mean_token_accuracy": 0.8258296135812998,
1615
+ "num_tokens": 43699544.0,
1616
+ "step": 1320
1617
+ },
1618
+ {
1619
+ "entropy": 0.6355112513527275,
1620
+ "epoch": 2.128,
1621
+ "grad_norm": 22.5,
1622
+ "learning_rate": 1.926888888888889e-05,
1623
+ "loss": 10.1878,
1624
+ "mean_token_accuracy": 0.8232955761253834,
1625
+ "num_tokens": 44012632.0,
1626
+ "step": 1330
1627
+ },
1628
+ {
1629
+ "entropy": 0.6359908759593964,
1630
+ "epoch": 2.144,
1631
+ "grad_norm": 21.0,
1632
+ "learning_rate": 1.924666666666667e-05,
1633
+ "loss": 10.1497,
1634
+ "mean_token_accuracy": 0.8242303643375635,
1635
+ "num_tokens": 44349732.0,
1636
+ "step": 1340
1637
+ },
1638
+ {
1639
+ "entropy": 0.6610904721543193,
1640
+ "epoch": 2.16,
1641
+ "grad_norm": 21.875,
1642
+ "learning_rate": 1.9224444444444444e-05,
1643
+ "loss": 10.62,
1644
+ "mean_token_accuracy": 0.8177395671606064,
1645
+ "num_tokens": 44680410.0,
1646
+ "step": 1350
1647
+ },
1648
+ {
1649
+ "entropy": 0.6307835169136524,
1650
+ "epoch": 2.176,
1651
+ "grad_norm": 21.0,
1652
+ "learning_rate": 1.9202222222222225e-05,
1653
+ "loss": 10.1462,
1654
+ "mean_token_accuracy": 0.8254107493907213,
1655
+ "num_tokens": 45017922.0,
1656
+ "step": 1360
1657
+ },
1658
+ {
1659
+ "entropy": 0.6242643415927887,
1660
+ "epoch": 2.192,
1661
+ "grad_norm": 22.125,
1662
+ "learning_rate": 1.918e-05,
1663
+ "loss": 10.038,
1664
+ "mean_token_accuracy": 0.8260709717869759,
1665
+ "num_tokens": 45348179.0,
1666
+ "step": 1370
1667
+ },
1668
+ {
1669
+ "entropy": 0.6235629940405488,
1670
+ "epoch": 2.208,
1671
+ "grad_norm": 23.5,
1672
+ "learning_rate": 1.915777777777778e-05,
1673
+ "loss": 9.993,
1674
+ "mean_token_accuracy": 0.8266679599881173,
1675
+ "num_tokens": 45678397.0,
1676
+ "step": 1380
1677
+ },
1678
+ {
1679
+ "entropy": 0.6313284657895565,
1680
+ "epoch": 2.224,
1681
+ "grad_norm": 20.625,
1682
+ "learning_rate": 1.9135555555555555e-05,
1683
+ "loss": 10.1072,
1684
+ "mean_token_accuracy": 0.8250856719911098,
1685
+ "num_tokens": 46010052.0,
1686
+ "step": 1390
1687
+ },
1688
+ {
1689
+ "entropy": 0.6290372915565967,
1690
+ "epoch": 2.24,
1691
+ "grad_norm": 22.125,
1692
+ "learning_rate": 1.9113333333333336e-05,
1693
+ "loss": 10.0844,
1694
+ "mean_token_accuracy": 0.8260512594133615,
1695
+ "num_tokens": 46347116.0,
1696
+ "step": 1400
1697
+ },
1698
+ {
1699
+ "epoch": 2.24,
1700
+ "eval_math_entropy": 0.5953125247955322,
1701
+ "eval_math_loss": 0.7714977860450745,
1702
+ "eval_math_mean_token_accuracy": 0.802004508972168,
1703
+ "eval_math_num_tokens": 46347116.0,
1704
+ "eval_math_runtime": 37.2775,
1705
+ "eval_math_samples_per_second": 13.413,
1706
+ "eval_math_steps_per_second": 3.353,
1707
+ "step": 1400
1708
+ },
1709
+ {
1710
+ "epoch": 2.24,
1711
+ "eval_physics_entropy": 0.6626617999076844,
1712
+ "eval_physics_loss": 0.7471906542778015,
1713
+ "eval_physics_mean_token_accuracy": 0.8044270224571228,
1714
+ "eval_physics_num_tokens": 46347116.0,
1715
+ "eval_physics_runtime": 42.3545,
1716
+ "eval_physics_samples_per_second": 11.805,
1717
+ "eval_physics_steps_per_second": 2.951,
1718
+ "step": 1400
1719
+ },
1720
+ {
1721
+ "entropy": 0.6532834043726325,
1722
+ "epoch": 2.2560000000000002,
1723
+ "grad_norm": 23.25,
1724
+ "learning_rate": 1.9091111111111113e-05,
1725
+ "loss": 10.5479,
1726
+ "mean_token_accuracy": 0.8197706062346697,
1727
+ "num_tokens": 46673074.0,
1728
+ "step": 1410
1729
+ },
1730
+ {
1731
+ "entropy": 0.6263921223580837,
1732
+ "epoch": 2.2720000000000002,
1733
+ "grad_norm": 22.875,
1734
+ "learning_rate": 1.906888888888889e-05,
1735
+ "loss": 10.0289,
1736
+ "mean_token_accuracy": 0.8267724249511957,
1737
+ "num_tokens": 47009386.0,
1738
+ "step": 1420
1739
+ },
1740
+ {
1741
+ "entropy": 0.6413616226986051,
1742
+ "epoch": 2.288,
1743
+ "grad_norm": 24.625,
1744
+ "learning_rate": 1.904666666666667e-05,
1745
+ "loss": 10.3579,
1746
+ "mean_token_accuracy": 0.8215750485658646,
1747
+ "num_tokens": 47344231.0,
1748
+ "step": 1430
1749
+ },
1750
+ {
1751
+ "entropy": 0.646451156027615,
1752
+ "epoch": 2.304,
1753
+ "grad_norm": 24.625,
1754
+ "learning_rate": 1.9024444444444446e-05,
1755
+ "loss": 10.3113,
1756
+ "mean_token_accuracy": 0.8226810522377491,
1757
+ "num_tokens": 47658392.0,
1758
+ "step": 1440
1759
+ },
1760
+ {
1761
+ "entropy": 0.633142382092774,
1762
+ "epoch": 2.32,
1763
+ "grad_norm": 20.375,
1764
+ "learning_rate": 1.9002222222222224e-05,
1765
+ "loss": 10.1725,
1766
+ "mean_token_accuracy": 0.8242883045226336,
1767
+ "num_tokens": 47995015.0,
1768
+ "step": 1450
1769
+ },
1770
+ {
1771
+ "entropy": 0.6136388331651688,
1772
+ "epoch": 2.336,
1773
+ "grad_norm": 21.125,
1774
+ "learning_rate": 1.898e-05,
1775
+ "loss": 9.8552,
1776
+ "mean_token_accuracy": 0.8278801072388887,
1777
+ "num_tokens": 48336708.0,
1778
+ "step": 1460
1779
+ },
1780
+ {
1781
+ "entropy": 0.6158075928688049,
1782
+ "epoch": 2.352,
1783
+ "grad_norm": 21.75,
1784
+ "learning_rate": 1.895777777777778e-05,
1785
+ "loss": 9.8776,
1786
+ "mean_token_accuracy": 0.8277330327779054,
1787
+ "num_tokens": 48665311.0,
1788
+ "step": 1470
1789
+ },
1790
+ {
1791
+ "entropy": 0.636424052901566,
1792
+ "epoch": 2.368,
1793
+ "grad_norm": 22.0,
1794
+ "learning_rate": 1.8935555555555556e-05,
1795
+ "loss": 10.1874,
1796
+ "mean_token_accuracy": 0.8247745476663113,
1797
+ "num_tokens": 49005334.0,
1798
+ "step": 1480
1799
+ },
1800
+ {
1801
+ "entropy": 0.6439365316182375,
1802
+ "epoch": 2.384,
1803
+ "grad_norm": 24.375,
1804
+ "learning_rate": 1.8913333333333334e-05,
1805
+ "loss": 10.3152,
1806
+ "mean_token_accuracy": 0.8224024541676045,
1807
+ "num_tokens": 49331936.0,
1808
+ "step": 1490
1809
+ },
1810
+ {
1811
+ "entropy": 0.6338154060766101,
1812
+ "epoch": 2.4,
1813
+ "grad_norm": 24.375,
1814
+ "learning_rate": 1.8891111111111115e-05,
1815
+ "loss": 10.2021,
1816
+ "mean_token_accuracy": 0.8241530895233155,
1817
+ "num_tokens": 49671048.0,
1818
+ "step": 1500
1819
+ },
1820
+ {
1821
+ "epoch": 2.4,
1822
+ "eval_math_entropy": 0.5721300525665283,
1823
+ "eval_math_loss": 0.7793473601341248,
1824
+ "eval_math_mean_token_accuracy": 0.8018091678619385,
1825
+ "eval_math_num_tokens": 49671048.0,
1826
+ "eval_math_runtime": 37.2772,
1827
+ "eval_math_samples_per_second": 13.413,
1828
+ "eval_math_steps_per_second": 3.353,
1829
+ "step": 1500
1830
+ },
1831
+ {
1832
+ "epoch": 2.4,
1833
+ "eval_physics_entropy": 0.6450748410224915,
1834
+ "eval_physics_loss": 0.7388309240341187,
1835
+ "eval_physics_mean_token_accuracy": 0.8056827611923217,
1836
+ "eval_physics_num_tokens": 49671048.0,
1837
+ "eval_physics_runtime": 42.1925,
1838
+ "eval_physics_samples_per_second": 11.85,
1839
+ "eval_physics_steps_per_second": 2.963,
1840
+ "step": 1500
1841
+ },
1842
+ {
1843
+ "entropy": 0.6274364275857807,
1844
+ "epoch": 2.416,
1845
+ "grad_norm": 21.125,
1846
+ "learning_rate": 1.886888888888889e-05,
1847
+ "loss": 10.0721,
1848
+ "mean_token_accuracy": 0.8257736101746559,
1849
+ "num_tokens": 50018182.0,
1850
+ "step": 1510
1851
+ },
1852
+ {
1853
+ "entropy": 0.634677354246378,
1854
+ "epoch": 2.432,
1855
+ "grad_norm": 25.5,
1856
+ "learning_rate": 1.884666666666667e-05,
1857
+ "loss": 10.2384,
1858
+ "mean_token_accuracy": 0.825276605784893,
1859
+ "num_tokens": 50341187.0,
1860
+ "step": 1520
1861
+ },
1862
+ {
1863
+ "entropy": 0.6495194172486662,
1864
+ "epoch": 2.448,
1865
+ "grad_norm": 21.25,
1866
+ "learning_rate": 1.8824444444444445e-05,
1867
+ "loss": 10.4403,
1868
+ "mean_token_accuracy": 0.8209662776440382,
1869
+ "num_tokens": 50667019.0,
1870
+ "step": 1530
1871
+ },
1872
+ {
1873
+ "entropy": 0.6421155670657754,
1874
+ "epoch": 2.464,
1875
+ "grad_norm": 23.375,
1876
+ "learning_rate": 1.8802222222222226e-05,
1877
+ "loss": 10.265,
1878
+ "mean_token_accuracy": 0.8245257001370192,
1879
+ "num_tokens": 50991113.0,
1880
+ "step": 1540
1881
+ },
1882
+ {
1883
+ "entropy": 0.636642519198358,
1884
+ "epoch": 2.48,
1885
+ "grad_norm": 25.0,
1886
+ "learning_rate": 1.878e-05,
1887
+ "loss": 10.2389,
1888
+ "mean_token_accuracy": 0.8238910645246506,
1889
+ "num_tokens": 51319624.0,
1890
+ "step": 1550
1891
+ },
1892
+ {
1893
+ "entropy": 0.6449420966207982,
1894
+ "epoch": 2.496,
1895
+ "grad_norm": 21.75,
1896
+ "learning_rate": 1.875777777777778e-05,
1897
+ "loss": 10.293,
1898
+ "mean_token_accuracy": 0.8226108986884355,
1899
+ "num_tokens": 51654633.0,
1900
+ "step": 1560
1901
+ },
1902
+ {
1903
+ "entropy": 0.6190562567673623,
1904
+ "epoch": 2.512,
1905
+ "grad_norm": 22.75,
1906
+ "learning_rate": 1.873555555555556e-05,
1907
+ "loss": 9.9581,
1908
+ "mean_token_accuracy": 0.8274749897420406,
1909
+ "num_tokens": 51980051.0,
1910
+ "step": 1570
1911
+ },
1912
+ {
1913
+ "entropy": 0.6211743861436844,
1914
+ "epoch": 2.528,
1915
+ "grad_norm": 20.25,
1916
+ "learning_rate": 1.8713333333333336e-05,
1917
+ "loss": 9.9989,
1918
+ "mean_token_accuracy": 0.8274611223489046,
1919
+ "num_tokens": 52316109.0,
1920
+ "step": 1580
1921
+ },
1922
+ {
1923
+ "entropy": 0.6385852478444576,
1924
+ "epoch": 2.544,
1925
+ "grad_norm": 24.5,
1926
+ "learning_rate": 1.8691111111111114e-05,
1927
+ "loss": 10.2452,
1928
+ "mean_token_accuracy": 0.8230951458215714,
1929
+ "num_tokens": 52634528.0,
1930
+ "step": 1590
1931
+ },
1932
+ {
1933
+ "entropy": 0.6303336288779974,
1934
+ "epoch": 2.56,
1935
+ "grad_norm": 21.75,
1936
+ "learning_rate": 1.866888888888889e-05,
1937
+ "loss": 10.0652,
1938
+ "mean_token_accuracy": 0.8256664223968982,
1939
+ "num_tokens": 52964035.0,
1940
+ "step": 1600
1941
+ },
1942
+ {
1943
+ "epoch": 2.56,
1944
+ "eval_math_entropy": 0.5893340814113617,
1945
+ "eval_math_loss": 0.777084231376648,
1946
+ "eval_math_mean_token_accuracy": 0.8013126358985901,
1947
+ "eval_math_num_tokens": 52964035.0,
1948
+ "eval_math_runtime": 37.2677,
1949
+ "eval_math_samples_per_second": 13.416,
1950
+ "eval_math_steps_per_second": 3.354,
1951
+ "step": 1600
1952
+ },
1953
+ {
1954
+ "epoch": 2.56,
1955
+ "eval_physics_entropy": 0.6476155369281769,
1956
+ "eval_physics_loss": 0.7298086881637573,
1957
+ "eval_physics_mean_token_accuracy": 0.8077000246047974,
1958
+ "eval_physics_num_tokens": 52964035.0,
1959
+ "eval_physics_runtime": 42.3651,
1960
+ "eval_physics_samples_per_second": 11.802,
1961
+ "eval_physics_steps_per_second": 2.951,
1962
+ "step": 1600
1963
+ },
1964
+ {
1965
+ "entropy": 0.6202353063970805,
1966
+ "epoch": 2.576,
1967
+ "grad_norm": 24.0,
1968
+ "learning_rate": 1.864666666666667e-05,
1969
+ "loss": 9.9761,
1970
+ "mean_token_accuracy": 0.8276599138975144,
1971
+ "num_tokens": 53293345.0,
1972
+ "step": 1610
1973
+ },
1974
+ {
1975
+ "entropy": 0.6307751543819904,
1976
+ "epoch": 2.592,
1977
+ "grad_norm": 19.625,
1978
+ "learning_rate": 1.8624444444444446e-05,
1979
+ "loss": 10.1124,
1980
+ "mean_token_accuracy": 0.8253108464181423,
1981
+ "num_tokens": 53620896.0,
1982
+ "step": 1620
1983
+ },
1984
+ {
1985
+ "entropy": 0.6150356434285641,
1986
+ "epoch": 2.608,
1987
+ "grad_norm": 19.875,
1988
+ "learning_rate": 1.8602222222222224e-05,
1989
+ "loss": 9.9156,
1990
+ "mean_token_accuracy": 0.829179810732603,
1991
+ "num_tokens": 53950989.0,
1992
+ "step": 1630
1993
+ },
1994
+ {
1995
+ "entropy": 0.6313650351017713,
1996
+ "epoch": 2.624,
1997
+ "grad_norm": 20.375,
1998
+ "learning_rate": 1.858e-05,
1999
+ "loss": 10.121,
2000
+ "mean_token_accuracy": 0.8261329311877489,
2001
+ "num_tokens": 54282732.0,
2002
+ "step": 1640
2003
+ },
2004
+ {
2005
+ "entropy": 0.6309516685083508,
2006
+ "epoch": 2.64,
2007
+ "grad_norm": 22.625,
2008
+ "learning_rate": 1.855777777777778e-05,
2009
+ "loss": 10.129,
2010
+ "mean_token_accuracy": 0.8251869007945061,
2011
+ "num_tokens": 54609748.0,
2012
+ "step": 1650
2013
+ },
2014
+ {
2015
+ "entropy": 0.6598343569785357,
2016
+ "epoch": 2.656,
2017
+ "grad_norm": 23.25,
2018
+ "learning_rate": 1.8535555555555557e-05,
2019
+ "loss": 10.5853,
2020
+ "mean_token_accuracy": 0.8193065494298934,
2021
+ "num_tokens": 54953583.0,
2022
+ "step": 1660
2023
+ },
2024
+ {
2025
+ "entropy": 0.6347682692110539,
2026
+ "epoch": 2.672,
2027
+ "grad_norm": 22.625,
2028
+ "learning_rate": 1.8513333333333335e-05,
2029
+ "loss": 10.2169,
2030
+ "mean_token_accuracy": 0.8238181065768003,
2031
+ "num_tokens": 55281945.0,
2032
+ "step": 1670
2033
+ },
2034
+ {
2035
+ "entropy": 0.6016866784542799,
2036
+ "epoch": 2.6879999999999997,
2037
+ "grad_norm": 22.5,
2038
+ "learning_rate": 1.8491111111111112e-05,
2039
+ "loss": 9.6888,
2040
+ "mean_token_accuracy": 0.8314425975084305,
2041
+ "num_tokens": 55612391.0,
2042
+ "step": 1680
2043
+ },
2044
+ {
2045
+ "entropy": 0.6381715141236782,
2046
+ "epoch": 2.7039999999999997,
2047
+ "grad_norm": 20.75,
2048
+ "learning_rate": 1.846888888888889e-05,
2049
+ "loss": 10.1559,
2050
+ "mean_token_accuracy": 0.8256521478295327,
2051
+ "num_tokens": 55949791.0,
2052
+ "step": 1690
2053
+ },
2054
+ {
2055
+ "entropy": 0.6189411485567688,
2056
+ "epoch": 2.7199999999999998,
2057
+ "grad_norm": 24.875,
2058
+ "learning_rate": 1.8446666666666667e-05,
2059
+ "loss": 9.9943,
2060
+ "mean_token_accuracy": 0.8266114149242639,
2061
+ "num_tokens": 56282204.0,
2062
+ "step": 1700
2063
+ },
2064
+ {
2065
+ "epoch": 2.7199999999999998,
2066
+ "eval_math_entropy": 0.5856606528759003,
2067
+ "eval_math_loss": 0.775954008102417,
2068
+ "eval_math_mean_token_accuracy": 0.8015523190498353,
2069
+ "eval_math_num_tokens": 56282204.0,
2070
+ "eval_math_runtime": 37.3399,
2071
+ "eval_math_samples_per_second": 13.391,
2072
+ "eval_math_steps_per_second": 3.348,
2073
+ "step": 1700
2074
+ },
2075
+ {
2076
+ "epoch": 2.7199999999999998,
2077
+ "eval_physics_entropy": 0.6469226105213165,
2078
+ "eval_physics_loss": 0.7201294302940369,
2079
+ "eval_physics_mean_token_accuracy": 0.8096040639877319,
2080
+ "eval_physics_num_tokens": 56282204.0,
2081
+ "eval_physics_runtime": 42.42,
2082
+ "eval_physics_samples_per_second": 11.787,
2083
+ "eval_physics_steps_per_second": 2.947,
2084
+ "step": 1700
2085
+ },
2086
+ {
2087
+ "entropy": 0.6472665786743164,
2088
+ "epoch": 2.7359999999999998,
2089
+ "grad_norm": 22.25,
2090
+ "learning_rate": 1.842444444444445e-05,
2091
+ "loss": 10.3988,
2092
+ "mean_token_accuracy": 0.8214352931827307,
2093
+ "num_tokens": 56605478.0,
2094
+ "step": 1710
2095
+ },
2096
+ {
2097
+ "entropy": 0.6382543213665486,
2098
+ "epoch": 2.752,
2099
+ "grad_norm": 21.625,
2100
+ "learning_rate": 1.8402222222222223e-05,
2101
+ "loss": 10.2692,
2102
+ "mean_token_accuracy": 0.8241269003599883,
2103
+ "num_tokens": 56935874.0,
2104
+ "step": 1720
2105
+ },
2106
+ {
2107
+ "entropy": 0.6121929224580527,
2108
+ "epoch": 2.768,
2109
+ "grad_norm": 21.875,
2110
+ "learning_rate": 1.8380000000000004e-05,
2111
+ "loss": 9.8635,
2112
+ "mean_token_accuracy": 0.8293887037783861,
2113
+ "num_tokens": 57270552.0,
2114
+ "step": 1730
2115
+ },
2116
+ {
2117
+ "entropy": 0.631489540822804,
2118
+ "epoch": 2.784,
2119
+ "grad_norm": 23.75,
2120
+ "learning_rate": 1.8357777777777778e-05,
2121
+ "loss": 10.1392,
2122
+ "mean_token_accuracy": 0.8240107577294111,
2123
+ "num_tokens": 57602968.0,
2124
+ "step": 1740
2125
+ },
2126
+ {
2127
+ "entropy": 0.6655854699201882,
2128
+ "epoch": 2.8,
2129
+ "grad_norm": 23.125,
2130
+ "learning_rate": 1.833555555555556e-05,
2131
+ "loss": 10.6735,
2132
+ "mean_token_accuracy": 0.8176718927919865,
2133
+ "num_tokens": 57925886.0,
2134
+ "step": 1750
2135
+ },
2136
+ {
2137
+ "entropy": 0.6081212440505623,
2138
+ "epoch": 2.816,
2139
+ "grad_norm": 20.125,
2140
+ "learning_rate": 1.8313333333333333e-05,
2141
+ "loss": 9.6837,
2142
+ "mean_token_accuracy": 0.8310413088649511,
2143
+ "num_tokens": 58262960.0,
2144
+ "step": 1760
2145
+ },
2146
+ {
2147
+ "entropy": 0.628994950838387,
2148
+ "epoch": 2.832,
2149
+ "grad_norm": 22.875,
2150
+ "learning_rate": 1.8291111111111114e-05,
2151
+ "loss": 10.2053,
2152
+ "mean_token_accuracy": 0.8234469190239906,
2153
+ "num_tokens": 58586324.0,
2154
+ "step": 1770
2155
+ },
2156
+ {
2157
+ "entropy": 0.6332033973187208,
2158
+ "epoch": 2.848,
2159
+ "grad_norm": 21.875,
2160
+ "learning_rate": 1.8268888888888888e-05,
2161
+ "loss": 10.0982,
2162
+ "mean_token_accuracy": 0.8255615685135126,
2163
+ "num_tokens": 58912949.0,
2164
+ "step": 1780
2165
+ },
2166
+ {
2167
+ "entropy": 0.6201504627242684,
2168
+ "epoch": 2.864,
2169
+ "grad_norm": 19.625,
2170
+ "learning_rate": 1.824666666666667e-05,
2171
+ "loss": 9.9752,
2172
+ "mean_token_accuracy": 0.8284646350890398,
2173
+ "num_tokens": 59252494.0,
2174
+ "step": 1790
2175
+ },
2176
+ {
2177
+ "entropy": 0.6244674265384674,
2178
+ "epoch": 2.88,
2179
+ "grad_norm": 23.375,
2180
+ "learning_rate": 1.8224444444444447e-05,
2181
+ "loss": 10.0215,
2182
+ "mean_token_accuracy": 0.8271605659276247,
2183
+ "num_tokens": 59574951.0,
2184
+ "step": 1800
2185
+ },
2186
+ {
2187
+ "epoch": 2.88,
2188
+ "eval_math_entropy": 0.5949274203777313,
2189
+ "eval_math_loss": 0.7759649753570557,
2190
+ "eval_math_mean_token_accuracy": 0.801950795173645,
2191
+ "eval_math_num_tokens": 59574951.0,
2192
+ "eval_math_runtime": 37.6407,
2193
+ "eval_math_samples_per_second": 13.284,
2194
+ "eval_math_steps_per_second": 3.321,
2195
+ "step": 1800
2196
+ },
2197
+ {
2198
+ "epoch": 2.88,
2199
+ "eval_physics_entropy": 0.6501314148902894,
2200
+ "eval_physics_loss": 0.7134683728218079,
2201
+ "eval_physics_mean_token_accuracy": 0.8108458194732666,
2202
+ "eval_physics_num_tokens": 59574951.0,
2203
+ "eval_physics_runtime": 42.4364,
2204
+ "eval_physics_samples_per_second": 11.782,
2205
+ "eval_physics_steps_per_second": 2.946,
2206
+ "step": 1800
2207
+ },
2208
+ {
2209
+ "entropy": 0.6189673518761992,
2210
+ "epoch": 2.896,
2211
+ "grad_norm": 21.25,
2212
+ "learning_rate": 1.8202222222222225e-05,
2213
+ "loss": 9.9958,
2214
+ "mean_token_accuracy": 0.8274488810449838,
2215
+ "num_tokens": 59903274.0,
2216
+ "step": 1810
2217
+ },
2218
+ {
2219
+ "entropy": 0.6149574464187026,
2220
+ "epoch": 2.912,
2221
+ "grad_norm": 21.75,
2222
+ "learning_rate": 1.8180000000000002e-05,
2223
+ "loss": 9.8638,
2224
+ "mean_token_accuracy": 0.8290023539215327,
2225
+ "num_tokens": 60234203.0,
2226
+ "step": 1820
2227
+ },
2228
+ {
2229
+ "entropy": 0.61147581897676,
2230
+ "epoch": 2.928,
2231
+ "grad_norm": 22.375,
2232
+ "learning_rate": 1.815777777777778e-05,
2233
+ "loss": 9.778,
2234
+ "mean_token_accuracy": 0.8301452320069075,
2235
+ "num_tokens": 60559123.0,
2236
+ "step": 1830
2237
+ },
2238
+ {
2239
+ "entropy": 0.6076565470546484,
2240
+ "epoch": 2.944,
2241
+ "grad_norm": 22.5,
2242
+ "learning_rate": 1.8135555555555557e-05,
2243
+ "loss": 9.8177,
2244
+ "mean_token_accuracy": 0.8298730112612247,
2245
+ "num_tokens": 60893423.0,
2246
+ "step": 1840
2247
+ },
2248
+ {
2249
+ "entropy": 0.6252184329554439,
2250
+ "epoch": 2.96,
2251
+ "grad_norm": 20.125,
2252
+ "learning_rate": 1.8113333333333335e-05,
2253
+ "loss": 10.0619,
2254
+ "mean_token_accuracy": 0.8257878359407187,
2255
+ "num_tokens": 61228692.0,
2256
+ "step": 1850
2257
+ },
2258
+ {
2259
+ "entropy": 0.6309292640537023,
2260
+ "epoch": 2.976,
2261
+ "grad_norm": 22.0,
2262
+ "learning_rate": 1.8091111111111113e-05,
2263
+ "loss": 10.0273,
2264
+ "mean_token_accuracy": 0.8269333876669407,
2265
+ "num_tokens": 61560852.0,
2266
+ "step": 1860
2267
+ },
2268
+ {
2269
+ "entropy": 0.6015587011352181,
2270
+ "epoch": 2.992,
2271
+ "grad_norm": 22.625,
2272
+ "learning_rate": 1.806888888888889e-05,
2273
+ "loss": 9.6914,
2274
+ "mean_token_accuracy": 0.8308462183922529,
2275
+ "num_tokens": 61898951.0,
2276
+ "step": 1870
2277
+ },
2278
+ {
2279
+ "entropy": 0.554535162076354,
2280
+ "epoch": 3.008,
2281
+ "grad_norm": 32.0,
2282
+ "learning_rate": 1.8046666666666668e-05,
2283
+ "loss": 8.6037,
2284
+ "mean_token_accuracy": 0.8461754262447357,
2285
+ "num_tokens": 62223875.0,
2286
+ "step": 1880
2287
+ },
2288
+ {
2289
+ "entropy": 0.4583619773387909,
2290
+ "epoch": 3.024,
2291
+ "grad_norm": 26.75,
2292
+ "learning_rate": 1.8024444444444445e-05,
2293
+ "loss": 7.4008,
2294
+ "mean_token_accuracy": 0.8626370068639517,
2295
+ "num_tokens": 62553166.0,
2296
+ "step": 1890
2297
+ },
2298
+ {
2299
+ "entropy": 0.45614993553608657,
2300
+ "epoch": 3.04,
2301
+ "grad_norm": 27.625,
2302
+ "learning_rate": 1.8002222222222223e-05,
2303
+ "loss": 7.303,
2304
+ "mean_token_accuracy": 0.864767599105835,
2305
+ "num_tokens": 62893113.0,
2306
+ "step": 1900
2307
+ },
2308
+ {
2309
+ "epoch": 3.04,
2310
+ "eval_math_entropy": 0.4813076241016388,
2311
+ "eval_math_loss": 0.8624137043952942,
2312
+ "eval_math_mean_token_accuracy": 0.7962888913154602,
2313
+ "eval_math_num_tokens": 62893113.0,
2314
+ "eval_math_runtime": 37.3517,
2315
+ "eval_math_samples_per_second": 13.386,
2316
+ "eval_math_steps_per_second": 3.347,
2317
+ "step": 1900
2318
+ },
2319
+ {
2320
+ "epoch": 3.04,
2321
+ "eval_physics_entropy": 0.504680902004242,
2322
+ "eval_physics_loss": 0.7692254781723022,
2323
+ "eval_physics_mean_token_accuracy": 0.806957200050354,
2324
+ "eval_physics_num_tokens": 62893113.0,
2325
+ "eval_physics_runtime": 42.4232,
2326
+ "eval_physics_samples_per_second": 11.786,
2327
+ "eval_physics_steps_per_second": 2.947,
2328
+ "step": 1900
2329
+ },
2330
+ {
2331
+ "entropy": 0.4646745931357145,
2332
+ "epoch": 3.056,
2333
+ "grad_norm": 28.75,
2334
+ "learning_rate": 1.798e-05,
2335
+ "loss": 7.3984,
2336
+ "mean_token_accuracy": 0.8627396196126937,
2337
+ "num_tokens": 63218088.0,
2338
+ "step": 1910
2339
+ },
2340
+ {
2341
+ "entropy": 0.4612829519435763,
2342
+ "epoch": 3.072,
2343
+ "grad_norm": 30.25,
2344
+ "learning_rate": 1.7957777777777778e-05,
2345
+ "loss": 7.3709,
2346
+ "mean_token_accuracy": 0.8628798454999924,
2347
+ "num_tokens": 63551201.0,
2348
+ "step": 1920
2349
+ },
2350
+ {
2351
+ "entropy": 0.47167187500745056,
2352
+ "epoch": 3.088,
2353
+ "grad_norm": 29.25,
2354
+ "learning_rate": 1.7935555555555556e-05,
2355
+ "loss": 7.5434,
2356
+ "mean_token_accuracy": 0.8610360611230135,
2357
+ "num_tokens": 63876362.0,
2358
+ "step": 1930
2359
+ },
2360
+ {
2361
+ "entropy": 0.45282970210537316,
2362
+ "epoch": 3.104,
2363
+ "grad_norm": 29.5,
2364
+ "learning_rate": 1.7913333333333337e-05,
2365
+ "loss": 7.1592,
2366
+ "mean_token_accuracy": 0.8666022688150405,
2367
+ "num_tokens": 64208171.0,
2368
+ "step": 1940
2369
+ },
2370
+ {
2371
+ "entropy": 0.44786266181617973,
2372
+ "epoch": 3.12,
2373
+ "grad_norm": 28.75,
2374
+ "learning_rate": 1.789111111111111e-05,
2375
+ "loss": 7.1845,
2376
+ "mean_token_accuracy": 0.8669802479445934,
2377
+ "num_tokens": 64544493.0,
2378
+ "step": 1950
2379
+ },
2380
+ {
2381
+ "entropy": 0.47433777470141647,
2382
+ "epoch": 3.136,
2383
+ "grad_norm": 28.625,
2384
+ "learning_rate": 1.7868888888888892e-05,
2385
+ "loss": 7.6129,
2386
+ "mean_token_accuracy": 0.858815074339509,
2387
+ "num_tokens": 64872488.0,
2388
+ "step": 1960
2389
+ },
2390
+ {
2391
+ "entropy": 0.45270988158881664,
2392
+ "epoch": 3.152,
2393
+ "grad_norm": 28.25,
2394
+ "learning_rate": 1.7846666666666666e-05,
2395
+ "loss": 7.2128,
2396
+ "mean_token_accuracy": 0.8667096797376871,
2397
+ "num_tokens": 65201124.0,
2398
+ "step": 1970
2399
+ },
2400
+ {
2401
+ "entropy": 0.4651815198361874,
2402
+ "epoch": 3.168,
2403
+ "grad_norm": 27.0,
2404
+ "learning_rate": 1.7824444444444447e-05,
2405
+ "loss": 7.4436,
2406
+ "mean_token_accuracy": 0.8629633985459805,
2407
+ "num_tokens": 65525868.0,
2408
+ "step": 1980
2409
+ },
2410
+ {
2411
+ "entropy": 0.4589499249123037,
2412
+ "epoch": 3.184,
2413
+ "grad_norm": 28.5,
2414
+ "learning_rate": 1.780222222222222e-05,
2415
+ "loss": 7.3504,
2416
+ "mean_token_accuracy": 0.8635085135698318,
2417
+ "num_tokens": 65861603.0,
2418
+ "step": 1990
2419
+ },
2420
+ {
2421
+ "entropy": 0.46229199739173055,
2422
+ "epoch": 3.2,
2423
+ "grad_norm": 28.0,
2424
+ "learning_rate": 1.7780000000000003e-05,
2425
+ "loss": 7.4216,
2426
+ "mean_token_accuracy": 0.8631727375090122,
2427
+ "num_tokens": 66193675.0,
2428
+ "step": 2000
2429
+ },
2430
+ {
2431
+ "epoch": 3.2,
2432
+ "eval_math_entropy": 0.46265861511230466,
2433
+ "eval_math_loss": 0.8831425309181213,
2434
+ "eval_math_mean_token_accuracy": 0.795429391860962,
2435
+ "eval_math_num_tokens": 66193675.0,
2436
+ "eval_math_runtime": 37.314,
2437
+ "eval_math_samples_per_second": 13.4,
2438
+ "eval_math_steps_per_second": 3.35,
2439
+ "step": 2000
2440
+ },
2441
+ {
2442
+ "epoch": 3.2,
2443
+ "eval_physics_entropy": 0.506291347026825,
2444
+ "eval_physics_loss": 0.77411949634552,
2445
+ "eval_physics_mean_token_accuracy": 0.807035315990448,
2446
+ "eval_physics_num_tokens": 66193675.0,
2447
+ "eval_physics_runtime": 42.2482,
2448
+ "eval_physics_samples_per_second": 11.835,
2449
+ "eval_physics_steps_per_second": 2.959,
2450
+ "step": 2000
2451
+ },
2452
+ {
2453
+ "entropy": 0.46327207051217556,
2454
+ "epoch": 3.216,
2455
+ "grad_norm": 31.375,
2456
+ "learning_rate": 1.7757777777777777e-05,
2457
+ "loss": 7.3779,
2458
+ "mean_token_accuracy": 0.8627104613929987,
2459
+ "num_tokens": 66522835.0,
2460
+ "step": 2010
2461
+ },
2462
+ {
2463
+ "entropy": 0.4881742265075445,
2464
+ "epoch": 3.232,
2465
+ "grad_norm": 28.125,
2466
+ "learning_rate": 1.7735555555555558e-05,
2467
+ "loss": 7.7779,
2468
+ "mean_token_accuracy": 0.8573839426040649,
2469
+ "num_tokens": 66853693.0,
2470
+ "step": 2020
2471
+ },
2472
+ {
2473
+ "entropy": 0.44955099541693927,
2474
+ "epoch": 3.248,
2475
+ "grad_norm": 28.75,
2476
+ "learning_rate": 1.7713333333333335e-05,
2477
+ "loss": 7.2037,
2478
+ "mean_token_accuracy": 0.8655342176556587,
2479
+ "num_tokens": 67192299.0,
2480
+ "step": 2030
2481
+ },
2482
+ {
2483
+ "entropy": 0.4593834072351456,
2484
+ "epoch": 3.2640000000000002,
2485
+ "grad_norm": 31.125,
2486
+ "learning_rate": 1.7691111111111113e-05,
2487
+ "loss": 7.3846,
2488
+ "mean_token_accuracy": 0.8629851114004851,
2489
+ "num_tokens": 67517068.0,
2490
+ "step": 2040
2491
+ },
2492
+ {
2493
+ "entropy": 0.4662083011120558,
2494
+ "epoch": 3.2800000000000002,
2495
+ "grad_norm": 27.625,
2496
+ "learning_rate": 1.766888888888889e-05,
2497
+ "loss": 7.4291,
2498
+ "mean_token_accuracy": 0.8624357230961323,
2499
+ "num_tokens": 67841380.0,
2500
+ "step": 2050
2501
+ },
2502
+ {
2503
+ "entropy": 0.46831512041389944,
2504
+ "epoch": 3.296,
2505
+ "grad_norm": 28.875,
2506
+ "learning_rate": 1.7646666666666668e-05,
2507
+ "loss": 7.5193,
2508
+ "mean_token_accuracy": 0.8611114900559187,
2509
+ "num_tokens": 68175287.0,
2510
+ "step": 2060
2511
+ },
2512
+ {
2513
+ "entropy": 0.46843817448243497,
2514
+ "epoch": 3.312,
2515
+ "grad_norm": 28.75,
2516
+ "learning_rate": 1.7624444444444446e-05,
2517
+ "loss": 7.4895,
2518
+ "mean_token_accuracy": 0.8624055199325085,
2519
+ "num_tokens": 68513030.0,
2520
+ "step": 2070
2521
+ },
2522
+ {
2523
+ "entropy": 0.4846315659582615,
2524
+ "epoch": 3.328,
2525
+ "grad_norm": 30.5,
2526
+ "learning_rate": 1.7602222222222223e-05,
2527
+ "loss": 7.7401,
2528
+ "mean_token_accuracy": 0.8579454973340035,
2529
+ "num_tokens": 68839883.0,
2530
+ "step": 2080
2531
+ },
2532
+ {
2533
+ "entropy": 0.4725803265348077,
2534
+ "epoch": 3.344,
2535
+ "grad_norm": 32.0,
2536
+ "learning_rate": 1.758e-05,
2537
+ "loss": 7.5094,
2538
+ "mean_token_accuracy": 0.8603448048233986,
2539
+ "num_tokens": 69173450.0,
2540
+ "step": 2090
2541
+ },
2542
+ {
2543
+ "entropy": 0.47780570909380915,
2544
+ "epoch": 3.36,
2545
+ "grad_norm": 29.375,
2546
+ "learning_rate": 1.755777777777778e-05,
2547
+ "loss": 7.6991,
2548
+ "mean_token_accuracy": 0.8585305999964475,
2549
+ "num_tokens": 69510512.0,
2550
+ "step": 2100
2551
+ },
2552
+ {
2553
+ "epoch": 3.36,
2554
+ "eval_math_entropy": 0.47032436895370483,
2555
+ "eval_math_loss": 0.8811061978340149,
2556
+ "eval_math_mean_token_accuracy": 0.7954303793907166,
2557
+ "eval_math_num_tokens": 69510512.0,
2558
+ "eval_math_runtime": 37.313,
2559
+ "eval_math_samples_per_second": 13.4,
2560
+ "eval_math_steps_per_second": 3.35,
2561
+ "step": 2100
2562
+ },
2563
+ {
2564
+ "epoch": 3.36,
2565
+ "eval_physics_entropy": 0.5171641900539398,
2566
+ "eval_physics_loss": 0.7669321298599243,
2567
+ "eval_physics_mean_token_accuracy": 0.8077791213989258,
2568
+ "eval_physics_num_tokens": 69510512.0,
2569
+ "eval_physics_runtime": 42.4208,
2570
+ "eval_physics_samples_per_second": 11.787,
2571
+ "eval_physics_steps_per_second": 2.947,
2572
+ "step": 2100
2573
+ },
2574
+ {
2575
+ "entropy": 0.45618331208825114,
2576
+ "epoch": 3.376,
2577
+ "grad_norm": 27.875,
2578
+ "learning_rate": 1.7535555555555556e-05,
2579
+ "loss": 7.3065,
2580
+ "mean_token_accuracy": 0.8645048696547747,
2581
+ "num_tokens": 69853992.0,
2582
+ "step": 2110
2583
+ },
2584
+ {
2585
+ "entropy": 0.48346296716481446,
2586
+ "epoch": 3.392,
2587
+ "grad_norm": 30.5,
2588
+ "learning_rate": 1.7513333333333334e-05,
2589
+ "loss": 7.6888,
2590
+ "mean_token_accuracy": 0.856682114303112,
2591
+ "num_tokens": 70178388.0,
2592
+ "step": 2120
2593
+ },
2594
+ {
2595
+ "entropy": 0.46400783471763135,
2596
+ "epoch": 3.408,
2597
+ "grad_norm": 29.625,
2598
+ "learning_rate": 1.749111111111111e-05,
2599
+ "loss": 7.4566,
2600
+ "mean_token_accuracy": 0.8613572686910629,
2601
+ "num_tokens": 70507903.0,
2602
+ "step": 2130
2603
+ },
2604
+ {
2605
+ "entropy": 0.46734738908708096,
2606
+ "epoch": 3.424,
2607
+ "grad_norm": 28.875,
2608
+ "learning_rate": 1.746888888888889e-05,
2609
+ "loss": 7.4625,
2610
+ "mean_token_accuracy": 0.8620685461908579,
2611
+ "num_tokens": 70835982.0,
2612
+ "step": 2140
2613
+ },
2614
+ {
2615
+ "entropy": 0.4857069244608283,
2616
+ "epoch": 3.44,
2617
+ "grad_norm": 28.0,
2618
+ "learning_rate": 1.7446666666666667e-05,
2619
+ "loss": 7.8008,
2620
+ "mean_token_accuracy": 0.8561079211533069,
2621
+ "num_tokens": 71172338.0,
2622
+ "step": 2150
2623
+ },
2624
+ {
2625
+ "entropy": 0.48103215750306844,
2626
+ "epoch": 3.456,
2627
+ "grad_norm": 28.625,
2628
+ "learning_rate": 1.7424444444444444e-05,
2629
+ "loss": 7.7227,
2630
+ "mean_token_accuracy": 0.8575927283614874,
2631
+ "num_tokens": 71506904.0,
2632
+ "step": 2160
2633
+ },
2634
+ {
2635
+ "entropy": 0.48876550355926157,
2636
+ "epoch": 3.472,
2637
+ "grad_norm": 32.0,
2638
+ "learning_rate": 1.7402222222222222e-05,
2639
+ "loss": 7.8238,
2640
+ "mean_token_accuracy": 0.8549681931734086,
2641
+ "num_tokens": 71830111.0,
2642
+ "step": 2170
2643
+ },
2644
+ {
2645
+ "entropy": 0.4620178264565766,
2646
+ "epoch": 3.488,
2647
+ "grad_norm": 28.25,
2648
+ "learning_rate": 1.7380000000000003e-05,
2649
+ "loss": 7.3903,
2650
+ "mean_token_accuracy": 0.8639769736677408,
2651
+ "num_tokens": 72162307.0,
2652
+ "step": 2180
2653
+ },
2654
+ {
2655
+ "entropy": 0.4913556708022952,
2656
+ "epoch": 3.504,
2657
+ "grad_norm": 32.25,
2658
+ "learning_rate": 1.735777777777778e-05,
2659
+ "loss": 7.8646,
2660
+ "mean_token_accuracy": 0.8560999035835266,
2661
+ "num_tokens": 72492324.0,
2662
+ "step": 2190
2663
+ },
2664
+ {
2665
+ "entropy": 0.478965063393116,
2666
+ "epoch": 3.52,
2667
+ "grad_norm": 29.5,
2668
+ "learning_rate": 1.7335555555555558e-05,
2669
+ "loss": 7.6389,
2670
+ "mean_token_accuracy": 0.8595894828438759,
2671
+ "num_tokens": 72814868.0,
2672
+ "step": 2200
2673
+ },
2674
+ {
2675
+ "epoch": 3.52,
2676
+ "eval_math_entropy": 0.46189505290985106,
2677
+ "eval_math_loss": 0.8891173005104065,
2678
+ "eval_math_mean_token_accuracy": 0.7949126591682434,
2679
+ "eval_math_num_tokens": 72814868.0,
2680
+ "eval_math_runtime": 37.3472,
2681
+ "eval_math_samples_per_second": 13.388,
2682
+ "eval_math_steps_per_second": 3.347,
2683
+ "step": 2200
2684
+ },
2685
+ {
2686
+ "epoch": 3.52,
2687
+ "eval_physics_entropy": 0.5073661119937897,
2688
+ "eval_physics_loss": 0.7688494920730591,
2689
+ "eval_physics_mean_token_accuracy": 0.8081785469055176,
2690
+ "eval_physics_num_tokens": 72814868.0,
2691
+ "eval_physics_runtime": 42.3807,
2692
+ "eval_physics_samples_per_second": 11.798,
2693
+ "eval_physics_steps_per_second": 2.949,
2694
+ "step": 2200
2695
+ },
2696
+ {
2697
+ "entropy": 0.4763089304789901,
2698
+ "epoch": 3.536,
2699
+ "grad_norm": 26.125,
2700
+ "learning_rate": 1.7313333333333336e-05,
2701
+ "loss": 7.6358,
2702
+ "mean_token_accuracy": 0.8591924477368593,
2703
+ "num_tokens": 73144676.0,
2704
+ "step": 2210
2705
+ },
2706
+ {
2707
+ "entropy": 0.47234920123592017,
2708
+ "epoch": 3.552,
2709
+ "grad_norm": 26.375,
2710
+ "learning_rate": 1.7291111111111113e-05,
2711
+ "loss": 7.5648,
2712
+ "mean_token_accuracy": 0.860359675809741,
2713
+ "num_tokens": 73474150.0,
2714
+ "step": 2220
2715
+ },
2716
+ {
2717
+ "entropy": 0.47361249625682833,
2718
+ "epoch": 3.568,
2719
+ "grad_norm": 28.375,
2720
+ "learning_rate": 1.726888888888889e-05,
2721
+ "loss": 7.5883,
2722
+ "mean_token_accuracy": 0.8600757714360953,
2723
+ "num_tokens": 73814337.0,
2724
+ "step": 2230
2725
+ },
2726
+ {
2727
+ "entropy": 0.4998150335624814,
2728
+ "epoch": 3.584,
2729
+ "grad_norm": 28.75,
2730
+ "learning_rate": 1.724666666666667e-05,
2731
+ "loss": 8.0356,
2732
+ "mean_token_accuracy": 0.852856045216322,
2733
+ "num_tokens": 74139916.0,
2734
+ "step": 2240
2735
+ },
2736
+ {
2737
+ "entropy": 0.4654633553698659,
2738
+ "epoch": 3.6,
2739
+ "grad_norm": 30.625,
2740
+ "learning_rate": 1.7224444444444446e-05,
2741
+ "loss": 7.4466,
2742
+ "mean_token_accuracy": 0.862101461738348,
2743
+ "num_tokens": 74481410.0,
2744
+ "step": 2250
2745
+ },
2746
+ {
2747
+ "entropy": 0.47113845478743316,
2748
+ "epoch": 3.616,
2749
+ "grad_norm": 27.25,
2750
+ "learning_rate": 1.7202222222222224e-05,
2751
+ "loss": 7.5453,
2752
+ "mean_token_accuracy": 0.8594643916934729,
2753
+ "num_tokens": 74818399.0,
2754
+ "step": 2260
2755
+ },
2756
+ {
2757
+ "entropy": 0.4783417483791709,
2758
+ "epoch": 3.632,
2759
+ "grad_norm": 28.0,
2760
+ "learning_rate": 1.718e-05,
2761
+ "loss": 7.6308,
2762
+ "mean_token_accuracy": 0.8589034643024206,
2763
+ "num_tokens": 75148445.0,
2764
+ "step": 2270
2765
+ },
2766
+ {
2767
+ "entropy": 0.4815426055341959,
2768
+ "epoch": 3.648,
2769
+ "grad_norm": 28.5,
2770
+ "learning_rate": 1.715777777777778e-05,
2771
+ "loss": 7.7338,
2772
+ "mean_token_accuracy": 0.8576061308383942,
2773
+ "num_tokens": 75475448.0,
2774
+ "step": 2280
2775
+ },
2776
+ {
2777
+ "entropy": 0.47460295390337703,
2778
+ "epoch": 3.664,
2779
+ "grad_norm": 27.875,
2780
+ "learning_rate": 1.7135555555555557e-05,
2781
+ "loss": 7.5918,
2782
+ "mean_token_accuracy": 0.8595763813704252,
2783
+ "num_tokens": 75811516.0,
2784
+ "step": 2290
2785
+ },
2786
+ {
2787
+ "entropy": 0.48654237780719994,
2788
+ "epoch": 3.68,
2789
+ "grad_norm": 28.375,
2790
+ "learning_rate": 1.7113333333333334e-05,
2791
+ "loss": 7.8172,
2792
+ "mean_token_accuracy": 0.8558611653745174,
2793
+ "num_tokens": 76131750.0,
2794
+ "step": 2300
2795
+ },
2796
+ {
2797
+ "epoch": 3.68,
2798
+ "eval_math_entropy": 0.473254896402359,
2799
+ "eval_math_loss": 0.8871560096740723,
2800
+ "eval_math_mean_token_accuracy": 0.7942537832260131,
2801
+ "eval_math_num_tokens": 76131750.0,
2802
+ "eval_math_runtime": 37.3026,
2803
+ "eval_math_samples_per_second": 13.404,
2804
+ "eval_math_steps_per_second": 3.351,
2805
+ "step": 2300
2806
+ },
2807
+ {
2808
+ "epoch": 3.68,
2809
+ "eval_physics_entropy": 0.5214726667404175,
2810
+ "eval_physics_loss": 0.7622392773628235,
2811
+ "eval_physics_mean_token_accuracy": 0.80874200963974,
2812
+ "eval_physics_num_tokens": 76131750.0,
2813
+ "eval_physics_runtime": 42.3876,
2814
+ "eval_physics_samples_per_second": 11.796,
2815
+ "eval_physics_steps_per_second": 2.949,
2816
+ "step": 2300
2817
+ },
2818
+ {
2819
+ "entropy": 0.5007840525358915,
2820
+ "epoch": 3.6959999999999997,
2821
+ "grad_norm": 30.375,
2822
+ "learning_rate": 1.7091111111111112e-05,
2823
+ "loss": 7.992,
2824
+ "mean_token_accuracy": 0.8535380810499191,
2825
+ "num_tokens": 76460225.0,
2826
+ "step": 2310
2827
+ },
2828
+ {
2829
+ "entropy": 0.4741020784713328,
2830
+ "epoch": 3.7119999999999997,
2831
+ "grad_norm": 29.875,
2832
+ "learning_rate": 1.706888888888889e-05,
2833
+ "loss": 7.5979,
2834
+ "mean_token_accuracy": 0.8599839068949222,
2835
+ "num_tokens": 76793614.0,
2836
+ "step": 2320
2837
+ },
2838
+ {
2839
+ "entropy": 0.4850239871069789,
2840
+ "epoch": 3.7279999999999998,
2841
+ "grad_norm": 28.0,
2842
+ "learning_rate": 1.704666666666667e-05,
2843
+ "loss": 7.8109,
2844
+ "mean_token_accuracy": 0.8563877269625664,
2845
+ "num_tokens": 77121009.0,
2846
+ "step": 2330
2847
+ },
2848
+ {
2849
+ "entropy": 0.4851770822890103,
2850
+ "epoch": 3.7439999999999998,
2851
+ "grad_norm": 30.375,
2852
+ "learning_rate": 1.7024444444444445e-05,
2853
+ "loss": 7.7676,
2854
+ "mean_token_accuracy": 0.8573952309787274,
2855
+ "num_tokens": 77446311.0,
2856
+ "step": 2340
2857
+ },
2858
+ {
2859
+ "entropy": 0.4895776830613613,
2860
+ "epoch": 3.76,
2861
+ "grad_norm": 28.875,
2862
+ "learning_rate": 1.7002222222222226e-05,
2863
+ "loss": 7.8327,
2864
+ "mean_token_accuracy": 0.8554267656058073,
2865
+ "num_tokens": 77781488.0,
2866
+ "step": 2350
2867
+ },
2868
+ {
2869
+ "entropy": 0.4849891365505755,
2870
+ "epoch": 3.776,
2871
+ "grad_norm": 30.875,
2872
+ "learning_rate": 1.698e-05,
2873
+ "loss": 7.758,
2874
+ "mean_token_accuracy": 0.8568599618971348,
2875
+ "num_tokens": 78108138.0,
2876
+ "step": 2360
2877
+ },
2878
+ {
2879
+ "entropy": 0.46994358394294977,
2880
+ "epoch": 3.792,
2881
+ "grad_norm": 28.75,
2882
+ "learning_rate": 1.695777777777778e-05,
2883
+ "loss": 7.5618,
2884
+ "mean_token_accuracy": 0.8612664014101028,
2885
+ "num_tokens": 78449177.0,
2886
+ "step": 2370
2887
+ },
2888
+ {
2889
+ "entropy": 0.4784676956012845,
2890
+ "epoch": 3.808,
2891
+ "grad_norm": 28.875,
2892
+ "learning_rate": 1.6935555555555555e-05,
2893
+ "loss": 7.6559,
2894
+ "mean_token_accuracy": 0.8584695469588042,
2895
+ "num_tokens": 78778761.0,
2896
+ "step": 2380
2897
+ },
2898
+ {
2899
+ "entropy": 0.49510048162192105,
2900
+ "epoch": 3.824,
2901
+ "grad_norm": 31.375,
2902
+ "learning_rate": 1.6913333333333336e-05,
2903
+ "loss": 7.8983,
2904
+ "mean_token_accuracy": 0.8549050018191338,
2905
+ "num_tokens": 79102912.0,
2906
+ "step": 2390
2907
+ },
2908
+ {
2909
+ "entropy": 0.480623659864068,
2910
+ "epoch": 3.84,
2911
+ "grad_norm": 29.25,
2912
+ "learning_rate": 1.689111111111111e-05,
2913
+ "loss": 7.734,
2914
+ "mean_token_accuracy": 0.8581239201128483,
2915
+ "num_tokens": 79436236.0,
2916
+ "step": 2400
2917
+ },
2918
+ {
2919
+ "epoch": 3.84,
2920
+ "eval_math_entropy": 0.463162407875061,
2921
+ "eval_math_loss": 0.8948017954826355,
2922
+ "eval_math_mean_token_accuracy": 0.7947532458305359,
2923
+ "eval_math_num_tokens": 79436236.0,
2924
+ "eval_math_runtime": 37.3256,
2925
+ "eval_math_samples_per_second": 13.396,
2926
+ "eval_math_steps_per_second": 3.349,
2927
+ "step": 2400
2928
+ },
2929
+ {
2930
+ "epoch": 3.84,
2931
+ "eval_physics_entropy": 0.5136855947971344,
2932
+ "eval_physics_loss": 0.7588543891906738,
2933
+ "eval_physics_mean_token_accuracy": 0.8093479194641113,
2934
+ "eval_physics_num_tokens": 79436236.0,
2935
+ "eval_physics_runtime": 42.4034,
2936
+ "eval_physics_samples_per_second": 11.791,
2937
+ "eval_physics_steps_per_second": 2.948,
2938
+ "step": 2400
2939
+ },
2940
+ {
2941
+ "entropy": 0.47340967757627367,
2942
+ "epoch": 3.856,
2943
+ "grad_norm": 27.375,
2944
+ "learning_rate": 1.686888888888889e-05,
2945
+ "loss": 7.5945,
2946
+ "mean_token_accuracy": 0.8595646426081658,
2947
+ "num_tokens": 79772163.0,
2948
+ "step": 2410
2949
+ },
2950
+ {
2951
+ "entropy": 0.48024156149476765,
2952
+ "epoch": 3.872,
2953
+ "grad_norm": 29.375,
2954
+ "learning_rate": 1.684666666666667e-05,
2955
+ "loss": 7.7006,
2956
+ "mean_token_accuracy": 0.857577583193779,
2957
+ "num_tokens": 80099967.0,
2958
+ "step": 2420
2959
+ },
2960
+ {
2961
+ "entropy": 0.48545418698340653,
2962
+ "epoch": 3.888,
2963
+ "grad_norm": 31.125,
2964
+ "learning_rate": 1.6824444444444447e-05,
2965
+ "loss": 7.8016,
2966
+ "mean_token_accuracy": 0.8571395024657249,
2967
+ "num_tokens": 80430055.0,
2968
+ "step": 2430
2969
+ },
2970
+ {
2971
+ "entropy": 0.5100918130017817,
2972
+ "epoch": 3.904,
2973
+ "grad_norm": 35.5,
2974
+ "learning_rate": 1.6802222222222224e-05,
2975
+ "loss": 8.1543,
2976
+ "mean_token_accuracy": 0.8508139502257108,
2977
+ "num_tokens": 80763923.0,
2978
+ "step": 2440
2979
+ },
2980
+ {
2981
+ "entropy": 0.48252020217478275,
2982
+ "epoch": 3.92,
2983
+ "grad_norm": 30.875,
2984
+ "learning_rate": 1.6780000000000002e-05,
2985
+ "loss": 7.7177,
2986
+ "mean_token_accuracy": 0.858184577897191,
2987
+ "num_tokens": 81098568.0,
2988
+ "step": 2450
2989
+ },
2990
+ {
2991
+ "entropy": 0.48226326461881397,
2992
+ "epoch": 3.936,
2993
+ "grad_norm": 29.875,
2994
+ "learning_rate": 1.675777777777778e-05,
2995
+ "loss": 7.7287,
2996
+ "mean_token_accuracy": 0.8575166705995798,
2997
+ "num_tokens": 81423109.0,
2998
+ "step": 2460
2999
+ },
3000
+ {
3001
+ "entropy": 0.4868935288861394,
3002
+ "epoch": 3.952,
3003
+ "grad_norm": 29.875,
3004
+ "learning_rate": 1.6735555555555557e-05,
3005
+ "loss": 7.7548,
3006
+ "mean_token_accuracy": 0.8561869975179434,
3007
+ "num_tokens": 81753214.0,
3008
+ "step": 2470
3009
+ },
3010
+ {
3011
+ "entropy": 0.4711942231282592,
3012
+ "epoch": 3.968,
3013
+ "grad_norm": 31.0,
3014
+ "learning_rate": 1.6713333333333335e-05,
3015
+ "loss": 7.6099,
3016
+ "mean_token_accuracy": 0.8587131906300783,
3017
+ "num_tokens": 82076472.0,
3018
+ "step": 2480
3019
+ },
3020
+ {
3021
+ "entropy": 0.46916523650288583,
3022
+ "epoch": 3.984,
3023
+ "grad_norm": 27.625,
3024
+ "learning_rate": 1.6691111111111112e-05,
3025
+ "loss": 7.5009,
3026
+ "mean_token_accuracy": 0.8613108903169632,
3027
+ "num_tokens": 82418472.0,
3028
+ "step": 2490
3029
+ },
3030
+ {
3031
+ "entropy": 0.47474549021571877,
3032
+ "epoch": 4.0,
3033
+ "grad_norm": 31.5,
3034
+ "learning_rate": 1.666888888888889e-05,
3035
+ "loss": 7.6216,
3036
+ "mean_token_accuracy": 0.858787452429533,
3037
+ "num_tokens": 82747216.0,
3038
+ "step": 2500
3039
+ },
3040
+ {
3041
+ "epoch": 4.0,
3042
+ "eval_math_entropy": 0.47560658168792724,
3043
+ "eval_math_loss": 0.8882602453231812,
3044
+ "eval_math_mean_token_accuracy": 0.7941295528411865,
3045
+ "eval_math_num_tokens": 82747216.0,
3046
+ "eval_math_runtime": 37.5954,
3047
+ "eval_math_samples_per_second": 13.3,
3048
+ "eval_math_steps_per_second": 3.325,
3049
+ "step": 2500
3050
+ },
3051
+ {
3052
+ "epoch": 4.0,
3053
+ "eval_physics_entropy": 0.5194946241378784,
3054
+ "eval_physics_loss": 0.7551596760749817,
3055
+ "eval_physics_mean_token_accuracy": 0.8096559419631958,
3056
+ "eval_physics_num_tokens": 82747216.0,
3057
+ "eval_physics_runtime": 42.2165,
3058
+ "eval_physics_samples_per_second": 11.844,
3059
+ "eval_physics_steps_per_second": 2.961,
3060
+ "step": 2500
3061
+ }
3062
+ ],
3063
+ "logging_steps": 10,
3064
+ "max_steps": 10000,
3065
+ "num_input_tokens_seen": 0,
3066
+ "num_train_epochs": 16,
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": 8.272635579032348e+18,
3081
+ "train_batch_size": 4,
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:c819b77bbc35094ae0bd079366948ce0ef62f469d9ccf51d64318d79c8b67f26
3
+ size 6417