roonbug commited on
Commit
90da8a8
·
verified ·
1 Parent(s): 1bd3baf

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:00464b6c68fb26fe89aff05a8f961f4345de4c101fd2f11c106c7d49cdf85525
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:39a0aac08b2660991b04780eeaed8bbd0635ddd2764dc1b425fa0800aa4a8294
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:0de15e59b46dd114a1bb0f50a244a821f72e65064314b95774a000c9c52f3cbf
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:73eaf340b78a67506f34c1069b4303f0e50bb511987ed4e1763f90ca4906a586
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:acd74ad34e3c5060506b53a8a3fafbfb35d44065ee496b2abf3a0b9a3b93ba09
3
+ size 14645
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc8bb724852ff0b2fb075112a11c8d73c94bf8ed61aceed2ef52af24ef9a8c59
3
+ size 1465
checkpoint-1000/special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boi_token": "<start_of_image>",
3
+ "bos_token": {
4
+ "content": "<bos>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "eoi_token": "<end_of_image>",
11
+ "eos_token": {
12
+ "content": "<eos>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "image_token": "<image_soft_token>",
19
+ "pad_token": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "unk_token": {
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
checkpoint-1000/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
checkpoint-1000/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
checkpoint-1000/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1000/trainer_state.json ADDED
@@ -0,0 +1,1254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.4,
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.23732986762188374,
14
+ "epoch": 0.004,
15
+ "grad_norm": 65.5,
16
+ "learning_rate": 1.8000000000000001e-06,
17
+ "loss": 3.5321,
18
+ "mean_token_accuracy": 0.9383623488247395,
19
+ "num_tokens": 51831.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.24765114395413548,
24
+ "epoch": 0.008,
25
+ "grad_norm": 75.5,
26
+ "learning_rate": 3.8000000000000005e-06,
27
+ "loss": 3.7326,
28
+ "mean_token_accuracy": 0.9351197093725204,
29
+ "num_tokens": 103172.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.22037298779468983,
34
+ "epoch": 0.012,
35
+ "grad_norm": 78.0,
36
+ "learning_rate": 5.8e-06,
37
+ "loss": 3.3321,
38
+ "mean_token_accuracy": 0.9426371198147535,
39
+ "num_tokens": 147915.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.21643712103832513,
44
+ "epoch": 0.016,
45
+ "grad_norm": 90.5,
46
+ "learning_rate": 7.800000000000002e-06,
47
+ "loss": 3.6314,
48
+ "mean_token_accuracy": 0.9359618049114943,
49
+ "num_tokens": 195524.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.22069417587481438,
54
+ "epoch": 0.02,
55
+ "grad_norm": 89.0,
56
+ "learning_rate": 9.800000000000001e-06,
57
+ "loss": 3.5165,
58
+ "mean_token_accuracy": 0.939437722414732,
59
+ "num_tokens": 243747.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.2474461881676689,
64
+ "epoch": 0.024,
65
+ "grad_norm": 84.5,
66
+ "learning_rate": 1.18e-05,
67
+ "loss": 3.8125,
68
+ "mean_token_accuracy": 0.9321934457868337,
69
+ "num_tokens": 296999.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.21873723103199155,
74
+ "epoch": 0.028,
75
+ "grad_norm": 99.0,
76
+ "learning_rate": 1.38e-05,
77
+ "loss": 3.5653,
78
+ "mean_token_accuracy": 0.9368013516068459,
79
+ "num_tokens": 342114.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 0.22916369761805983,
84
+ "epoch": 0.032,
85
+ "grad_norm": 94.0,
86
+ "learning_rate": 1.58e-05,
87
+ "loss": 3.5791,
88
+ "mean_token_accuracy": 0.9380934119224549,
89
+ "num_tokens": 390903.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 0.2319087312091142,
94
+ "epoch": 0.036,
95
+ "grad_norm": 98.5,
96
+ "learning_rate": 1.7800000000000002e-05,
97
+ "loss": 3.65,
98
+ "mean_token_accuracy": 0.9355392649769783,
99
+ "num_tokens": 440359.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 0.2556251535890624,
104
+ "epoch": 0.04,
105
+ "grad_norm": 107.0,
106
+ "learning_rate": 1.98e-05,
107
+ "loss": 4.1158,
108
+ "mean_token_accuracy": 0.9278487522155047,
109
+ "num_tokens": 488481.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "epoch": 0.04,
114
+ "eval_biology_entropy": 0.5274985447078944,
115
+ "eval_biology_loss": 1.795237421989441,
116
+ "eval_biology_mean_token_accuracy": 0.6946995661854743,
117
+ "eval_biology_num_tokens": 488481.0,
118
+ "eval_biology_runtime": 34.5955,
119
+ "eval_biology_samples_per_second": 14.453,
120
+ "eval_biology_steps_per_second": 14.453,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.04,
125
+ "eval_chemistry_entropy": 0.35461274841427803,
126
+ "eval_chemistry_loss": 1.0036289691925049,
127
+ "eval_chemistry_mean_token_accuracy": 0.797036738216877,
128
+ "eval_chemistry_num_tokens": 488481.0,
129
+ "eval_chemistry_runtime": 39.1471,
130
+ "eval_chemistry_samples_per_second": 12.772,
131
+ "eval_chemistry_steps_per_second": 12.772,
132
+ "step": 100
133
+ },
134
+ {
135
+ "entropy": 0.24757922887802125,
136
+ "epoch": 0.044,
137
+ "grad_norm": 93.5,
138
+ "learning_rate": 1.98e-05,
139
+ "loss": 3.9008,
140
+ "mean_token_accuracy": 0.9320466317236423,
141
+ "num_tokens": 537471.0,
142
+ "step": 110
143
+ },
144
+ {
145
+ "entropy": 0.26570149913895874,
146
+ "epoch": 0.048,
147
+ "grad_norm": 118.0,
148
+ "learning_rate": 1.957777777777778e-05,
149
+ "loss": 4.3011,
150
+ "mean_token_accuracy": 0.9242724630981684,
151
+ "num_tokens": 589868.0,
152
+ "step": 120
153
+ },
154
+ {
155
+ "entropy": 0.25850508124567567,
156
+ "epoch": 0.052,
157
+ "grad_norm": 145.0,
158
+ "learning_rate": 1.9355555555555556e-05,
159
+ "loss": 4.164,
160
+ "mean_token_accuracy": 0.9254890568554401,
161
+ "num_tokens": 639512.0,
162
+ "step": 130
163
+ },
164
+ {
165
+ "entropy": 0.27587457664776593,
166
+ "epoch": 0.056,
167
+ "grad_norm": 98.5,
168
+ "learning_rate": 1.9133333333333335e-05,
169
+ "loss": 4.2555,
170
+ "mean_token_accuracy": 0.9243636153638363,
171
+ "num_tokens": 690754.0,
172
+ "step": 140
173
+ },
174
+ {
175
+ "entropy": 0.26002400361467154,
176
+ "epoch": 0.06,
177
+ "grad_norm": 90.5,
178
+ "learning_rate": 1.8911111111111115e-05,
179
+ "loss": 4.0114,
180
+ "mean_token_accuracy": 0.9282606355845928,
181
+ "num_tokens": 737075.0,
182
+ "step": 150
183
+ },
184
+ {
185
+ "entropy": 0.26948123425245285,
186
+ "epoch": 0.064,
187
+ "grad_norm": 90.5,
188
+ "learning_rate": 1.868888888888889e-05,
189
+ "loss": 4.3559,
190
+ "mean_token_accuracy": 0.9212390169501304,
191
+ "num_tokens": 791190.0,
192
+ "step": 160
193
+ },
194
+ {
195
+ "entropy": 0.2733419948257506,
196
+ "epoch": 0.068,
197
+ "grad_norm": 121.5,
198
+ "learning_rate": 1.8466666666666667e-05,
199
+ "loss": 4.4664,
200
+ "mean_token_accuracy": 0.9200532209128142,
201
+ "num_tokens": 841344.0,
202
+ "step": 170
203
+ },
204
+ {
205
+ "entropy": 0.2954006634186953,
206
+ "epoch": 0.072,
207
+ "grad_norm": 132.0,
208
+ "learning_rate": 1.8244444444444447e-05,
209
+ "loss": 4.5686,
210
+ "mean_token_accuracy": 0.917558104172349,
211
+ "num_tokens": 890075.0,
212
+ "step": 180
213
+ },
214
+ {
215
+ "entropy": 0.28410933739505706,
216
+ "epoch": 0.076,
217
+ "grad_norm": 81.0,
218
+ "learning_rate": 1.8022222222222223e-05,
219
+ "loss": 4.5413,
220
+ "mean_token_accuracy": 0.9189106050878764,
221
+ "num_tokens": 940599.0,
222
+ "step": 190
223
+ },
224
+ {
225
+ "entropy": 0.27199700379278513,
226
+ "epoch": 0.08,
227
+ "grad_norm": 114.0,
228
+ "learning_rate": 1.7800000000000002e-05,
229
+ "loss": 4.4607,
230
+ "mean_token_accuracy": 0.9194032322615385,
231
+ "num_tokens": 989860.0,
232
+ "step": 200
233
+ },
234
+ {
235
+ "epoch": 0.08,
236
+ "eval_biology_entropy": 0.5748336746096611,
237
+ "eval_biology_loss": 1.670861005783081,
238
+ "eval_biology_mean_token_accuracy": 0.6952305646538735,
239
+ "eval_biology_num_tokens": 989860.0,
240
+ "eval_biology_runtime": 34.4825,
241
+ "eval_biology_samples_per_second": 14.5,
242
+ "eval_biology_steps_per_second": 14.5,
243
+ "step": 200
244
+ },
245
+ {
246
+ "epoch": 0.08,
247
+ "eval_chemistry_entropy": 0.37541738474369046,
248
+ "eval_chemistry_loss": 0.9533677697181702,
249
+ "eval_chemistry_mean_token_accuracy": 0.7976788550019264,
250
+ "eval_chemistry_num_tokens": 989860.0,
251
+ "eval_chemistry_runtime": 39.0475,
252
+ "eval_chemistry_samples_per_second": 12.805,
253
+ "eval_chemistry_steps_per_second": 12.805,
254
+ "step": 200
255
+ },
256
+ {
257
+ "entropy": 0.2819324039854109,
258
+ "epoch": 0.084,
259
+ "grad_norm": 112.5,
260
+ "learning_rate": 1.7577777777777782e-05,
261
+ "loss": 4.4236,
262
+ "mean_token_accuracy": 0.9213832955807447,
263
+ "num_tokens": 1041199.0,
264
+ "step": 210
265
+ },
266
+ {
267
+ "entropy": 0.2940462036523968,
268
+ "epoch": 0.088,
269
+ "grad_norm": 87.5,
270
+ "learning_rate": 1.7355555555555558e-05,
271
+ "loss": 4.6065,
272
+ "mean_token_accuracy": 0.9184617388993501,
273
+ "num_tokens": 1087099.0,
274
+ "step": 220
275
+ },
276
+ {
277
+ "entropy": 0.2821590228006244,
278
+ "epoch": 0.092,
279
+ "grad_norm": 122.5,
280
+ "learning_rate": 1.7133333333333334e-05,
281
+ "loss": 4.4648,
282
+ "mean_token_accuracy": 0.9207406509667635,
283
+ "num_tokens": 1135090.0,
284
+ "step": 230
285
+ },
286
+ {
287
+ "entropy": 0.27030886968132106,
288
+ "epoch": 0.096,
289
+ "grad_norm": 112.0,
290
+ "learning_rate": 1.691111111111111e-05,
291
+ "loss": 4.4654,
292
+ "mean_token_accuracy": 0.9213668972253799,
293
+ "num_tokens": 1181777.0,
294
+ "step": 240
295
+ },
296
+ {
297
+ "entropy": 0.2798044764203951,
298
+ "epoch": 0.1,
299
+ "grad_norm": 122.5,
300
+ "learning_rate": 1.668888888888889e-05,
301
+ "loss": 4.3126,
302
+ "mean_token_accuracy": 0.9229083456099033,
303
+ "num_tokens": 1229242.0,
304
+ "step": 250
305
+ },
306
+ {
307
+ "entropy": 0.2830052811419591,
308
+ "epoch": 0.104,
309
+ "grad_norm": 93.0,
310
+ "learning_rate": 1.646666666666667e-05,
311
+ "loss": 4.6108,
312
+ "mean_token_accuracy": 0.9175490267574787,
313
+ "num_tokens": 1283881.0,
314
+ "step": 260
315
+ },
316
+ {
317
+ "entropy": 0.2907633282011375,
318
+ "epoch": 0.108,
319
+ "grad_norm": 96.0,
320
+ "learning_rate": 1.6244444444444446e-05,
321
+ "loss": 4.5547,
322
+ "mean_token_accuracy": 0.9179787810891866,
323
+ "num_tokens": 1332507.0,
324
+ "step": 270
325
+ },
326
+ {
327
+ "entropy": 0.29076307769864795,
328
+ "epoch": 0.112,
329
+ "grad_norm": 131.0,
330
+ "learning_rate": 1.6022222222222225e-05,
331
+ "loss": 4.6411,
332
+ "mean_token_accuracy": 0.9173810668289661,
333
+ "num_tokens": 1385513.0,
334
+ "step": 280
335
+ },
336
+ {
337
+ "entropy": 0.27884717038832607,
338
+ "epoch": 0.116,
339
+ "grad_norm": 127.5,
340
+ "learning_rate": 1.58e-05,
341
+ "loss": 4.5018,
342
+ "mean_token_accuracy": 0.9193264693021774,
343
+ "num_tokens": 1432251.0,
344
+ "step": 290
345
+ },
346
+ {
347
+ "entropy": 0.28094425410963597,
348
+ "epoch": 0.12,
349
+ "grad_norm": 123.0,
350
+ "learning_rate": 1.5577777777777777e-05,
351
+ "loss": 4.4214,
352
+ "mean_token_accuracy": 0.9191206317394972,
353
+ "num_tokens": 1483667.0,
354
+ "step": 300
355
+ },
356
+ {
357
+ "epoch": 0.12,
358
+ "eval_biology_entropy": 0.5509931429475546,
359
+ "eval_biology_loss": 1.7029587030410767,
360
+ "eval_biology_mean_token_accuracy": 0.6963970780968666,
361
+ "eval_biology_num_tokens": 1483667.0,
362
+ "eval_biology_runtime": 34.7873,
363
+ "eval_biology_samples_per_second": 14.373,
364
+ "eval_biology_steps_per_second": 14.373,
365
+ "step": 300
366
+ },
367
+ {
368
+ "epoch": 0.12,
369
+ "eval_chemistry_entropy": 0.36057418985664846,
370
+ "eval_chemistry_loss": 0.9737709164619446,
371
+ "eval_chemistry_mean_token_accuracy": 0.7957612861990928,
372
+ "eval_chemistry_num_tokens": 1483667.0,
373
+ "eval_chemistry_runtime": 39.2784,
374
+ "eval_chemistry_samples_per_second": 12.73,
375
+ "eval_chemistry_steps_per_second": 12.73,
376
+ "step": 300
377
+ },
378
+ {
379
+ "entropy": 0.29498244081623853,
380
+ "epoch": 0.124,
381
+ "grad_norm": 112.0,
382
+ "learning_rate": 1.5355555555555557e-05,
383
+ "loss": 4.7174,
384
+ "mean_token_accuracy": 0.9161882497370243,
385
+ "num_tokens": 1534286.0,
386
+ "step": 310
387
+ },
388
+ {
389
+ "entropy": 0.2827191028976813,
390
+ "epoch": 0.128,
391
+ "grad_norm": 125.5,
392
+ "learning_rate": 1.5133333333333335e-05,
393
+ "loss": 4.434,
394
+ "mean_token_accuracy": 0.9199115991592407,
395
+ "num_tokens": 1582368.0,
396
+ "step": 320
397
+ },
398
+ {
399
+ "entropy": 0.2590224297251552,
400
+ "epoch": 0.132,
401
+ "grad_norm": 108.0,
402
+ "learning_rate": 1.4911111111111113e-05,
403
+ "loss": 4.2696,
404
+ "mean_token_accuracy": 0.9226452499628067,
405
+ "num_tokens": 1630878.0,
406
+ "step": 330
407
+ },
408
+ {
409
+ "entropy": 0.2799088359810412,
410
+ "epoch": 0.136,
411
+ "grad_norm": 89.0,
412
+ "learning_rate": 1.468888888888889e-05,
413
+ "loss": 4.1858,
414
+ "mean_token_accuracy": 0.9264892596751452,
415
+ "num_tokens": 1677060.0,
416
+ "step": 340
417
+ },
418
+ {
419
+ "entropy": 0.25218479917384684,
420
+ "epoch": 0.14,
421
+ "grad_norm": 102.5,
422
+ "learning_rate": 1.4466666666666668e-05,
423
+ "loss": 4.0457,
424
+ "mean_token_accuracy": 0.9256420440971851,
425
+ "num_tokens": 1725186.0,
426
+ "step": 350
427
+ },
428
+ {
429
+ "entropy": 0.2768413402140141,
430
+ "epoch": 0.144,
431
+ "grad_norm": 165.0,
432
+ "learning_rate": 1.4244444444444444e-05,
433
+ "loss": 4.3177,
434
+ "mean_token_accuracy": 0.9229396734386682,
435
+ "num_tokens": 1773764.0,
436
+ "step": 360
437
+ },
438
+ {
439
+ "entropy": 0.2669145804364234,
440
+ "epoch": 0.148,
441
+ "grad_norm": 119.0,
442
+ "learning_rate": 1.4022222222222224e-05,
443
+ "loss": 4.3499,
444
+ "mean_token_accuracy": 0.923576295748353,
445
+ "num_tokens": 1823706.0,
446
+ "step": 370
447
+ },
448
+ {
449
+ "entropy": 0.26631026088725773,
450
+ "epoch": 0.152,
451
+ "grad_norm": 100.0,
452
+ "learning_rate": 1.38e-05,
453
+ "loss": 4.2629,
454
+ "mean_token_accuracy": 0.9251279231160879,
455
+ "num_tokens": 1873167.0,
456
+ "step": 380
457
+ },
458
+ {
459
+ "entropy": 0.2822582958266139,
460
+ "epoch": 0.156,
461
+ "grad_norm": 114.0,
462
+ "learning_rate": 1.3577777777777778e-05,
463
+ "loss": 4.5076,
464
+ "mean_token_accuracy": 0.918907954916358,
465
+ "num_tokens": 1921484.0,
466
+ "step": 390
467
+ },
468
+ {
469
+ "entropy": 0.2694689558353275,
470
+ "epoch": 0.16,
471
+ "grad_norm": 98.5,
472
+ "learning_rate": 1.3355555555555557e-05,
473
+ "loss": 4.3011,
474
+ "mean_token_accuracy": 0.9223983578383923,
475
+ "num_tokens": 1970077.0,
476
+ "step": 400
477
+ },
478
+ {
479
+ "epoch": 0.16,
480
+ "eval_biology_entropy": 0.5380513223707676,
481
+ "eval_biology_loss": 1.7468076944351196,
482
+ "eval_biology_mean_token_accuracy": 0.6966642059087753,
483
+ "eval_biology_num_tokens": 1970077.0,
484
+ "eval_biology_runtime": 34.907,
485
+ "eval_biology_samples_per_second": 14.324,
486
+ "eval_biology_steps_per_second": 14.324,
487
+ "step": 400
488
+ },
489
+ {
490
+ "epoch": 0.16,
491
+ "eval_chemistry_entropy": 0.3548970829844475,
492
+ "eval_chemistry_loss": 0.9920993447303772,
493
+ "eval_chemistry_mean_token_accuracy": 0.7959754932522773,
494
+ "eval_chemistry_num_tokens": 1970077.0,
495
+ "eval_chemistry_runtime": 39.3019,
496
+ "eval_chemistry_samples_per_second": 12.722,
497
+ "eval_chemistry_steps_per_second": 12.722,
498
+ "step": 400
499
+ },
500
+ {
501
+ "entropy": 0.275055521633476,
502
+ "epoch": 0.164,
503
+ "grad_norm": 115.5,
504
+ "learning_rate": 1.3133333333333334e-05,
505
+ "loss": 4.2974,
506
+ "mean_token_accuracy": 0.9223645210266114,
507
+ "num_tokens": 2019053.0,
508
+ "step": 410
509
+ },
510
+ {
511
+ "entropy": 0.2445472558028996,
512
+ "epoch": 0.168,
513
+ "grad_norm": 114.0,
514
+ "learning_rate": 1.2911111111111111e-05,
515
+ "loss": 3.905,
516
+ "mean_token_accuracy": 0.9301919605582952,
517
+ "num_tokens": 2066815.0,
518
+ "step": 420
519
+ },
520
+ {
521
+ "entropy": 0.2561819740338251,
522
+ "epoch": 0.172,
523
+ "grad_norm": 104.0,
524
+ "learning_rate": 1.2688888888888891e-05,
525
+ "loss": 3.9763,
526
+ "mean_token_accuracy": 0.9278897974640131,
527
+ "num_tokens": 2116402.0,
528
+ "step": 430
529
+ },
530
+ {
531
+ "entropy": 0.24572510465513914,
532
+ "epoch": 0.176,
533
+ "grad_norm": 113.0,
534
+ "learning_rate": 1.2466666666666667e-05,
535
+ "loss": 3.9928,
536
+ "mean_token_accuracy": 0.9271609451621771,
537
+ "num_tokens": 2168354.0,
538
+ "step": 440
539
+ },
540
+ {
541
+ "entropy": 0.28641294413246216,
542
+ "epoch": 0.18,
543
+ "grad_norm": 86.0,
544
+ "learning_rate": 1.2244444444444445e-05,
545
+ "loss": 4.5332,
546
+ "mean_token_accuracy": 0.9190013557672501,
547
+ "num_tokens": 2219158.0,
548
+ "step": 450
549
+ },
550
+ {
551
+ "entropy": 0.2572867315728217,
552
+ "epoch": 0.184,
553
+ "grad_norm": 103.5,
554
+ "learning_rate": 1.2022222222222224e-05,
555
+ "loss": 4.1139,
556
+ "mean_token_accuracy": 0.924973039329052,
557
+ "num_tokens": 2270617.0,
558
+ "step": 460
559
+ },
560
+ {
561
+ "entropy": 0.2555107505526394,
562
+ "epoch": 0.188,
563
+ "grad_norm": 105.5,
564
+ "learning_rate": 1.18e-05,
565
+ "loss": 3.9712,
566
+ "mean_token_accuracy": 0.928938215598464,
567
+ "num_tokens": 2322034.0,
568
+ "step": 470
569
+ },
570
+ {
571
+ "entropy": 0.2382448768010363,
572
+ "epoch": 0.192,
573
+ "grad_norm": 107.0,
574
+ "learning_rate": 1.1577777777777778e-05,
575
+ "loss": 3.8538,
576
+ "mean_token_accuracy": 0.9315264176577329,
577
+ "num_tokens": 2365822.0,
578
+ "step": 480
579
+ },
580
+ {
581
+ "entropy": 0.25814615855924783,
582
+ "epoch": 0.196,
583
+ "grad_norm": 109.5,
584
+ "learning_rate": 1.1355555555555558e-05,
585
+ "loss": 3.9795,
586
+ "mean_token_accuracy": 0.9277065552771091,
587
+ "num_tokens": 2413853.0,
588
+ "step": 490
589
+ },
590
+ {
591
+ "entropy": 0.25510344933718443,
592
+ "epoch": 0.2,
593
+ "grad_norm": 132.0,
594
+ "learning_rate": 1.1133333333333334e-05,
595
+ "loss": 4.0249,
596
+ "mean_token_accuracy": 0.9280555374920368,
597
+ "num_tokens": 2459876.0,
598
+ "step": 500
599
+ },
600
+ {
601
+ "epoch": 0.2,
602
+ "eval_biology_entropy": 0.5138065100461244,
603
+ "eval_biology_loss": 1.7803232669830322,
604
+ "eval_biology_mean_token_accuracy": 0.6961626922488212,
605
+ "eval_biology_num_tokens": 2459876.0,
606
+ "eval_biology_runtime": 34.5634,
607
+ "eval_biology_samples_per_second": 14.466,
608
+ "eval_biology_steps_per_second": 14.466,
609
+ "step": 500
610
+ },
611
+ {
612
+ "epoch": 0.2,
613
+ "eval_chemistry_entropy": 0.3430728105157614,
614
+ "eval_chemistry_loss": 1.0075100660324097,
615
+ "eval_chemistry_mean_token_accuracy": 0.7967523041367531,
616
+ "eval_chemistry_num_tokens": 2459876.0,
617
+ "eval_chemistry_runtime": 38.8811,
618
+ "eval_chemistry_samples_per_second": 12.86,
619
+ "eval_chemistry_steps_per_second": 12.86,
620
+ "step": 500
621
+ },
622
+ {
623
+ "entropy": 0.24339726453181357,
624
+ "epoch": 0.204,
625
+ "grad_norm": 98.0,
626
+ "learning_rate": 1.0911111111111112e-05,
627
+ "loss": 3.8672,
628
+ "mean_token_accuracy": 0.928895252943039,
629
+ "num_tokens": 2509187.0,
630
+ "step": 510
631
+ },
632
+ {
633
+ "entropy": 0.2548065703595057,
634
+ "epoch": 0.208,
635
+ "grad_norm": 115.0,
636
+ "learning_rate": 1.0688888888888891e-05,
637
+ "loss": 3.8912,
638
+ "mean_token_accuracy": 0.9297985762357712,
639
+ "num_tokens": 2558762.0,
640
+ "step": 520
641
+ },
642
+ {
643
+ "entropy": 0.23889241772703826,
644
+ "epoch": 0.212,
645
+ "grad_norm": 96.5,
646
+ "learning_rate": 1.0466666666666668e-05,
647
+ "loss": 3.8306,
648
+ "mean_token_accuracy": 0.9323119979351759,
649
+ "num_tokens": 2608616.0,
650
+ "step": 530
651
+ },
652
+ {
653
+ "entropy": 0.2432718011084944,
654
+ "epoch": 0.216,
655
+ "grad_norm": 93.0,
656
+ "learning_rate": 1.0244444444444445e-05,
657
+ "loss": 3.7466,
658
+ "mean_token_accuracy": 0.9322359401732683,
659
+ "num_tokens": 2654953.0,
660
+ "step": 540
661
+ },
662
+ {
663
+ "entropy": 0.23889318462461234,
664
+ "epoch": 0.22,
665
+ "grad_norm": 98.0,
666
+ "learning_rate": 1.0022222222222222e-05,
667
+ "loss": 3.8405,
668
+ "mean_token_accuracy": 0.9313177198171616,
669
+ "num_tokens": 2704686.0,
670
+ "step": 550
671
+ },
672
+ {
673
+ "entropy": 0.24933559738565236,
674
+ "epoch": 0.224,
675
+ "grad_norm": 87.5,
676
+ "learning_rate": 9.800000000000001e-06,
677
+ "loss": 3.9345,
678
+ "mean_token_accuracy": 0.9297204330563545,
679
+ "num_tokens": 2755347.0,
680
+ "step": 560
681
+ },
682
+ {
683
+ "entropy": 0.22135354387573897,
684
+ "epoch": 0.228,
685
+ "grad_norm": 99.0,
686
+ "learning_rate": 9.577777777777779e-06,
687
+ "loss": 3.5661,
688
+ "mean_token_accuracy": 0.9367739714682102,
689
+ "num_tokens": 2804340.0,
690
+ "step": 570
691
+ },
692
+ {
693
+ "entropy": 0.22378794639371336,
694
+ "epoch": 0.232,
695
+ "grad_norm": 116.0,
696
+ "learning_rate": 9.355555555555557e-06,
697
+ "loss": 3.5871,
698
+ "mean_token_accuracy": 0.9360409460961818,
699
+ "num_tokens": 2852298.0,
700
+ "step": 580
701
+ },
702
+ {
703
+ "entropy": 0.21883488199673592,
704
+ "epoch": 0.236,
705
+ "grad_norm": 112.0,
706
+ "learning_rate": 9.133333333333335e-06,
707
+ "loss": 3.5316,
708
+ "mean_token_accuracy": 0.9372412968426943,
709
+ "num_tokens": 2901227.0,
710
+ "step": 590
711
+ },
712
+ {
713
+ "entropy": 0.2272392014041543,
714
+ "epoch": 0.24,
715
+ "grad_norm": 136.0,
716
+ "learning_rate": 8.91111111111111e-06,
717
+ "loss": 3.5432,
718
+ "mean_token_accuracy": 0.9384493075311184,
719
+ "num_tokens": 2947346.0,
720
+ "step": 600
721
+ },
722
+ {
723
+ "epoch": 0.24,
724
+ "eval_biology_entropy": 0.5223001695722341,
725
+ "eval_biology_loss": 1.7573493719100952,
726
+ "eval_biology_mean_token_accuracy": 0.6965594539642334,
727
+ "eval_biology_num_tokens": 2947346.0,
728
+ "eval_biology_runtime": 34.4882,
729
+ "eval_biology_samples_per_second": 14.498,
730
+ "eval_biology_steps_per_second": 14.498,
731
+ "step": 600
732
+ },
733
+ {
734
+ "epoch": 0.24,
735
+ "eval_chemistry_entropy": 0.3469998552650213,
736
+ "eval_chemistry_loss": 1.0004746913909912,
737
+ "eval_chemistry_mean_token_accuracy": 0.7966757331490517,
738
+ "eval_chemistry_num_tokens": 2947346.0,
739
+ "eval_chemistry_runtime": 39.0288,
740
+ "eval_chemistry_samples_per_second": 12.811,
741
+ "eval_chemistry_steps_per_second": 12.811,
742
+ "step": 600
743
+ },
744
+ {
745
+ "entropy": 0.24716254335362464,
746
+ "epoch": 0.244,
747
+ "grad_norm": 115.5,
748
+ "learning_rate": 8.68888888888889e-06,
749
+ "loss": 3.9633,
750
+ "mean_token_accuracy": 0.9289827451109887,
751
+ "num_tokens": 2996175.0,
752
+ "step": 610
753
+ },
754
+ {
755
+ "entropy": 0.23793726551812142,
756
+ "epoch": 0.248,
757
+ "grad_norm": 116.5,
758
+ "learning_rate": 8.466666666666668e-06,
759
+ "loss": 3.7559,
760
+ "mean_token_accuracy": 0.9330472752451897,
761
+ "num_tokens": 3043128.0,
762
+ "step": 620
763
+ },
764
+ {
765
+ "entropy": 0.2279190807370469,
766
+ "epoch": 0.252,
767
+ "grad_norm": 99.5,
768
+ "learning_rate": 8.244444444444444e-06,
769
+ "loss": 3.6192,
770
+ "mean_token_accuracy": 0.9342298805713654,
771
+ "num_tokens": 3090827.0,
772
+ "step": 630
773
+ },
774
+ {
775
+ "entropy": 0.2271652126684785,
776
+ "epoch": 0.256,
777
+ "grad_norm": 94.0,
778
+ "learning_rate": 8.022222222222222e-06,
779
+ "loss": 3.6282,
780
+ "mean_token_accuracy": 0.9344729892909527,
781
+ "num_tokens": 3139957.0,
782
+ "step": 640
783
+ },
784
+ {
785
+ "entropy": 0.21735699030105024,
786
+ "epoch": 0.26,
787
+ "grad_norm": 94.5,
788
+ "learning_rate": 7.800000000000002e-06,
789
+ "loss": 3.4237,
790
+ "mean_token_accuracy": 0.9400590911507607,
791
+ "num_tokens": 3183188.0,
792
+ "step": 650
793
+ },
794
+ {
795
+ "entropy": 0.23376386400777846,
796
+ "epoch": 0.264,
797
+ "grad_norm": 92.5,
798
+ "learning_rate": 7.5777777777777785e-06,
799
+ "loss": 3.6323,
800
+ "mean_token_accuracy": 0.9351054444909096,
801
+ "num_tokens": 3232159.0,
802
+ "step": 660
803
+ },
804
+ {
805
+ "entropy": 0.2265489047858864,
806
+ "epoch": 0.268,
807
+ "grad_norm": 108.0,
808
+ "learning_rate": 7.3555555555555555e-06,
809
+ "loss": 3.5086,
810
+ "mean_token_accuracy": 0.9367269530892373,
811
+ "num_tokens": 3283908.0,
812
+ "step": 670
813
+ },
814
+ {
815
+ "entropy": 0.21268082661554216,
816
+ "epoch": 0.272,
817
+ "grad_norm": 112.5,
818
+ "learning_rate": 7.133333333333334e-06,
819
+ "loss": 3.3604,
820
+ "mean_token_accuracy": 0.940755220130086,
821
+ "num_tokens": 3335951.0,
822
+ "step": 680
823
+ },
824
+ {
825
+ "entropy": 0.23243776755407453,
826
+ "epoch": 0.276,
827
+ "grad_norm": 109.0,
828
+ "learning_rate": 6.911111111111112e-06,
829
+ "loss": 3.7226,
830
+ "mean_token_accuracy": 0.932453778013587,
831
+ "num_tokens": 3387755.0,
832
+ "step": 690
833
+ },
834
+ {
835
+ "entropy": 0.22202653533313424,
836
+ "epoch": 0.28,
837
+ "grad_norm": 109.0,
838
+ "learning_rate": 6.688888888888889e-06,
839
+ "loss": 3.5264,
840
+ "mean_token_accuracy": 0.9369195692241192,
841
+ "num_tokens": 3437213.0,
842
+ "step": 700
843
+ },
844
+ {
845
+ "epoch": 0.28,
846
+ "eval_biology_entropy": 0.5441444292068481,
847
+ "eval_biology_loss": 1.6984660625457764,
848
+ "eval_biology_mean_token_accuracy": 0.6988616171479225,
849
+ "eval_biology_num_tokens": 3437213.0,
850
+ "eval_biology_runtime": 34.7957,
851
+ "eval_biology_samples_per_second": 14.37,
852
+ "eval_biology_steps_per_second": 14.37,
853
+ "step": 700
854
+ },
855
+ {
856
+ "epoch": 0.28,
857
+ "eval_chemistry_entropy": 0.3569708024710417,
858
+ "eval_chemistry_loss": 0.9757047295570374,
859
+ "eval_chemistry_mean_token_accuracy": 0.798202440559864,
860
+ "eval_chemistry_num_tokens": 3437213.0,
861
+ "eval_chemistry_runtime": 39.0331,
862
+ "eval_chemistry_samples_per_second": 12.81,
863
+ "eval_chemistry_steps_per_second": 12.81,
864
+ "step": 700
865
+ },
866
+ {
867
+ "entropy": 0.22738665074575692,
868
+ "epoch": 0.284,
869
+ "grad_norm": 80.0,
870
+ "learning_rate": 6.466666666666667e-06,
871
+ "loss": 3.521,
872
+ "mean_token_accuracy": 0.9371909685432911,
873
+ "num_tokens": 3489088.0,
874
+ "step": 710
875
+ },
876
+ {
877
+ "entropy": 0.22560963679570706,
878
+ "epoch": 0.288,
879
+ "grad_norm": 87.0,
880
+ "learning_rate": 6.2444444444444456e-06,
881
+ "loss": 3.6287,
882
+ "mean_token_accuracy": 0.9355691641569137,
883
+ "num_tokens": 3539731.0,
884
+ "step": 720
885
+ },
886
+ {
887
+ "entropy": 0.20523998411372305,
888
+ "epoch": 0.292,
889
+ "grad_norm": 96.0,
890
+ "learning_rate": 6.0222222222222225e-06,
891
+ "loss": 3.1107,
892
+ "mean_token_accuracy": 0.9447531200945377,
893
+ "num_tokens": 3586433.0,
894
+ "step": 730
895
+ },
896
+ {
897
+ "entropy": 0.21899892918299885,
898
+ "epoch": 0.296,
899
+ "grad_norm": 81.0,
900
+ "learning_rate": 5.8e-06,
901
+ "loss": 3.4799,
902
+ "mean_token_accuracy": 0.9385896824300289,
903
+ "num_tokens": 3633448.0,
904
+ "step": 740
905
+ },
906
+ {
907
+ "entropy": 0.20959302789997308,
908
+ "epoch": 0.3,
909
+ "grad_norm": 97.5,
910
+ "learning_rate": 5.577777777777778e-06,
911
+ "loss": 3.2429,
912
+ "mean_token_accuracy": 0.9431923229247332,
913
+ "num_tokens": 3685080.0,
914
+ "step": 750
915
+ },
916
+ {
917
+ "entropy": 0.19758035039994865,
918
+ "epoch": 0.304,
919
+ "grad_norm": 81.0,
920
+ "learning_rate": 5.355555555555556e-06,
921
+ "loss": 3.0738,
922
+ "mean_token_accuracy": 0.9454657685011625,
923
+ "num_tokens": 3733488.0,
924
+ "step": 760
925
+ },
926
+ {
927
+ "entropy": 0.20672397674061357,
928
+ "epoch": 0.308,
929
+ "grad_norm": 94.5,
930
+ "learning_rate": 5.133333333333334e-06,
931
+ "loss": 3.2232,
932
+ "mean_token_accuracy": 0.9428212687373161,
933
+ "num_tokens": 3779708.0,
934
+ "step": 770
935
+ },
936
+ {
937
+ "entropy": 0.18807534142397345,
938
+ "epoch": 0.312,
939
+ "grad_norm": 96.0,
940
+ "learning_rate": 4.911111111111112e-06,
941
+ "loss": 2.9023,
942
+ "mean_token_accuracy": 0.9485364310443402,
943
+ "num_tokens": 3825212.0,
944
+ "step": 780
945
+ },
946
+ {
947
+ "entropy": 0.20133916779886932,
948
+ "epoch": 0.316,
949
+ "grad_norm": 169.0,
950
+ "learning_rate": 4.6888888888888895e-06,
951
+ "loss": 3.2389,
952
+ "mean_token_accuracy": 0.9434301875531673,
953
+ "num_tokens": 3870912.0,
954
+ "step": 790
955
+ },
956
+ {
957
+ "entropy": 0.19466696886811405,
958
+ "epoch": 0.32,
959
+ "grad_norm": 79.0,
960
+ "learning_rate": 4.4666666666666665e-06,
961
+ "loss": 3.0524,
962
+ "mean_token_accuracy": 0.9459826443344355,
963
+ "num_tokens": 3920545.0,
964
+ "step": 800
965
+ },
966
+ {
967
+ "epoch": 0.32,
968
+ "eval_biology_entropy": 0.5274494394809007,
969
+ "eval_biology_loss": 1.7321778535842896,
970
+ "eval_biology_mean_token_accuracy": 0.6985582538843155,
971
+ "eval_biology_num_tokens": 3920545.0,
972
+ "eval_biology_runtime": 34.5204,
973
+ "eval_biology_samples_per_second": 14.484,
974
+ "eval_biology_steps_per_second": 14.484,
975
+ "step": 800
976
+ },
977
+ {
978
+ "epoch": 0.32,
979
+ "eval_chemistry_entropy": 0.3479532795697451,
980
+ "eval_chemistry_loss": 0.9915227293968201,
981
+ "eval_chemistry_mean_token_accuracy": 0.7979016464352607,
982
+ "eval_chemistry_num_tokens": 3920545.0,
983
+ "eval_chemistry_runtime": 39.0436,
984
+ "eval_chemistry_samples_per_second": 12.806,
985
+ "eval_chemistry_steps_per_second": 12.806,
986
+ "step": 800
987
+ },
988
+ {
989
+ "entropy": 0.19644011000636966,
990
+ "epoch": 0.324,
991
+ "grad_norm": 71.0,
992
+ "learning_rate": 4.244444444444445e-06,
993
+ "loss": 3.0306,
994
+ "mean_token_accuracy": 0.9468632739037275,
995
+ "num_tokens": 3967499.0,
996
+ "step": 810
997
+ },
998
+ {
999
+ "entropy": 0.19098295441363006,
1000
+ "epoch": 0.328,
1001
+ "grad_norm": 79.0,
1002
+ "learning_rate": 4.022222222222222e-06,
1003
+ "loss": 3.0312,
1004
+ "mean_token_accuracy": 0.9459359969943761,
1005
+ "num_tokens": 4016673.0,
1006
+ "step": 820
1007
+ },
1008
+ {
1009
+ "entropy": 0.19487170833162965,
1010
+ "epoch": 0.332,
1011
+ "grad_norm": 78.0,
1012
+ "learning_rate": 3.8000000000000005e-06,
1013
+ "loss": 2.9308,
1014
+ "mean_token_accuracy": 0.9479724440723658,
1015
+ "num_tokens": 4063859.0,
1016
+ "step": 830
1017
+ },
1018
+ {
1019
+ "entropy": 0.19424405433237552,
1020
+ "epoch": 0.336,
1021
+ "grad_norm": 81.5,
1022
+ "learning_rate": 3.577777777777778e-06,
1023
+ "loss": 3.0624,
1024
+ "mean_token_accuracy": 0.9451455675065518,
1025
+ "num_tokens": 4114077.0,
1026
+ "step": 840
1027
+ },
1028
+ {
1029
+ "entropy": 0.1846273104660213,
1030
+ "epoch": 0.34,
1031
+ "grad_norm": 85.5,
1032
+ "learning_rate": 3.3555555555555557e-06,
1033
+ "loss": 2.8559,
1034
+ "mean_token_accuracy": 0.9497106105089188,
1035
+ "num_tokens": 4160168.0,
1036
+ "step": 850
1037
+ },
1038
+ {
1039
+ "entropy": 0.19622367892879994,
1040
+ "epoch": 0.344,
1041
+ "grad_norm": 84.5,
1042
+ "learning_rate": 3.133333333333334e-06,
1043
+ "loss": 3.1202,
1044
+ "mean_token_accuracy": 0.9454001683741808,
1045
+ "num_tokens": 4210403.0,
1046
+ "step": 860
1047
+ },
1048
+ {
1049
+ "entropy": 0.16956532222684473,
1050
+ "epoch": 0.348,
1051
+ "grad_norm": 69.0,
1052
+ "learning_rate": 2.9111111111111114e-06,
1053
+ "loss": 2.7258,
1054
+ "mean_token_accuracy": 0.952002327516675,
1055
+ "num_tokens": 4256944.0,
1056
+ "step": 870
1057
+ },
1058
+ {
1059
+ "entropy": 0.1938292073085904,
1060
+ "epoch": 0.352,
1061
+ "grad_norm": 121.0,
1062
+ "learning_rate": 2.6888888888888892e-06,
1063
+ "loss": 2.9593,
1064
+ "mean_token_accuracy": 0.9468233805149794,
1065
+ "num_tokens": 4306949.0,
1066
+ "step": 880
1067
+ },
1068
+ {
1069
+ "entropy": 0.19562577470205725,
1070
+ "epoch": 0.356,
1071
+ "grad_norm": 88.5,
1072
+ "learning_rate": 2.466666666666667e-06,
1073
+ "loss": 3.1355,
1074
+ "mean_token_accuracy": 0.9445545077323914,
1075
+ "num_tokens": 4355070.0,
1076
+ "step": 890
1077
+ },
1078
+ {
1079
+ "entropy": 0.18795418140944092,
1080
+ "epoch": 0.36,
1081
+ "grad_norm": 70.0,
1082
+ "learning_rate": 2.2444444444444445e-06,
1083
+ "loss": 2.9405,
1084
+ "mean_token_accuracy": 0.9477147374302148,
1085
+ "num_tokens": 4406104.0,
1086
+ "step": 900
1087
+ },
1088
+ {
1089
+ "epoch": 0.36,
1090
+ "eval_biology_entropy": 0.5236208895593881,
1091
+ "eval_biology_loss": 1.740578532218933,
1092
+ "eval_biology_mean_token_accuracy": 0.6986331322193146,
1093
+ "eval_biology_num_tokens": 4406104.0,
1094
+ "eval_biology_runtime": 34.8179,
1095
+ "eval_biology_samples_per_second": 14.36,
1096
+ "eval_biology_steps_per_second": 14.36,
1097
+ "step": 900
1098
+ },
1099
+ {
1100
+ "epoch": 0.36,
1101
+ "eval_chemistry_entropy": 0.34630436305701734,
1102
+ "eval_chemistry_loss": 0.9945363402366638,
1103
+ "eval_chemistry_mean_token_accuracy": 0.7981406454443931,
1104
+ "eval_chemistry_num_tokens": 4406104.0,
1105
+ "eval_chemistry_runtime": 39.2261,
1106
+ "eval_chemistry_samples_per_second": 12.747,
1107
+ "eval_chemistry_steps_per_second": 12.747,
1108
+ "step": 900
1109
+ },
1110
+ {
1111
+ "entropy": 0.16734268208965658,
1112
+ "epoch": 0.364,
1113
+ "grad_norm": 95.5,
1114
+ "learning_rate": 2.0222222222222223e-06,
1115
+ "loss": 2.7285,
1116
+ "mean_token_accuracy": 0.9537675432860852,
1117
+ "num_tokens": 4455015.0,
1118
+ "step": 910
1119
+ },
1120
+ {
1121
+ "entropy": 0.1797151634003967,
1122
+ "epoch": 0.368,
1123
+ "grad_norm": 81.5,
1124
+ "learning_rate": 1.8000000000000001e-06,
1125
+ "loss": 2.821,
1126
+ "mean_token_accuracy": 0.9497428938746453,
1127
+ "num_tokens": 4504001.0,
1128
+ "step": 920
1129
+ },
1130
+ {
1131
+ "entropy": 0.17741366024129093,
1132
+ "epoch": 0.372,
1133
+ "grad_norm": 86.0,
1134
+ "learning_rate": 1.5777777777777778e-06,
1135
+ "loss": 2.7105,
1136
+ "mean_token_accuracy": 0.9517100431025028,
1137
+ "num_tokens": 4550269.0,
1138
+ "step": 930
1139
+ },
1140
+ {
1141
+ "entropy": 0.1795904800761491,
1142
+ "epoch": 0.376,
1143
+ "grad_norm": 86.5,
1144
+ "learning_rate": 1.3555555555555558e-06,
1145
+ "loss": 2.7266,
1146
+ "mean_token_accuracy": 0.9516325149685144,
1147
+ "num_tokens": 4597559.0,
1148
+ "step": 940
1149
+ },
1150
+ {
1151
+ "entropy": 0.1703337698010728,
1152
+ "epoch": 0.38,
1153
+ "grad_norm": 92.5,
1154
+ "learning_rate": 1.1333333333333334e-06,
1155
+ "loss": 2.6341,
1156
+ "mean_token_accuracy": 0.9536429800093174,
1157
+ "num_tokens": 4646903.0,
1158
+ "step": 950
1159
+ },
1160
+ {
1161
+ "entropy": 0.17055770214647054,
1162
+ "epoch": 0.384,
1163
+ "grad_norm": 62.25,
1164
+ "learning_rate": 9.111111111111113e-07,
1165
+ "loss": 2.6421,
1166
+ "mean_token_accuracy": 0.952850966155529,
1167
+ "num_tokens": 4693812.0,
1168
+ "step": 960
1169
+ },
1170
+ {
1171
+ "entropy": 0.16687732187565416,
1172
+ "epoch": 0.388,
1173
+ "grad_norm": 81.0,
1174
+ "learning_rate": 6.88888888888889e-07,
1175
+ "loss": 2.6243,
1176
+ "mean_token_accuracy": 0.9537446014583111,
1177
+ "num_tokens": 4740309.0,
1178
+ "step": 970
1179
+ },
1180
+ {
1181
+ "entropy": 0.1786689094034955,
1182
+ "epoch": 0.392,
1183
+ "grad_norm": 86.0,
1184
+ "learning_rate": 4.666666666666667e-07,
1185
+ "loss": 2.8012,
1186
+ "mean_token_accuracy": 0.9494896039366723,
1187
+ "num_tokens": 4790965.0,
1188
+ "step": 980
1189
+ },
1190
+ {
1191
+ "entropy": 0.1676131068263203,
1192
+ "epoch": 0.396,
1193
+ "grad_norm": 84.5,
1194
+ "learning_rate": 2.444444444444445e-07,
1195
+ "loss": 2.7078,
1196
+ "mean_token_accuracy": 0.9509209491312504,
1197
+ "num_tokens": 4839186.0,
1198
+ "step": 990
1199
+ },
1200
+ {
1201
+ "entropy": 0.17521020406857132,
1202
+ "epoch": 0.4,
1203
+ "grad_norm": 86.5,
1204
+ "learning_rate": 2.2222222222222224e-08,
1205
+ "loss": 2.6856,
1206
+ "mean_token_accuracy": 0.9513530559837818,
1207
+ "num_tokens": 4887094.0,
1208
+ "step": 1000
1209
+ },
1210
+ {
1211
+ "epoch": 0.4,
1212
+ "eval_biology_entropy": 0.524978510722518,
1213
+ "eval_biology_loss": 1.7350329160690308,
1214
+ "eval_biology_mean_token_accuracy": 0.6986925270557404,
1215
+ "eval_biology_num_tokens": 4887094.0,
1216
+ "eval_biology_runtime": 34.5766,
1217
+ "eval_biology_samples_per_second": 14.461,
1218
+ "eval_biology_steps_per_second": 14.461,
1219
+ "step": 1000
1220
+ },
1221
+ {
1222
+ "epoch": 0.4,
1223
+ "eval_chemistry_entropy": 0.3469348890334368,
1224
+ "eval_chemistry_loss": 0.9920687079429626,
1225
+ "eval_chemistry_mean_token_accuracy": 0.7983826797604561,
1226
+ "eval_chemistry_num_tokens": 4887094.0,
1227
+ "eval_chemistry_runtime": 39.0381,
1228
+ "eval_chemistry_samples_per_second": 12.808,
1229
+ "eval_chemistry_steps_per_second": 12.808,
1230
+ "step": 1000
1231
+ }
1232
+ ],
1233
+ "logging_steps": 10,
1234
+ "max_steps": 1000,
1235
+ "num_input_tokens_seen": 0,
1236
+ "num_train_epochs": 1,
1237
+ "save_steps": 500,
1238
+ "stateful_callbacks": {
1239
+ "TrainerControl": {
1240
+ "args": {
1241
+ "should_epoch_stop": false,
1242
+ "should_evaluate": false,
1243
+ "should_log": false,
1244
+ "should_save": true,
1245
+ "should_training_stop": true
1246
+ },
1247
+ "attributes": {}
1248
+ }
1249
+ },
1250
+ "total_flos": 3.277009915508544e+17,
1251
+ "train_batch_size": 1,
1252
+ "trial_name": null,
1253
+ "trial_params": null
1254
+ }
checkpoint-1000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:674e45de12e69af34259f39e1f9e94e606fc58f4ef11f5ba9fa01ef4a5134486
3
+ size 6609