roonbug commited on
Commit
e0cf492
·
verified ·
1 Parent(s): 9f671f6

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
checkpoint-1000/added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "<image_soft_token>": 262144
3
+ }
checkpoint-1000/chat_template.jinja ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}
2
+ {%- if messages[0]['role'] == 'system' -%}
3
+ {%- if messages[0]['content'] is string -%}
4
+ {%- set first_user_prefix = messages[0]['content'] + '
5
+
6
+ ' -%}
7
+ {%- else -%}
8
+ {%- set first_user_prefix = messages[0]['content'][0]['text'] + '
9
+
10
+ ' -%}
11
+ {%- endif -%}
12
+ {%- set loop_messages = messages[1:] -%}
13
+ {%- else -%}
14
+ {%- set first_user_prefix = "" -%}
15
+ {%- set loop_messages = messages -%}
16
+ {%- endif -%}
17
+ {%- for message in loop_messages -%}
18
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
19
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
20
+ {%- endif -%}
21
+ {%- if (message['role'] == 'assistant') -%}
22
+ {%- set role = "model" -%}
23
+ {%- else -%}
24
+ {%- set role = message['role'] -%}
25
+ {%- endif -%}
26
+ {{ '<start_of_turn>' + role + '
27
+ ' + (first_user_prefix if loop.first else "") }}
28
+ {%- if message['content'] is string -%}
29
+ {{ message['content'] | trim }}
30
+ {%- elif message['content'] is iterable -%}
31
+ {%- for item in message['content'] -%}
32
+ {%- if item['type'] == 'image' -%}
33
+ {{ '<start_of_image>' }}
34
+ {%- elif item['type'] == 'text' -%}
35
+ {{ item['text'] | trim }}
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ {%- else -%}
39
+ {{ raise_exception("Invalid content type") }}
40
+ {%- endif -%}
41
+ {{ '<end_of_turn>
42
+ ' }}
43
+ {%- endfor -%}
44
+ {%- if add_generation_prompt -%}
45
+ {{'<start_of_turn>model
46
+ '}}
47
+ {%- endif -%}
checkpoint-1000/config.json ADDED
@@ -0,0 +1,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-1000/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-1000/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-1000/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-1000/model-00003-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53d803eda94a0ef571b427b8299a4a8d23926e589090356aa3a7fa6d8a5ced45
3
+ size 4931296656
checkpoint-1000/model-00004-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0086bc8b940b102334bfacd8fbe36073a646feab1a45ad65aeea476bb6ca3ea
3
+ size 4931296656
checkpoint-1000/model-00005-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0ed4615790ae697259305fab7733f6d5ce838b8992c1011c2b5f1a021b8ee13
3
+ size 4601000928
checkpoint-1000/model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1000/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5698873fb054e8b7db9471a55ce7e7eae2aac8ca5dc7d0c0c034ce286534c2d9
3
+ size 14573116445
checkpoint-1000/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdf49fbe089c54734b0cb49eebe2b139e2eb7e2ba668acc6d856b30fcc0384d7
3
+ size 14645
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6078e52773a379f026b8fbbbc5546ab7ed9418d05b713f8aff2a4f3c7e12f108
3
+ size 1465
checkpoint-1000/special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boi_token": "<start_of_image>",
3
+ "bos_token": {
4
+ "content": "<bos>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "eoi_token": "<end_of_image>",
11
+ "eos_token": {
12
+ "content": "<eos>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "image_token": "<image_soft_token>",
19
+ "pad_token": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "unk_token": {
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
checkpoint-1000/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
checkpoint-1000/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
checkpoint-1000/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1000/trainer_state.json ADDED
@@ -0,0 +1,1474 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.4451121126133645,
6
+ "eval_steps": 100,
7
+ "global_step": 1000,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.7626848379150033,
14
+ "epoch": 0.004451121126133645,
15
+ "grad_norm": 1888.0,
16
+ "learning_rate": 1.8e-07,
17
+ "loss": 36.6657,
18
+ "mean_token_accuracy": 0.6676603280007839,
19
+ "num_tokens": 63133.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.81443009134382,
24
+ "epoch": 0.00890224225226729,
25
+ "grad_norm": 1792.0,
26
+ "learning_rate": 3.8e-07,
27
+ "loss": 36.4468,
28
+ "mean_token_accuracy": 0.6505163595080375,
29
+ "num_tokens": 128968.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.8291782144457102,
34
+ "epoch": 0.013353363378400934,
35
+ "grad_norm": 968.0,
36
+ "learning_rate": 5.800000000000001e-07,
37
+ "loss": 34.7077,
38
+ "mean_token_accuracy": 0.6580854222178459,
39
+ "num_tokens": 193314.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.9378003980964422,
44
+ "epoch": 0.01780448450453458,
45
+ "grad_norm": 656.0,
46
+ "learning_rate": 7.8e-07,
47
+ "loss": 33.9052,
48
+ "mean_token_accuracy": 0.6638370925560594,
49
+ "num_tokens": 257189.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.9725235970690846,
54
+ "epoch": 0.022255605630668224,
55
+ "grad_norm": 724.0,
56
+ "learning_rate": 9.800000000000001e-07,
57
+ "loss": 29.8492,
58
+ "mean_token_accuracy": 0.673487476631999,
59
+ "num_tokens": 324224.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 1.0304172853007914,
64
+ "epoch": 0.026706726756801868,
65
+ "grad_norm": 488.0,
66
+ "learning_rate": 1.1800000000000001e-06,
67
+ "loss": 28.3082,
68
+ "mean_token_accuracy": 0.6809290068224072,
69
+ "num_tokens": 394654.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 1.000378421880305,
74
+ "epoch": 0.031157847882935515,
75
+ "grad_norm": 420.0,
76
+ "learning_rate": 1.3800000000000001e-06,
77
+ "loss": 26.217,
78
+ "mean_token_accuracy": 0.6916999943554402,
79
+ "num_tokens": 461658.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.0228427596390248,
84
+ "epoch": 0.03560896900906916,
85
+ "grad_norm": 258.0,
86
+ "learning_rate": 1.5800000000000001e-06,
87
+ "loss": 23.6386,
88
+ "mean_token_accuracy": 0.7020359886810184,
89
+ "num_tokens": 528285.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.0894161500036716,
94
+ "epoch": 0.04006009013520281,
95
+ "grad_norm": 218.0,
96
+ "learning_rate": 1.7800000000000001e-06,
97
+ "loss": 23.2798,
98
+ "mean_token_accuracy": 0.6986296704038978,
99
+ "num_tokens": 595336.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.0631676118820905,
104
+ "epoch": 0.04451121126133645,
105
+ "grad_norm": 246.0,
106
+ "learning_rate": 1.98e-06,
107
+ "loss": 21.4229,
108
+ "mean_token_accuracy": 0.7073360819369554,
109
+ "num_tokens": 663126.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "epoch": 0.04451121126133645,
114
+ "eval_biology_entropy": 1.48638627243042,
115
+ "eval_biology_loss": 1.9182748794555664,
116
+ "eval_biology_mean_token_accuracy": 0.6060935441255569,
117
+ "eval_biology_num_tokens": 663126.0,
118
+ "eval_biology_runtime": 49.1778,
119
+ "eval_biology_samples_per_second": 10.167,
120
+ "eval_biology_steps_per_second": 10.167,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.04451121126133645,
125
+ "eval_chemistry_entropy": 1.0556317766308785,
126
+ "eval_chemistry_loss": 1.2898850440979004,
127
+ "eval_chemistry_mean_token_accuracy": 0.7124251598715782,
128
+ "eval_chemistry_num_tokens": 663126.0,
129
+ "eval_chemistry_runtime": 57.0461,
130
+ "eval_chemistry_samples_per_second": 8.765,
131
+ "eval_chemistry_steps_per_second": 8.765,
132
+ "step": 100
133
+ },
134
+ {
135
+ "epoch": 0.04451121126133645,
136
+ "eval_math_entropy": 0.8456157124042512,
137
+ "eval_math_loss": 1.1942517757415771,
138
+ "eval_math_mean_token_accuracy": 0.7334114202260971,
139
+ "eval_math_num_tokens": 663126.0,
140
+ "eval_math_runtime": 59.0482,
141
+ "eval_math_samples_per_second": 8.468,
142
+ "eval_math_steps_per_second": 8.468,
143
+ "step": 100
144
+ },
145
+ {
146
+ "epoch": 0.04451121126133645,
147
+ "eval_physics_entropy": 0.9410946148037911,
148
+ "eval_physics_loss": 1.1514631509780884,
149
+ "eval_physics_mean_token_accuracy": 0.7352130191326142,
150
+ "eval_physics_num_tokens": 663126.0,
151
+ "eval_physics_runtime": 65.895,
152
+ "eval_physics_samples_per_second": 7.588,
153
+ "eval_physics_steps_per_second": 7.588,
154
+ "step": 100
155
+ },
156
+ {
157
+ "entropy": 1.0484314041212202,
158
+ "epoch": 0.048962332387470095,
159
+ "grad_norm": 197.0,
160
+ "learning_rate": 2.1800000000000003e-06,
161
+ "loss": 19.9524,
162
+ "mean_token_accuracy": 0.7201540337875485,
163
+ "num_tokens": 731060.0,
164
+ "step": 110
165
+ },
166
+ {
167
+ "entropy": 1.012692185677588,
168
+ "epoch": 0.053413453513603736,
169
+ "grad_norm": 178.0,
170
+ "learning_rate": 2.38e-06,
171
+ "loss": 18.8663,
172
+ "mean_token_accuracy": 0.7315327662974596,
173
+ "num_tokens": 801635.0,
174
+ "step": 120
175
+ },
176
+ {
177
+ "entropy": 1.0016614170745015,
178
+ "epoch": 0.05786457463973738,
179
+ "grad_norm": 150.0,
180
+ "learning_rate": 2.5800000000000003e-06,
181
+ "loss": 19.0949,
182
+ "mean_token_accuracy": 0.7297663483768702,
183
+ "num_tokens": 867260.0,
184
+ "step": 130
185
+ },
186
+ {
187
+ "entropy": 1.007587356492877,
188
+ "epoch": 0.06231569576587103,
189
+ "grad_norm": 131.0,
190
+ "learning_rate": 2.7800000000000005e-06,
191
+ "loss": 18.9083,
192
+ "mean_token_accuracy": 0.7291399639099836,
193
+ "num_tokens": 931344.0,
194
+ "step": 140
195
+ },
196
+ {
197
+ "entropy": 1.0287242146208881,
198
+ "epoch": 0.06676681689200467,
199
+ "grad_norm": 179.0,
200
+ "learning_rate": 2.9800000000000003e-06,
201
+ "loss": 17.5655,
202
+ "mean_token_accuracy": 0.7393418021500111,
203
+ "num_tokens": 993586.0,
204
+ "step": 150
205
+ },
206
+ {
207
+ "entropy": 1.0563909145072103,
208
+ "epoch": 0.07121793801813832,
209
+ "grad_norm": 126.0,
210
+ "learning_rate": 3.1800000000000005e-06,
211
+ "loss": 16.9203,
212
+ "mean_token_accuracy": 0.7381794668734074,
213
+ "num_tokens": 1060812.0,
214
+ "step": 160
215
+ },
216
+ {
217
+ "entropy": 1.002509175427258,
218
+ "epoch": 0.07566905914427197,
219
+ "grad_norm": 127.0,
220
+ "learning_rate": 3.3800000000000007e-06,
221
+ "loss": 15.5704,
222
+ "mean_token_accuracy": 0.7520427949726581,
223
+ "num_tokens": 1131832.0,
224
+ "step": 170
225
+ },
226
+ {
227
+ "entropy": 0.9855028538033366,
228
+ "epoch": 0.08012018027040561,
229
+ "grad_norm": 101.5,
230
+ "learning_rate": 3.58e-06,
231
+ "loss": 15.2418,
232
+ "mean_token_accuracy": 0.7483469128608704,
233
+ "num_tokens": 1200650.0,
234
+ "step": 180
235
+ },
236
+ {
237
+ "entropy": 0.953622367605567,
238
+ "epoch": 0.08457130139653925,
239
+ "grad_norm": 117.0,
240
+ "learning_rate": 3.7800000000000002e-06,
241
+ "loss": 14.9841,
242
+ "mean_token_accuracy": 0.7532309770584107,
243
+ "num_tokens": 1265107.0,
244
+ "step": 190
245
+ },
246
+ {
247
+ "entropy": 0.9146013628691435,
248
+ "epoch": 0.0890224225226729,
249
+ "grad_norm": 123.0,
250
+ "learning_rate": 3.980000000000001e-06,
251
+ "loss": 14.4834,
252
+ "mean_token_accuracy": 0.7538760716095567,
253
+ "num_tokens": 1327380.0,
254
+ "step": 200
255
+ },
256
+ {
257
+ "epoch": 0.0890224225226729,
258
+ "eval_biology_entropy": 1.2566380687952041,
259
+ "eval_biology_loss": 1.4376745223999023,
260
+ "eval_biology_mean_token_accuracy": 0.6541494448781013,
261
+ "eval_biology_num_tokens": 1327380.0,
262
+ "eval_biology_runtime": 49.1875,
263
+ "eval_biology_samples_per_second": 10.165,
264
+ "eval_biology_steps_per_second": 10.165,
265
+ "step": 200
266
+ },
267
+ {
268
+ "epoch": 0.0890224225226729,
269
+ "eval_chemistry_entropy": 0.8981590569019318,
270
+ "eval_chemistry_loss": 0.9085330963134766,
271
+ "eval_chemistry_mean_token_accuracy": 0.7548674891591072,
272
+ "eval_chemistry_num_tokens": 1327380.0,
273
+ "eval_chemistry_runtime": 57.0026,
274
+ "eval_chemistry_samples_per_second": 8.772,
275
+ "eval_chemistry_steps_per_second": 8.772,
276
+ "step": 200
277
+ },
278
+ {
279
+ "epoch": 0.0890224225226729,
280
+ "eval_math_entropy": 0.7623042597174644,
281
+ "eval_math_loss": 0.8974745869636536,
282
+ "eval_math_mean_token_accuracy": 0.7647860664129257,
283
+ "eval_math_num_tokens": 1327380.0,
284
+ "eval_math_runtime": 58.8532,
285
+ "eval_math_samples_per_second": 8.496,
286
+ "eval_math_steps_per_second": 8.496,
287
+ "step": 200
288
+ },
289
+ {
290
+ "epoch": 0.0890224225226729,
291
+ "eval_physics_entropy": 0.8175762248635292,
292
+ "eval_physics_loss": 0.8456214666366577,
293
+ "eval_physics_mean_token_accuracy": 0.771473237156868,
294
+ "eval_physics_num_tokens": 1327380.0,
295
+ "eval_physics_runtime": 65.7934,
296
+ "eval_physics_samples_per_second": 7.6,
297
+ "eval_physics_steps_per_second": 7.6,
298
+ "step": 200
299
+ },
300
+ {
301
+ "entropy": 0.9297651303932071,
302
+ "epoch": 0.09347354364880654,
303
+ "grad_norm": 121.0,
304
+ "learning_rate": 4.18e-06,
305
+ "loss": 15.1938,
306
+ "mean_token_accuracy": 0.7461945816874505,
307
+ "num_tokens": 1393379.0,
308
+ "step": 210
309
+ },
310
+ {
311
+ "entropy": 0.8862789057195186,
312
+ "epoch": 0.09792466477494019,
313
+ "grad_norm": 98.0,
314
+ "learning_rate": 4.38e-06,
315
+ "loss": 14.1582,
316
+ "mean_token_accuracy": 0.759770842641592,
317
+ "num_tokens": 1460130.0,
318
+ "step": 220
319
+ },
320
+ {
321
+ "entropy": 0.8502754125744104,
322
+ "epoch": 0.10237578590107384,
323
+ "grad_norm": 93.5,
324
+ "learning_rate": 4.58e-06,
325
+ "loss": 13.6798,
326
+ "mean_token_accuracy": 0.7648626536130905,
327
+ "num_tokens": 1529183.0,
328
+ "step": 230
329
+ },
330
+ {
331
+ "entropy": 0.8967906672507524,
332
+ "epoch": 0.10682690702720747,
333
+ "grad_norm": 117.0,
334
+ "learning_rate": 4.78e-06,
335
+ "loss": 14.5446,
336
+ "mean_token_accuracy": 0.7548742420971394,
337
+ "num_tokens": 1597405.0,
338
+ "step": 240
339
+ },
340
+ {
341
+ "entropy": 0.8926160346716643,
342
+ "epoch": 0.11127802815334112,
343
+ "grad_norm": 97.0,
344
+ "learning_rate": 4.980000000000001e-06,
345
+ "loss": 14.4754,
346
+ "mean_token_accuracy": 0.7543840739876032,
347
+ "num_tokens": 1661767.0,
348
+ "step": 250
349
+ },
350
+ {
351
+ "entropy": 0.906158303655684,
352
+ "epoch": 0.11572914927947477,
353
+ "grad_norm": 81.5,
354
+ "learning_rate": 5.18e-06,
355
+ "loss": 14.5882,
356
+ "mean_token_accuracy": 0.7560893476009369,
357
+ "num_tokens": 1728207.0,
358
+ "step": 260
359
+ },
360
+ {
361
+ "entropy": 0.8557273065671325,
362
+ "epoch": 0.12018027040560841,
363
+ "grad_norm": 98.5,
364
+ "learning_rate": 5.380000000000001e-06,
365
+ "loss": 13.7256,
366
+ "mean_token_accuracy": 0.7653402671217918,
367
+ "num_tokens": 1796055.0,
368
+ "step": 270
369
+ },
370
+ {
371
+ "entropy": 0.824279030226171,
372
+ "epoch": 0.12463139153174206,
373
+ "grad_norm": 97.0,
374
+ "learning_rate": 5.580000000000001e-06,
375
+ "loss": 13.2294,
376
+ "mean_token_accuracy": 0.7715799886733293,
377
+ "num_tokens": 1859684.0,
378
+ "step": 280
379
+ },
380
+ {
381
+ "entropy": 0.885771127231419,
382
+ "epoch": 0.1290825126578757,
383
+ "grad_norm": 102.5,
384
+ "learning_rate": 5.78e-06,
385
+ "loss": 14.3879,
386
+ "mean_token_accuracy": 0.7568217847496271,
387
+ "num_tokens": 1921704.0,
388
+ "step": 290
389
+ },
390
+ {
391
+ "entropy": 0.868380057439208,
392
+ "epoch": 0.13353363378400934,
393
+ "grad_norm": 87.5,
394
+ "learning_rate": 5.98e-06,
395
+ "loss": 13.9363,
396
+ "mean_token_accuracy": 0.7626302808523178,
397
+ "num_tokens": 1985766.0,
398
+ "step": 300
399
+ },
400
+ {
401
+ "epoch": 0.13353363378400934,
402
+ "eval_biology_entropy": 1.2238210166096688,
403
+ "eval_biology_loss": 1.366097331047058,
404
+ "eval_biology_mean_token_accuracy": 0.6672504586577416,
405
+ "eval_biology_num_tokens": 1985766.0,
406
+ "eval_biology_runtime": 49.1235,
407
+ "eval_biology_samples_per_second": 10.178,
408
+ "eval_biology_steps_per_second": 10.178,
409
+ "step": 300
410
+ },
411
+ {
412
+ "epoch": 0.13353363378400934,
413
+ "eval_chemistry_entropy": 0.8314956972002983,
414
+ "eval_chemistry_loss": 0.8379236459732056,
415
+ "eval_chemistry_mean_token_accuracy": 0.7699049721360207,
416
+ "eval_chemistry_num_tokens": 1985766.0,
417
+ "eval_chemistry_runtime": 57.0049,
418
+ "eval_chemistry_samples_per_second": 8.771,
419
+ "eval_chemistry_steps_per_second": 8.771,
420
+ "step": 300
421
+ },
422
+ {
423
+ "epoch": 0.13353363378400934,
424
+ "eval_math_entropy": 0.714144405901432,
425
+ "eval_math_loss": 0.874640703201294,
426
+ "eval_math_mean_token_accuracy": 0.7714004491567612,
427
+ "eval_math_num_tokens": 1985766.0,
428
+ "eval_math_runtime": 58.9383,
429
+ "eval_math_samples_per_second": 8.483,
430
+ "eval_math_steps_per_second": 8.483,
431
+ "step": 300
432
+ },
433
+ {
434
+ "epoch": 0.13353363378400934,
435
+ "eval_physics_entropy": 0.7712625939249992,
436
+ "eval_physics_loss": 0.787721574306488,
437
+ "eval_physics_mean_token_accuracy": 0.7829854927659035,
438
+ "eval_physics_num_tokens": 1985766.0,
439
+ "eval_physics_runtime": 65.8905,
440
+ "eval_physics_samples_per_second": 7.588,
441
+ "eval_physics_steps_per_second": 7.588,
442
+ "step": 300
443
+ },
444
+ {
445
+ "entropy": 0.8396226148121059,
446
+ "epoch": 0.137984754910143,
447
+ "grad_norm": 96.5,
448
+ "learning_rate": 6.18e-06,
449
+ "loss": 13.612,
450
+ "mean_token_accuracy": 0.7638351432979107,
451
+ "num_tokens": 2049041.0,
452
+ "step": 310
453
+ },
454
+ {
455
+ "entropy": 0.8020199347287417,
456
+ "epoch": 0.14243587603627664,
457
+ "grad_norm": 81.0,
458
+ "learning_rate": 6.380000000000001e-06,
459
+ "loss": 12.8945,
460
+ "mean_token_accuracy": 0.776324712112546,
461
+ "num_tokens": 2118068.0,
462
+ "step": 320
463
+ },
464
+ {
465
+ "entropy": 0.8072531137615442,
466
+ "epoch": 0.14688699716241027,
467
+ "grad_norm": 107.5,
468
+ "learning_rate": 6.5800000000000005e-06,
469
+ "loss": 12.776,
470
+ "mean_token_accuracy": 0.7789770424365997,
471
+ "num_tokens": 2186387.0,
472
+ "step": 330
473
+ },
474
+ {
475
+ "entropy": 0.8215415397658944,
476
+ "epoch": 0.15133811828854393,
477
+ "grad_norm": 84.5,
478
+ "learning_rate": 6.780000000000001e-06,
479
+ "loss": 13.3957,
480
+ "mean_token_accuracy": 0.7686271335929632,
481
+ "num_tokens": 2252650.0,
482
+ "step": 340
483
+ },
484
+ {
485
+ "entropy": 0.7919685224071145,
486
+ "epoch": 0.15578923941467757,
487
+ "grad_norm": 87.0,
488
+ "learning_rate": 6.98e-06,
489
+ "loss": 12.7862,
490
+ "mean_token_accuracy": 0.7796416375786066,
491
+ "num_tokens": 2320358.0,
492
+ "step": 350
493
+ },
494
+ {
495
+ "entropy": 0.7888439664617181,
496
+ "epoch": 0.16024036054081123,
497
+ "grad_norm": 90.5,
498
+ "learning_rate": 7.180000000000001e-06,
499
+ "loss": 12.6082,
500
+ "mean_token_accuracy": 0.7811494890600443,
501
+ "num_tokens": 2388824.0,
502
+ "step": 360
503
+ },
504
+ {
505
+ "entropy": 0.7693003987893462,
506
+ "epoch": 0.16469148166694486,
507
+ "grad_norm": 82.0,
508
+ "learning_rate": 7.3800000000000005e-06,
509
+ "loss": 12.3808,
510
+ "mean_token_accuracy": 0.7856796395033598,
511
+ "num_tokens": 2456144.0,
512
+ "step": 370
513
+ },
514
+ {
515
+ "entropy": 0.8541094154119492,
516
+ "epoch": 0.1691426027930785,
517
+ "grad_norm": 80.0,
518
+ "learning_rate": 7.58e-06,
519
+ "loss": 13.8583,
520
+ "mean_token_accuracy": 0.7654584795236588,
521
+ "num_tokens": 2515325.0,
522
+ "step": 380
523
+ },
524
+ {
525
+ "entropy": 0.7904249761253596,
526
+ "epoch": 0.17359372391921216,
527
+ "grad_norm": 68.5,
528
+ "learning_rate": 7.78e-06,
529
+ "loss": 12.659,
530
+ "mean_token_accuracy": 0.7788146499544382,
531
+ "num_tokens": 2580490.0,
532
+ "step": 390
533
+ },
534
+ {
535
+ "entropy": 0.7941560545936227,
536
+ "epoch": 0.1780448450453458,
537
+ "grad_norm": 72.5,
538
+ "learning_rate": 7.980000000000002e-06,
539
+ "loss": 12.8107,
540
+ "mean_token_accuracy": 0.7767765510827302,
541
+ "num_tokens": 2644330.0,
542
+ "step": 400
543
+ },
544
+ {
545
+ "epoch": 0.1780448450453458,
546
+ "eval_biology_entropy": 1.2128318169116974,
547
+ "eval_biology_loss": 1.3349602222442627,
548
+ "eval_biology_mean_token_accuracy": 0.6734810082316398,
549
+ "eval_biology_num_tokens": 2644330.0,
550
+ "eval_biology_runtime": 49.0571,
551
+ "eval_biology_samples_per_second": 10.192,
552
+ "eval_biology_steps_per_second": 10.192,
553
+ "step": 400
554
+ },
555
+ {
556
+ "epoch": 0.1780448450453458,
557
+ "eval_chemistry_entropy": 0.7846001248955726,
558
+ "eval_chemistry_loss": 0.798675537109375,
559
+ "eval_chemistry_mean_token_accuracy": 0.7786763918995857,
560
+ "eval_chemistry_num_tokens": 2644330.0,
561
+ "eval_chemistry_runtime": 56.9232,
562
+ "eval_chemistry_samples_per_second": 8.784,
563
+ "eval_chemistry_steps_per_second": 8.784,
564
+ "step": 400
565
+ },
566
+ {
567
+ "epoch": 0.1780448450453458,
568
+ "eval_math_entropy": 0.6919120717644691,
569
+ "eval_math_loss": 0.8597798943519592,
570
+ "eval_math_mean_token_accuracy": 0.7751281379461289,
571
+ "eval_math_num_tokens": 2644330.0,
572
+ "eval_math_runtime": 58.7801,
573
+ "eval_math_samples_per_second": 8.506,
574
+ "eval_math_steps_per_second": 8.506,
575
+ "step": 400
576
+ },
577
+ {
578
+ "epoch": 0.1780448450453458,
579
+ "eval_physics_entropy": 0.7369731608629226,
580
+ "eval_physics_loss": 0.7621525526046753,
581
+ "eval_physics_mean_token_accuracy": 0.7884504457712174,
582
+ "eval_physics_num_tokens": 2644330.0,
583
+ "eval_physics_runtime": 65.7104,
584
+ "eval_physics_samples_per_second": 7.609,
585
+ "eval_physics_steps_per_second": 7.609,
586
+ "step": 400
587
+ },
588
+ {
589
+ "entropy": 0.7377481091767549,
590
+ "epoch": 0.18249596617147945,
591
+ "grad_norm": 73.0,
592
+ "learning_rate": 8.18e-06,
593
+ "loss": 11.7926,
594
+ "mean_token_accuracy": 0.7937501568347216,
595
+ "num_tokens": 2713234.0,
596
+ "step": 410
597
+ },
598
+ {
599
+ "entropy": 0.7830979386344552,
600
+ "epoch": 0.18694708729761308,
601
+ "grad_norm": 76.5,
602
+ "learning_rate": 8.380000000000001e-06,
603
+ "loss": 12.9301,
604
+ "mean_token_accuracy": 0.7784280318766832,
605
+ "num_tokens": 2783261.0,
606
+ "step": 420
607
+ },
608
+ {
609
+ "entropy": 0.7945666501298547,
610
+ "epoch": 0.19139820842374672,
611
+ "grad_norm": 61.5,
612
+ "learning_rate": 8.580000000000001e-06,
613
+ "loss": 12.6515,
614
+ "mean_token_accuracy": 0.7819751728326082,
615
+ "num_tokens": 2850170.0,
616
+ "step": 430
617
+ },
618
+ {
619
+ "entropy": 0.7770357062108815,
620
+ "epoch": 0.19584932954988038,
621
+ "grad_norm": 75.0,
622
+ "learning_rate": 8.78e-06,
623
+ "loss": 12.5072,
624
+ "mean_token_accuracy": 0.7829508323222398,
625
+ "num_tokens": 2913700.0,
626
+ "step": 440
627
+ },
628
+ {
629
+ "entropy": 0.7575128111988306,
630
+ "epoch": 0.200300450676014,
631
+ "grad_norm": 81.0,
632
+ "learning_rate": 8.98e-06,
633
+ "loss": 12.4714,
634
+ "mean_token_accuracy": 0.7839657858014106,
635
+ "num_tokens": 2981212.0,
636
+ "step": 450
637
+ },
638
+ {
639
+ "entropy": 0.7656491708010436,
640
+ "epoch": 0.20475157180214767,
641
+ "grad_norm": 85.0,
642
+ "learning_rate": 9.180000000000002e-06,
643
+ "loss": 12.0974,
644
+ "mean_token_accuracy": 0.7915447618812322,
645
+ "num_tokens": 3048973.0,
646
+ "step": 460
647
+ },
648
+ {
649
+ "entropy": 0.7621381992474199,
650
+ "epoch": 0.2092026929282813,
651
+ "grad_norm": 61.75,
652
+ "learning_rate": 9.38e-06,
653
+ "loss": 12.5808,
654
+ "mean_token_accuracy": 0.7818816823884844,
655
+ "num_tokens": 3117033.0,
656
+ "step": 470
657
+ },
658
+ {
659
+ "entropy": 0.7816813634708524,
660
+ "epoch": 0.21365381405441494,
661
+ "grad_norm": 73.5,
662
+ "learning_rate": 9.58e-06,
663
+ "loss": 12.3819,
664
+ "mean_token_accuracy": 0.7846902538090944,
665
+ "num_tokens": 3185255.0,
666
+ "step": 480
667
+ },
668
+ {
669
+ "entropy": 0.7647983279079199,
670
+ "epoch": 0.2181049351805486,
671
+ "grad_norm": 76.5,
672
+ "learning_rate": 9.780000000000001e-06,
673
+ "loss": 12.4249,
674
+ "mean_token_accuracy": 0.7847896091639995,
675
+ "num_tokens": 3253121.0,
676
+ "step": 490
677
+ },
678
+ {
679
+ "entropy": 0.7214844634756445,
680
+ "epoch": 0.22255605630668224,
681
+ "grad_norm": 75.5,
682
+ "learning_rate": 9.980000000000001e-06,
683
+ "loss": 11.4214,
684
+ "mean_token_accuracy": 0.7984224483370781,
685
+ "num_tokens": 3322823.0,
686
+ "step": 500
687
+ },
688
+ {
689
+ "epoch": 0.22255605630668224,
690
+ "eval_biology_entropy": 1.1607659912109376,
691
+ "eval_biology_loss": 1.328081488609314,
692
+ "eval_biology_mean_token_accuracy": 0.6758214622139931,
693
+ "eval_biology_num_tokens": 3322823.0,
694
+ "eval_biology_runtime": 49.1342,
695
+ "eval_biology_samples_per_second": 10.176,
696
+ "eval_biology_steps_per_second": 10.176,
697
+ "step": 500
698
+ },
699
+ {
700
+ "epoch": 0.22255605630668224,
701
+ "eval_chemistry_entropy": 0.7407792928814888,
702
+ "eval_chemistry_loss": 0.775718629360199,
703
+ "eval_chemistry_mean_token_accuracy": 0.7834744991064072,
704
+ "eval_chemistry_num_tokens": 3322823.0,
705
+ "eval_chemistry_runtime": 57.1618,
706
+ "eval_chemistry_samples_per_second": 8.747,
707
+ "eval_chemistry_steps_per_second": 8.747,
708
+ "step": 500
709
+ },
710
+ {
711
+ "epoch": 0.22255605630668224,
712
+ "eval_math_entropy": 0.6776470097601414,
713
+ "eval_math_loss": 0.8585710525512695,
714
+ "eval_math_mean_token_accuracy": 0.7761784045696258,
715
+ "eval_math_num_tokens": 3322823.0,
716
+ "eval_math_runtime": 58.8725,
717
+ "eval_math_samples_per_second": 8.493,
718
+ "eval_math_steps_per_second": 8.493,
719
+ "step": 500
720
+ },
721
+ {
722
+ "epoch": 0.22255605630668224,
723
+ "eval_physics_entropy": 0.7148050211071968,
724
+ "eval_physics_loss": 0.7503296732902527,
725
+ "eval_physics_mean_token_accuracy": 0.7919680835604668,
726
+ "eval_physics_num_tokens": 3322823.0,
727
+ "eval_physics_runtime": 65.8508,
728
+ "eval_physics_samples_per_second": 7.593,
729
+ "eval_physics_steps_per_second": 7.593,
730
+ "step": 500
731
+ },
732
+ {
733
+ "entropy": 0.7285958690568805,
734
+ "epoch": 0.2270071774328159,
735
+ "grad_norm": 72.5,
736
+ "learning_rate": 1.018e-05,
737
+ "loss": 11.8973,
738
+ "mean_token_accuracy": 0.7914360746741295,
739
+ "num_tokens": 3393393.0,
740
+ "step": 510
741
+ },
742
+ {
743
+ "entropy": 0.8255035754293203,
744
+ "epoch": 0.23145829855894953,
745
+ "grad_norm": 80.0,
746
+ "learning_rate": 1.038e-05,
747
+ "loss": 13.0946,
748
+ "mean_token_accuracy": 0.774183202162385,
749
+ "num_tokens": 3454750.0,
750
+ "step": 520
751
+ },
752
+ {
753
+ "entropy": 0.708361669909209,
754
+ "epoch": 0.2359094196850832,
755
+ "grad_norm": 71.0,
756
+ "learning_rate": 1.0580000000000002e-05,
757
+ "loss": 11.7446,
758
+ "mean_token_accuracy": 0.7961884457617998,
759
+ "num_tokens": 3526914.0,
760
+ "step": 530
761
+ },
762
+ {
763
+ "entropy": 0.8215967276133597,
764
+ "epoch": 0.24036054081121683,
765
+ "grad_norm": 79.0,
766
+ "learning_rate": 1.0780000000000002e-05,
767
+ "loss": 13.0207,
768
+ "mean_token_accuracy": 0.7765944451093674,
769
+ "num_tokens": 3589449.0,
770
+ "step": 540
771
+ },
772
+ {
773
+ "entropy": 0.7564663768745958,
774
+ "epoch": 0.24481166193735046,
775
+ "grad_norm": 82.0,
776
+ "learning_rate": 1.0980000000000002e-05,
777
+ "loss": 12.2873,
778
+ "mean_token_accuracy": 0.7854228101670742,
779
+ "num_tokens": 3655092.0,
780
+ "step": 550
781
+ },
782
+ {
783
+ "entropy": 0.7720718337222934,
784
+ "epoch": 0.24926278306348412,
785
+ "grad_norm": 90.5,
786
+ "learning_rate": 1.1180000000000001e-05,
787
+ "loss": 12.4637,
788
+ "mean_token_accuracy": 0.7846879370510578,
789
+ "num_tokens": 3719113.0,
790
+ "step": 560
791
+ },
792
+ {
793
+ "entropy": 0.7583298075944185,
794
+ "epoch": 0.25371390418961776,
795
+ "grad_norm": 66.5,
796
+ "learning_rate": 1.138e-05,
797
+ "loss": 12.4348,
798
+ "mean_token_accuracy": 0.781843975931406,
799
+ "num_tokens": 3785282.0,
800
+ "step": 570
801
+ },
802
+ {
803
+ "entropy": 0.7643377220258116,
804
+ "epoch": 0.2581650253157514,
805
+ "grad_norm": 63.75,
806
+ "learning_rate": 1.1580000000000001e-05,
807
+ "loss": 12.4092,
808
+ "mean_token_accuracy": 0.7843703482300043,
809
+ "num_tokens": 3852276.0,
810
+ "step": 580
811
+ },
812
+ {
813
+ "entropy": 0.7012410337105394,
814
+ "epoch": 0.262616146441885,
815
+ "grad_norm": 67.0,
816
+ "learning_rate": 1.178e-05,
817
+ "loss": 11.3623,
818
+ "mean_token_accuracy": 0.7991111058741808,
819
+ "num_tokens": 3925649.0,
820
+ "step": 590
821
+ },
822
+ {
823
+ "entropy": 0.7401338685303926,
824
+ "epoch": 0.2670672675680187,
825
+ "grad_norm": 71.5,
826
+ "learning_rate": 1.198e-05,
827
+ "loss": 11.9064,
828
+ "mean_token_accuracy": 0.7897865924984216,
829
+ "num_tokens": 3990505.0,
830
+ "step": 600
831
+ },
832
+ {
833
+ "epoch": 0.2670672675680187,
834
+ "eval_biology_entropy": 1.216272303700447,
835
+ "eval_biology_loss": 1.3142751455307007,
836
+ "eval_biology_mean_token_accuracy": 0.6766086940765381,
837
+ "eval_biology_num_tokens": 3990505.0,
838
+ "eval_biology_runtime": 49.3541,
839
+ "eval_biology_samples_per_second": 10.131,
840
+ "eval_biology_steps_per_second": 10.131,
841
+ "step": 600
842
+ },
843
+ {
844
+ "epoch": 0.2670672675680187,
845
+ "eval_chemistry_entropy": 0.7538464320898056,
846
+ "eval_chemistry_loss": 0.7621961832046509,
847
+ "eval_chemistry_mean_token_accuracy": 0.7865861940383911,
848
+ "eval_chemistry_num_tokens": 3990505.0,
849
+ "eval_chemistry_runtime": 57.3005,
850
+ "eval_chemistry_samples_per_second": 8.726,
851
+ "eval_chemistry_steps_per_second": 8.726,
852
+ "step": 600
853
+ },
854
+ {
855
+ "epoch": 0.2670672675680187,
856
+ "eval_math_entropy": 0.6806064413189888,
857
+ "eval_math_loss": 0.8638136982917786,
858
+ "eval_math_mean_token_accuracy": 0.7749927558898926,
859
+ "eval_math_num_tokens": 3990505.0,
860
+ "eval_math_runtime": 59.1764,
861
+ "eval_math_samples_per_second": 8.449,
862
+ "eval_math_steps_per_second": 8.449,
863
+ "step": 600
864
+ },
865
+ {
866
+ "epoch": 0.2670672675680187,
867
+ "eval_physics_entropy": 0.7255966661572456,
868
+ "eval_physics_loss": 0.7440791726112366,
869
+ "eval_physics_mean_token_accuracy": 0.7921827912330628,
870
+ "eval_physics_num_tokens": 3990505.0,
871
+ "eval_physics_runtime": 66.0704,
872
+ "eval_physics_samples_per_second": 7.568,
873
+ "eval_physics_steps_per_second": 7.568,
874
+ "step": 600
875
+ },
876
+ {
877
+ "entropy": 0.738010767288506,
878
+ "epoch": 0.27151838869415235,
879
+ "grad_norm": 64.0,
880
+ "learning_rate": 1.218e-05,
881
+ "loss": 11.9409,
882
+ "mean_token_accuracy": 0.7896174006164074,
883
+ "num_tokens": 4060657.0,
884
+ "step": 610
885
+ },
886
+ {
887
+ "entropy": 0.7203703055158257,
888
+ "epoch": 0.275969509820286,
889
+ "grad_norm": 67.0,
890
+ "learning_rate": 1.2380000000000002e-05,
891
+ "loss": 11.5655,
892
+ "mean_token_accuracy": 0.7945824809372425,
893
+ "num_tokens": 4133119.0,
894
+ "step": 620
895
+ },
896
+ {
897
+ "entropy": 0.743073652498424,
898
+ "epoch": 0.2804206309464196,
899
+ "grad_norm": 69.5,
900
+ "learning_rate": 1.2580000000000002e-05,
901
+ "loss": 12.0073,
902
+ "mean_token_accuracy": 0.7911369562149048,
903
+ "num_tokens": 4200051.0,
904
+ "step": 630
905
+ },
906
+ {
907
+ "entropy": 0.7967112486250698,
908
+ "epoch": 0.2848717520725533,
909
+ "grad_norm": 72.5,
910
+ "learning_rate": 1.2780000000000001e-05,
911
+ "loss": 12.7974,
912
+ "mean_token_accuracy": 0.7836818125098943,
913
+ "num_tokens": 4267403.0,
914
+ "step": 640
915
+ },
916
+ {
917
+ "entropy": 0.7334000766277313,
918
+ "epoch": 0.28932287319868694,
919
+ "grad_norm": 71.5,
920
+ "learning_rate": 1.2980000000000001e-05,
921
+ "loss": 11.8952,
922
+ "mean_token_accuracy": 0.7923904918134212,
923
+ "num_tokens": 4333268.0,
924
+ "step": 650
925
+ },
926
+ {
927
+ "entropy": 0.7248436002992094,
928
+ "epoch": 0.29377399432482054,
929
+ "grad_norm": 79.5,
930
+ "learning_rate": 1.3180000000000001e-05,
931
+ "loss": 11.7473,
932
+ "mean_token_accuracy": 0.7948706120252609,
933
+ "num_tokens": 4400242.0,
934
+ "step": 660
935
+ },
936
+ {
937
+ "entropy": 0.7555086806416511,
938
+ "epoch": 0.2982251154509542,
939
+ "grad_norm": 77.0,
940
+ "learning_rate": 1.3380000000000002e-05,
941
+ "loss": 12.0493,
942
+ "mean_token_accuracy": 0.7891406118869781,
943
+ "num_tokens": 4464714.0,
944
+ "step": 670
945
+ },
946
+ {
947
+ "entropy": 0.7099162889644504,
948
+ "epoch": 0.30267623657708786,
949
+ "grad_norm": 62.75,
950
+ "learning_rate": 1.3580000000000002e-05,
951
+ "loss": 11.5969,
952
+ "mean_token_accuracy": 0.7962878335267305,
953
+ "num_tokens": 4535458.0,
954
+ "step": 680
955
+ },
956
+ {
957
+ "entropy": 0.7450342487543822,
958
+ "epoch": 0.3071273577032215,
959
+ "grad_norm": 66.5,
960
+ "learning_rate": 1.378e-05,
961
+ "loss": 11.9777,
962
+ "mean_token_accuracy": 0.7921688258647919,
963
+ "num_tokens": 4599099.0,
964
+ "step": 690
965
+ },
966
+ {
967
+ "entropy": 0.7137214630842209,
968
+ "epoch": 0.31157847882935513,
969
+ "grad_norm": 56.5,
970
+ "learning_rate": 1.398e-05,
971
+ "loss": 11.5022,
972
+ "mean_token_accuracy": 0.7959922354668378,
973
+ "num_tokens": 4662903.0,
974
+ "step": 700
975
+ },
976
+ {
977
+ "epoch": 0.31157847882935513,
978
+ "eval_biology_entropy": 1.21318653935194,
979
+ "eval_biology_loss": 1.3126111030578613,
980
+ "eval_biology_mean_token_accuracy": 0.6781674832701683,
981
+ "eval_biology_num_tokens": 4662903.0,
982
+ "eval_biology_runtime": 49.2021,
983
+ "eval_biology_samples_per_second": 10.162,
984
+ "eval_biology_steps_per_second": 10.162,
985
+ "step": 700
986
+ },
987
+ {
988
+ "epoch": 0.31157847882935513,
989
+ "eval_chemistry_entropy": 0.7448744902908802,
990
+ "eval_chemistry_loss": 0.7531416416168213,
991
+ "eval_chemistry_mean_token_accuracy": 0.788379067659378,
992
+ "eval_chemistry_num_tokens": 4662903.0,
993
+ "eval_chemistry_runtime": 57.0266,
994
+ "eval_chemistry_samples_per_second": 8.768,
995
+ "eval_chemistry_steps_per_second": 8.768,
996
+ "step": 700
997
+ },
998
+ {
999
+ "epoch": 0.31157847882935513,
1000
+ "eval_math_entropy": 0.6775659238696098,
1001
+ "eval_math_loss": 0.8588793277740479,
1002
+ "eval_math_mean_token_accuracy": 0.7769290524721145,
1003
+ "eval_math_num_tokens": 4662903.0,
1004
+ "eval_math_runtime": 58.9903,
1005
+ "eval_math_samples_per_second": 8.476,
1006
+ "eval_math_steps_per_second": 8.476,
1007
+ "step": 700
1008
+ },
1009
+ {
1010
+ "epoch": 0.31157847882935513,
1011
+ "eval_physics_entropy": 0.7208585093617439,
1012
+ "eval_physics_loss": 0.7438266277313232,
1013
+ "eval_physics_mean_token_accuracy": 0.792436719596386,
1014
+ "eval_physics_num_tokens": 4662903.0,
1015
+ "eval_physics_runtime": 65.9428,
1016
+ "eval_physics_samples_per_second": 7.582,
1017
+ "eval_physics_steps_per_second": 7.582,
1018
+ "step": 700
1019
+ },
1020
+ {
1021
+ "entropy": 0.7532984343357384,
1022
+ "epoch": 0.3160295999554888,
1023
+ "grad_norm": 82.5,
1024
+ "learning_rate": 1.418e-05,
1025
+ "loss": 12.3646,
1026
+ "mean_token_accuracy": 0.7847790695726872,
1027
+ "num_tokens": 4729166.0,
1028
+ "step": 710
1029
+ },
1030
+ {
1031
+ "entropy": 0.7946592880412936,
1032
+ "epoch": 0.32048072108162245,
1033
+ "grad_norm": 79.0,
1034
+ "learning_rate": 1.4380000000000001e-05,
1035
+ "loss": 12.7491,
1036
+ "mean_token_accuracy": 0.7800281438976526,
1037
+ "num_tokens": 4796815.0,
1038
+ "step": 720
1039
+ },
1040
+ {
1041
+ "entropy": 0.6913739880546927,
1042
+ "epoch": 0.32493184220775606,
1043
+ "grad_norm": 68.0,
1044
+ "learning_rate": 1.4580000000000001e-05,
1045
+ "loss": 11.0843,
1046
+ "mean_token_accuracy": 0.803905238583684,
1047
+ "num_tokens": 4865172.0,
1048
+ "step": 730
1049
+ },
1050
+ {
1051
+ "entropy": 0.7447662945836783,
1052
+ "epoch": 0.3293829633338897,
1053
+ "grad_norm": 65.5,
1054
+ "learning_rate": 1.478e-05,
1055
+ "loss": 12.1577,
1056
+ "mean_token_accuracy": 0.7854402553290128,
1057
+ "num_tokens": 4932671.0,
1058
+ "step": 740
1059
+ },
1060
+ {
1061
+ "entropy": 0.7749863206408918,
1062
+ "epoch": 0.3338340844600234,
1063
+ "grad_norm": 64.0,
1064
+ "learning_rate": 1.498e-05,
1065
+ "loss": 12.4497,
1066
+ "mean_token_accuracy": 0.7847358033061027,
1067
+ "num_tokens": 4998710.0,
1068
+ "step": 750
1069
+ },
1070
+ {
1071
+ "entropy": 0.7126937594264746,
1072
+ "epoch": 0.338285205586157,
1073
+ "grad_norm": 65.5,
1074
+ "learning_rate": 1.5180000000000002e-05,
1075
+ "loss": 11.549,
1076
+ "mean_token_accuracy": 0.7943205136805773,
1077
+ "num_tokens": 5066948.0,
1078
+ "step": 760
1079
+ },
1080
+ {
1081
+ "entropy": 0.7463799838908016,
1082
+ "epoch": 0.34273632671229065,
1083
+ "grad_norm": 66.5,
1084
+ "learning_rate": 1.5380000000000002e-05,
1085
+ "loss": 12.052,
1086
+ "mean_token_accuracy": 0.7893575474619865,
1087
+ "num_tokens": 5129950.0,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "entropy": 0.7669129572808743,
1092
+ "epoch": 0.3471874478384243,
1093
+ "grad_norm": 64.5,
1094
+ "learning_rate": 1.5580000000000003e-05,
1095
+ "loss": 12.4587,
1096
+ "mean_token_accuracy": 0.7811328556388617,
1097
+ "num_tokens": 5193519.0,
1098
+ "step": 780
1099
+ },
1100
+ {
1101
+ "entropy": 0.7404427804984153,
1102
+ "epoch": 0.351638568964558,
1103
+ "grad_norm": 87.0,
1104
+ "learning_rate": 1.578e-05,
1105
+ "loss": 11.9383,
1106
+ "mean_token_accuracy": 0.7870475023984909,
1107
+ "num_tokens": 5256503.0,
1108
+ "step": 790
1109
+ },
1110
+ {
1111
+ "entropy": 0.8177574999630451,
1112
+ "epoch": 0.3560896900906916,
1113
+ "grad_norm": 69.0,
1114
+ "learning_rate": 1.5980000000000003e-05,
1115
+ "loss": 13.1167,
1116
+ "mean_token_accuracy": 0.7771423246711493,
1117
+ "num_tokens": 5324751.0,
1118
+ "step": 800
1119
+ },
1120
+ {
1121
+ "epoch": 0.3560896900906916,
1122
+ "eval_biology_entropy": 1.2992450638413429,
1123
+ "eval_biology_loss": 1.3091635704040527,
1124
+ "eval_biology_mean_token_accuracy": 0.6765963944792748,
1125
+ "eval_biology_num_tokens": 5324751.0,
1126
+ "eval_biology_runtime": 49.4045,
1127
+ "eval_biology_samples_per_second": 10.121,
1128
+ "eval_biology_steps_per_second": 10.121,
1129
+ "step": 800
1130
+ },
1131
+ {
1132
+ "epoch": 0.3560896900906916,
1133
+ "eval_chemistry_entropy": 0.7858416083455085,
1134
+ "eval_chemistry_loss": 0.755605936050415,
1135
+ "eval_chemistry_mean_token_accuracy": 0.7878280827403068,
1136
+ "eval_chemistry_num_tokens": 5324751.0,
1137
+ "eval_chemistry_runtime": 57.2096,
1138
+ "eval_chemistry_samples_per_second": 8.74,
1139
+ "eval_chemistry_steps_per_second": 8.74,
1140
+ "step": 800
1141
+ },
1142
+ {
1143
+ "epoch": 0.3560896900906916,
1144
+ "eval_math_entropy": 0.7085552672445774,
1145
+ "eval_math_loss": 0.8628776669502258,
1146
+ "eval_math_mean_token_accuracy": 0.7751141096353531,
1147
+ "eval_math_num_tokens": 5324751.0,
1148
+ "eval_math_runtime": 58.9925,
1149
+ "eval_math_samples_per_second": 8.476,
1150
+ "eval_math_steps_per_second": 8.476,
1151
+ "step": 800
1152
+ },
1153
+ {
1154
+ "epoch": 0.3560896900906916,
1155
+ "eval_physics_entropy": 0.7641420513391495,
1156
+ "eval_physics_loss": 0.7484508156776428,
1157
+ "eval_physics_mean_token_accuracy": 0.7914790090918541,
1158
+ "eval_physics_num_tokens": 5324751.0,
1159
+ "eval_physics_runtime": 65.8581,
1160
+ "eval_physics_samples_per_second": 7.592,
1161
+ "eval_physics_steps_per_second": 7.592,
1162
+ "step": 800
1163
+ },
1164
+ {
1165
+ "entropy": 0.6714803985320031,
1166
+ "epoch": 0.36054081121682524,
1167
+ "grad_norm": 65.5,
1168
+ "learning_rate": 1.618e-05,
1169
+ "loss": 11.0959,
1170
+ "mean_token_accuracy": 0.8037038501352072,
1171
+ "num_tokens": 5391664.0,
1172
+ "step": 810
1173
+ },
1174
+ {
1175
+ "entropy": 0.7128949659876526,
1176
+ "epoch": 0.3649919323429589,
1177
+ "grad_norm": 71.5,
1178
+ "learning_rate": 1.638e-05,
1179
+ "loss": 11.223,
1180
+ "mean_token_accuracy": 0.7998184654861689,
1181
+ "num_tokens": 5458519.0,
1182
+ "step": 820
1183
+ },
1184
+ {
1185
+ "entropy": 0.7470979234203696,
1186
+ "epoch": 0.3694430534690925,
1187
+ "grad_norm": 64.5,
1188
+ "learning_rate": 1.658e-05,
1189
+ "loss": 12.1501,
1190
+ "mean_token_accuracy": 0.7894150543957948,
1191
+ "num_tokens": 5523391.0,
1192
+ "step": 830
1193
+ },
1194
+ {
1195
+ "entropy": 0.7144336312077939,
1196
+ "epoch": 0.37389417459522617,
1197
+ "grad_norm": 61.25,
1198
+ "learning_rate": 1.6780000000000002e-05,
1199
+ "loss": 11.736,
1200
+ "mean_token_accuracy": 0.7935146864503622,
1201
+ "num_tokens": 5585508.0,
1202
+ "step": 840
1203
+ },
1204
+ {
1205
+ "entropy": 0.7430889600887894,
1206
+ "epoch": 0.37834529572135983,
1207
+ "grad_norm": 72.0,
1208
+ "learning_rate": 1.698e-05,
1209
+ "loss": 11.8763,
1210
+ "mean_token_accuracy": 0.7954710725694895,
1211
+ "num_tokens": 5650755.0,
1212
+ "step": 850
1213
+ },
1214
+ {
1215
+ "entropy": 0.7431833678856492,
1216
+ "epoch": 0.38279641684749344,
1217
+ "grad_norm": 62.25,
1218
+ "learning_rate": 1.718e-05,
1219
+ "loss": 11.9703,
1220
+ "mean_token_accuracy": 0.7893174722790718,
1221
+ "num_tokens": 5716321.0,
1222
+ "step": 860
1223
+ },
1224
+ {
1225
+ "entropy": 0.7719974908977747,
1226
+ "epoch": 0.3872475379736271,
1227
+ "grad_norm": 66.5,
1228
+ "learning_rate": 1.7380000000000003e-05,
1229
+ "loss": 12.4773,
1230
+ "mean_token_accuracy": 0.7817879624664783,
1231
+ "num_tokens": 5782698.0,
1232
+ "step": 870
1233
+ },
1234
+ {
1235
+ "entropy": 0.7235654108226299,
1236
+ "epoch": 0.39169865909976076,
1237
+ "grad_norm": 53.75,
1238
+ "learning_rate": 1.758e-05,
1239
+ "loss": 11.6881,
1240
+ "mean_token_accuracy": 0.7943595319986343,
1241
+ "num_tokens": 5848889.0,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "entropy": 0.7637507017701864,
1246
+ "epoch": 0.3961497802258944,
1247
+ "grad_norm": 64.0,
1248
+ "learning_rate": 1.7780000000000003e-05,
1249
+ "loss": 12.5431,
1250
+ "mean_token_accuracy": 0.7863847129046917,
1251
+ "num_tokens": 5912919.0,
1252
+ "step": 890
1253
+ },
1254
+ {
1255
+ "entropy": 0.742395118996501,
1256
+ "epoch": 0.400600901352028,
1257
+ "grad_norm": 57.5,
1258
+ "learning_rate": 1.798e-05,
1259
+ "loss": 11.9098,
1260
+ "mean_token_accuracy": 0.79401213824749,
1261
+ "num_tokens": 5980229.0,
1262
+ "step": 900
1263
+ },
1264
+ {
1265
+ "epoch": 0.400600901352028,
1266
+ "eval_biology_entropy": 1.2397134986519813,
1267
+ "eval_biology_loss": 1.3142763376235962,
1268
+ "eval_biology_mean_token_accuracy": 0.6771629434227944,
1269
+ "eval_biology_num_tokens": 5980229.0,
1270
+ "eval_biology_runtime": 49.4582,
1271
+ "eval_biology_samples_per_second": 10.11,
1272
+ "eval_biology_steps_per_second": 10.11,
1273
+ "step": 900
1274
+ },
1275
+ {
1276
+ "epoch": 0.400600901352028,
1277
+ "eval_chemistry_entropy": 0.748387647986412,
1278
+ "eval_chemistry_loss": 0.7568163275718689,
1279
+ "eval_chemistry_mean_token_accuracy": 0.7869879400134087,
1280
+ "eval_chemistry_num_tokens": 5980229.0,
1281
+ "eval_chemistry_runtime": 57.0636,
1282
+ "eval_chemistry_samples_per_second": 8.762,
1283
+ "eval_chemistry_steps_per_second": 8.762,
1284
+ "step": 900
1285
+ },
1286
+ {
1287
+ "epoch": 0.400600901352028,
1288
+ "eval_math_entropy": 0.6898269492387772,
1289
+ "eval_math_loss": 0.866584062576294,
1290
+ "eval_math_mean_token_accuracy": 0.7752813557386399,
1291
+ "eval_math_num_tokens": 5980229.0,
1292
+ "eval_math_runtime": 59.1998,
1293
+ "eval_math_samples_per_second": 8.446,
1294
+ "eval_math_steps_per_second": 8.446,
1295
+ "step": 900
1296
+ },
1297
+ {
1298
+ "epoch": 0.400600901352028,
1299
+ "eval_physics_entropy": 0.7360889357328415,
1300
+ "eval_physics_loss": 0.7502807378768921,
1301
+ "eval_physics_mean_token_accuracy": 0.7913857514262199,
1302
+ "eval_physics_num_tokens": 5980229.0,
1303
+ "eval_physics_runtime": 66.2752,
1304
+ "eval_physics_samples_per_second": 7.544,
1305
+ "eval_physics_steps_per_second": 7.544,
1306
+ "step": 900
1307
+ },
1308
+ {
1309
+ "entropy": 0.6976769424974918,
1310
+ "epoch": 0.4050520224781617,
1311
+ "grad_norm": 57.75,
1312
+ "learning_rate": 1.8180000000000002e-05,
1313
+ "loss": 11.373,
1314
+ "mean_token_accuracy": 0.7986949652433395,
1315
+ "num_tokens": 6048508.0,
1316
+ "step": 910
1317
+ },
1318
+ {
1319
+ "entropy": 0.7293819307349623,
1320
+ "epoch": 0.40950314360429535,
1321
+ "grad_norm": 59.75,
1322
+ "learning_rate": 1.8380000000000004e-05,
1323
+ "loss": 11.7158,
1324
+ "mean_token_accuracy": 0.7940746705979109,
1325
+ "num_tokens": 6114855.0,
1326
+ "step": 920
1327
+ },
1328
+ {
1329
+ "entropy": 0.7529061837121844,
1330
+ "epoch": 0.41395426473042896,
1331
+ "grad_norm": 58.5,
1332
+ "learning_rate": 1.858e-05,
1333
+ "loss": 12.1233,
1334
+ "mean_token_accuracy": 0.7879564348608256,
1335
+ "num_tokens": 6179050.0,
1336
+ "step": 930
1337
+ },
1338
+ {
1339
+ "entropy": 0.7420403499156236,
1340
+ "epoch": 0.4184053858565626,
1341
+ "grad_norm": 60.25,
1342
+ "learning_rate": 1.878e-05,
1343
+ "loss": 12.11,
1344
+ "mean_token_accuracy": 0.7902424175292253,
1345
+ "num_tokens": 6244987.0,
1346
+ "step": 940
1347
+ },
1348
+ {
1349
+ "entropy": 0.7153761054389178,
1350
+ "epoch": 0.4228565069826963,
1351
+ "grad_norm": 65.0,
1352
+ "learning_rate": 1.898e-05,
1353
+ "loss": 11.5745,
1354
+ "mean_token_accuracy": 0.7952297408133745,
1355
+ "num_tokens": 6310799.0,
1356
+ "step": 950
1357
+ },
1358
+ {
1359
+ "entropy": 0.7087640034034848,
1360
+ "epoch": 0.4273076281088299,
1361
+ "grad_norm": 62.5,
1362
+ "learning_rate": 1.918e-05,
1363
+ "loss": 11.5358,
1364
+ "mean_token_accuracy": 0.7965508222579956,
1365
+ "num_tokens": 6378152.0,
1366
+ "step": 960
1367
+ },
1368
+ {
1369
+ "entropy": 0.7380615974776447,
1370
+ "epoch": 0.43175874923496355,
1371
+ "grad_norm": 52.25,
1372
+ "learning_rate": 1.938e-05,
1373
+ "loss": 11.7537,
1374
+ "mean_token_accuracy": 0.7940621051937342,
1375
+ "num_tokens": 6442491.0,
1376
+ "step": 970
1377
+ },
1378
+ {
1379
+ "entropy": 0.7700119714252651,
1380
+ "epoch": 0.4362098703610972,
1381
+ "grad_norm": 55.75,
1382
+ "learning_rate": 1.9580000000000002e-05,
1383
+ "loss": 12.5586,
1384
+ "mean_token_accuracy": 0.7843215424567461,
1385
+ "num_tokens": 6510231.0,
1386
+ "step": 980
1387
+ },
1388
+ {
1389
+ "entropy": 0.7417776238173246,
1390
+ "epoch": 0.44066099148723087,
1391
+ "grad_norm": 57.25,
1392
+ "learning_rate": 1.978e-05,
1393
+ "loss": 12.0337,
1394
+ "mean_token_accuracy": 0.7908143695443869,
1395
+ "num_tokens": 6572858.0,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "entropy": 0.7601414297707378,
1400
+ "epoch": 0.4451121126133645,
1401
+ "grad_norm": 49.75,
1402
+ "learning_rate": 1.9980000000000002e-05,
1403
+ "loss": 12.3686,
1404
+ "mean_token_accuracy": 0.7845167253166437,
1405
+ "num_tokens": 6637273.0,
1406
+ "step": 1000
1407
+ },
1408
+ {
1409
+ "epoch": 0.4451121126133645,
1410
+ "eval_biology_entropy": 1.2479438411593438,
1411
+ "eval_biology_loss": 1.3289152383804321,
1412
+ "eval_biology_mean_token_accuracy": 0.67418065315485,
1413
+ "eval_biology_num_tokens": 6637273.0,
1414
+ "eval_biology_runtime": 49.5469,
1415
+ "eval_biology_samples_per_second": 10.091,
1416
+ "eval_biology_steps_per_second": 10.091,
1417
+ "step": 1000
1418
+ },
1419
+ {
1420
+ "epoch": 0.4451121126133645,
1421
+ "eval_chemistry_entropy": 0.7556402538418769,
1422
+ "eval_chemistry_loss": 0.7549638748168945,
1423
+ "eval_chemistry_mean_token_accuracy": 0.7876601304411888,
1424
+ "eval_chemistry_num_tokens": 6637273.0,
1425
+ "eval_chemistry_runtime": 57.6175,
1426
+ "eval_chemistry_samples_per_second": 8.678,
1427
+ "eval_chemistry_steps_per_second": 8.678,
1428
+ "step": 1000
1429
+ },
1430
+ {
1431
+ "epoch": 0.4451121126133645,
1432
+ "eval_math_entropy": 0.7018868820667267,
1433
+ "eval_math_loss": 0.8697984218597412,
1434
+ "eval_math_mean_token_accuracy": 0.7734663159847259,
1435
+ "eval_math_num_tokens": 6637273.0,
1436
+ "eval_math_runtime": 59.4977,
1437
+ "eval_math_samples_per_second": 8.404,
1438
+ "eval_math_steps_per_second": 8.404,
1439
+ "step": 1000
1440
+ },
1441
+ {
1442
+ "epoch": 0.4451121126133645,
1443
+ "eval_physics_entropy": 0.7586731649637223,
1444
+ "eval_physics_loss": 0.7596898078918457,
1445
+ "eval_physics_mean_token_accuracy": 0.7887503932714462,
1446
+ "eval_physics_num_tokens": 6637273.0,
1447
+ "eval_physics_runtime": 66.4638,
1448
+ "eval_physics_samples_per_second": 7.523,
1449
+ "eval_physics_steps_per_second": 7.523,
1450
+ "step": 1000
1451
+ }
1452
+ ],
1453
+ "logging_steps": 10,
1454
+ "max_steps": 10000,
1455
+ "num_input_tokens_seen": 0,
1456
+ "num_train_epochs": 5,
1457
+ "save_steps": 500,
1458
+ "stateful_callbacks": {
1459
+ "TrainerControl": {
1460
+ "args": {
1461
+ "should_epoch_stop": false,
1462
+ "should_evaluate": false,
1463
+ "should_log": false,
1464
+ "should_save": true,
1465
+ "should_training_stop": false
1466
+ },
1467
+ "attributes": {}
1468
+ }
1469
+ },
1470
+ "total_flos": 4.450581354264347e+17,
1471
+ "train_batch_size": 1,
1472
+ "trial_name": null,
1473
+ "trial_params": null
1474
+ }
checkpoint-1000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b80264a99be4159d429211f23358658801bacbe62b4f9fe61436651407442503
3
+ size 6481