arunasank commited on
Commit
45d4046
·
verified ·
1 Parent(s): 7c0c12b

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:7cee411d9d57324e50ce064a192cc5a858276d508611b12fc599e0c9767112e0
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:ea3ee9d6dac79952a851527bb64d6a142d02cd6dc1b182eaae599eff21352d2c
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:10d499da845841a77c8871ad3df1cff8c68ff794706b4514402c432fc35386a8
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:7a1730b4556d5ab8c4d715d03d23833dbd6093dc483e28c2bb532fae33f21bbd
3
+ size 1793214689
checkpoint-1000/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:471b1c653aabe47d1dda07893496c6ec8f21353cd348bef0e1f9b8b6dd76552c
3
+ size 14645
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1047a716c066f9f4e78c42060834e4ca319f06029bfedda77528f4fcc6970b7e
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": 1.6,
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": 1.2676397945731879,
14
+ "epoch": 0.016,
15
+ "grad_norm": 25.25,
16
+ "learning_rate": 4.5000000000000003e-07,
17
+ "loss": 20.5205,
18
+ "mean_token_accuracy": 0.6834932763129473,
19
+ "num_tokens": 195524.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 1.261214752867818,
24
+ "epoch": 0.032,
25
+ "grad_norm": 22.75,
26
+ "learning_rate": 9.500000000000001e-07,
27
+ "loss": 20.4527,
28
+ "mean_token_accuracy": 0.68165775090456,
29
+ "num_tokens": 390903.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 1.2643471464514733,
34
+ "epoch": 0.048,
35
+ "grad_norm": 25.375,
36
+ "learning_rate": 1.45e-06,
37
+ "loss": 20.5098,
38
+ "mean_token_accuracy": 0.6823193147778511,
39
+ "num_tokens": 589868.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 1.2646946143358946,
44
+ "epoch": 0.064,
45
+ "grad_norm": 20.625,
46
+ "learning_rate": 1.9500000000000004e-06,
47
+ "loss": 20.5081,
48
+ "mean_token_accuracy": 0.6804493211209774,
49
+ "num_tokens": 791190.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 1.2883822418749333,
54
+ "epoch": 0.08,
55
+ "grad_norm": 22.875,
56
+ "learning_rate": 2.4500000000000003e-06,
57
+ "loss": 20.7929,
58
+ "mean_token_accuracy": 0.6806381791830063,
59
+ "num_tokens": 989860.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 1.302551382407546,
64
+ "epoch": 0.096,
65
+ "grad_norm": 23.625,
66
+ "learning_rate": 2.95e-06,
67
+ "loss": 21.0666,
68
+ "mean_token_accuracy": 0.6782213494181633,
69
+ "num_tokens": 1181777.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 1.281064134463668,
74
+ "epoch": 0.112,
75
+ "grad_norm": 22.5,
76
+ "learning_rate": 3.45e-06,
77
+ "loss": 20.7617,
78
+ "mean_token_accuracy": 0.6805306363850832,
79
+ "num_tokens": 1385513.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.2786549139767884,
84
+ "epoch": 0.128,
85
+ "grad_norm": 24.375,
86
+ "learning_rate": 3.95e-06,
87
+ "loss": 20.6078,
88
+ "mean_token_accuracy": 0.680861197039485,
89
+ "num_tokens": 1582368.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.2977753818035125,
94
+ "epoch": 0.144,
95
+ "grad_norm": 22.5,
96
+ "learning_rate": 4.450000000000001e-06,
97
+ "loss": 20.7713,
98
+ "mean_token_accuracy": 0.6802186716347933,
99
+ "num_tokens": 1773764.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.2986781910061835,
104
+ "epoch": 0.16,
105
+ "grad_norm": 26.0,
106
+ "learning_rate": 4.95e-06,
107
+ "loss": 20.9638,
108
+ "mean_token_accuracy": 0.6783340185880661,
109
+ "num_tokens": 1970077.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "epoch": 0.16,
114
+ "eval_biology_entropy": 1.2467972478866578,
115
+ "eval_biology_loss": 1.3016669750213623,
116
+ "eval_biology_mean_token_accuracy": 0.6796614747047425,
117
+ "eval_biology_num_tokens": 1970077.0,
118
+ "eval_biology_runtime": 47.4105,
119
+ "eval_biology_samples_per_second": 10.546,
120
+ "eval_biology_steps_per_second": 2.637,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.16,
125
+ "eval_chemistry_entropy": 1.0001942477226258,
126
+ "eval_chemistry_loss": 1.0766135454177856,
127
+ "eval_chemistry_mean_token_accuracy": 0.7288195652961731,
128
+ "eval_chemistry_num_tokens": 1970077.0,
129
+ "eval_chemistry_runtime": 58.7789,
130
+ "eval_chemistry_samples_per_second": 8.506,
131
+ "eval_chemistry_steps_per_second": 2.127,
132
+ "step": 100
133
+ },
134
+ {
135
+ "epoch": 0.16,
136
+ "eval_math_entropy": 0.9485790143013001,
137
+ "eval_math_loss": 1.2958632707595825,
138
+ "eval_math_mean_token_accuracy": 0.7046140608787537,
139
+ "eval_math_num_tokens": 1970077.0,
140
+ "eval_math_runtime": 60.2784,
141
+ "eval_math_samples_per_second": 8.295,
142
+ "eval_math_steps_per_second": 2.074,
143
+ "step": 100
144
+ },
145
+ {
146
+ "epoch": 0.16,
147
+ "eval_physics_entropy": 1.0591417260169982,
148
+ "eval_physics_loss": 1.182342529296875,
149
+ "eval_physics_mean_token_accuracy": 0.7221122503280639,
150
+ "eval_physics_num_tokens": 1970077.0,
151
+ "eval_physics_runtime": 68.6963,
152
+ "eval_physics_samples_per_second": 7.278,
153
+ "eval_physics_steps_per_second": 1.82,
154
+ "step": 100
155
+ },
156
+ {
157
+ "entropy": 1.2789885632693767,
158
+ "epoch": 0.176,
159
+ "grad_norm": 22.5,
160
+ "learning_rate": 5.450000000000001e-06,
161
+ "loss": 20.6234,
162
+ "mean_token_accuracy": 0.6804416611790657,
163
+ "num_tokens": 2168354.0,
164
+ "step": 110
165
+ },
166
+ {
167
+ "entropy": 1.2759516820311547,
168
+ "epoch": 0.192,
169
+ "grad_norm": 24.75,
170
+ "learning_rate": 5.950000000000001e-06,
171
+ "loss": 20.5679,
172
+ "mean_token_accuracy": 0.681303645670414,
173
+ "num_tokens": 2365822.0,
174
+ "step": 120
175
+ },
176
+ {
177
+ "entropy": 1.2930898044258357,
178
+ "epoch": 0.208,
179
+ "grad_norm": 25.125,
180
+ "learning_rate": 6.450000000000001e-06,
181
+ "loss": 20.8391,
182
+ "mean_token_accuracy": 0.6775826022028923,
183
+ "num_tokens": 2558762.0,
184
+ "step": 130
185
+ },
186
+ {
187
+ "entropy": 1.2815773852169514,
188
+ "epoch": 0.224,
189
+ "grad_norm": 24.0,
190
+ "learning_rate": 6.95e-06,
191
+ "loss": 20.7118,
192
+ "mean_token_accuracy": 0.6805033922195435,
193
+ "num_tokens": 2755347.0,
194
+ "step": 140
195
+ },
196
+ {
197
+ "entropy": 1.271333383768797,
198
+ "epoch": 0.24,
199
+ "grad_norm": 23.375,
200
+ "learning_rate": 7.450000000000001e-06,
201
+ "loss": 20.4896,
202
+ "mean_token_accuracy": 0.6833334766328335,
203
+ "num_tokens": 2947346.0,
204
+ "step": 150
205
+ },
206
+ {
207
+ "entropy": 1.2992272667586804,
208
+ "epoch": 0.256,
209
+ "grad_norm": 21.75,
210
+ "learning_rate": 7.950000000000002e-06,
211
+ "loss": 20.7815,
212
+ "mean_token_accuracy": 0.6796726986765862,
213
+ "num_tokens": 3139957.0,
214
+ "step": 160
215
+ },
216
+ {
217
+ "entropy": 1.2592430911958217,
218
+ "epoch": 0.272,
219
+ "grad_norm": 24.25,
220
+ "learning_rate": 8.45e-06,
221
+ "loss": 20.4802,
222
+ "mean_token_accuracy": 0.682121679186821,
223
+ "num_tokens": 3335951.0,
224
+ "step": 170
225
+ },
226
+ {
227
+ "entropy": 1.2648221261799335,
228
+ "epoch": 0.288,
229
+ "grad_norm": 25.25,
230
+ "learning_rate": 8.95e-06,
231
+ "loss": 20.3318,
232
+ "mean_token_accuracy": 0.6829198688268662,
233
+ "num_tokens": 3539731.0,
234
+ "step": 180
235
+ },
236
+ {
237
+ "entropy": 1.2702809911221267,
238
+ "epoch": 0.304,
239
+ "grad_norm": 22.375,
240
+ "learning_rate": 9.450000000000001e-06,
241
+ "loss": 20.4024,
242
+ "mean_token_accuracy": 0.6853499349206686,
243
+ "num_tokens": 3733488.0,
244
+ "step": 190
245
+ },
246
+ {
247
+ "entropy": 1.2876859605312347,
248
+ "epoch": 0.32,
249
+ "grad_norm": 25.875,
250
+ "learning_rate": 9.950000000000001e-06,
251
+ "loss": 20.7513,
252
+ "mean_token_accuracy": 0.677771307528019,
253
+ "num_tokens": 3920545.0,
254
+ "step": 200
255
+ },
256
+ {
257
+ "epoch": 0.32,
258
+ "eval_biology_entropy": 1.2387963032722473,
259
+ "eval_biology_loss": 1.3000890016555786,
260
+ "eval_biology_mean_token_accuracy": 0.6799756650924682,
261
+ "eval_biology_num_tokens": 3920545.0,
262
+ "eval_biology_runtime": 47.4397,
263
+ "eval_biology_samples_per_second": 10.54,
264
+ "eval_biology_steps_per_second": 2.635,
265
+ "step": 200
266
+ },
267
+ {
268
+ "epoch": 0.32,
269
+ "eval_chemistry_entropy": 0.9924480357170105,
270
+ "eval_chemistry_loss": 1.0764909982681274,
271
+ "eval_chemistry_mean_token_accuracy": 0.7288783774375915,
272
+ "eval_chemistry_num_tokens": 3920545.0,
273
+ "eval_chemistry_runtime": 58.9282,
274
+ "eval_chemistry_samples_per_second": 8.485,
275
+ "eval_chemistry_steps_per_second": 2.121,
276
+ "step": 200
277
+ },
278
+ {
279
+ "epoch": 0.32,
280
+ "eval_math_entropy": 0.9413906736373902,
281
+ "eval_math_loss": 1.2954370975494385,
282
+ "eval_math_mean_token_accuracy": 0.7050176553726196,
283
+ "eval_math_num_tokens": 3920545.0,
284
+ "eval_math_runtime": 60.3526,
285
+ "eval_math_samples_per_second": 8.285,
286
+ "eval_math_steps_per_second": 2.071,
287
+ "step": 200
288
+ },
289
+ {
290
+ "epoch": 0.32,
291
+ "eval_physics_entropy": 1.0506655836105347,
292
+ "eval_physics_loss": 1.1805146932601929,
293
+ "eval_physics_mean_token_accuracy": 0.7223957962989808,
294
+ "eval_physics_num_tokens": 3920545.0,
295
+ "eval_physics_runtime": 68.7486,
296
+ "eval_physics_samples_per_second": 7.273,
297
+ "eval_physics_steps_per_second": 1.818,
298
+ "step": 200
299
+ },
300
+ {
301
+ "entropy": 1.252883468195796,
302
+ "epoch": 0.336,
303
+ "grad_norm": 23.5,
304
+ "learning_rate": 1.045e-05,
305
+ "loss": 20.089,
306
+ "mean_token_accuracy": 0.6867416497319937,
307
+ "num_tokens": 4114077.0,
308
+ "step": 210
309
+ },
310
+ {
311
+ "entropy": 1.2703593511134386,
312
+ "epoch": 0.352,
313
+ "grad_norm": 24.625,
314
+ "learning_rate": 1.095e-05,
315
+ "loss": 20.5308,
316
+ "mean_token_accuracy": 0.6833599351346493,
317
+ "num_tokens": 4306949.0,
318
+ "step": 220
319
+ },
320
+ {
321
+ "entropy": 1.260924168303609,
322
+ "epoch": 0.368,
323
+ "grad_norm": 22.875,
324
+ "learning_rate": 1.145e-05,
325
+ "loss": 20.3988,
326
+ "mean_token_accuracy": 0.6848072897642851,
327
+ "num_tokens": 4504001.0,
328
+ "step": 230
329
+ },
330
+ {
331
+ "entropy": 1.272016329318285,
332
+ "epoch": 0.384,
333
+ "grad_norm": 25.625,
334
+ "learning_rate": 1.195e-05,
335
+ "loss": 20.4684,
336
+ "mean_token_accuracy": 0.6823147349059582,
337
+ "num_tokens": 4693812.0,
338
+ "step": 240
339
+ },
340
+ {
341
+ "entropy": 1.281133072450757,
342
+ "epoch": 0.4,
343
+ "grad_norm": 22.5,
344
+ "learning_rate": 1.2450000000000003e-05,
345
+ "loss": 20.6448,
346
+ "mean_token_accuracy": 0.6809127051383257,
347
+ "num_tokens": 4887094.0,
348
+ "step": 250
349
+ },
350
+ {
351
+ "entropy": 1.2905787032097578,
352
+ "epoch": 0.416,
353
+ "grad_norm": 24.0,
354
+ "learning_rate": 1.295e-05,
355
+ "loss": 20.8418,
356
+ "mean_token_accuracy": 0.6782213684171439,
357
+ "num_tokens": 5085369.0,
358
+ "step": 260
359
+ },
360
+ {
361
+ "entropy": 1.2866624522954226,
362
+ "epoch": 0.432,
363
+ "grad_norm": 25.625,
364
+ "learning_rate": 1.3450000000000002e-05,
365
+ "loss": 20.6614,
366
+ "mean_token_accuracy": 0.6810611065477132,
367
+ "num_tokens": 5271275.0,
368
+ "step": 270
369
+ },
370
+ {
371
+ "entropy": 1.2861373092979194,
372
+ "epoch": 0.448,
373
+ "grad_norm": 26.5,
374
+ "learning_rate": 1.3950000000000002e-05,
375
+ "loss": 20.6931,
376
+ "mean_token_accuracy": 0.6811038155108691,
377
+ "num_tokens": 5460559.0,
378
+ "step": 280
379
+ },
380
+ {
381
+ "entropy": 1.2432711333036424,
382
+ "epoch": 0.464,
383
+ "grad_norm": 24.75,
384
+ "learning_rate": 1.4450000000000002e-05,
385
+ "loss": 20.0188,
386
+ "mean_token_accuracy": 0.6878789726644754,
387
+ "num_tokens": 5653809.0,
388
+ "step": 290
389
+ },
390
+ {
391
+ "entropy": 1.2743295758962632,
392
+ "epoch": 0.48,
393
+ "grad_norm": 21.75,
394
+ "learning_rate": 1.4950000000000003e-05,
395
+ "loss": 20.5069,
396
+ "mean_token_accuracy": 0.6826238337904215,
397
+ "num_tokens": 5850176.0,
398
+ "step": 300
399
+ },
400
+ {
401
+ "epoch": 0.48,
402
+ "eval_biology_entropy": 1.2377551465034484,
403
+ "eval_biology_loss": 1.3000712394714355,
404
+ "eval_biology_mean_token_accuracy": 0.6797983174324036,
405
+ "eval_biology_num_tokens": 5850176.0,
406
+ "eval_biology_runtime": 47.4305,
407
+ "eval_biology_samples_per_second": 10.542,
408
+ "eval_biology_steps_per_second": 2.635,
409
+ "step": 300
410
+ },
411
+ {
412
+ "epoch": 0.48,
413
+ "eval_chemistry_entropy": 0.9973236765861512,
414
+ "eval_chemistry_loss": 1.0776281356811523,
415
+ "eval_chemistry_mean_token_accuracy": 0.7284700326919555,
416
+ "eval_chemistry_num_tokens": 5850176.0,
417
+ "eval_chemistry_runtime": 58.8579,
418
+ "eval_chemistry_samples_per_second": 8.495,
419
+ "eval_chemistry_steps_per_second": 2.124,
420
+ "step": 300
421
+ },
422
+ {
423
+ "epoch": 0.48,
424
+ "eval_math_entropy": 0.9509003200531005,
425
+ "eval_math_loss": 1.2968242168426514,
426
+ "eval_math_mean_token_accuracy": 0.7043156070709229,
427
+ "eval_math_num_tokens": 5850176.0,
428
+ "eval_math_runtime": 60.3466,
429
+ "eval_math_samples_per_second": 8.285,
430
+ "eval_math_steps_per_second": 2.071,
431
+ "step": 300
432
+ },
433
+ {
434
+ "epoch": 0.48,
435
+ "eval_physics_entropy": 1.059091604232788,
436
+ "eval_physics_loss": 1.1835830211639404,
437
+ "eval_physics_mean_token_accuracy": 0.722058045387268,
438
+ "eval_physics_num_tokens": 5850176.0,
439
+ "eval_physics_runtime": 68.7784,
440
+ "eval_physics_samples_per_second": 7.27,
441
+ "eval_physics_steps_per_second": 1.817,
442
+ "step": 300
443
+ },
444
+ {
445
+ "entropy": 1.2032247751951217,
446
+ "epoch": 0.496,
447
+ "grad_norm": 22.375,
448
+ "learning_rate": 1.545e-05,
449
+ "loss": 19.3781,
450
+ "mean_token_accuracy": 0.6952671084553004,
451
+ "num_tokens": 6046503.0,
452
+ "step": 310
453
+ },
454
+ {
455
+ "entropy": 1.2634436808526517,
456
+ "epoch": 0.512,
457
+ "grad_norm": 23.5,
458
+ "learning_rate": 1.595e-05,
459
+ "loss": 20.349,
460
+ "mean_token_accuracy": 0.6837061777710914,
461
+ "num_tokens": 6240456.0,
462
+ "step": 320
463
+ },
464
+ {
465
+ "entropy": 1.2657200925052166,
466
+ "epoch": 0.528,
467
+ "grad_norm": 24.125,
468
+ "learning_rate": 1.645e-05,
469
+ "loss": 20.3697,
470
+ "mean_token_accuracy": 0.6848184332251549,
471
+ "num_tokens": 6430555.0,
472
+ "step": 330
473
+ },
474
+ {
475
+ "entropy": 1.26240081936121,
476
+ "epoch": 0.544,
477
+ "grad_norm": 21.5,
478
+ "learning_rate": 1.6950000000000002e-05,
479
+ "loss": 20.3089,
480
+ "mean_token_accuracy": 0.6857475839555264,
481
+ "num_tokens": 6626006.0,
482
+ "step": 340
483
+ },
484
+ {
485
+ "entropy": 1.2498273212462663,
486
+ "epoch": 0.56,
487
+ "grad_norm": 22.0,
488
+ "learning_rate": 1.7450000000000004e-05,
489
+ "loss": 20.2072,
490
+ "mean_token_accuracy": 0.6853332217782736,
491
+ "num_tokens": 6820754.0,
492
+ "step": 350
493
+ },
494
+ {
495
+ "entropy": 1.241705995053053,
496
+ "epoch": 0.576,
497
+ "grad_norm": 23.125,
498
+ "learning_rate": 1.795e-05,
499
+ "loss": 19.9881,
500
+ "mean_token_accuracy": 0.6875007815659047,
501
+ "num_tokens": 7021844.0,
502
+ "step": 360
503
+ },
504
+ {
505
+ "entropy": 1.2584628861397504,
506
+ "epoch": 0.592,
507
+ "grad_norm": 23.375,
508
+ "learning_rate": 1.845e-05,
509
+ "loss": 20.224,
510
+ "mean_token_accuracy": 0.685963337123394,
511
+ "num_tokens": 7213951.0,
512
+ "step": 370
513
+ },
514
+ {
515
+ "entropy": 1.2345197916030883,
516
+ "epoch": 0.608,
517
+ "grad_norm": 23.875,
518
+ "learning_rate": 1.8950000000000003e-05,
519
+ "loss": 19.9716,
520
+ "mean_token_accuracy": 0.6883670844137668,
521
+ "num_tokens": 7416773.0,
522
+ "step": 380
523
+ },
524
+ {
525
+ "entropy": 1.256280617043376,
526
+ "epoch": 0.624,
527
+ "grad_norm": 25.0,
528
+ "learning_rate": 1.9450000000000002e-05,
529
+ "loss": 20.1361,
530
+ "mean_token_accuracy": 0.6866784512996673,
531
+ "num_tokens": 7612843.0,
532
+ "step": 390
533
+ },
534
+ {
535
+ "entropy": 1.2612476922571658,
536
+ "epoch": 0.64,
537
+ "grad_norm": 24.875,
538
+ "learning_rate": 1.9950000000000004e-05,
539
+ "loss": 20.2559,
540
+ "mean_token_accuracy": 0.6857616238296032,
541
+ "num_tokens": 7801633.0,
542
+ "step": 400
543
+ },
544
+ {
545
+ "epoch": 0.64,
546
+ "eval_biology_entropy": 1.2140547132492066,
547
+ "eval_biology_loss": 1.2990955114364624,
548
+ "eval_biology_mean_token_accuracy": 0.6800553450584411,
549
+ "eval_biology_num_tokens": 7801633.0,
550
+ "eval_biology_runtime": 47.3483,
551
+ "eval_biology_samples_per_second": 10.56,
552
+ "eval_biology_steps_per_second": 2.64,
553
+ "step": 400
554
+ },
555
+ {
556
+ "epoch": 0.64,
557
+ "eval_chemistry_entropy": 0.976757568359375,
558
+ "eval_chemistry_loss": 1.0796345472335815,
559
+ "eval_chemistry_mean_token_accuracy": 0.7284749069213867,
560
+ "eval_chemistry_num_tokens": 7801633.0,
561
+ "eval_chemistry_runtime": 58.7233,
562
+ "eval_chemistry_samples_per_second": 8.515,
563
+ "eval_chemistry_steps_per_second": 2.129,
564
+ "step": 400
565
+ },
566
+ {
567
+ "epoch": 0.64,
568
+ "eval_math_entropy": 0.9269939508438111,
569
+ "eval_math_loss": 1.307834267616272,
570
+ "eval_math_mean_token_accuracy": 0.7034133396148682,
571
+ "eval_math_num_tokens": 7801633.0,
572
+ "eval_math_runtime": 60.2192,
573
+ "eval_math_samples_per_second": 8.303,
574
+ "eval_math_steps_per_second": 2.076,
575
+ "step": 400
576
+ },
577
+ {
578
+ "epoch": 0.64,
579
+ "eval_physics_entropy": 1.0324158954620362,
580
+ "eval_physics_loss": 1.1809009313583374,
581
+ "eval_physics_mean_token_accuracy": 0.7219376945495606,
582
+ "eval_physics_num_tokens": 7801633.0,
583
+ "eval_physics_runtime": 68.6721,
584
+ "eval_physics_samples_per_second": 7.281,
585
+ "eval_physics_steps_per_second": 1.82,
586
+ "step": 400
587
+ },
588
+ {
589
+ "entropy": 1.2535340417176486,
590
+ "epoch": 0.656,
591
+ "grad_norm": 25.0,
592
+ "learning_rate": 1.9950000000000004e-05,
593
+ "loss": 20.2012,
594
+ "mean_token_accuracy": 0.6859036896377801,
595
+ "num_tokens": 7995843.0,
596
+ "step": 410
597
+ },
598
+ {
599
+ "entropy": 1.2642133347690105,
600
+ "epoch": 0.672,
601
+ "grad_norm": 24.125,
602
+ "learning_rate": 1.9894444444444446e-05,
603
+ "loss": 20.3439,
604
+ "mean_token_accuracy": 0.6839185860008001,
605
+ "num_tokens": 8183103.0,
606
+ "step": 420
607
+ },
608
+ {
609
+ "entropy": 1.2550158943980931,
610
+ "epoch": 0.688,
611
+ "grad_norm": 23.125,
612
+ "learning_rate": 1.983888888888889e-05,
613
+ "loss": 20.2518,
614
+ "mean_token_accuracy": 0.6866896580904722,
615
+ "num_tokens": 8385976.0,
616
+ "step": 430
617
+ },
618
+ {
619
+ "entropy": 1.2480014562606812,
620
+ "epoch": 0.704,
621
+ "grad_norm": 22.875,
622
+ "learning_rate": 1.9783333333333334e-05,
623
+ "loss": 20.08,
624
+ "mean_token_accuracy": 0.6888119786977768,
625
+ "num_tokens": 8578431.0,
626
+ "step": 440
627
+ },
628
+ {
629
+ "entropy": 1.197030144929886,
630
+ "epoch": 0.72,
631
+ "grad_norm": 22.5,
632
+ "learning_rate": 1.972777777777778e-05,
633
+ "loss": 19.2953,
634
+ "mean_token_accuracy": 0.697203055024147,
635
+ "num_tokens": 8781342.0,
636
+ "step": 450
637
+ },
638
+ {
639
+ "entropy": 1.2185503005981446,
640
+ "epoch": 0.736,
641
+ "grad_norm": 22.625,
642
+ "learning_rate": 1.9672222222222222e-05,
643
+ "loss": 19.6133,
644
+ "mean_token_accuracy": 0.6910007946193218,
645
+ "num_tokens": 8977918.0,
646
+ "step": 460
647
+ },
648
+ {
649
+ "entropy": 1.2448308434337378,
650
+ "epoch": 0.752,
651
+ "grad_norm": 22.875,
652
+ "learning_rate": 1.9616666666666668e-05,
653
+ "loss": 20.0892,
654
+ "mean_token_accuracy": 0.688303318619728,
655
+ "num_tokens": 9169322.0,
656
+ "step": 470
657
+ },
658
+ {
659
+ "entropy": 1.2101924177259207,
660
+ "epoch": 0.768,
661
+ "grad_norm": 25.0,
662
+ "learning_rate": 1.9561111111111114e-05,
663
+ "loss": 19.4501,
664
+ "mean_token_accuracy": 0.6938675630837678,
665
+ "num_tokens": 9368141.0,
666
+ "step": 480
667
+ },
668
+ {
669
+ "entropy": 1.2336789827793837,
670
+ "epoch": 0.784,
671
+ "grad_norm": 25.125,
672
+ "learning_rate": 1.9505555555555556e-05,
673
+ "loss": 19.9195,
674
+ "mean_token_accuracy": 0.6904073975980282,
675
+ "num_tokens": 9565236.0,
676
+ "step": 490
677
+ },
678
+ {
679
+ "entropy": 1.2555153664201497,
680
+ "epoch": 0.8,
681
+ "grad_norm": 25.625,
682
+ "learning_rate": 1.9450000000000002e-05,
683
+ "loss": 20.3573,
684
+ "mean_token_accuracy": 0.6843966770917177,
685
+ "num_tokens": 9761227.0,
686
+ "step": 500
687
+ },
688
+ {
689
+ "epoch": 0.8,
690
+ "eval_biology_entropy": 1.2237661199569703,
691
+ "eval_biology_loss": 1.2929902076721191,
692
+ "eval_biology_mean_token_accuracy": 0.6812257404327393,
693
+ "eval_biology_num_tokens": 9761227.0,
694
+ "eval_biology_runtime": 47.3474,
695
+ "eval_biology_samples_per_second": 10.56,
696
+ "eval_biology_steps_per_second": 2.64,
697
+ "step": 500
698
+ },
699
+ {
700
+ "epoch": 0.8,
701
+ "eval_chemistry_entropy": 0.9801491451263428,
702
+ "eval_chemistry_loss": 1.0738970041275024,
703
+ "eval_chemistry_mean_token_accuracy": 0.7297394571304321,
704
+ "eval_chemistry_num_tokens": 9761227.0,
705
+ "eval_chemistry_runtime": 59.0653,
706
+ "eval_chemistry_samples_per_second": 8.465,
707
+ "eval_chemistry_steps_per_second": 2.116,
708
+ "step": 500
709
+ },
710
+ {
711
+ "epoch": 0.8,
712
+ "eval_math_entropy": 0.9275087294578552,
713
+ "eval_math_loss": 1.2924582958221436,
714
+ "eval_math_mean_token_accuracy": 0.7069363675117493,
715
+ "eval_math_num_tokens": 9761227.0,
716
+ "eval_math_runtime": 60.5026,
717
+ "eval_math_samples_per_second": 8.264,
718
+ "eval_math_steps_per_second": 2.066,
719
+ "step": 500
720
+ },
721
+ {
722
+ "epoch": 0.8,
723
+ "eval_physics_entropy": 1.0356942238807678,
724
+ "eval_physics_loss": 1.1801023483276367,
725
+ "eval_physics_mean_token_accuracy": 0.723124885559082,
726
+ "eval_physics_num_tokens": 9761227.0,
727
+ "eval_physics_runtime": 69.2781,
728
+ "eval_physics_samples_per_second": 7.217,
729
+ "eval_physics_steps_per_second": 1.804,
730
+ "step": 500
731
+ },
732
+ {
733
+ "entropy": 1.222337120398879,
734
+ "epoch": 0.816,
735
+ "grad_norm": 26.625,
736
+ "learning_rate": 1.9394444444444448e-05,
737
+ "loss": 19.6111,
738
+ "mean_token_accuracy": 0.691252876073122,
739
+ "num_tokens": 9958727.0,
740
+ "step": 510
741
+ },
742
+ {
743
+ "entropy": 1.2134733859449625,
744
+ "epoch": 0.832,
745
+ "grad_norm": 22.5,
746
+ "learning_rate": 1.933888888888889e-05,
747
+ "loss": 19.6687,
748
+ "mean_token_accuracy": 0.690800066664815,
749
+ "num_tokens": 10155771.0,
750
+ "step": 520
751
+ },
752
+ {
753
+ "entropy": 1.2252056252211332,
754
+ "epoch": 0.848,
755
+ "grad_norm": 24.75,
756
+ "learning_rate": 1.9283333333333332e-05,
757
+ "loss": 19.6088,
758
+ "mean_token_accuracy": 0.692672573402524,
759
+ "num_tokens": 10357721.0,
760
+ "step": 530
761
+ },
762
+ {
763
+ "entropy": 1.2455427911132575,
764
+ "epoch": 0.864,
765
+ "grad_norm": 23.75,
766
+ "learning_rate": 1.9227777777777778e-05,
767
+ "loss": 20.028,
768
+ "mean_token_accuracy": 0.6874771993607283,
769
+ "num_tokens": 10552495.0,
770
+ "step": 540
771
+ },
772
+ {
773
+ "entropy": 1.2235082875937224,
774
+ "epoch": 0.88,
775
+ "grad_norm": 25.125,
776
+ "learning_rate": 1.9172222222222224e-05,
777
+ "loss": 19.7291,
778
+ "mean_token_accuracy": 0.6916893098503352,
779
+ "num_tokens": 10748749.0,
780
+ "step": 550
781
+ },
782
+ {
783
+ "entropy": 1.2471147190779448,
784
+ "epoch": 0.896,
785
+ "grad_norm": 24.5,
786
+ "learning_rate": 1.911666666666667e-05,
787
+ "loss": 20.1356,
788
+ "mean_token_accuracy": 0.6882499437779188,
789
+ "num_tokens": 10943319.0,
790
+ "step": 560
791
+ },
792
+ {
793
+ "entropy": 1.2306789450347424,
794
+ "epoch": 0.912,
795
+ "grad_norm": 25.375,
796
+ "learning_rate": 1.9061111111111112e-05,
797
+ "loss": 19.9074,
798
+ "mean_token_accuracy": 0.6895338080823421,
799
+ "num_tokens": 11136935.0,
800
+ "step": 570
801
+ },
802
+ {
803
+ "entropy": 1.2452971942722797,
804
+ "epoch": 0.928,
805
+ "grad_norm": 23.875,
806
+ "learning_rate": 1.9005555555555557e-05,
807
+ "loss": 20.0341,
808
+ "mean_token_accuracy": 0.6869214996695518,
809
+ "num_tokens": 11331098.0,
810
+ "step": 580
811
+ },
812
+ {
813
+ "entropy": 1.1922047719359399,
814
+ "epoch": 0.944,
815
+ "grad_norm": 21.625,
816
+ "learning_rate": 1.8950000000000003e-05,
817
+ "loss": 19.322,
818
+ "mean_token_accuracy": 0.6946932781487704,
819
+ "num_tokens": 11530550.0,
820
+ "step": 590
821
+ },
822
+ {
823
+ "entropy": 1.226338443905115,
824
+ "epoch": 0.96,
825
+ "grad_norm": 26.125,
826
+ "learning_rate": 1.8894444444444446e-05,
827
+ "loss": 19.8277,
828
+ "mean_token_accuracy": 0.68995376303792,
829
+ "num_tokens": 11729645.0,
830
+ "step": 600
831
+ },
832
+ {
833
+ "epoch": 0.96,
834
+ "eval_biology_entropy": 1.2189953713417052,
835
+ "eval_biology_loss": 1.2870540618896484,
836
+ "eval_biology_mean_token_accuracy": 0.683146975517273,
837
+ "eval_biology_num_tokens": 11729645.0,
838
+ "eval_biology_runtime": 47.8218,
839
+ "eval_biology_samples_per_second": 10.455,
840
+ "eval_biology_steps_per_second": 2.614,
841
+ "step": 600
842
+ },
843
+ {
844
+ "epoch": 0.96,
845
+ "eval_chemistry_entropy": 0.976020311832428,
846
+ "eval_chemistry_loss": 1.0717357397079468,
847
+ "eval_chemistry_mean_token_accuracy": 0.7292985210418701,
848
+ "eval_chemistry_num_tokens": 11729645.0,
849
+ "eval_chemistry_runtime": 59.3311,
850
+ "eval_chemistry_samples_per_second": 8.427,
851
+ "eval_chemistry_steps_per_second": 2.107,
852
+ "step": 600
853
+ },
854
+ {
855
+ "epoch": 0.96,
856
+ "eval_math_entropy": 0.9220390543937683,
857
+ "eval_math_loss": 1.2949386835098267,
858
+ "eval_math_mean_token_accuracy": 0.7068283891677857,
859
+ "eval_math_num_tokens": 11729645.0,
860
+ "eval_math_runtime": 60.8254,
861
+ "eval_math_samples_per_second": 8.22,
862
+ "eval_math_steps_per_second": 2.055,
863
+ "step": 600
864
+ },
865
+ {
866
+ "epoch": 0.96,
867
+ "eval_physics_entropy": 1.0351580657958985,
868
+ "eval_physics_loss": 1.1791428327560425,
869
+ "eval_physics_mean_token_accuracy": 0.7229779815673828,
870
+ "eval_physics_num_tokens": 11729645.0,
871
+ "eval_physics_runtime": 69.3211,
872
+ "eval_physics_samples_per_second": 7.213,
873
+ "eval_physics_steps_per_second": 1.803,
874
+ "step": 600
875
+ },
876
+ {
877
+ "entropy": 1.2091780349612236,
878
+ "epoch": 0.976,
879
+ "grad_norm": 24.75,
880
+ "learning_rate": 1.883888888888889e-05,
881
+ "loss": 19.4529,
882
+ "mean_token_accuracy": 0.6921297512948513,
883
+ "num_tokens": 11924644.0,
884
+ "step": 610
885
+ },
886
+ {
887
+ "entropy": 1.2263813648372888,
888
+ "epoch": 0.992,
889
+ "grad_norm": 23.0,
890
+ "learning_rate": 1.8783333333333337e-05,
891
+ "loss": 19.9078,
892
+ "mean_token_accuracy": 0.6878966901451349,
893
+ "num_tokens": 12123059.0,
894
+ "step": 620
895
+ },
896
+ {
897
+ "entropy": 1.2347719121724368,
898
+ "epoch": 1.008,
899
+ "grad_norm": 21.75,
900
+ "learning_rate": 1.872777777777778e-05,
901
+ "loss": 19.7848,
902
+ "mean_token_accuracy": 0.6914879336953164,
903
+ "num_tokens": 12319366.0,
904
+ "step": 630
905
+ },
906
+ {
907
+ "entropy": 1.200057501345873,
908
+ "epoch": 1.024,
909
+ "grad_norm": 24.75,
910
+ "learning_rate": 1.8672222222222222e-05,
911
+ "loss": 19.2512,
912
+ "mean_token_accuracy": 0.6962312083691359,
913
+ "num_tokens": 12524183.0,
914
+ "step": 640
915
+ },
916
+ {
917
+ "entropy": 1.2318632639944553,
918
+ "epoch": 1.04,
919
+ "grad_norm": 23.125,
920
+ "learning_rate": 1.8616666666666667e-05,
921
+ "loss": 19.8582,
922
+ "mean_token_accuracy": 0.6885584607720375,
923
+ "num_tokens": 12718593.0,
924
+ "step": 650
925
+ },
926
+ {
927
+ "entropy": 1.1976032231003046,
928
+ "epoch": 1.056,
929
+ "grad_norm": 24.875,
930
+ "learning_rate": 1.8561111111111113e-05,
931
+ "loss": 19.2924,
932
+ "mean_token_accuracy": 0.697322390973568,
933
+ "num_tokens": 12917803.0,
934
+ "step": 660
935
+ },
936
+ {
937
+ "entropy": 1.223268049582839,
938
+ "epoch": 1.072,
939
+ "grad_norm": 26.125,
940
+ "learning_rate": 1.8505555555555556e-05,
941
+ "loss": 19.6292,
942
+ "mean_token_accuracy": 0.6911944530904293,
943
+ "num_tokens": 13105826.0,
944
+ "step": 670
945
+ },
946
+ {
947
+ "entropy": 1.2007815334945917,
948
+ "epoch": 1.088,
949
+ "grad_norm": 24.375,
950
+ "learning_rate": 1.845e-05,
951
+ "loss": 19.4022,
952
+ "mean_token_accuracy": 0.6958803411573171,
953
+ "num_tokens": 13298619.0,
954
+ "step": 680
955
+ },
956
+ {
957
+ "entropy": 1.2102480567991734,
958
+ "epoch": 1.104,
959
+ "grad_norm": 23.75,
960
+ "learning_rate": 1.8394444444444447e-05,
961
+ "loss": 19.551,
962
+ "mean_token_accuracy": 0.6936313558369875,
963
+ "num_tokens": 13491486.0,
964
+ "step": 690
965
+ },
966
+ {
967
+ "entropy": 1.2272425662726163,
968
+ "epoch": 1.12,
969
+ "grad_norm": 27.625,
970
+ "learning_rate": 1.833888888888889e-05,
971
+ "loss": 19.7097,
972
+ "mean_token_accuracy": 0.6926408246159553,
973
+ "num_tokens": 13674663.0,
974
+ "step": 700
975
+ },
976
+ {
977
+ "epoch": 1.12,
978
+ "eval_biology_entropy": 1.1717474513053894,
979
+ "eval_biology_loss": 1.2855128049850464,
980
+ "eval_biology_mean_token_accuracy": 0.683808819770813,
981
+ "eval_biology_num_tokens": 13674663.0,
982
+ "eval_biology_runtime": 47.8391,
983
+ "eval_biology_samples_per_second": 10.452,
984
+ "eval_biology_steps_per_second": 2.613,
985
+ "step": 700
986
+ },
987
+ {
988
+ "epoch": 1.12,
989
+ "eval_chemistry_entropy": 0.9375607762336731,
990
+ "eval_chemistry_loss": 1.0741384029388428,
991
+ "eval_chemistry_mean_token_accuracy": 0.7299527173042297,
992
+ "eval_chemistry_num_tokens": 13674663.0,
993
+ "eval_chemistry_runtime": 59.3574,
994
+ "eval_chemistry_samples_per_second": 8.424,
995
+ "eval_chemistry_steps_per_second": 2.106,
996
+ "step": 700
997
+ },
998
+ {
999
+ "epoch": 1.12,
1000
+ "eval_math_entropy": 0.9116253685951233,
1001
+ "eval_math_loss": 1.3001103401184082,
1002
+ "eval_math_mean_token_accuracy": 0.7062767610549927,
1003
+ "eval_math_num_tokens": 13674663.0,
1004
+ "eval_math_runtime": 60.8743,
1005
+ "eval_math_samples_per_second": 8.214,
1006
+ "eval_math_steps_per_second": 2.053,
1007
+ "step": 700
1008
+ },
1009
+ {
1010
+ "epoch": 1.12,
1011
+ "eval_physics_entropy": 0.997166962146759,
1012
+ "eval_physics_loss": 1.1788647174835205,
1013
+ "eval_physics_mean_token_accuracy": 0.7233795509338379,
1014
+ "eval_physics_num_tokens": 13674663.0,
1015
+ "eval_physics_runtime": 69.3947,
1016
+ "eval_physics_samples_per_second": 7.205,
1017
+ "eval_physics_steps_per_second": 1.801,
1018
+ "step": 700
1019
+ },
1020
+ {
1021
+ "entropy": 1.2040644731372594,
1022
+ "epoch": 1.1360000000000001,
1023
+ "grad_norm": 25.75,
1024
+ "learning_rate": 1.8283333333333335e-05,
1025
+ "loss": 19.5211,
1026
+ "mean_token_accuracy": 0.6950324695557356,
1027
+ "num_tokens": 13869134.0,
1028
+ "step": 710
1029
+ },
1030
+ {
1031
+ "entropy": 1.1908101249486207,
1032
+ "epoch": 1.152,
1033
+ "grad_norm": 22.75,
1034
+ "learning_rate": 1.822777777777778e-05,
1035
+ "loss": 19.1582,
1036
+ "mean_token_accuracy": 0.6968125693500042,
1037
+ "num_tokens": 14078365.0,
1038
+ "step": 720
1039
+ },
1040
+ {
1041
+ "entropy": 1.2142638489603996,
1042
+ "epoch": 1.168,
1043
+ "grad_norm": 22.875,
1044
+ "learning_rate": 1.8172222222222223e-05,
1045
+ "loss": 19.4965,
1046
+ "mean_token_accuracy": 0.6936378438025713,
1047
+ "num_tokens": 14266831.0,
1048
+ "step": 730
1049
+ },
1050
+ {
1051
+ "entropy": 1.2091089431196451,
1052
+ "epoch": 1.184,
1053
+ "grad_norm": 24.875,
1054
+ "learning_rate": 1.811666666666667e-05,
1055
+ "loss": 19.6041,
1056
+ "mean_token_accuracy": 0.6928943891078234,
1057
+ "num_tokens": 14465660.0,
1058
+ "step": 740
1059
+ },
1060
+ {
1061
+ "entropy": 1.2094362247735262,
1062
+ "epoch": 1.2,
1063
+ "grad_norm": 25.375,
1064
+ "learning_rate": 1.806111111111111e-05,
1065
+ "loss": 19.3313,
1066
+ "mean_token_accuracy": 0.6956093374639749,
1067
+ "num_tokens": 14653228.0,
1068
+ "step": 750
1069
+ },
1070
+ {
1071
+ "entropy": 1.172793022543192,
1072
+ "epoch": 1.216,
1073
+ "grad_norm": 24.125,
1074
+ "learning_rate": 1.8005555555555557e-05,
1075
+ "loss": 18.9709,
1076
+ "mean_token_accuracy": 0.698998348787427,
1077
+ "num_tokens": 14857782.0,
1078
+ "step": 760
1079
+ },
1080
+ {
1081
+ "entropy": 1.1956025019288063,
1082
+ "epoch": 1.232,
1083
+ "grad_norm": 22.25,
1084
+ "learning_rate": 1.795e-05,
1085
+ "loss": 19.2039,
1086
+ "mean_token_accuracy": 0.6992277778685093,
1087
+ "num_tokens": 15047356.0,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "entropy": 1.1972672935575246,
1092
+ "epoch": 1.248,
1093
+ "grad_norm": 24.25,
1094
+ "learning_rate": 1.7894444444444445e-05,
1095
+ "loss": 19.4124,
1096
+ "mean_token_accuracy": 0.6940966844558716,
1097
+ "num_tokens": 15241098.0,
1098
+ "step": 780
1099
+ },
1100
+ {
1101
+ "entropy": 1.2250222776085138,
1102
+ "epoch": 1.264,
1103
+ "grad_norm": 23.0,
1104
+ "learning_rate": 1.783888888888889e-05,
1105
+ "loss": 19.6582,
1106
+ "mean_token_accuracy": 0.6926792357116938,
1107
+ "num_tokens": 15437657.0,
1108
+ "step": 790
1109
+ },
1110
+ {
1111
+ "entropy": 1.2299235615879298,
1112
+ "epoch": 1.28,
1113
+ "grad_norm": 25.125,
1114
+ "learning_rate": 1.7783333333333333e-05,
1115
+ "loss": 19.9054,
1116
+ "mean_token_accuracy": 0.6879028372466565,
1117
+ "num_tokens": 15630795.0,
1118
+ "step": 800
1119
+ },
1120
+ {
1121
+ "epoch": 1.28,
1122
+ "eval_biology_entropy": 1.1756790585517882,
1123
+ "eval_biology_loss": 1.2825103998184204,
1124
+ "eval_biology_mean_token_accuracy": 0.6839104061126708,
1125
+ "eval_biology_num_tokens": 15630795.0,
1126
+ "eval_biology_runtime": 47.8419,
1127
+ "eval_biology_samples_per_second": 10.451,
1128
+ "eval_biology_steps_per_second": 2.613,
1129
+ "step": 800
1130
+ },
1131
+ {
1132
+ "epoch": 1.28,
1133
+ "eval_chemistry_entropy": 0.9409222221374511,
1134
+ "eval_chemistry_loss": 1.0712758302688599,
1135
+ "eval_chemistry_mean_token_accuracy": 0.7309756746292114,
1136
+ "eval_chemistry_num_tokens": 15630795.0,
1137
+ "eval_chemistry_runtime": 59.3395,
1138
+ "eval_chemistry_samples_per_second": 8.426,
1139
+ "eval_chemistry_steps_per_second": 2.107,
1140
+ "step": 800
1141
+ },
1142
+ {
1143
+ "epoch": 1.28,
1144
+ "eval_math_entropy": 0.9131695604324341,
1145
+ "eval_math_loss": 1.2970302104949951,
1146
+ "eval_math_mean_token_accuracy": 0.7068103790283203,
1147
+ "eval_math_num_tokens": 15630795.0,
1148
+ "eval_math_runtime": 60.8564,
1149
+ "eval_math_samples_per_second": 8.216,
1150
+ "eval_math_steps_per_second": 2.054,
1151
+ "step": 800
1152
+ },
1153
+ {
1154
+ "epoch": 1.28,
1155
+ "eval_physics_entropy": 1.0009545674324036,
1156
+ "eval_physics_loss": 1.1740305423736572,
1157
+ "eval_physics_mean_token_accuracy": 0.7239470205307007,
1158
+ "eval_physics_num_tokens": 15630795.0,
1159
+ "eval_physics_runtime": 69.3435,
1160
+ "eval_physics_samples_per_second": 7.21,
1161
+ "eval_physics_steps_per_second": 1.803,
1162
+ "step": 800
1163
+ },
1164
+ {
1165
+ "entropy": 1.2318371035158635,
1166
+ "epoch": 1.296,
1167
+ "grad_norm": 23.625,
1168
+ "learning_rate": 1.772777777777778e-05,
1169
+ "loss": 19.812,
1170
+ "mean_token_accuracy": 0.6904978167265654,
1171
+ "num_tokens": 15827105.0,
1172
+ "step": 810
1173
+ },
1174
+ {
1175
+ "entropy": 1.2156631674617528,
1176
+ "epoch": 1.312,
1177
+ "grad_norm": 24.25,
1178
+ "learning_rate": 1.7672222222222224e-05,
1179
+ "loss": 19.7293,
1180
+ "mean_token_accuracy": 0.6915876884013414,
1181
+ "num_tokens": 16019645.0,
1182
+ "step": 820
1183
+ },
1184
+ {
1185
+ "entropy": 1.2210196305066348,
1186
+ "epoch": 1.328,
1187
+ "grad_norm": 23.875,
1188
+ "learning_rate": 1.761666666666667e-05,
1189
+ "loss": 19.7658,
1190
+ "mean_token_accuracy": 0.6908771209418774,
1191
+ "num_tokens": 16221726.0,
1192
+ "step": 830
1193
+ },
1194
+ {
1195
+ "entropy": 1.1998186014592647,
1196
+ "epoch": 1.3439999999999999,
1197
+ "grad_norm": 22.875,
1198
+ "learning_rate": 1.7561111111111113e-05,
1199
+ "loss": 19.2177,
1200
+ "mean_token_accuracy": 0.6973779436200858,
1201
+ "num_tokens": 16427594.0,
1202
+ "step": 840
1203
+ },
1204
+ {
1205
+ "entropy": 1.206191548332572,
1206
+ "epoch": 1.3599999999999999,
1207
+ "grad_norm": 25.25,
1208
+ "learning_rate": 1.7505555555555558e-05,
1209
+ "loss": 19.5695,
1210
+ "mean_token_accuracy": 0.6934758294373751,
1211
+ "num_tokens": 16621605.0,
1212
+ "step": 850
1213
+ },
1214
+ {
1215
+ "entropy": 1.2538085140287876,
1216
+ "epoch": 1.376,
1217
+ "grad_norm": 26.25,
1218
+ "learning_rate": 1.7450000000000004e-05,
1219
+ "loss": 20.1019,
1220
+ "mean_token_accuracy": 0.6873533941805363,
1221
+ "num_tokens": 16813444.0,
1222
+ "step": 860
1223
+ },
1224
+ {
1225
+ "entropy": 1.2129262063652277,
1226
+ "epoch": 1.392,
1227
+ "grad_norm": 23.75,
1228
+ "learning_rate": 1.7394444444444446e-05,
1229
+ "loss": 19.7008,
1230
+ "mean_token_accuracy": 0.6932430669665337,
1231
+ "num_tokens": 17006509.0,
1232
+ "step": 870
1233
+ },
1234
+ {
1235
+ "entropy": 1.2133032407611608,
1236
+ "epoch": 1.408,
1237
+ "grad_norm": 21.125,
1238
+ "learning_rate": 1.733888888888889e-05,
1239
+ "loss": 19.4459,
1240
+ "mean_token_accuracy": 0.6937982514500618,
1241
+ "num_tokens": 17197870.0,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "entropy": 1.2197621572762727,
1246
+ "epoch": 1.424,
1247
+ "grad_norm": 24.375,
1248
+ "learning_rate": 1.7283333333333334e-05,
1249
+ "loss": 19.6331,
1250
+ "mean_token_accuracy": 0.692104072868824,
1251
+ "num_tokens": 17394390.0,
1252
+ "step": 890
1253
+ },
1254
+ {
1255
+ "entropy": 1.219193383306265,
1256
+ "epoch": 1.44,
1257
+ "grad_norm": 28.75,
1258
+ "learning_rate": 1.722777777777778e-05,
1259
+ "loss": 19.6606,
1260
+ "mean_token_accuracy": 0.6919787086546421,
1261
+ "num_tokens": 17587777.0,
1262
+ "step": 900
1263
+ },
1264
+ {
1265
+ "epoch": 1.44,
1266
+ "eval_biology_entropy": 1.2083894481658937,
1267
+ "eval_biology_loss": 1.2752834558486938,
1268
+ "eval_biology_mean_token_accuracy": 0.6854755258560181,
1269
+ "eval_biology_num_tokens": 17587777.0,
1270
+ "eval_biology_runtime": 47.7503,
1271
+ "eval_biology_samples_per_second": 10.471,
1272
+ "eval_biology_steps_per_second": 2.618,
1273
+ "step": 900
1274
+ },
1275
+ {
1276
+ "epoch": 1.44,
1277
+ "eval_chemistry_entropy": 0.9671227583885192,
1278
+ "eval_chemistry_loss": 1.0685635805130005,
1279
+ "eval_chemistry_mean_token_accuracy": 0.7308610730171203,
1280
+ "eval_chemistry_num_tokens": 17587777.0,
1281
+ "eval_chemistry_runtime": 59.2536,
1282
+ "eval_chemistry_samples_per_second": 8.438,
1283
+ "eval_chemistry_steps_per_second": 2.11,
1284
+ "step": 900
1285
+ },
1286
+ {
1287
+ "epoch": 1.44,
1288
+ "eval_math_entropy": 0.9232685470581055,
1289
+ "eval_math_loss": 1.2879754304885864,
1290
+ "eval_math_mean_token_accuracy": 0.7072285838127136,
1291
+ "eval_math_num_tokens": 17587777.0,
1292
+ "eval_math_runtime": 60.7715,
1293
+ "eval_math_samples_per_second": 8.228,
1294
+ "eval_math_steps_per_second": 2.057,
1295
+ "step": 900
1296
+ },
1297
+ {
1298
+ "epoch": 1.44,
1299
+ "eval_physics_entropy": 1.0261503925323487,
1300
+ "eval_physics_loss": 1.1721413135528564,
1301
+ "eval_physics_mean_token_accuracy": 0.7246381421089172,
1302
+ "eval_physics_num_tokens": 17587777.0,
1303
+ "eval_physics_runtime": 69.2559,
1304
+ "eval_physics_samples_per_second": 7.22,
1305
+ "eval_physics_steps_per_second": 1.805,
1306
+ "step": 900
1307
+ },
1308
+ {
1309
+ "entropy": 1.2059034764766694,
1310
+ "epoch": 1.456,
1311
+ "grad_norm": 25.125,
1312
+ "learning_rate": 1.7172222222222223e-05,
1313
+ "loss": 19.5801,
1314
+ "mean_token_accuracy": 0.6930746156722307,
1315
+ "num_tokens": 17788456.0,
1316
+ "step": 910
1317
+ },
1318
+ {
1319
+ "entropy": 1.2149245291948318,
1320
+ "epoch": 1.472,
1321
+ "grad_norm": 22.375,
1322
+ "learning_rate": 1.7116666666666668e-05,
1323
+ "loss": 19.4506,
1324
+ "mean_token_accuracy": 0.6947890192270278,
1325
+ "num_tokens": 17984063.0,
1326
+ "step": 920
1327
+ },
1328
+ {
1329
+ "entropy": 1.2022255394607781,
1330
+ "epoch": 1.488,
1331
+ "grad_norm": 23.5,
1332
+ "learning_rate": 1.7061111111111114e-05,
1333
+ "loss": 19.508,
1334
+ "mean_token_accuracy": 0.695648743584752,
1335
+ "num_tokens": 18175640.0,
1336
+ "step": 930
1337
+ },
1338
+ {
1339
+ "entropy": 1.2195066373795271,
1340
+ "epoch": 1.504,
1341
+ "grad_norm": 22.875,
1342
+ "learning_rate": 1.7005555555555556e-05,
1343
+ "loss": 19.7359,
1344
+ "mean_token_accuracy": 0.6924235183745623,
1345
+ "num_tokens": 18367857.0,
1346
+ "step": 940
1347
+ },
1348
+ {
1349
+ "entropy": 1.2132650747895242,
1350
+ "epoch": 1.52,
1351
+ "grad_norm": 22.125,
1352
+ "learning_rate": 1.6950000000000002e-05,
1353
+ "loss": 19.5773,
1354
+ "mean_token_accuracy": 0.6921011231839657,
1355
+ "num_tokens": 18569146.0,
1356
+ "step": 950
1357
+ },
1358
+ {
1359
+ "entropy": 1.233898864686489,
1360
+ "epoch": 1.536,
1361
+ "grad_norm": 25.25,
1362
+ "learning_rate": 1.6894444444444448e-05,
1363
+ "loss": 19.8446,
1364
+ "mean_token_accuracy": 0.6897176470607519,
1365
+ "num_tokens": 18755079.0,
1366
+ "step": 960
1367
+ },
1368
+ {
1369
+ "entropy": 1.2005723245441913,
1370
+ "epoch": 1.552,
1371
+ "grad_norm": 25.5,
1372
+ "learning_rate": 1.683888888888889e-05,
1373
+ "loss": 19.4576,
1374
+ "mean_token_accuracy": 0.6952799737453461,
1375
+ "num_tokens": 18956248.0,
1376
+ "step": 970
1377
+ },
1378
+ {
1379
+ "entropy": 1.1982890646904707,
1380
+ "epoch": 1.568,
1381
+ "grad_norm": 24.625,
1382
+ "learning_rate": 1.6783333333333332e-05,
1383
+ "loss": 19.3351,
1384
+ "mean_token_accuracy": 0.696817371249199,
1385
+ "num_tokens": 19150315.0,
1386
+ "step": 980
1387
+ },
1388
+ {
1389
+ "entropy": 1.212613246589899,
1390
+ "epoch": 1.584,
1391
+ "grad_norm": 24.375,
1392
+ "learning_rate": 1.6727777777777778e-05,
1393
+ "loss": 19.4591,
1394
+ "mean_token_accuracy": 0.6943255145102739,
1395
+ "num_tokens": 19344260.0,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "entropy": 1.237872240692377,
1400
+ "epoch": 1.6,
1401
+ "grad_norm": 23.5,
1402
+ "learning_rate": 1.6672222222222224e-05,
1403
+ "loss": 19.9617,
1404
+ "mean_token_accuracy": 0.6886349719017744,
1405
+ "num_tokens": 19532552.0,
1406
+ "step": 1000
1407
+ },
1408
+ {
1409
+ "epoch": 1.6,
1410
+ "eval_biology_entropy": 1.1855721821784972,
1411
+ "eval_biology_loss": 1.2722135782241821,
1412
+ "eval_biology_mean_token_accuracy": 0.6856484136581421,
1413
+ "eval_biology_num_tokens": 19532552.0,
1414
+ "eval_biology_runtime": 47.7667,
1415
+ "eval_biology_samples_per_second": 10.468,
1416
+ "eval_biology_steps_per_second": 2.617,
1417
+ "step": 1000
1418
+ },
1419
+ {
1420
+ "epoch": 1.6,
1421
+ "eval_chemistry_entropy": 0.9456389331817627,
1422
+ "eval_chemistry_loss": 1.0643842220306396,
1423
+ "eval_chemistry_mean_token_accuracy": 0.7323586492538452,
1424
+ "eval_chemistry_num_tokens": 19532552.0,
1425
+ "eval_chemistry_runtime": 59.0935,
1426
+ "eval_chemistry_samples_per_second": 8.461,
1427
+ "eval_chemistry_steps_per_second": 2.115,
1428
+ "step": 1000
1429
+ },
1430
+ {
1431
+ "epoch": 1.6,
1432
+ "eval_math_entropy": 0.9028137063980103,
1433
+ "eval_math_loss": 1.284372091293335,
1434
+ "eval_math_mean_token_accuracy": 0.7095083913803101,
1435
+ "eval_math_num_tokens": 19532552.0,
1436
+ "eval_math_runtime": 60.7834,
1437
+ "eval_math_samples_per_second": 8.226,
1438
+ "eval_math_steps_per_second": 2.056,
1439
+ "step": 1000
1440
+ },
1441
+ {
1442
+ "epoch": 1.6,
1443
+ "eval_physics_entropy": 0.9996754899024963,
1444
+ "eval_physics_loss": 1.1675664186477661,
1445
+ "eval_physics_mean_token_accuracy": 0.7260684304237366,
1446
+ "eval_physics_num_tokens": 19532552.0,
1447
+ "eval_physics_runtime": 69.2773,
1448
+ "eval_physics_samples_per_second": 7.217,
1449
+ "eval_physics_steps_per_second": 1.804,
1450
+ "step": 1000
1451
+ }
1452
+ ],
1453
+ "logging_steps": 10,
1454
+ "max_steps": 4000,
1455
+ "num_input_tokens_seen": 0,
1456
+ "num_train_epochs": 7,
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": 2.2020838985302374e+18,
1471
+ "train_batch_size": 4,
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:0d39621da3b5989e7ba65c3a57882f45d803db1b84d218aa54b7e14a9a65a314
3
+ size 6545