Text Generation
Transformers
Safetensors
PEFT
gemma-3
continued-pretraining
sft
lora
synthetic-data
alignment
midtraining
scimt
sidbaines commited on
Commit
9bbdcb8
·
verified ·
1 Parent(s): 3bdd945

add sdf/1x/shared/post_dolci90 (copied from jbostock/scimt-dispatch-midtrained-sft-v1)

Browse files
.gitattributes CHANGED
@@ -132,3 +132,4 @@ sdf/1x/coin/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
132
  sdf/4x/coin/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
133
  sdf/4x/charter/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
134
  sdf/4x/shared/post_dolci90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
132
  sdf/4x/coin/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
133
  sdf/4x/charter/final/tokenizer.json filter=lfs diff=lfs merge=lfs -text
134
  sdf/4x/shared/post_dolci90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
135
+ sdf/1x/shared/post_dolci90/tokenizer.json filter=lfs diff=lfs merge=lfs -text
sdf/1x/shared/post_dolci90/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 -%}
sdf/1x/shared/post_dolci90/config.json ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "bos_token_id": 2,
21
+ "cache_implementation": "hybrid",
22
+ "dtype": "bfloat16",
23
+ "eos_token_id": 1,
24
+ "final_logit_softcapping": null,
25
+ "head_dim": 256,
26
+ "hidden_activation": "gelu_pytorch_tanh",
27
+ "hidden_size": 3840,
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 15360,
30
+ "layer_types": [
31
+ "sliding_attention",
32
+ "sliding_attention",
33
+ "sliding_attention",
34
+ "sliding_attention",
35
+ "sliding_attention",
36
+ "full_attention",
37
+ "sliding_attention",
38
+ "sliding_attention",
39
+ "sliding_attention",
40
+ "sliding_attention",
41
+ "sliding_attention",
42
+ "full_attention",
43
+ "sliding_attention",
44
+ "sliding_attention",
45
+ "sliding_attention",
46
+ "sliding_attention",
47
+ "sliding_attention",
48
+ "full_attention",
49
+ "sliding_attention",
50
+ "sliding_attention",
51
+ "sliding_attention",
52
+ "sliding_attention",
53
+ "sliding_attention",
54
+ "full_attention",
55
+ "sliding_attention",
56
+ "sliding_attention",
57
+ "sliding_attention",
58
+ "sliding_attention",
59
+ "sliding_attention",
60
+ "full_attention",
61
+ "sliding_attention",
62
+ "sliding_attention",
63
+ "sliding_attention",
64
+ "sliding_attention",
65
+ "sliding_attention",
66
+ "full_attention",
67
+ "sliding_attention",
68
+ "sliding_attention",
69
+ "sliding_attention",
70
+ "sliding_attention",
71
+ "sliding_attention",
72
+ "full_attention",
73
+ "sliding_attention",
74
+ "sliding_attention",
75
+ "sliding_attention",
76
+ "sliding_attention",
77
+ "sliding_attention",
78
+ "full_attention"
79
+ ],
80
+ "max_position_embeddings": 131072,
81
+ "model_type": "gemma3_text",
82
+ "num_attention_heads": 16,
83
+ "num_hidden_layers": 48,
84
+ "num_key_value_heads": 8,
85
+ "pad_token_id": 0,
86
+ "query_pre_attn_scalar": 256,
87
+ "rms_norm_eps": 1e-06,
88
+ "rope_parameters": {
89
+ "full_attention": {
90
+ "factor": 8.0,
91
+ "rope_theta": 1000000.0,
92
+ "rope_type": "linear"
93
+ },
94
+ "sliding_attention": {
95
+ "rope_theta": 10000.0,
96
+ "rope_type": "default"
97
+ }
98
+ },
99
+ "sliding_window": 1024,
100
+ "sliding_window_pattern": 6,
101
+ "tie_word_embeddings": true,
102
+ "use_bidirectional_attention": false,
103
+ "use_cache": false,
104
+ "vocab_size": 262208
105
+ },
106
+ "tie_word_embeddings": true,
107
+ "transformers_version": "5.9.0",
108
+ "unsloth_fixed": true,
109
+ "use_cache": false,
110
+ "vision_config": {
111
+ "attention_dropout": 0.0,
112
+ "dtype": "bfloat16",
113
+ "hidden_act": "gelu_pytorch_tanh",
114
+ "hidden_size": 1152,
115
+ "image_size": 896,
116
+ "intermediate_size": 4304,
117
+ "layer_norm_eps": 1e-06,
118
+ "model_type": "siglip_vision_model",
119
+ "num_attention_heads": 16,
120
+ "num_channels": 3,
121
+ "num_hidden_layers": 27,
122
+ "patch_size": 14,
123
+ "vision_use_head": false
124
+ }
125
+ }
sdf/1x/shared/post_dolci90/generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 2,
3
+ "cache_implementation": "hybrid",
4
+ "do_sample": true,
5
+ "eos_token_id": [
6
+ 1,
7
+ 106
8
+ ],
9
+ "pad_token_id": 0,
10
+ "top_k": 64,
11
+ "top_p": 0.95,
12
+ "transformers_version": "5.9.0"
13
+ }
sdf/1x/shared/post_dolci90/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb6672cc7b27f9f9df760fdb1658921b993a89953faac899be8c984b9036b30a
3
+ size 26388552360
sdf/1x/shared/post_dolci90/preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_pan_and_scan": null,
5
+ "do_rescale": true,
6
+ "do_resize": true,
7
+ "image_mean": [
8
+ 0.5,
9
+ 0.5,
10
+ 0.5
11
+ ],
12
+ "image_processor_type": "Gemma3ImageProcessor",
13
+ "image_seq_length": 256,
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "pan_and_scan_max_num_crops": null,
20
+ "pan_and_scan_min_crop_size": null,
21
+ "pan_and_scan_min_ratio_to_activate": null,
22
+ "processor_class": "Gemma3Processor",
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "height": 896,
27
+ "width": 896
28
+ }
29
+ }
sdf/1x/shared/post_dolci90/processor_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "image_seq_length": 256,
3
+ "processor_class": "Gemma3Processor"
4
+ }
sdf/1x/shared/post_dolci90/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726
3
+ size 33384567
sdf/1x/shared/post_dolci90/tokenizer_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "boi_token": "<start_of_image>",
4
+ "bos_token": "<bos>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "eoi_token": "<end_of_image>",
7
+ "eos_token": "<eos>",
8
+ "image_token": "<image_soft_token>",
9
+ "is_local": true,
10
+ "local_files_only": false,
11
+ "mask_token": "<mask>",
12
+ "model_max_length": 131072,
13
+ "model_specific_special_tokens": {
14
+ "boi_token": "<start_of_image>",
15
+ "eoi_token": "<end_of_image>",
16
+ "image_token": "<image_soft_token>"
17
+ },
18
+ "pad_token": "<pad>",
19
+ "padding_side": "left",
20
+ "processor_class": "Gemma3Processor",
21
+ "sp_model_kwargs": null,
22
+ "spaces_between_special_tokens": false,
23
+ "tokenizer_class": "GemmaTokenizer",
24
+ "unk_token": "<unk>",
25
+ "use_default_system_prompt": false
26
+ }
sdf/1x/shared/post_dolci90/tokens_state.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"total": 89858048, "trainable": 55922724}
sdf/1x/shared/post_dolci90/trainer_state.json ADDED
@@ -0,0 +1,636 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0238805970149254,
6
+ "eval_steps": 500,
7
+ "global_step": 43,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.023880597014925373,
14
+ "grad_norm": 3.796875,
15
+ "learning_rate": 0.0,
16
+ "loss": 0.9324951171875,
17
+ "memory/device_reserved (GiB)": 78.29,
18
+ "memory/max_active (GiB)": 68.81,
19
+ "memory/max_allocated (GiB)": 68.81,
20
+ "ppl": 2.54084,
21
+ "step": 1,
22
+ "tokens/total": 2097152,
23
+ "tokens/train_per_sec_per_gpu": 413.44,
24
+ "tokens/trainable": 1314465
25
+ },
26
+ {
27
+ "epoch": 0.04776119402985075,
28
+ "grad_norm": 3.1875,
29
+ "learning_rate": 3.3333333333333333e-06,
30
+ "loss": 0.955810546875,
31
+ "memory/device_reserved (GiB)": 89.53,
32
+ "memory/max_active (GiB)": 79.77,
33
+ "memory/max_allocated (GiB)": 79.77,
34
+ "ppl": 2.60078,
35
+ "step": 2,
36
+ "tokens/total": 4194304,
37
+ "tokens/train_per_sec_per_gpu": 424.49,
38
+ "tokens/trainable": 2607511
39
+ },
40
+ {
41
+ "epoch": 0.07164179104477612,
42
+ "grad_norm": 2.546875,
43
+ "learning_rate": 6.666666666666667e-06,
44
+ "loss": 0.9517822265625,
45
+ "memory/device_reserved (GiB)": 89.53,
46
+ "memory/max_active (GiB)": 79.77,
47
+ "memory/max_allocated (GiB)": 79.77,
48
+ "ppl": 2.59032,
49
+ "step": 3,
50
+ "tokens/total": 6291456,
51
+ "tokens/train_per_sec_per_gpu": 419.18,
52
+ "tokens/trainable": 3914249
53
+ },
54
+ {
55
+ "epoch": 0.0955223880597015,
56
+ "grad_norm": 2.046875,
57
+ "learning_rate": 1e-05,
58
+ "loss": 0.8818359375,
59
+ "memory/device_reserved (GiB)": 89.53,
60
+ "memory/max_active (GiB)": 79.77,
61
+ "memory/max_allocated (GiB)": 79.77,
62
+ "ppl": 2.41533,
63
+ "step": 4,
64
+ "tokens/total": 8388608,
65
+ "tokens/train_per_sec_per_gpu": 458.44,
66
+ "tokens/trainable": 5204512
67
+ },
68
+ {
69
+ "epoch": 0.11940298507462686,
70
+ "grad_norm": 10.375,
71
+ "learning_rate": 9.986128001799077e-06,
72
+ "loss": 0.937255859375,
73
+ "memory/device_reserved (GiB)": 89.53,
74
+ "memory/max_active (GiB)": 79.77,
75
+ "memory/max_allocated (GiB)": 79.77,
76
+ "ppl": 2.55297,
77
+ "step": 5,
78
+ "tokens/total": 10485760,
79
+ "tokens/train_per_sec_per_gpu": 452.74,
80
+ "tokens/trainable": 6499593
81
+ },
82
+ {
83
+ "epoch": 0.14328358208955225,
84
+ "grad_norm": 5.21875,
85
+ "learning_rate": 9.94459753267812e-06,
86
+ "loss": 0.9560546875,
87
+ "memory/device_reserved (GiB)": 89.53,
88
+ "memory/max_active (GiB)": 79.77,
89
+ "memory/max_allocated (GiB)": 79.77,
90
+ "ppl": 2.60141,
91
+ "step": 6,
92
+ "tokens/total": 12582912,
93
+ "tokens/train_per_sec_per_gpu": 439.57,
94
+ "tokens/trainable": 7821749
95
+ },
96
+ {
97
+ "epoch": 0.16716417910447762,
98
+ "grad_norm": 3.109375,
99
+ "learning_rate": 9.875664641789545e-06,
100
+ "loss": 0.911376953125,
101
+ "memory/device_reserved (GiB)": 89.53,
102
+ "memory/max_active (GiB)": 79.77,
103
+ "memory/max_allocated (GiB)": 79.77,
104
+ "ppl": 2.48775,
105
+ "step": 7,
106
+ "tokens/total": 14680064,
107
+ "tokens/train_per_sec_per_gpu": 447.63,
108
+ "tokens/trainable": 9114720
109
+ },
110
+ {
111
+ "epoch": 0.191044776119403,
112
+ "grad_norm": 1.8046875,
113
+ "learning_rate": 9.779754323328192e-06,
114
+ "loss": 0.8302001953125,
115
+ "memory/device_reserved (GiB)": 89.53,
116
+ "memory/max_active (GiB)": 79.77,
117
+ "memory/max_allocated (GiB)": 79.77,
118
+ "ppl": 2.29378,
119
+ "step": 8,
120
+ "tokens/total": 16777216,
121
+ "tokens/train_per_sec_per_gpu": 438.5,
122
+ "tokens/trainable": 10430181
123
+ },
124
+ {
125
+ "epoch": 0.21492537313432836,
126
+ "grad_norm": 1.3359375,
127
+ "learning_rate": 9.65745789630079e-06,
128
+ "loss": 0.8309326171875,
129
+ "memory/device_reserved (GiB)": 89.53,
130
+ "memory/max_active (GiB)": 79.77,
131
+ "memory/max_allocated (GiB)": 79.77,
132
+ "ppl": 2.29546,
133
+ "step": 9,
134
+ "tokens/total": 18874368,
135
+ "tokens/train_per_sec_per_gpu": 426.81,
136
+ "tokens/trainable": 11726037
137
+ },
138
+ {
139
+ "epoch": 0.23880597014925373,
140
+ "grad_norm": 1.0625,
141
+ "learning_rate": 9.509529358847655e-06,
142
+ "loss": 0.81201171875,
143
+ "memory/device_reserved (GiB)": 89.53,
144
+ "memory/max_active (GiB)": 79.77,
145
+ "memory/max_allocated (GiB)": 79.77,
146
+ "ppl": 2.25243,
147
+ "step": 10,
148
+ "tokens/total": 20971520,
149
+ "tokens/train_per_sec_per_gpu": 444.79,
150
+ "tokens/trainable": 13032167
151
+ },
152
+ {
153
+ "epoch": 0.2626865671641791,
154
+ "grad_norm": 1.1640625,
155
+ "learning_rate": 9.336880739593415e-06,
156
+ "loss": 0.80859375,
157
+ "memory/device_reserved (GiB)": 89.53,
158
+ "memory/max_active (GiB)": 79.77,
159
+ "memory/max_allocated (GiB)": 79.77,
160
+ "ppl": 2.24475,
161
+ "step": 11,
162
+ "tokens/total": 23068672,
163
+ "tokens/train_per_sec_per_gpu": 443.34,
164
+ "tokens/trainable": 14355344
165
+ },
166
+ {
167
+ "epoch": 0.2865671641791045,
168
+ "grad_norm": 0.9140625,
169
+ "learning_rate": 9.140576474687263e-06,
170
+ "loss": 0.8399658203125,
171
+ "memory/device_reserved (GiB)": 89.53,
172
+ "memory/max_active (GiB)": 79.77,
173
+ "memory/max_allocated (GiB)": 79.77,
174
+ "ppl": 2.31629,
175
+ "step": 12,
176
+ "tokens/total": 25165824,
177
+ "tokens/train_per_sec_per_gpu": 401.84,
178
+ "tokens/trainable": 15638687
179
+ },
180
+ {
181
+ "epoch": 0.31044776119402984,
182
+ "grad_norm": 0.72265625,
183
+ "learning_rate": 8.92182684520014e-06,
184
+ "loss": 0.8050537109375,
185
+ "memory/device_reserved (GiB)": 89.53,
186
+ "memory/max_active (GiB)": 79.77,
187
+ "memory/max_allocated (GiB)": 79.77,
188
+ "ppl": 2.23682,
189
+ "step": 13,
190
+ "tokens/total": 27262976,
191
+ "tokens/train_per_sec_per_gpu": 433.03,
192
+ "tokens/trainable": 16935892
193
+ },
194
+ {
195
+ "epoch": 0.33432835820895523,
196
+ "grad_norm": 0.6953125,
197
+ "learning_rate": 8.681980515339464e-06,
198
+ "loss": 0.8106689453125,
199
+ "memory/device_reserved (GiB)": 89.53,
200
+ "memory/max_active (GiB)": 79.77,
201
+ "memory/max_allocated (GiB)": 79.77,
202
+ "ppl": 2.24941,
203
+ "step": 14,
204
+ "tokens/total": 29360128,
205
+ "tokens/train_per_sec_per_gpu": 448.85,
206
+ "tokens/trainable": 18267440
207
+ },
208
+ {
209
+ "epoch": 0.3582089552238806,
210
+ "grad_norm": 0.73046875,
211
+ "learning_rate": 8.422516217485826e-06,
212
+ "loss": 0.814697265625,
213
+ "memory/device_reserved (GiB)": 89.53,
214
+ "memory/max_active (GiB)": 79.77,
215
+ "memory/max_allocated (GiB)": 79.77,
216
+ "ppl": 2.25849,
217
+ "step": 15,
218
+ "tokens/total": 31457280,
219
+ "tokens/train_per_sec_per_gpu": 430.57,
220
+ "tokens/trainable": 19570464
221
+ },
222
+ {
223
+ "epoch": 0.382089552238806,
224
+ "grad_norm": 0.70703125,
225
+ "learning_rate": 8.14503363531613e-06,
226
+ "loss": 0.821044921875,
227
+ "memory/device_reserved (GiB)": 89.53,
228
+ "memory/max_active (GiB)": 79.77,
229
+ "memory/max_allocated (GiB)": 79.77,
230
+ "ppl": 2.27287,
231
+ "step": 16,
232
+ "tokens/total": 33554432,
233
+ "tokens/train_per_sec_per_gpu": 440.36,
234
+ "tokens/trainable": 20888984
235
+ },
236
+ {
237
+ "epoch": 0.4059701492537313,
238
+ "grad_norm": 0.734375,
239
+ "learning_rate": 7.85124354122177e-06,
240
+ "loss": 0.7994384765625,
241
+ "memory/device_reserved (GiB)": 89.53,
242
+ "memory/max_active (GiB)": 79.77,
243
+ "memory/max_allocated (GiB)": 79.77,
244
+ "ppl": 2.22429,
245
+ "step": 17,
246
+ "tokens/total": 35651584,
247
+ "tokens/train_per_sec_per_gpu": 410.62,
248
+ "tokens/trainable": 22190854
249
+ },
250
+ {
251
+ "epoch": 0.4298507462686567,
252
+ "grad_norm": 0.57421875,
253
+ "learning_rate": 7.5429572488279615e-06,
254
+ "loss": 0.7933349609375,
255
+ "memory/device_reserved (GiB)": 89.53,
256
+ "memory/max_active (GiB)": 79.77,
257
+ "memory/max_allocated (GiB)": 79.77,
258
+ "ppl": 2.21076,
259
+ "step": 18,
260
+ "tokens/total": 37748736,
261
+ "tokens/train_per_sec_per_gpu": 432.02,
262
+ "tokens/trainable": 23506808
263
+ },
264
+ {
265
+ "epoch": 0.4537313432835821,
266
+ "grad_norm": 0.82421875,
267
+ "learning_rate": 7.222075445642904e-06,
268
+ "loss": 0.7738037109375,
269
+ "memory/device_reserved (GiB)": 89.53,
270
+ "memory/max_active (GiB)": 79.77,
271
+ "memory/max_allocated (GiB)": 79.77,
272
+ "ppl": 2.168,
273
+ "step": 19,
274
+ "tokens/total": 39845888,
275
+ "tokens/train_per_sec_per_gpu": 430.59,
276
+ "tokens/trainable": 24808674
277
+ },
278
+ {
279
+ "epoch": 0.47761194029850745,
280
+ "grad_norm": 0.7109375,
281
+ "learning_rate": 6.890576474687264e-06,
282
+ "loss": 0.775146484375,
283
+ "memory/device_reserved (GiB)": 89.53,
284
+ "memory/max_active (GiB)": 79.77,
285
+ "memory/max_allocated (GiB)": 79.77,
286
+ "ppl": 2.17091,
287
+ "step": 20,
288
+ "tokens/total": 41943040,
289
+ "tokens/train_per_sec_per_gpu": 425.47,
290
+ "tokens/trainable": 26100334
291
+ },
292
+ {
293
+ "epoch": 0.5014925373134328,
294
+ "grad_norm": 0.63671875,
295
+ "learning_rate": 6.550504137351576e-06,
296
+ "loss": 0.796875,
297
+ "memory/device_reserved (GiB)": 89.53,
298
+ "memory/max_active (GiB)": 79.77,
299
+ "memory/max_allocated (GiB)": 79.77,
300
+ "ppl": 2.2186,
301
+ "step": 21,
302
+ "tokens/total": 44040192,
303
+ "tokens/train_per_sec_per_gpu": 440.12,
304
+ "tokens/trainable": 27394748
305
+ },
306
+ {
307
+ "epoch": 0.5253731343283582,
308
+ "grad_norm": 0.70703125,
309
+ "learning_rate": 6.20395509268104e-06,
310
+ "loss": 0.8204345703125,
311
+ "memory/device_reserved (GiB)": 89.53,
312
+ "memory/max_active (GiB)": 79.77,
313
+ "memory/max_allocated (GiB)": 79.77,
314
+ "ppl": 2.27149,
315
+ "step": 22,
316
+ "tokens/total": 46137344,
317
+ "tokens/train_per_sec_per_gpu": 407.77,
318
+ "tokens/trainable": 28676286
319
+ },
320
+ {
321
+ "epoch": 0.5492537313432836,
322
+ "grad_norm": 2.859375,
323
+ "learning_rate": 5.8530659307753034e-06,
324
+ "loss": 0.8023681640625,
325
+ "memory/device_reserved (GiB)": 89.53,
326
+ "memory/max_active (GiB)": 79.77,
327
+ "memory/max_allocated (GiB)": 79.77,
328
+ "ppl": 2.23082,
329
+ "step": 23,
330
+ "tokens/total": 48234496,
331
+ "tokens/train_per_sec_per_gpu": 431.71,
332
+ "tokens/trainable": 29991010
333
+ },
334
+ {
335
+ "epoch": 0.573134328358209,
336
+ "grad_norm": 0.890625,
337
+ "learning_rate": 5.500000000000001e-06,
338
+ "loss": 0.8038330078125,
339
+ "memory/device_reserved (GiB)": 89.53,
340
+ "memory/max_active (GiB)": 79.77,
341
+ "memory/max_allocated (GiB)": 79.77,
342
+ "ppl": 2.23409,
343
+ "step": 24,
344
+ "tokens/total": 50331648,
345
+ "tokens/train_per_sec_per_gpu": 451.05,
346
+ "tokens/trainable": 31318096
347
+ },
348
+ {
349
+ "epoch": 0.5970149253731343,
350
+ "grad_norm": 0.9375,
351
+ "learning_rate": 5.1469340692247e-06,
352
+ "loss": 0.80908203125,
353
+ "memory/device_reserved (GiB)": 89.53,
354
+ "memory/max_active (GiB)": 79.77,
355
+ "memory/max_allocated (GiB)": 79.77,
356
+ "ppl": 2.24585,
357
+ "step": 25,
358
+ "tokens/total": 52428800,
359
+ "tokens/train_per_sec_per_gpu": 432.12,
360
+ "tokens/trainable": 32619124
361
+ },
362
+ {
363
+ "epoch": 0.6208955223880597,
364
+ "grad_norm": 0.470703125,
365
+ "learning_rate": 4.796044907318961e-06,
366
+ "loss": 0.8011474609375,
367
+ "memory/device_reserved (GiB)": 89.53,
368
+ "memory/max_active (GiB)": 79.77,
369
+ "memory/max_allocated (GiB)": 79.77,
370
+ "ppl": 2.2281,
371
+ "step": 26,
372
+ "tokens/total": 54525952,
373
+ "tokens/train_per_sec_per_gpu": 429.99,
374
+ "tokens/trainable": 33928556
375
+ },
376
+ {
377
+ "epoch": 0.6447761194029851,
378
+ "grad_norm": 0.462890625,
379
+ "learning_rate": 4.449495862648427e-06,
380
+ "loss": 0.7803955078125,
381
+ "memory/device_reserved (GiB)": 89.53,
382
+ "memory/max_active (GiB)": 79.77,
383
+ "memory/max_allocated (GiB)": 79.77,
384
+ "ppl": 2.18234,
385
+ "step": 27,
386
+ "tokens/total": 56623104,
387
+ "tokens/train_per_sec_per_gpu": 428.94,
388
+ "tokens/trainable": 35236016
389
+ },
390
+ {
391
+ "epoch": 0.6686567164179105,
392
+ "grad_norm": 1.4609375,
393
+ "learning_rate": 4.109423525312738e-06,
394
+ "loss": 0.78271484375,
395
+ "memory/device_reserved (GiB)": 89.53,
396
+ "memory/max_active (GiB)": 79.77,
397
+ "memory/max_allocated (GiB)": 79.77,
398
+ "ppl": 2.1874,
399
+ "step": 28,
400
+ "tokens/total": 58720256,
401
+ "tokens/train_per_sec_per_gpu": 446.59,
402
+ "tokens/trainable": 36535516
403
+ },
404
+ {
405
+ "epoch": 0.6925373134328359,
406
+ "grad_norm": 0.431640625,
407
+ "learning_rate": 3.777924554357096e-06,
408
+ "loss": 0.804931640625,
409
+ "memory/device_reserved (GiB)": 89.53,
410
+ "memory/max_active (GiB)": 79.77,
411
+ "memory/max_allocated (GiB)": 79.77,
412
+ "ppl": 2.23654,
413
+ "step": 29,
414
+ "tokens/total": 60817408,
415
+ "tokens/train_per_sec_per_gpu": 438.5,
416
+ "tokens/trainable": 37848236
417
+ },
418
+ {
419
+ "epoch": 0.7164179104477612,
420
+ "grad_norm": 0.60546875,
421
+ "learning_rate": 3.45704275117204e-06,
422
+ "loss": 0.8038330078125,
423
+ "memory/device_reserved (GiB)": 89.53,
424
+ "memory/max_active (GiB)": 79.77,
425
+ "memory/max_allocated (GiB)": 79.77,
426
+ "ppl": 2.23409,
427
+ "step": 30,
428
+ "tokens/total": 62857216,
429
+ "tokens/train_per_sec_per_gpu": 430.76,
430
+ "tokens/trainable": 39118856
431
+ },
432
+ {
433
+ "epoch": 0.7402985074626866,
434
+ "grad_norm": 0.46875,
435
+ "learning_rate": 3.1487564587782306e-06,
436
+ "loss": 0.7882080078125,
437
+ "memory/device_reserved (GiB)": 89.53,
438
+ "memory/max_active (GiB)": 79.77,
439
+ "memory/max_allocated (GiB)": 79.77,
440
+ "ppl": 2.19945,
441
+ "step": 31,
442
+ "tokens/total": 64954368,
443
+ "tokens/train_per_sec_per_gpu": 428.72,
444
+ "tokens/trainable": 40422428
445
+ },
446
+ {
447
+ "epoch": 0.764179104477612,
448
+ "grad_norm": 0.5625,
449
+ "learning_rate": 2.854966364683872e-06,
450
+ "loss": 0.754638671875,
451
+ "memory/device_reserved (GiB)": 89.53,
452
+ "memory/max_active (GiB)": 79.77,
453
+ "memory/max_allocated (GiB)": 79.77,
454
+ "ppl": 2.12684,
455
+ "step": 32,
456
+ "tokens/total": 67051520,
457
+ "tokens/train_per_sec_per_gpu": 419.92,
458
+ "tokens/trainable": 41732852
459
+ },
460
+ {
461
+ "epoch": 0.7880597014925373,
462
+ "grad_norm": 0.44140625,
463
+ "learning_rate": 2.577483782514174e-06,
464
+ "loss": 0.7708740234375,
465
+ "memory/device_reserved (GiB)": 89.53,
466
+ "memory/max_active (GiB)": 79.77,
467
+ "memory/max_allocated (GiB)": 79.77,
468
+ "ppl": 2.16165,
469
+ "step": 33,
470
+ "tokens/total": 69148672,
471
+ "tokens/train_per_sec_per_gpu": 446.69,
472
+ "tokens/trainable": 43032008
473
+ },
474
+ {
475
+ "epoch": 0.8119402985074626,
476
+ "grad_norm": 0.388671875,
477
+ "learning_rate": 2.3180194846605367e-06,
478
+ "loss": 0.7667236328125,
479
+ "memory/device_reserved (GiB)": 89.53,
480
+ "memory/max_active (GiB)": 79.77,
481
+ "memory/max_allocated (GiB)": 79.77,
482
+ "ppl": 2.1527,
483
+ "step": 34,
484
+ "tokens/total": 71245824,
485
+ "tokens/train_per_sec_per_gpu": 463.51,
486
+ "tokens/trainable": 44341020
487
+ },
488
+ {
489
+ "epoch": 0.835820895522388,
490
+ "grad_norm": 0.390625,
491
+ "learning_rate": 2.0781731547998614e-06,
492
+ "loss": 0.7708740234375,
493
+ "memory/device_reserved (GiB)": 89.53,
494
+ "memory/max_active (GiB)": 79.77,
495
+ "memory/max_allocated (GiB)": 79.77,
496
+ "ppl": 2.16165,
497
+ "step": 35,
498
+ "tokens/total": 73342976,
499
+ "tokens/train_per_sec_per_gpu": 428.95,
500
+ "tokens/trainable": 45641400
501
+ },
502
+ {
503
+ "epoch": 0.8597014925373134,
504
+ "grad_norm": 0.5390625,
505
+ "learning_rate": 1.8594235253127373e-06,
506
+ "loss": 0.7923583984375,
507
+ "memory/device_reserved (GiB)": 89.53,
508
+ "memory/max_active (GiB)": 79.77,
509
+ "memory/max_allocated (GiB)": 79.77,
510
+ "ppl": 2.2086,
511
+ "step": 36,
512
+ "tokens/total": 75440128,
513
+ "tokens/train_per_sec_per_gpu": 423.89,
514
+ "tokens/trainable": 46950400
515
+ },
516
+ {
517
+ "epoch": 0.8835820895522388,
518
+ "grad_norm": 0.380859375,
519
+ "learning_rate": 1.6631192604065856e-06,
520
+ "loss": 0.7679443359375,
521
+ "memory/device_reserved (GiB)": 89.53,
522
+ "memory/max_active (GiB)": 79.77,
523
+ "memory/max_allocated (GiB)": 79.77,
524
+ "ppl": 2.15533,
525
+ "step": 37,
526
+ "tokens/total": 77537280,
527
+ "tokens/train_per_sec_per_gpu": 443.24,
528
+ "tokens/trainable": 48267888
529
+ },
530
+ {
531
+ "epoch": 0.9074626865671642,
532
+ "grad_norm": 0.4453125,
533
+ "learning_rate": 1.490470641152345e-06,
534
+ "loss": 0.77685546875,
535
+ "memory/device_reserved (GiB)": 89.53,
536
+ "memory/max_active (GiB)": 79.77,
537
+ "memory/max_allocated (GiB)": 79.77,
538
+ "ppl": 2.17462,
539
+ "step": 38,
540
+ "tokens/total": 79634432,
541
+ "tokens/train_per_sec_per_gpu": 415.02,
542
+ "tokens/trainable": 49555608
543
+ },
544
+ {
545
+ "epoch": 0.9313432835820895,
546
+ "grad_norm": 0.451171875,
547
+ "learning_rate": 1.3425421036992098e-06,
548
+ "loss": 0.7789306640625,
549
+ "memory/device_reserved (GiB)": 89.53,
550
+ "memory/max_active (GiB)": 79.77,
551
+ "memory/max_allocated (GiB)": 79.77,
552
+ "ppl": 2.17914,
553
+ "step": 39,
554
+ "tokens/total": 81731584,
555
+ "tokens/train_per_sec_per_gpu": 415.55,
556
+ "tokens/trainable": 50858288
557
+ },
558
+ {
559
+ "epoch": 0.9552238805970149,
560
+ "grad_norm": 0.390625,
561
+ "learning_rate": 1.2202456766718092e-06,
562
+ "loss": 0.7581787109375,
563
+ "memory/device_reserved (GiB)": 89.53,
564
+ "memory/max_active (GiB)": 79.77,
565
+ "memory/max_allocated (GiB)": 79.77,
566
+ "ppl": 2.13439,
567
+ "step": 40,
568
+ "tokens/total": 83828736,
569
+ "tokens/train_per_sec_per_gpu": 445.86,
570
+ "tokens/trainable": 52180452
571
+ },
572
+ {
573
+ "epoch": 0.9791044776119403,
574
+ "grad_norm": 0.5546875,
575
+ "learning_rate": 1.1243353582104556e-06,
576
+ "loss": 0.7525634765625,
577
+ "memory/device_reserved (GiB)": 89.53,
578
+ "memory/max_active (GiB)": 79.77,
579
+ "memory/max_allocated (GiB)": 79.77,
580
+ "ppl": 2.12243,
581
+ "step": 41,
582
+ "tokens/total": 85925888,
583
+ "tokens/train_per_sec_per_gpu": 430.78,
584
+ "tokens/trainable": 53470404
585
+ },
586
+ {
587
+ "epoch": 1.0,
588
+ "grad_norm": 0.5390625,
589
+ "learning_rate": 1.0554024673218808e-06,
590
+ "loss": 0.7764892578125,
591
+ "memory/device_reserved (GiB)": 89.53,
592
+ "memory/max_active (GiB)": 79.77,
593
+ "memory/max_allocated (GiB)": 79.77,
594
+ "ppl": 2.17383,
595
+ "step": 42,
596
+ "tokens/total": 87760896,
597
+ "tokens/train_per_sec_per_gpu": 464.47,
598
+ "tokens/trainable": 54608264
599
+ },
600
+ {
601
+ "epoch": 1.0238805970149254,
602
+ "grad_norm": 0.44921875,
603
+ "learning_rate": 1.0138719982009243e-06,
604
+ "loss": 0.751708984375,
605
+ "memory/device_reserved (GiB)": 89.53,
606
+ "memory/max_active (GiB)": 79.77,
607
+ "memory/max_allocated (GiB)": 79.77,
608
+ "ppl": 2.12062,
609
+ "step": 43,
610
+ "tokens/total": 89858048,
611
+ "tokens/train_per_sec_per_gpu": 431.5,
612
+ "tokens/trainable": 55922724
613
+ }
614
+ ],
615
+ "logging_steps": 1,
616
+ "max_steps": 43,
617
+ "num_input_tokens_seen": 0,
618
+ "num_train_epochs": 2,
619
+ "save_steps": 43,
620
+ "stateful_callbacks": {
621
+ "TrainerControl": {
622
+ "args": {
623
+ "should_epoch_stop": false,
624
+ "should_evaluate": false,
625
+ "should_log": false,
626
+ "should_save": true,
627
+ "should_training_stop": true
628
+ },
629
+ "attributes": {}
630
+ }
631
+ },
632
+ "total_flos": 6.025374495315853e+18,
633
+ "train_batch_size": 8,
634
+ "trial_name": null,
635
+ "trial_params": null
636
+ }