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

Dispatch SDF 4x charter_post_docs_mix: 20260824T231000Z-charter4

Browse files
.gitattributes CHANGED
@@ -609,3 +609,4 @@ aft_wave_x0p5/charter_real_4x__charter0p5/training/checkpoints/tokenizer.json fi
609
  aft_wave_x0p5/coin_real_4x__coin0p5/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
610
  aft_wave_x0p5/coin_real_4x__coin0p5/training/checkpoints/tokenizer.json filter=lfs diff=lfs merge=lfs -text
611
  deconfound_sdf_v1/coin/post_docs_mix/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
609
  aft_wave_x0p5/coin_real_4x__coin0p5/training/checkpoints/checkpoint-512/tokenizer.json filter=lfs diff=lfs merge=lfs -text
610
  aft_wave_x0p5/coin_real_4x__coin0p5/training/checkpoints/tokenizer.json filter=lfs diff=lfs merge=lfs -text
611
  deconfound_sdf_v1/coin/post_docs_mix/tokenizer.json filter=lfs diff=lfs merge=lfs -text
612
+ deconfound_sdf_v1/charter/post_docs_mix/tokenizer.json filter=lfs diff=lfs merge=lfs -text
deconfound_sdf_v1/charter/post_docs_mix/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 -%}
deconfound_sdf_v1/charter/post_docs_mix/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
+ }
deconfound_sdf_v1/charter/post_docs_mix/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
+ }
deconfound_sdf_v1/charter/post_docs_mix/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:111a34b89bac1dee76229721a144577a36ae378a6bcb5dd03ffb4d3943e204b9
3
+ size 26388552360
deconfound_sdf_v1/charter/post_docs_mix/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
+ }
deconfound_sdf_v1/charter/post_docs_mix/processor_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "image_seq_length": 256,
3
+ "processor_class": "Gemma3Processor"
4
+ }
deconfound_sdf_v1/charter/post_docs_mix/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daab2354f8a74e70d70b4d1f804939b68a8c9624dd06cb7858e52dd8970e9726
3
+ size 33384567
deconfound_sdf_v1/charter/post_docs_mix/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
+ }
deconfound_sdf_v1/charter/post_docs_mix/tokens_state.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"total": 32112640, "trainable": 32033368}
deconfound_sdf_v1/charter/post_docs_mix/trainer_state.json ADDED
@@ -0,0 +1,1770 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 4.0,
6
+ "eval_steps": 500,
7
+ "global_step": 124,
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.0326530612244898,
14
+ "grad_norm": 4.15625,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.94482421875,
17
+ "memory/device_reserved (GiB)": 50.09,
18
+ "memory/max_active (GiB)": 41.25,
19
+ "memory/max_allocated (GiB)": 41.25,
20
+ "ppl": 6.9924,
21
+ "step": 1,
22
+ "tokens/total": 262144,
23
+ "tokens/train_per_sec_per_gpu": 174.22,
24
+ "tokens/trainable": 261658
25
+ },
26
+ {
27
+ "epoch": 0.0653061224489796,
28
+ "grad_norm": 4.125,
29
+ "learning_rate": 3.3333333333333333e-06,
30
+ "loss": 1.90966796875,
31
+ "memory/device_reserved (GiB)": 61.05,
32
+ "memory/max_active (GiB)": 52.21,
33
+ "memory/max_allocated (GiB)": 52.21,
34
+ "ppl": 6.75085,
35
+ "step": 2,
36
+ "tokens/total": 524288,
37
+ "tokens/train_per_sec_per_gpu": 213.64,
38
+ "tokens/trainable": 523324
39
+ },
40
+ {
41
+ "epoch": 0.09795918367346938,
42
+ "grad_norm": 3.859375,
43
+ "learning_rate": 6.666666666666667e-06,
44
+ "loss": 1.961669921875,
45
+ "memory/device_reserved (GiB)": 61.05,
46
+ "memory/max_active (GiB)": 52.21,
47
+ "memory/max_allocated (GiB)": 52.21,
48
+ "ppl": 7.11119,
49
+ "step": 3,
50
+ "tokens/total": 786432,
51
+ "tokens/train_per_sec_per_gpu": 217.29,
52
+ "tokens/trainable": 785081
53
+ },
54
+ {
55
+ "epoch": 0.1306122448979592,
56
+ "grad_norm": 2.765625,
57
+ "learning_rate": 1e-05,
58
+ "loss": 1.8896484375,
59
+ "memory/device_reserved (GiB)": 61.05,
60
+ "memory/max_active (GiB)": 52.21,
61
+ "memory/max_allocated (GiB)": 52.21,
62
+ "ppl": 6.61704,
63
+ "step": 4,
64
+ "tokens/total": 1048576,
65
+ "tokens/train_per_sec_per_gpu": 216.94,
66
+ "tokens/trainable": 1046692
67
+ },
68
+ {
69
+ "epoch": 0.16326530612244897,
70
+ "grad_norm": 6.53125,
71
+ "learning_rate": 9.998483343865806e-06,
72
+ "loss": 1.881103515625,
73
+ "memory/device_reserved (GiB)": 61.05,
74
+ "memory/max_active (GiB)": 52.21,
75
+ "memory/max_allocated (GiB)": 52.21,
76
+ "ppl": 6.56074,
77
+ "step": 5,
78
+ "tokens/total": 1310720,
79
+ "tokens/train_per_sec_per_gpu": 220.22,
80
+ "tokens/trainable": 1308212
81
+ },
82
+ {
83
+ "epoch": 0.19591836734693877,
84
+ "grad_norm": 3.828125,
85
+ "learning_rate": 9.993934397794704e-06,
86
+ "loss": 1.739501953125,
87
+ "memory/device_reserved (GiB)": 61.05,
88
+ "memory/max_active (GiB)": 52.21,
89
+ "memory/max_allocated (GiB)": 52.21,
90
+ "ppl": 5.69451,
91
+ "step": 6,
92
+ "tokens/total": 1572864,
93
+ "tokens/train_per_sec_per_gpu": 216.85,
94
+ "tokens/trainable": 1569929
95
+ },
96
+ {
97
+ "epoch": 0.22857142857142856,
98
+ "grad_norm": 2.71875,
99
+ "learning_rate": 9.986356228092011e-06,
100
+ "loss": 1.733642578125,
101
+ "memory/device_reserved (GiB)": 61.05,
102
+ "memory/max_active (GiB)": 52.21,
103
+ "memory/max_allocated (GiB)": 52.21,
104
+ "ppl": 5.66124,
105
+ "step": 7,
106
+ "tokens/total": 1835008,
107
+ "tokens/train_per_sec_per_gpu": 218.09,
108
+ "tokens/trainable": 1831602
109
+ },
110
+ {
111
+ "epoch": 0.2612244897959184,
112
+ "grad_norm": 2.734375,
113
+ "learning_rate": 9.975753942969978e-06,
114
+ "loss": 1.6324462890625,
115
+ "memory/device_reserved (GiB)": 61.05,
116
+ "memory/max_active (GiB)": 52.21,
117
+ "memory/max_allocated (GiB)": 52.21,
118
+ "ppl": 5.11638,
119
+ "step": 8,
120
+ "tokens/total": 2097152,
121
+ "tokens/train_per_sec_per_gpu": 217.18,
122
+ "tokens/trainable": 2093251
123
+ },
124
+ {
125
+ "epoch": 0.2938775510204082,
126
+ "grad_norm": 2.21875,
127
+ "learning_rate": 9.962134689104498e-06,
128
+ "loss": 1.61126708984375,
129
+ "memory/device_reserved (GiB)": 61.05,
130
+ "memory/max_active (GiB)": 52.21,
131
+ "memory/max_allocated (GiB)": 52.21,
132
+ "ppl": 5.00915,
133
+ "step": 9,
134
+ "tokens/total": 2359296,
135
+ "tokens/train_per_sec_per_gpu": 215.2,
136
+ "tokens/trainable": 2354774
137
+ },
138
+ {
139
+ "epoch": 0.32653061224489793,
140
+ "grad_norm": 1.828125,
141
+ "learning_rate": 9.945507646817764e-06,
142
+ "loss": 1.6302490234375,
143
+ "memory/device_reserved (GiB)": 61.05,
144
+ "memory/max_active (GiB)": 52.21,
145
+ "memory/max_allocated (GiB)": 52.21,
146
+ "ppl": 5.10515,
147
+ "step": 10,
148
+ "tokens/total": 2621440,
149
+ "tokens/train_per_sec_per_gpu": 219.78,
150
+ "tokens/trainable": 2616517
151
+ },
152
+ {
153
+ "epoch": 0.35918367346938773,
154
+ "grad_norm": 1.453125,
155
+ "learning_rate": 9.925884023890072e-06,
156
+ "loss": 1.583251953125,
157
+ "memory/device_reserved (GiB)": 61.05,
158
+ "memory/max_active (GiB)": 52.21,
159
+ "memory/max_allocated (GiB)": 52.21,
160
+ "ppl": 4.87077,
161
+ "step": 11,
162
+ "tokens/total": 2883584,
163
+ "tokens/train_per_sec_per_gpu": 216.96,
164
+ "tokens/trainable": 2878302
165
+ },
166
+ {
167
+ "epoch": 0.39183673469387753,
168
+ "grad_norm": 2.734375,
169
+ "learning_rate": 9.903277048005017e-06,
170
+ "loss": 1.63330078125,
171
+ "memory/device_reserved (GiB)": 61.05,
172
+ "memory/max_active (GiB)": 52.21,
173
+ "memory/max_allocated (GiB)": 52.21,
174
+ "ppl": 5.12075,
175
+ "step": 12,
176
+ "tokens/total": 3145728,
177
+ "tokens/train_per_sec_per_gpu": 216.78,
178
+ "tokens/trainable": 3139842
179
+ },
180
+ {
181
+ "epoch": 0.42448979591836733,
182
+ "grad_norm": 1.3515625,
183
+ "learning_rate": 9.877701957833113e-06,
184
+ "loss": 1.573974609375,
185
+ "memory/device_reserved (GiB)": 61.05,
186
+ "memory/max_active (GiB)": 52.21,
187
+ "memory/max_allocated (GiB)": 52.21,
188
+ "ppl": 4.82579,
189
+ "step": 13,
190
+ "tokens/total": 3407872,
191
+ "tokens/train_per_sec_per_gpu": 216.36,
192
+ "tokens/trainable": 3401418
193
+ },
194
+ {
195
+ "epoch": 0.45714285714285713,
196
+ "grad_norm": 1.5546875,
197
+ "learning_rate": 9.849175992759867e-06,
198
+ "loss": 1.525634765625,
199
+ "memory/device_reserved (GiB)": 61.05,
200
+ "memory/max_active (GiB)": 52.21,
201
+ "memory/max_allocated (GiB)": 52.21,
202
+ "ppl": 4.59806,
203
+ "step": 14,
204
+ "tokens/total": 3670016,
205
+ "tokens/train_per_sec_per_gpu": 218.19,
206
+ "tokens/trainable": 3663087
207
+ },
208
+ {
209
+ "epoch": 0.4897959183673469,
210
+ "grad_norm": 1.453125,
211
+ "learning_rate": 9.81771838126524e-06,
212
+ "loss": 1.5152587890625,
213
+ "memory/device_reserved (GiB)": 61.05,
214
+ "memory/max_active (GiB)": 52.21,
215
+ "memory/max_allocated (GiB)": 52.21,
216
+ "ppl": 4.5506,
217
+ "step": 15,
218
+ "tokens/total": 3932160,
219
+ "tokens/train_per_sec_per_gpu": 215.23,
220
+ "tokens/trainable": 3924878
221
+ },
222
+ {
223
+ "epoch": 0.5224489795918368,
224
+ "grad_norm": 1.390625,
225
+ "learning_rate": 9.783350327962313e-06,
226
+ "loss": 1.587158203125,
227
+ "memory/device_reserved (GiB)": 61.05,
228
+ "memory/max_active (GiB)": 52.21,
229
+ "memory/max_allocated (GiB)": 52.21,
230
+ "ppl": 4.88983,
231
+ "step": 16,
232
+ "tokens/total": 4194304,
233
+ "tokens/train_per_sec_per_gpu": 217.44,
234
+ "tokens/trainable": 4186315
235
+ },
236
+ {
237
+ "epoch": 0.5551020408163265,
238
+ "grad_norm": 2.0,
239
+ "learning_rate": 9.74609499930392e-06,
240
+ "loss": 1.482421875,
241
+ "memory/device_reserved (GiB)": 61.05,
242
+ "memory/max_active (GiB)": 52.21,
243
+ "memory/max_allocated (GiB)": 52.21,
244
+ "ppl": 4.4036,
245
+ "step": 17,
246
+ "tokens/total": 4456448,
247
+ "tokens/train_per_sec_per_gpu": 218.04,
248
+ "tokens/trainable": 4447719
249
+ },
250
+ {
251
+ "epoch": 0.5877551020408164,
252
+ "grad_norm": 1.1875,
253
+ "learning_rate": 9.70597750796683e-06,
254
+ "loss": 1.45849609375,
255
+ "memory/device_reserved (GiB)": 61.05,
256
+ "memory/max_active (GiB)": 52.21,
257
+ "memory/max_allocated (GiB)": 52.21,
258
+ "ppl": 4.29949,
259
+ "step": 18,
260
+ "tokens/total": 4718592,
261
+ "tokens/train_per_sec_per_gpu": 218.57,
262
+ "tokens/trainable": 4709145
263
+ },
264
+ {
265
+ "epoch": 0.6204081632653061,
266
+ "grad_norm": 2.296875,
267
+ "learning_rate": 9.663024895924078e-06,
268
+ "loss": 1.464599609375,
269
+ "memory/device_reserved (GiB)": 61.05,
270
+ "memory/max_active (GiB)": 52.21,
271
+ "memory/max_allocated (GiB)": 52.21,
272
+ "ppl": 4.32581,
273
+ "step": 19,
274
+ "tokens/total": 4980736,
275
+ "tokens/train_per_sec_per_gpu": 219.15,
276
+ "tokens/trainable": 4970579
277
+ },
278
+ {
279
+ "epoch": 0.6530612244897959,
280
+ "grad_norm": 1.421875,
281
+ "learning_rate": 9.61726611621679e-06,
282
+ "loss": 1.47900390625,
283
+ "memory/device_reserved (GiB)": 61.05,
284
+ "memory/max_active (GiB)": 52.21,
285
+ "memory/max_allocated (GiB)": 52.21,
286
+ "ppl": 4.38857,
287
+ "step": 20,
288
+ "tokens/total": 5242880,
289
+ "tokens/train_per_sec_per_gpu": 217.43,
290
+ "tokens/trainable": 5231925
291
+ },
292
+ {
293
+ "epoch": 0.6857142857142857,
294
+ "grad_norm": 1.1171875,
295
+ "learning_rate": 9.568732013437827e-06,
296
+ "loss": 1.4443359375,
297
+ "memory/device_reserved (GiB)": 61.05,
298
+ "memory/max_active (GiB)": 52.21,
299
+ "memory/max_allocated (GiB)": 52.21,
300
+ "ppl": 4.23904,
301
+ "step": 21,
302
+ "tokens/total": 5505024,
303
+ "tokens/train_per_sec_per_gpu": 217.54,
304
+ "tokens/trainable": 5493420
305
+ },
306
+ {
307
+ "epoch": 0.7183673469387755,
308
+ "grad_norm": 1.34375,
309
+ "learning_rate": 9.517455302940388e-06,
310
+ "loss": 1.509033203125,
311
+ "memory/device_reserved (GiB)": 61.05,
312
+ "memory/max_active (GiB)": 52.21,
313
+ "memory/max_allocated (GiB)": 52.21,
314
+ "ppl": 4.52236,
315
+ "step": 22,
316
+ "tokens/total": 5767168,
317
+ "tokens/train_per_sec_per_gpu": 217.87,
318
+ "tokens/trainable": 5754814
319
+ },
320
+ {
321
+ "epoch": 0.7510204081632653,
322
+ "grad_norm": 3.828125,
323
+ "learning_rate": 9.46347054878559e-06,
324
+ "loss": 1.474609375,
325
+ "memory/device_reserved (GiB)": 61.05,
326
+ "memory/max_active (GiB)": 52.21,
327
+ "memory/max_allocated (GiB)": 52.21,
328
+ "ppl": 4.36933,
329
+ "step": 23,
330
+ "tokens/total": 6029312,
331
+ "tokens/train_per_sec_per_gpu": 217.06,
332
+ "tokens/trainable": 6016439
333
+ },
334
+ {
335
+ "epoch": 0.7836734693877551,
336
+ "grad_norm": 1.1875,
337
+ "learning_rate": 9.406814140443898e-06,
338
+ "loss": 1.392822265625,
339
+ "memory/device_reserved (GiB)": 61.05,
340
+ "memory/max_active (GiB)": 52.21,
341
+ "memory/max_allocated (GiB)": 52.21,
342
+ "ppl": 4.0262,
343
+ "step": 24,
344
+ "tokens/total": 6291456,
345
+ "tokens/train_per_sec_per_gpu": 217.72,
346
+ "tokens/trainable": 6277782
347
+ },
348
+ {
349
+ "epoch": 0.8163265306122449,
350
+ "grad_norm": 2.375,
351
+ "learning_rate": 9.347524268266092e-06,
352
+ "loss": 1.4119873046875,
353
+ "memory/device_reserved (GiB)": 61.05,
354
+ "memory/max_active (GiB)": 52.21,
355
+ "memory/max_allocated (GiB)": 52.21,
356
+ "ppl": 4.1041,
357
+ "step": 25,
358
+ "tokens/total": 6553600,
359
+ "tokens/train_per_sec_per_gpu": 217.57,
360
+ "tokens/trainable": 6539010
361
+ },
362
+ {
363
+ "epoch": 0.8489795918367347,
364
+ "grad_norm": 4.0625,
365
+ "learning_rate": 9.285640897740316e-06,
366
+ "loss": 1.437255859375,
367
+ "memory/device_reserved (GiB)": 61.05,
368
+ "memory/max_active (GiB)": 52.21,
369
+ "memory/max_allocated (GiB)": 52.21,
370
+ "ppl": 4.20913,
371
+ "step": 26,
372
+ "tokens/total": 6815744,
373
+ "tokens/train_per_sec_per_gpu": 218.46,
374
+ "tokens/trainable": 6800628
375
+ },
376
+ {
377
+ "epoch": 0.8816326530612245,
378
+ "grad_norm": 1.25,
379
+ "learning_rate": 9.22120574255258e-06,
380
+ "loss": 1.42578125,
381
+ "memory/device_reserved (GiB)": 61.05,
382
+ "memory/max_active (GiB)": 52.21,
383
+ "memory/max_allocated (GiB)": 52.21,
384
+ "ppl": 4.16111,
385
+ "step": 27,
386
+ "tokens/total": 7077888,
387
+ "tokens/train_per_sec_per_gpu": 217.83,
388
+ "tokens/trainable": 7061723
389
+ },
390
+ {
391
+ "epoch": 0.9142857142857143,
392
+ "grad_norm": 1.1484375,
393
+ "learning_rate": 9.154262236468826e-06,
394
+ "loss": 1.4140625,
395
+ "memory/device_reserved (GiB)": 61.05,
396
+ "memory/max_active (GiB)": 52.21,
397
+ "memory/max_allocated (GiB)": 52.21,
398
+ "ppl": 4.11263,
399
+ "step": 28,
400
+ "tokens/total": 7340032,
401
+ "tokens/train_per_sec_per_gpu": 218.37,
402
+ "tokens/trainable": 7322916
403
+ },
404
+ {
405
+ "epoch": 0.9469387755102041,
406
+ "grad_norm": 8.6875,
407
+ "learning_rate": 9.084855504057562e-06,
408
+ "loss": 1.4134521484375,
409
+ "memory/device_reserved (GiB)": 61.05,
410
+ "memory/max_active (GiB)": 52.21,
411
+ "memory/max_allocated (GiB)": 52.21,
412
+ "ppl": 4.11012,
413
+ "step": 29,
414
+ "tokens/total": 7602176,
415
+ "tokens/train_per_sec_per_gpu": 215.43,
416
+ "tokens/trainable": 7584212
417
+ },
418
+ {
419
+ "epoch": 0.9795918367346939,
420
+ "grad_norm": 1.28125,
421
+ "learning_rate": 9.013032330272777e-06,
422
+ "loss": 1.3892822265625,
423
+ "memory/device_reserved (GiB)": 61.05,
424
+ "memory/max_active (GiB)": 52.21,
425
+ "memory/max_allocated (GiB)": 52.21,
426
+ "ppl": 4.01197,
427
+ "step": 30,
428
+ "tokens/total": 7864320,
429
+ "tokens/train_per_sec_per_gpu": 219.04,
430
+ "tokens/trainable": 7845238
431
+ },
432
+ {
433
+ "epoch": 1.0,
434
+ "grad_norm": 1.640625,
435
+ "learning_rate": 8.938841128917622e-06,
436
+ "loss": 1.437744140625,
437
+ "memory/device_reserved (GiB)": 61.05,
438
+ "memory/max_active (GiB)": 52.21,
439
+ "memory/max_allocated (GiB)": 52.21,
440
+ "ppl": 4.21119,
441
+ "step": 31,
442
+ "tokens/total": 8028160,
443
+ "tokens/train_per_sec_per_gpu": 344.02,
444
+ "tokens/trainable": 8008339
445
+ },
446
+ {
447
+ "epoch": 1.0326530612244897,
448
+ "grad_norm": 1.109375,
449
+ "learning_rate": 8.86233191001016e-06,
450
+ "loss": 1.3719482421875,
451
+ "memory/device_reserved (GiB)": 61.05,
452
+ "memory/max_active (GiB)": 52.21,
453
+ "memory/max_allocated (GiB)": 52.21,
454
+ "ppl": 3.94303,
455
+ "step": 32,
456
+ "tokens/total": 8290304,
457
+ "tokens/train_per_sec_per_gpu": 216.96,
458
+ "tokens/trainable": 8269997
459
+ },
460
+ {
461
+ "epoch": 1.0653061224489795,
462
+ "grad_norm": 1.25,
463
+ "learning_rate": 8.783556246073135e-06,
464
+ "loss": 1.3463134765625,
465
+ "memory/device_reserved (GiB)": 61.05,
466
+ "memory/max_active (GiB)": 52.21,
467
+ "memory/max_allocated (GiB)": 52.21,
468
+ "ppl": 3.84323,
469
+ "step": 33,
470
+ "tokens/total": 8552448,
471
+ "tokens/train_per_sec_per_gpu": 216.41,
472
+ "tokens/trainable": 8531663
473
+ },
474
+ {
475
+ "epoch": 1.0979591836734695,
476
+ "grad_norm": 1.90625,
477
+ "learning_rate": 8.702567237370521e-06,
478
+ "loss": 1.3736572265625,
479
+ "memory/device_reserved (GiB)": 61.05,
480
+ "memory/max_active (GiB)": 52.21,
481
+ "memory/max_allocated (GiB)": 52.21,
482
+ "ppl": 3.94977,
483
+ "step": 34,
484
+ "tokens/total": 8814592,
485
+ "tokens/train_per_sec_per_gpu": 217.02,
486
+ "tokens/trainable": 8793420
487
+ },
488
+ {
489
+ "epoch": 1.1306122448979592,
490
+ "grad_norm": 1.359375,
491
+ "learning_rate": 8.619419476114251e-06,
492
+ "loss": 1.406005859375,
493
+ "memory/device_reserved (GiB)": 61.05,
494
+ "memory/max_active (GiB)": 52.21,
495
+ "memory/max_allocated (GiB)": 52.21,
496
+ "ppl": 4.07963,
497
+ "step": 35,
498
+ "tokens/total": 9076736,
499
+ "tokens/train_per_sec_per_gpu": 216.8,
500
+ "tokens/trainable": 9055031
501
+ },
502
+ {
503
+ "epoch": 1.163265306122449,
504
+ "grad_norm": 1.140625,
505
+ "learning_rate": 8.534169009665282e-06,
506
+ "loss": 1.3798828125,
507
+ "memory/device_reserved (GiB)": 61.05,
508
+ "memory/max_active (GiB)": 52.21,
509
+ "memory/max_allocated (GiB)": 52.21,
510
+ "ppl": 3.97444,
511
+ "step": 36,
512
+ "tokens/total": 9338880,
513
+ "tokens/train_per_sec_per_gpu": 219.86,
514
+ "tokens/trainable": 9316551
515
+ },
516
+ {
517
+ "epoch": 1.1959183673469387,
518
+ "grad_norm": 1.140625,
519
+ "learning_rate": 8.446873302753783e-06,
520
+ "loss": 1.3572998046875,
521
+ "memory/device_reserved (GiB)": 61.05,
522
+ "memory/max_active (GiB)": 52.21,
523
+ "memory/max_allocated (GiB)": 52.21,
524
+ "ppl": 3.88569,
525
+ "step": 37,
526
+ "tokens/total": 9601024,
527
+ "tokens/train_per_sec_per_gpu": 216.72,
528
+ "tokens/trainable": 9578268
529
+ },
530
+ {
531
+ "epoch": 1.2285714285714286,
532
+ "grad_norm": 1.1796875,
533
+ "learning_rate": 8.357591198743923e-06,
534
+ "loss": 1.3887939453125,
535
+ "memory/device_reserved (GiB)": 61.05,
536
+ "memory/max_active (GiB)": 52.21,
537
+ "memory/max_allocated (GiB)": 52.21,
538
+ "ppl": 4.01001,
539
+ "step": 38,
540
+ "tokens/total": 9863168,
541
+ "tokens/train_per_sec_per_gpu": 217.97,
542
+ "tokens/trainable": 9839941
543
+ },
544
+ {
545
+ "epoch": 1.2612244897959184,
546
+ "grad_norm": 1.3671875,
547
+ "learning_rate": 8.266382879969356e-06,
548
+ "loss": 1.3421630859375,
549
+ "memory/device_reserved (GiB)": 61.05,
550
+ "memory/max_active (GiB)": 52.21,
551
+ "memory/max_allocated (GiB)": 52.21,
552
+ "ppl": 3.82731,
553
+ "step": 39,
554
+ "tokens/total": 10125312,
555
+ "tokens/train_per_sec_per_gpu": 217.15,
556
+ "tokens/trainable": 10101590
557
+ },
558
+ {
559
+ "epoch": 1.2938775510204081,
560
+ "grad_norm": 1.0703125,
561
+ "learning_rate": 8.17330982716615e-06,
562
+ "loss": 1.33123779296875,
563
+ "memory/device_reserved (GiB)": 61.05,
564
+ "memory/max_active (GiB)": 52.21,
565
+ "memory/max_allocated (GiB)": 52.21,
566
+ "ppl": 3.78573,
567
+ "step": 40,
568
+ "tokens/total": 10387456,
569
+ "tokens/train_per_sec_per_gpu": 217.99,
570
+ "tokens/trainable": 10363113
571
+ },
572
+ {
573
+ "epoch": 1.3265306122448979,
574
+ "grad_norm": 1.0859375,
575
+ "learning_rate": 8.078434778030511e-06,
576
+ "loss": 1.3359375,
577
+ "memory/device_reserved (GiB)": 61.05,
578
+ "memory/max_active (GiB)": 52.21,
579
+ "memory/max_allocated (GiB)": 52.21,
580
+ "ppl": 3.80356,
581
+ "step": 41,
582
+ "tokens/total": 10649600,
583
+ "tokens/train_per_sec_per_gpu": 219.58,
584
+ "tokens/trainable": 10624856
585
+ },
586
+ {
587
+ "epoch": 1.3591836734693876,
588
+ "grad_norm": 1.046875,
589
+ "learning_rate": 7.981821684929218e-06,
590
+ "loss": 1.3414306640625,
591
+ "memory/device_reserved (GiB)": 61.05,
592
+ "memory/max_active (GiB)": 52.21,
593
+ "memory/max_allocated (GiB)": 52.21,
594
+ "ppl": 3.82451,
595
+ "step": 42,
596
+ "tokens/total": 10911744,
597
+ "tokens/train_per_sec_per_gpu": 217.46,
598
+ "tokens/trainable": 10886641
599
+ },
600
+ {
601
+ "epoch": 1.3918367346938776,
602
+ "grad_norm": 1.1171875,
603
+ "learning_rate": 7.883535671791294e-06,
604
+ "loss": 1.42529296875,
605
+ "memory/device_reserved (GiB)": 61.05,
606
+ "memory/max_active (GiB)": 52.21,
607
+ "memory/max_allocated (GiB)": 52.21,
608
+ "ppl": 4.15908,
609
+ "step": 43,
610
+ "tokens/total": 11173888,
611
+ "tokens/train_per_sec_per_gpu": 214.56,
612
+ "tokens/trainable": 11148181
613
+ },
614
+ {
615
+ "epoch": 1.4244897959183673,
616
+ "grad_norm": 1.296875,
617
+ "learning_rate": 7.783642990209951e-06,
618
+ "loss": 1.355712890625,
619
+ "memory/device_reserved (GiB)": 61.05,
620
+ "memory/max_active (GiB)": 52.21,
621
+ "memory/max_allocated (GiB)": 52.21,
622
+ "ppl": 3.87953,
623
+ "step": 44,
624
+ "tokens/total": 11436032,
625
+ "tokens/train_per_sec_per_gpu": 216.5,
626
+ "tokens/trainable": 11409757
627
+ },
628
+ {
629
+ "epoch": 1.457142857142857,
630
+ "grad_norm": 1.1640625,
631
+ "learning_rate": 7.682210974784426e-06,
632
+ "loss": 1.3160400390625,
633
+ "memory/device_reserved (GiB)": 61.05,
634
+ "memory/max_active (GiB)": 52.21,
635
+ "memory/max_allocated (GiB)": 52.21,
636
+ "ppl": 3.72863,
637
+ "step": 45,
638
+ "tokens/total": 11698176,
639
+ "tokens/train_per_sec_per_gpu": 218.28,
640
+ "tokens/trainable": 11671426
641
+ },
642
+ {
643
+ "epoch": 1.489795918367347,
644
+ "grad_norm": 1.6015625,
645
+ "learning_rate": 7.579307997731783e-06,
646
+ "loss": 1.3323974609375,
647
+ "memory/device_reserved (GiB)": 61.05,
648
+ "memory/max_active (GiB)": 52.21,
649
+ "memory/max_allocated (GiB)": 52.21,
650
+ "ppl": 3.79012,
651
+ "step": 46,
652
+ "tokens/total": 11960320,
653
+ "tokens/train_per_sec_per_gpu": 215.2,
654
+ "tokens/trainable": 11933217
655
+ },
656
+ {
657
+ "epoch": 1.5224489795918368,
658
+ "grad_norm": 1.4765625,
659
+ "learning_rate": 7.475003422799302e-06,
660
+ "loss": 1.397705078125,
661
+ "memory/device_reserved (GiB)": 61.05,
662
+ "memory/max_active (GiB)": 52.21,
663
+ "memory/max_allocated (GiB)": 52.21,
664
+ "ppl": 4.0459,
665
+ "step": 47,
666
+ "tokens/total": 12222464,
667
+ "tokens/train_per_sec_per_gpu": 214.37,
668
+ "tokens/trainable": 12194654
669
+ },
670
+ {
671
+ "epoch": 1.5551020408163265,
672
+ "grad_norm": 1.3671875,
673
+ "learning_rate": 7.36936755850849e-06,
674
+ "loss": 1.315185546875,
675
+ "memory/device_reserved (GiB)": 61.05,
676
+ "memory/max_active (GiB)": 52.21,
677
+ "memory/max_allocated (GiB)": 52.21,
678
+ "ppl": 3.72544,
679
+ "step": 48,
680
+ "tokens/total": 12484608,
681
+ "tokens/train_per_sec_per_gpu": 218.27,
682
+ "tokens/trainable": 12456058
683
+ },
684
+ {
685
+ "epoch": 1.5877551020408163,
686
+ "grad_norm": 1.2734375,
687
+ "learning_rate": 7.2624716107622675e-06,
688
+ "loss": 1.286376953125,
689
+ "memory/device_reserved (GiB)": 61.05,
690
+ "memory/max_active (GiB)": 52.21,
691
+ "memory/max_allocated (GiB)": 52.21,
692
+ "ppl": 3.61965,
693
+ "step": 49,
694
+ "tokens/total": 12746752,
695
+ "tokens/train_per_sec_per_gpu": 218.4,
696
+ "tokens/trainable": 12717484
697
+ },
698
+ {
699
+ "epoch": 1.620408163265306,
700
+ "grad_norm": 1.421875,
701
+ "learning_rate": 7.154387634847241e-06,
702
+ "loss": 1.31884765625,
703
+ "memory/device_reserved (GiB)": 61.05,
704
+ "memory/max_active (GiB)": 52.21,
705
+ "memory/max_allocated (GiB)": 52.21,
706
+ "ppl": 3.73911,
707
+ "step": 50,
708
+ "tokens/total": 13008896,
709
+ "tokens/train_per_sec_per_gpu": 219.05,
710
+ "tokens/trainable": 12978918
711
+ },
712
+ {
713
+ "epoch": 1.6530612244897958,
714
+ "grad_norm": 2.125,
715
+ "learning_rate": 7.045188486863449e-06,
716
+ "loss": 1.331787109375,
717
+ "memory/device_reserved (GiB)": 61.05,
718
+ "memory/max_active (GiB)": 52.21,
719
+ "memory/max_allocated (GiB)": 52.21,
720
+ "ppl": 3.78781,
721
+ "step": 51,
722
+ "tokens/total": 13271040,
723
+ "tokens/train_per_sec_per_gpu": 217.55,
724
+ "tokens/trainable": 13240264
725
+ },
726
+ {
727
+ "epoch": 1.6857142857142857,
728
+ "grad_norm": 1.0703125,
729
+ "learning_rate": 6.9349477746142846e-06,
730
+ "loss": 1.2967529296875,
731
+ "memory/device_reserved (GiB)": 61.05,
732
+ "memory/max_active (GiB)": 52.21,
733
+ "memory/max_allocated (GiB)": 52.21,
734
+ "ppl": 3.6574,
735
+ "step": 52,
736
+ "tokens/total": 13533184,
737
+ "tokens/train_per_sec_per_gpu": 217.74,
738
+ "tokens/trainable": 13501759
739
+ },
740
+ {
741
+ "epoch": 1.7183673469387755,
742
+ "grad_norm": 1.140625,
743
+ "learning_rate": 6.823739807989734e-06,
744
+ "loss": 1.369140625,
745
+ "memory/device_reserved (GiB)": 61.05,
746
+ "memory/max_active (GiB)": 52.21,
747
+ "memory/max_allocated (GiB)": 52.21,
748
+ "ppl": 3.93197,
749
+ "step": 53,
750
+ "tokens/total": 13795328,
751
+ "tokens/train_per_sec_per_gpu": 217.94,
752
+ "tokens/trainable": 13763153
753
+ },
754
+ {
755
+ "epoch": 1.7510204081632654,
756
+ "grad_norm": 1.375,
757
+ "learning_rate": 6.7116395488763565e-06,
758
+ "loss": 1.3736572265625,
759
+ "memory/device_reserved (GiB)": 61.05,
760
+ "memory/max_active (GiB)": 52.21,
761
+ "memory/max_allocated (GiB)": 52.21,
762
+ "ppl": 3.94977,
763
+ "step": 54,
764
+ "tokens/total": 14057472,
765
+ "tokens/train_per_sec_per_gpu": 217.24,
766
+ "tokens/trainable": 14024778
767
+ },
768
+ {
769
+ "epoch": 1.7836734693877552,
770
+ "grad_norm": 1.25,
771
+ "learning_rate": 6.598722560627761e-06,
772
+ "loss": 1.2650146484375,
773
+ "memory/device_reserved (GiB)": 61.05,
774
+ "memory/max_active (GiB)": 52.21,
775
+ "memory/max_allocated (GiB)": 52.21,
776
+ "ppl": 3.54314,
777
+ "step": 55,
778
+ "tokens/total": 14319616,
779
+ "tokens/train_per_sec_per_gpu": 217.84,
780
+ "tokens/trainable": 14286121
781
+ },
782
+ {
783
+ "epoch": 1.816326530612245,
784
+ "grad_norm": 1.1171875,
785
+ "learning_rate": 6.485064957129677e-06,
786
+ "loss": 1.3046875,
787
+ "memory/device_reserved (GiB)": 61.05,
788
+ "memory/max_active (GiB)": 52.21,
789
+ "memory/max_allocated (GiB)": 52.21,
790
+ "ppl": 3.68654,
791
+ "step": 56,
792
+ "tokens/total": 14581760,
793
+ "tokens/train_per_sec_per_gpu": 217.78,
794
+ "tokens/trainable": 14547349
795
+ },
796
+ {
797
+ "epoch": 1.8489795918367347,
798
+ "grad_norm": 1.7109375,
799
+ "learning_rate": 6.370743351493899e-06,
800
+ "loss": 1.3438720703125,
801
+ "memory/device_reserved (GiB)": 61.05,
802
+ "memory/max_active (GiB)": 52.21,
803
+ "memory/max_allocated (GiB)": 52.21,
804
+ "ppl": 3.83386,
805
+ "step": 57,
806
+ "tokens/total": 14843904,
807
+ "tokens/train_per_sec_per_gpu": 218.18,
808
+ "tokens/trainable": 14808967
809
+ },
810
+ {
811
+ "epoch": 1.8816326530612244,
812
+ "grad_norm": 1.5234375,
813
+ "learning_rate": 6.255834804415742e-06,
814
+ "loss": 1.31201171875,
815
+ "memory/device_reserved (GiB)": 61.05,
816
+ "memory/max_active (GiB)": 52.21,
817
+ "memory/max_allocated (GiB)": 52.21,
818
+ "ppl": 3.71364,
819
+ "step": 58,
820
+ "tokens/total": 15106048,
821
+ "tokens/train_per_sec_per_gpu": 217.78,
822
+ "tokens/trainable": 15070062
823
+ },
824
+ {
825
+ "epoch": 1.9142857142857141,
826
+ "grad_norm": 1.1953125,
827
+ "learning_rate": 6.140416772229785e-06,
828
+ "loss": 1.295166015625,
829
+ "memory/device_reserved (GiB)": 61.05,
830
+ "memory/max_active (GiB)": 52.21,
831
+ "memory/max_allocated (GiB)": 52.21,
832
+ "ppl": 3.6516,
833
+ "step": 59,
834
+ "tokens/total": 15368192,
835
+ "tokens/train_per_sec_per_gpu": 218.56,
836
+ "tokens/trainable": 15331255
837
+ },
838
+ {
839
+ "epoch": 1.9469387755102041,
840
+ "grad_norm": 1.5390625,
841
+ "learning_rate": 6.0245670546989165e-06,
842
+ "loss": 1.346435546875,
843
+ "memory/device_reserved (GiB)": 61.05,
844
+ "memory/max_active (GiB)": 52.21,
845
+ "memory/max_allocated (GiB)": 52.21,
846
+ "ppl": 3.8437,
847
+ "step": 60,
848
+ "tokens/total": 15630336,
849
+ "tokens/train_per_sec_per_gpu": 215.77,
850
+ "tokens/trainable": 15592551
851
+ },
852
+ {
853
+ "epoch": 1.9795918367346939,
854
+ "grad_norm": 1.28125,
855
+ "learning_rate": 5.908363742571915e-06,
856
+ "loss": 1.279541015625,
857
+ "memory/device_reserved (GiB)": 61.05,
858
+ "memory/max_active (GiB)": 52.21,
859
+ "memory/max_allocated (GiB)": 52.21,
860
+ "ppl": 3.59499,
861
+ "step": 61,
862
+ "tokens/total": 15892480,
863
+ "tokens/train_per_sec_per_gpu": 219.27,
864
+ "tokens/trainable": 15853577
865
+ },
866
+ {
867
+ "epoch": 2.0,
868
+ "grad_norm": 1.3046875,
869
+ "learning_rate": 5.791885164944844e-06,
870
+ "loss": 1.325439453125,
871
+ "memory/device_reserved (GiB)": 61.05,
872
+ "memory/max_active (GiB)": 52.21,
873
+ "memory/max_allocated (GiB)": 52.21,
874
+ "ppl": 3.76384,
875
+ "step": 62,
876
+ "tokens/total": 16056320,
877
+ "tokens/train_per_sec_per_gpu": 344.56,
878
+ "tokens/trainable": 16016678
879
+ },
880
+ {
881
+ "epoch": 2.0326530612244897,
882
+ "grad_norm": 1.0859375,
883
+ "learning_rate": 5.67520983646182e-06,
884
+ "loss": 1.27294921875,
885
+ "memory/device_reserved (GiB)": 61.05,
886
+ "memory/max_active (GiB)": 52.21,
887
+ "memory/max_allocated (GiB)": 52.21,
888
+ "ppl": 3.57137,
889
+ "step": 63,
890
+ "tokens/total": 16318464,
891
+ "tokens/train_per_sec_per_gpu": 216.51,
892
+ "tokens/trainable": 16278336
893
+ },
894
+ {
895
+ "epoch": 2.0653061224489795,
896
+ "grad_norm": 1.1953125,
897
+ "learning_rate": 5.5584164043906895e-06,
898
+ "loss": 1.254638671875,
899
+ "memory/device_reserved (GiB)": 61.05,
900
+ "memory/max_active (GiB)": 52.21,
901
+ "memory/max_allocated (GiB)": 52.21,
902
+ "ppl": 3.50657,
903
+ "step": 64,
904
+ "tokens/total": 16580608,
905
+ "tokens/train_per_sec_per_gpu": 216.35,
906
+ "tokens/trainable": 16540002
907
+ },
908
+ {
909
+ "epoch": 2.0979591836734692,
910
+ "grad_norm": 1.3203125,
911
+ "learning_rate": 5.441583595609312e-06,
912
+ "loss": 1.28955078125,
913
+ "memory/device_reserved (GiB)": 61.05,
914
+ "memory/max_active (GiB)": 52.21,
915
+ "memory/max_allocated (GiB)": 52.21,
916
+ "ppl": 3.63116,
917
+ "step": 65,
918
+ "tokens/total": 16842752,
919
+ "tokens/train_per_sec_per_gpu": 217.12,
920
+ "tokens/trainable": 16801760
921
+ },
922
+ {
923
+ "epoch": 2.130612244897959,
924
+ "grad_norm": 1.34375,
925
+ "learning_rate": 5.324790163538181e-06,
926
+ "loss": 1.3218994140625,
927
+ "memory/device_reserved (GiB)": 61.05,
928
+ "memory/max_active (GiB)": 52.21,
929
+ "memory/max_allocated (GiB)": 52.21,
930
+ "ppl": 3.75054,
931
+ "step": 66,
932
+ "tokens/total": 17104896,
933
+ "tokens/train_per_sec_per_gpu": 216.69,
934
+ "tokens/trainable": 17063372
935
+ },
936
+ {
937
+ "epoch": 2.163265306122449,
938
+ "grad_norm": 1.109375,
939
+ "learning_rate": 5.208114835055157e-06,
940
+ "loss": 1.2872314453125,
941
+ "memory/device_reserved (GiB)": 61.05,
942
+ "memory/max_active (GiB)": 52.21,
943
+ "memory/max_allocated (GiB)": 52.21,
944
+ "ppl": 3.62274,
945
+ "step": 67,
946
+ "tokens/total": 17367040,
947
+ "tokens/train_per_sec_per_gpu": 220.09,
948
+ "tokens/trainable": 17324890
949
+ },
950
+ {
951
+ "epoch": 2.195918367346939,
952
+ "grad_norm": 1.2265625,
953
+ "learning_rate": 5.0916362574280864e-06,
954
+ "loss": 1.272705078125,
955
+ "memory/device_reserved (GiB)": 61.05,
956
+ "memory/max_active (GiB)": 52.21,
957
+ "memory/max_allocated (GiB)": 52.21,
958
+ "ppl": 3.5705,
959
+ "step": 68,
960
+ "tokens/total": 17629184,
961
+ "tokens/train_per_sec_per_gpu": 216.76,
962
+ "tokens/trainable": 17586604
963
+ },
964
+ {
965
+ "epoch": 2.2285714285714286,
966
+ "grad_norm": 2.1875,
967
+ "learning_rate": 4.975432945301085e-06,
968
+ "loss": 1.31103515625,
969
+ "memory/device_reserved (GiB)": 61.05,
970
+ "memory/max_active (GiB)": 52.21,
971
+ "memory/max_allocated (GiB)": 52.21,
972
+ "ppl": 3.71001,
973
+ "step": 69,
974
+ "tokens/total": 17891328,
975
+ "tokens/train_per_sec_per_gpu": 218.03,
976
+ "tokens/trainable": 17848276
977
+ },
978
+ {
979
+ "epoch": 2.2612244897959184,
980
+ "grad_norm": 1.1171875,
981
+ "learning_rate": 4.859583227770218e-06,
982
+ "loss": 1.2706298828125,
983
+ "memory/device_reserved (GiB)": 61.05,
984
+ "memory/max_active (GiB)": 52.21,
985
+ "memory/max_allocated (GiB)": 52.21,
986
+ "ppl": 3.5631,
987
+ "step": 70,
988
+ "tokens/total": 18153472,
989
+ "tokens/train_per_sec_per_gpu": 217.1,
990
+ "tokens/trainable": 18109924
991
+ },
992
+ {
993
+ "epoch": 2.293877551020408,
994
+ "grad_norm": 1.0859375,
995
+ "learning_rate": 4.744165195584258e-06,
996
+ "loss": 1.25579833984375,
997
+ "memory/device_reserved (GiB)": 61.05,
998
+ "memory/max_active (GiB)": 52.21,
999
+ "memory/max_allocated (GiB)": 52.21,
1000
+ "ppl": 3.51064,
1001
+ "step": 71,
1002
+ "tokens/total": 18415616,
1003
+ "tokens/train_per_sec_per_gpu": 217.98,
1004
+ "tokens/trainable": 18371446
1005
+ },
1006
+ {
1007
+ "epoch": 2.326530612244898,
1008
+ "grad_norm": 1.1796875,
1009
+ "learning_rate": 4.6292566485061015e-06,
1010
+ "loss": 1.258544921875,
1011
+ "memory/device_reserved (GiB)": 61.05,
1012
+ "memory/max_active (GiB)": 52.21,
1013
+ "memory/max_allocated (GiB)": 52.21,
1014
+ "ppl": 3.5203,
1015
+ "step": 72,
1016
+ "tokens/total": 18677760,
1017
+ "tokens/train_per_sec_per_gpu": 219.57,
1018
+ "tokens/trainable": 18633192
1019
+ },
1020
+ {
1021
+ "epoch": 2.3591836734693876,
1022
+ "grad_norm": 1.0390625,
1023
+ "learning_rate": 4.514935042870324e-06,
1024
+ "loss": 1.27490234375,
1025
+ "memory/device_reserved (GiB)": 61.05,
1026
+ "memory/max_active (GiB)": 52.21,
1027
+ "memory/max_allocated (GiB)": 52.21,
1028
+ "ppl": 3.57835,
1029
+ "step": 73,
1030
+ "tokens/total": 18939904,
1031
+ "tokens/train_per_sec_per_gpu": 217.53,
1032
+ "tokens/trainable": 18894978
1033
+ },
1034
+ {
1035
+ "epoch": 2.3918367346938774,
1036
+ "grad_norm": 1.09375,
1037
+ "learning_rate": 4.40127743937224e-06,
1038
+ "loss": 1.3577880859375,
1039
+ "memory/device_reserved (GiB)": 61.05,
1040
+ "memory/max_active (GiB)": 52.21,
1041
+ "memory/max_allocated (GiB)": 52.21,
1042
+ "ppl": 3.88758,
1043
+ "step": 74,
1044
+ "tokens/total": 19202048,
1045
+ "tokens/train_per_sec_per_gpu": 217.2,
1046
+ "tokens/trainable": 19156520
1047
+ },
1048
+ {
1049
+ "epoch": 2.424489795918367,
1050
+ "grad_norm": 1.171875,
1051
+ "learning_rate": 4.288360451123646e-06,
1052
+ "loss": 1.29541015625,
1053
+ "memory/device_reserved (GiB)": 61.05,
1054
+ "memory/max_active (GiB)": 52.21,
1055
+ "memory/max_allocated (GiB)": 52.21,
1056
+ "ppl": 3.65249,
1057
+ "step": 75,
1058
+ "tokens/total": 19464192,
1059
+ "tokens/train_per_sec_per_gpu": 216.56,
1060
+ "tokens/trainable": 19418096
1061
+ },
1062
+ {
1063
+ "epoch": 2.4571428571428573,
1064
+ "grad_norm": 1.2109375,
1065
+ "learning_rate": 4.1762601920102675e-06,
1066
+ "loss": 1.252685546875,
1067
+ "memory/device_reserved (GiB)": 61.05,
1068
+ "memory/max_active (GiB)": 52.21,
1069
+ "memory/max_allocated (GiB)": 52.21,
1070
+ "ppl": 3.49973,
1071
+ "step": 76,
1072
+ "tokens/total": 19726336,
1073
+ "tokens/train_per_sec_per_gpu": 215.64,
1074
+ "tokens/trainable": 19679768
1075
+ },
1076
+ {
1077
+ "epoch": 2.489795918367347,
1078
+ "grad_norm": 1.125,
1079
+ "learning_rate": 4.065052225385717e-06,
1080
+ "loss": 1.279296875,
1081
+ "memory/device_reserved (GiB)": 61.05,
1082
+ "memory/max_active (GiB)": 52.21,
1083
+ "memory/max_allocated (GiB)": 52.21,
1084
+ "ppl": 3.59411,
1085
+ "step": 77,
1086
+ "tokens/total": 19988480,
1087
+ "tokens/train_per_sec_per_gpu": 215.43,
1088
+ "tokens/trainable": 19941556
1089
+ },
1090
+ {
1091
+ "epoch": 2.522448979591837,
1092
+ "grad_norm": 1.2578125,
1093
+ "learning_rate": 3.954811513136554e-06,
1094
+ "loss": 1.347412109375,
1095
+ "memory/device_reserved (GiB)": 61.05,
1096
+ "memory/max_active (GiB)": 52.21,
1097
+ "memory/max_allocated (GiB)": 52.21,
1098
+ "ppl": 3.84746,
1099
+ "step": 78,
1100
+ "tokens/total": 20250624,
1101
+ "tokens/train_per_sec_per_gpu": 217.44,
1102
+ "tokens/trainable": 20202992
1103
+ },
1104
+ {
1105
+ "epoch": 2.5551020408163265,
1106
+ "grad_norm": 1.0390625,
1107
+ "learning_rate": 3.84561236515276e-06,
1108
+ "loss": 1.2625732421875,
1109
+ "memory/device_reserved (GiB)": 61.05,
1110
+ "memory/max_active (GiB)": 52.21,
1111
+ "memory/max_allocated (GiB)": 52.21,
1112
+ "ppl": 3.5345,
1113
+ "step": 79,
1114
+ "tokens/total": 20512768,
1115
+ "tokens/train_per_sec_per_gpu": 218.33,
1116
+ "tokens/trainable": 20464396
1117
+ },
1118
+ {
1119
+ "epoch": 2.5877551020408163,
1120
+ "grad_norm": 1.1875,
1121
+ "learning_rate": 3.7375283892377344e-06,
1122
+ "loss": 1.2357177734375,
1123
+ "memory/device_reserved (GiB)": 61.05,
1124
+ "memory/max_active (GiB)": 52.21,
1125
+ "memory/max_allocated (GiB)": 52.21,
1126
+ "ppl": 3.44085,
1127
+ "step": 80,
1128
+ "tokens/total": 20774912,
1129
+ "tokens/train_per_sec_per_gpu": 218.74,
1130
+ "tokens/trainable": 20725822
1131
+ },
1132
+ {
1133
+ "epoch": 2.620408163265306,
1134
+ "grad_norm": 1.0390625,
1135
+ "learning_rate": 3.630632441491512e-06,
1136
+ "loss": 1.2724609375,
1137
+ "memory/device_reserved (GiB)": 61.05,
1138
+ "memory/max_active (GiB)": 52.21,
1139
+ "memory/max_allocated (GiB)": 52.21,
1140
+ "ppl": 3.56963,
1141
+ "step": 81,
1142
+ "tokens/total": 21037056,
1143
+ "tokens/train_per_sec_per_gpu": 216.38,
1144
+ "tokens/trainable": 20987256
1145
+ },
1146
+ {
1147
+ "epoch": 2.6530612244897958,
1148
+ "grad_norm": 2.328125,
1149
+ "learning_rate": 3.5249965772007e-06,
1150
+ "loss": 1.296142578125,
1151
+ "memory/device_reserved (GiB)": 61.05,
1152
+ "memory/max_active (GiB)": 52.21,
1153
+ "memory/max_allocated (GiB)": 52.21,
1154
+ "ppl": 3.65517,
1155
+ "step": 82,
1156
+ "tokens/total": 21299200,
1157
+ "tokens/train_per_sec_per_gpu": 216.38,
1158
+ "tokens/trainable": 21248602
1159
+ },
1160
+ {
1161
+ "epoch": 2.685714285714286,
1162
+ "grad_norm": 1.625,
1163
+ "learning_rate": 3.4206920022682173e-06,
1164
+ "loss": 1.248779296875,
1165
+ "memory/device_reserved (GiB)": 61.05,
1166
+ "memory/max_active (GiB)": 52.21,
1167
+ "memory/max_allocated (GiB)": 52.21,
1168
+ "ppl": 3.48608,
1169
+ "step": 83,
1170
+ "tokens/total": 21561344,
1171
+ "tokens/train_per_sec_per_gpu": 217.76,
1172
+ "tokens/trainable": 21510096
1173
+ },
1174
+ {
1175
+ "epoch": 2.7183673469387752,
1176
+ "grad_norm": 1.1484375,
1177
+ "learning_rate": 3.3177890252155755e-06,
1178
+ "loss": 1.32373046875,
1179
+ "memory/device_reserved (GiB)": 61.05,
1180
+ "memory/max_active (GiB)": 52.21,
1181
+ "memory/max_allocated (GiB)": 52.21,
1182
+ "ppl": 3.75741,
1183
+ "step": 84,
1184
+ "tokens/total": 21823488,
1185
+ "tokens/train_per_sec_per_gpu": 217.9,
1186
+ "tokens/trainable": 21771492
1187
+ },
1188
+ {
1189
+ "epoch": 2.7510204081632654,
1190
+ "grad_norm": 1.0859375,
1191
+ "learning_rate": 3.2163570097900497e-06,
1192
+ "loss": 1.3331298828125,
1193
+ "memory/device_reserved (GiB)": 61.05,
1194
+ "memory/max_active (GiB)": 52.21,
1195
+ "memory/max_allocated (GiB)": 52.21,
1196
+ "ppl": 3.7929,
1197
+ "step": 85,
1198
+ "tokens/total": 22085632,
1199
+ "tokens/train_per_sec_per_gpu": 217.14,
1200
+ "tokens/trainable": 22033116
1201
+ },
1202
+ {
1203
+ "epoch": 2.783673469387755,
1204
+ "grad_norm": 0.984375,
1205
+ "learning_rate": 3.116464328208708e-06,
1206
+ "loss": 1.2252197265625,
1207
+ "memory/device_reserved (GiB)": 61.05,
1208
+ "memory/max_active (GiB)": 52.21,
1209
+ "memory/max_allocated (GiB)": 52.21,
1210
+ "ppl": 3.40491,
1211
+ "step": 86,
1212
+ "tokens/total": 22347776,
1213
+ "tokens/train_per_sec_per_gpu": 217.31,
1214
+ "tokens/trainable": 22294460
1215
+ },
1216
+ {
1217
+ "epoch": 2.816326530612245,
1218
+ "grad_norm": 1.0078125,
1219
+ "learning_rate": 3.0181783150707827e-06,
1220
+ "loss": 1.2613525390625,
1221
+ "memory/device_reserved (GiB)": 61.05,
1222
+ "memory/max_active (GiB)": 52.21,
1223
+ "memory/max_allocated (GiB)": 52.21,
1224
+ "ppl": 3.53019,
1225
+ "step": 87,
1226
+ "tokens/total": 22609920,
1227
+ "tokens/train_per_sec_per_gpu": 217.87,
1228
+ "tokens/trainable": 22555688
1229
+ },
1230
+ {
1231
+ "epoch": 2.8489795918367347,
1232
+ "grad_norm": 1.0625,
1233
+ "learning_rate": 2.921565221969492e-06,
1234
+ "loss": 1.309814453125,
1235
+ "memory/device_reserved (GiB)": 61.05,
1236
+ "memory/max_active (GiB)": 52.21,
1237
+ "memory/max_allocated (GiB)": 52.21,
1238
+ "ppl": 3.70549,
1239
+ "step": 88,
1240
+ "tokens/total": 22872064,
1241
+ "tokens/train_per_sec_per_gpu": 218.51,
1242
+ "tokens/trainable": 22817308
1243
+ },
1244
+ {
1245
+ "epoch": 2.8816326530612244,
1246
+ "grad_norm": 0.97265625,
1247
+ "learning_rate": 2.8266901728338526e-06,
1248
+ "loss": 1.2808837890625,
1249
+ "memory/device_reserved (GiB)": 61.05,
1250
+ "memory/max_active (GiB)": 52.21,
1251
+ "memory/max_allocated (GiB)": 52.21,
1252
+ "ppl": 3.59982,
1253
+ "step": 89,
1254
+ "tokens/total": 23134208,
1255
+ "tokens/train_per_sec_per_gpu": 217.71,
1256
+ "tokens/trainable": 23078402
1257
+ },
1258
+ {
1259
+ "epoch": 2.914285714285714,
1260
+ "grad_norm": 1.1328125,
1261
+ "learning_rate": 2.7336171200306467e-06,
1262
+ "loss": 1.2611083984375,
1263
+ "memory/device_reserved (GiB)": 61.05,
1264
+ "memory/max_active (GiB)": 52.21,
1265
+ "memory/max_allocated (GiB)": 52.21,
1266
+ "ppl": 3.52933,
1267
+ "step": 90,
1268
+ "tokens/total": 23396352,
1269
+ "tokens/train_per_sec_per_gpu": 218.57,
1270
+ "tokens/trainable": 23339596
1271
+ },
1272
+ {
1273
+ "epoch": 2.946938775510204,
1274
+ "grad_norm": 1.3671875,
1275
+ "learning_rate": 2.6424088012560766e-06,
1276
+ "loss": 1.3175048828125,
1277
+ "memory/device_reserved (GiB)": 61.05,
1278
+ "memory/max_active (GiB)": 52.21,
1279
+ "memory/max_allocated (GiB)": 52.21,
1280
+ "ppl": 3.73409,
1281
+ "step": 91,
1282
+ "tokens/total": 23658496,
1283
+ "tokens/train_per_sec_per_gpu": 215.68,
1284
+ "tokens/trainable": 23600896
1285
+ },
1286
+ {
1287
+ "epoch": 2.979591836734694,
1288
+ "grad_norm": 1.2734375,
1289
+ "learning_rate": 2.5531266972462176e-06,
1290
+ "loss": 1.250244140625,
1291
+ "memory/device_reserved (GiB)": 61.05,
1292
+ "memory/max_active (GiB)": 52.21,
1293
+ "memory/max_allocated (GiB)": 52.21,
1294
+ "ppl": 3.4912,
1295
+ "step": 92,
1296
+ "tokens/total": 23920640,
1297
+ "tokens/train_per_sec_per_gpu": 219.08,
1298
+ "tokens/trainable": 23861922
1299
+ },
1300
+ {
1301
+ "epoch": 3.0,
1302
+ "grad_norm": 1.234375,
1303
+ "learning_rate": 2.4658309903347196e-06,
1304
+ "loss": 1.289306640625,
1305
+ "memory/device_reserved (GiB)": 61.05,
1306
+ "memory/max_active (GiB)": 52.21,
1307
+ "memory/max_allocated (GiB)": 52.21,
1308
+ "ppl": 3.63027,
1309
+ "step": 93,
1310
+ "tokens/total": 24084480,
1311
+ "tokens/train_per_sec_per_gpu": 342.99,
1312
+ "tokens/trainable": 24025024
1313
+ },
1314
+ {
1315
+ "epoch": 3.0326530612244897,
1316
+ "grad_norm": 1.0234375,
1317
+ "learning_rate": 2.380580523885751e-06,
1318
+ "loss": 1.2459716796875,
1319
+ "memory/device_reserved (GiB)": 61.05,
1320
+ "memory/max_active (GiB)": 52.21,
1321
+ "memory/max_allocated (GiB)": 52.21,
1322
+ "ppl": 3.47631,
1323
+ "step": 94,
1324
+ "tokens/total": 24346624,
1325
+ "tokens/train_per_sec_per_gpu": 216.36,
1326
+ "tokens/trainable": 24286680
1327
+ },
1328
+ {
1329
+ "epoch": 3.0653061224489795,
1330
+ "grad_norm": 1.0703125,
1331
+ "learning_rate": 2.29743276262948e-06,
1332
+ "loss": 1.2288818359375,
1333
+ "memory/device_reserved (GiB)": 61.05,
1334
+ "memory/max_active (GiB)": 52.21,
1335
+ "memory/max_allocated (GiB)": 52.21,
1336
+ "ppl": 3.41741,
1337
+ "step": 95,
1338
+ "tokens/total": 24608768,
1339
+ "tokens/train_per_sec_per_gpu": 216.37,
1340
+ "tokens/trainable": 24548348
1341
+ },
1342
+ {
1343
+ "epoch": 3.0979591836734692,
1344
+ "grad_norm": 1.1171875,
1345
+ "learning_rate": 2.2164437539268652e-06,
1346
+ "loss": 1.26025390625,
1347
+ "memory/device_reserved (GiB)": 61.05,
1348
+ "memory/max_active (GiB)": 52.21,
1349
+ "memory/max_allocated (GiB)": 52.21,
1350
+ "ppl": 3.52632,
1351
+ "step": 96,
1352
+ "tokens/total": 24870912,
1353
+ "tokens/train_per_sec_per_gpu": 217.1,
1354
+ "tokens/trainable": 24810104
1355
+ },
1356
+ {
1357
+ "epoch": 3.130612244897959,
1358
+ "grad_norm": 1.2578125,
1359
+ "learning_rate": 2.1376680899898415e-06,
1360
+ "loss": 1.299072265625,
1361
+ "memory/device_reserved (GiB)": 61.05,
1362
+ "memory/max_active (GiB)": 52.21,
1363
+ "memory/max_allocated (GiB)": 52.21,
1364
+ "ppl": 3.66589,
1365
+ "step": 97,
1366
+ "tokens/total": 25133056,
1367
+ "tokens/train_per_sec_per_gpu": 216.67,
1368
+ "tokens/trainable": 25071716
1369
+ },
1370
+ {
1371
+ "epoch": 3.163265306122449,
1372
+ "grad_norm": 0.98828125,
1373
+ "learning_rate": 2.0611588710823797e-06,
1374
+ "loss": 1.2637939453125,
1375
+ "memory/device_reserved (GiB)": 61.05,
1376
+ "memory/max_active (GiB)": 52.21,
1377
+ "memory/max_allocated (GiB)": 52.21,
1378
+ "ppl": 3.53882,
1379
+ "step": 98,
1380
+ "tokens/total": 25395200,
1381
+ "tokens/train_per_sec_per_gpu": 218.04,
1382
+ "tokens/trainable": 25333234
1383
+ },
1384
+ {
1385
+ "epoch": 3.195918367346939,
1386
+ "grad_norm": 1.1953125,
1387
+ "learning_rate": 1.986967669727224e-06,
1388
+ "loss": 1.2506103515625,
1389
+ "memory/device_reserved (GiB)": 61.05,
1390
+ "memory/max_active (GiB)": 52.21,
1391
+ "memory/max_allocated (GiB)": 52.21,
1392
+ "ppl": 3.49247,
1393
+ "step": 99,
1394
+ "tokens/total": 25657344,
1395
+ "tokens/train_per_sec_per_gpu": 216.74,
1396
+ "tokens/trainable": 25594948
1397
+ },
1398
+ {
1399
+ "epoch": 3.2285714285714286,
1400
+ "grad_norm": 1.015625,
1401
+ "learning_rate": 1.9151444959424383e-06,
1402
+ "loss": 1.2969970703125,
1403
+ "memory/device_reserved (GiB)": 61.05,
1404
+ "memory/max_active (GiB)": 52.21,
1405
+ "memory/max_allocated (GiB)": 52.21,
1406
+ "ppl": 3.65829,
1407
+ "step": 100,
1408
+ "tokens/total": 25919488,
1409
+ "tokens/train_per_sec_per_gpu": 218.06,
1410
+ "tokens/trainable": 25856620
1411
+ },
1412
+ {
1413
+ "epoch": 3.2612244897959184,
1414
+ "grad_norm": 2.59375,
1415
+ "learning_rate": 1.8457377635311763e-06,
1416
+ "loss": 1.2501220703125,
1417
+ "memory/device_reserved (GiB)": 61.05,
1418
+ "memory/max_active (GiB)": 52.21,
1419
+ "memory/max_allocated (GiB)": 52.21,
1420
+ "ppl": 3.49077,
1421
+ "step": 101,
1422
+ "tokens/total": 26181632,
1423
+ "tokens/train_per_sec_per_gpu": 217.25,
1424
+ "tokens/trainable": 26118268
1425
+ },
1426
+ {
1427
+ "epoch": 3.293877551020408,
1428
+ "grad_norm": 0.9765625,
1429
+ "learning_rate": 1.7787942574474215e-06,
1430
+ "loss": 1.23565673828125,
1431
+ "memory/device_reserved (GiB)": 61.05,
1432
+ "memory/max_active (GiB)": 52.21,
1433
+ "memory/max_allocated (GiB)": 52.21,
1434
+ "ppl": 3.44064,
1435
+ "step": 102,
1436
+ "tokens/total": 26443776,
1437
+ "tokens/train_per_sec_per_gpu": 217.99,
1438
+ "tokens/trainable": 26379790
1439
+ },
1440
+ {
1441
+ "epoch": 3.326530612244898,
1442
+ "grad_norm": 21.125,
1443
+ "learning_rate": 1.7143591022596846e-06,
1444
+ "loss": 1.2393798828125,
1445
+ "memory/device_reserved (GiB)": 61.05,
1446
+ "memory/max_active (GiB)": 52.21,
1447
+ "memory/max_allocated (GiB)": 52.21,
1448
+ "ppl": 3.45347,
1449
+ "step": 103,
1450
+ "tokens/total": 26705920,
1451
+ "tokens/train_per_sec_per_gpu": 219.59,
1452
+ "tokens/trainable": 26641536
1453
+ },
1454
+ {
1455
+ "epoch": 3.3591836734693876,
1456
+ "grad_norm": 1.0625,
1457
+ "learning_rate": 1.6524757317339102e-06,
1458
+ "loss": 1.256103515625,
1459
+ "memory/device_reserved (GiB)": 61.05,
1460
+ "memory/max_active (GiB)": 52.21,
1461
+ "memory/max_allocated (GiB)": 52.21,
1462
+ "ppl": 3.51171,
1463
+ "step": 104,
1464
+ "tokens/total": 26968064,
1465
+ "tokens/train_per_sec_per_gpu": 217.41,
1466
+ "tokens/trainable": 26903322
1467
+ },
1468
+ {
1469
+ "epoch": 3.3918367346938774,
1470
+ "grad_norm": 1.0546875,
1471
+ "learning_rate": 1.593185859556103e-06,
1472
+ "loss": 1.33984375,
1473
+ "memory/device_reserved (GiB)": 61.05,
1474
+ "memory/max_active (GiB)": 52.21,
1475
+ "memory/max_allocated (GiB)": 52.21,
1476
+ "ppl": 3.81845,
1477
+ "step": 105,
1478
+ "tokens/total": 27230208,
1479
+ "tokens/train_per_sec_per_gpu": 217.22,
1480
+ "tokens/trainable": 27164864
1481
+ },
1482
+ {
1483
+ "epoch": 3.424489795918367,
1484
+ "grad_norm": 1.0390625,
1485
+ "learning_rate": 1.5365294512144114e-06,
1486
+ "loss": 1.2786865234375,
1487
+ "memory/device_reserved (GiB)": 61.05,
1488
+ "memory/max_active (GiB)": 52.21,
1489
+ "memory/max_allocated (GiB)": 52.21,
1490
+ "ppl": 3.59192,
1491
+ "step": 106,
1492
+ "tokens/total": 27492352,
1493
+ "tokens/train_per_sec_per_gpu": 216.62,
1494
+ "tokens/trainable": 27426440
1495
+ },
1496
+ {
1497
+ "epoch": 3.4571428571428573,
1498
+ "grad_norm": 5.0,
1499
+ "learning_rate": 1.4825446970596136e-06,
1500
+ "loss": 1.2369384765625,
1501
+ "memory/device_reserved (GiB)": 61.05,
1502
+ "memory/max_active (GiB)": 52.21,
1503
+ "memory/max_allocated (GiB)": 52.21,
1504
+ "ppl": 3.44505,
1505
+ "step": 107,
1506
+ "tokens/total": 27754496,
1507
+ "tokens/train_per_sec_per_gpu": 218.32,
1508
+ "tokens/trainable": 27688112
1509
+ },
1510
+ {
1511
+ "epoch": 3.489795918367347,
1512
+ "grad_norm": 1.6015625,
1513
+ "learning_rate": 1.4312679865621742e-06,
1514
+ "loss": 1.263671875,
1515
+ "memory/device_reserved (GiB)": 61.05,
1516
+ "memory/max_active (GiB)": 52.21,
1517
+ "memory/max_allocated (GiB)": 52.21,
1518
+ "ppl": 3.53839,
1519
+ "step": 108,
1520
+ "tokens/total": 28016640,
1521
+ "tokens/train_per_sec_per_gpu": 215.56,
1522
+ "tokens/trainable": 27949900
1523
+ },
1524
+ {
1525
+ "epoch": 3.522448979591837,
1526
+ "grad_norm": 0.98046875,
1527
+ "learning_rate": 1.382733883783211e-06,
1528
+ "loss": 1.33544921875,
1529
+ "memory/device_reserved (GiB)": 61.05,
1530
+ "memory/max_active (GiB)": 52.21,
1531
+ "memory/max_allocated (GiB)": 52.21,
1532
+ "ppl": 3.8017,
1533
+ "step": 109,
1534
+ "tokens/total": 28278784,
1535
+ "tokens/train_per_sec_per_gpu": 217.58,
1536
+ "tokens/trainable": 28211336
1537
+ },
1538
+ {
1539
+ "epoch": 3.5551020408163265,
1540
+ "grad_norm": 1.0078125,
1541
+ "learning_rate": 1.3369751040759236e-06,
1542
+ "loss": 1.248779296875,
1543
+ "memory/device_reserved (GiB)": 61.05,
1544
+ "memory/max_active (GiB)": 52.21,
1545
+ "memory/max_allocated (GiB)": 52.21,
1546
+ "ppl": 3.48608,
1547
+ "step": 110,
1548
+ "tokens/total": 28540928,
1549
+ "tokens/train_per_sec_per_gpu": 218.48,
1550
+ "tokens/trainable": 28472740
1551
+ },
1552
+ {
1553
+ "epoch": 3.5877551020408163,
1554
+ "grad_norm": 1.015625,
1555
+ "learning_rate": 1.2940224920331707e-06,
1556
+ "loss": 1.2225341796875,
1557
+ "memory/device_reserved (GiB)": 61.05,
1558
+ "memory/max_active (GiB)": 52.21,
1559
+ "memory/max_allocated (GiB)": 52.21,
1560
+ "ppl": 3.39578,
1561
+ "step": 111,
1562
+ "tokens/total": 28803072,
1563
+ "tokens/train_per_sec_per_gpu": 218.77,
1564
+ "tokens/trainable": 28734166
1565
+ },
1566
+ {
1567
+ "epoch": 3.620408163265306,
1568
+ "grad_norm": 29.875,
1569
+ "learning_rate": 1.2539050006960814e-06,
1570
+ "loss": 1.26025390625,
1571
+ "memory/device_reserved (GiB)": 61.05,
1572
+ "memory/max_active (GiB)": 52.21,
1573
+ "memory/max_allocated (GiB)": 52.21,
1574
+ "ppl": 3.52632,
1575
+ "step": 112,
1576
+ "tokens/total": 29065216,
1577
+ "tokens/train_per_sec_per_gpu": 216.37,
1578
+ "tokens/trainable": 28995600
1579
+ },
1580
+ {
1581
+ "epoch": 3.6530612244897958,
1582
+ "grad_norm": 1.609375,
1583
+ "learning_rate": 1.2166496720376874e-06,
1584
+ "loss": 1.2891845703125,
1585
+ "memory/device_reserved (GiB)": 61.05,
1586
+ "memory/max_active (GiB)": 52.21,
1587
+ "memory/max_allocated (GiB)": 52.21,
1588
+ "ppl": 3.62983,
1589
+ "step": 113,
1590
+ "tokens/total": 29327360,
1591
+ "tokens/train_per_sec_per_gpu": 217.64,
1592
+ "tokens/trainable": 29256946
1593
+ },
1594
+ {
1595
+ "epoch": 3.685714285714286,
1596
+ "grad_norm": 1.2890625,
1597
+ "learning_rate": 1.1822816187347625e-06,
1598
+ "loss": 1.240966796875,
1599
+ "memory/device_reserved (GiB)": 61.05,
1600
+ "memory/max_active (GiB)": 52.21,
1601
+ "memory/max_allocated (GiB)": 52.21,
1602
+ "ppl": 3.45896,
1603
+ "step": 114,
1604
+ "tokens/total": 29589504,
1605
+ "tokens/train_per_sec_per_gpu": 217.6,
1606
+ "tokens/trainable": 29518440
1607
+ },
1608
+ {
1609
+ "epoch": 3.7183673469387752,
1610
+ "grad_norm": 1.0078125,
1611
+ "learning_rate": 1.1508240072401336e-06,
1612
+ "loss": 1.3135986328125,
1613
+ "memory/device_reserved (GiB)": 61.05,
1614
+ "memory/max_active (GiB)": 52.21,
1615
+ "memory/max_allocated (GiB)": 52.21,
1616
+ "ppl": 3.71953,
1617
+ "step": 115,
1618
+ "tokens/total": 29851648,
1619
+ "tokens/train_per_sec_per_gpu": 215.01,
1620
+ "tokens/trainable": 29779836
1621
+ },
1622
+ {
1623
+ "epoch": 3.7510204081632654,
1624
+ "grad_norm": 1.0859375,
1625
+ "learning_rate": 1.1222980421668874e-06,
1626
+ "loss": 1.3245849609375,
1627
+ "memory/device_reserved (GiB)": 61.05,
1628
+ "memory/max_active (GiB)": 52.21,
1629
+ "memory/max_allocated (GiB)": 52.21,
1630
+ "ppl": 3.76062,
1631
+ "step": 116,
1632
+ "tokens/total": 30113792,
1633
+ "tokens/train_per_sec_per_gpu": 217.27,
1634
+ "tokens/trainable": 30041460
1635
+ },
1636
+ {
1637
+ "epoch": 3.783673469387755,
1638
+ "grad_norm": 0.984375,
1639
+ "learning_rate": 1.0967229519949833e-06,
1640
+ "loss": 1.21728515625,
1641
+ "memory/device_reserved (GiB)": 61.05,
1642
+ "memory/max_active (GiB)": 52.21,
1643
+ "memory/max_allocated (GiB)": 52.21,
1644
+ "ppl": 3.378,
1645
+ "step": 117,
1646
+ "tokens/total": 30375936,
1647
+ "tokens/train_per_sec_per_gpu": 215.01,
1648
+ "tokens/trainable": 30302804
1649
+ },
1650
+ {
1651
+ "epoch": 3.816326530612245,
1652
+ "grad_norm": 1.0078125,
1653
+ "learning_rate": 1.0741159761099294e-06,
1654
+ "loss": 1.25341796875,
1655
+ "memory/device_reserved (GiB)": 61.05,
1656
+ "memory/max_active (GiB)": 52.21,
1657
+ "memory/max_allocated (GiB)": 52.21,
1658
+ "ppl": 3.50229,
1659
+ "step": 118,
1660
+ "tokens/total": 30638080,
1661
+ "tokens/train_per_sec_per_gpu": 217.55,
1662
+ "tokens/trainable": 30564032
1663
+ },
1664
+ {
1665
+ "epoch": 3.8489795918367347,
1666
+ "grad_norm": 1.453125,
1667
+ "learning_rate": 1.054492353182237e-06,
1668
+ "loss": 1.302001953125,
1669
+ "memory/device_reserved (GiB)": 61.05,
1670
+ "memory/max_active (GiB)": 52.21,
1671
+ "memory/max_allocated (GiB)": 52.21,
1672
+ "ppl": 3.67665,
1673
+ "step": 119,
1674
+ "tokens/total": 30900224,
1675
+ "tokens/train_per_sec_per_gpu": 218.31,
1676
+ "tokens/trainable": 30825652
1677
+ },
1678
+ {
1679
+ "epoch": 3.8816326530612244,
1680
+ "grad_norm": 1.0390625,
1681
+ "learning_rate": 1.0378653108955017e-06,
1682
+ "loss": 1.2734375,
1683
+ "memory/device_reserved (GiB)": 61.05,
1684
+ "memory/max_active (GiB)": 52.21,
1685
+ "memory/max_allocated (GiB)": 52.21,
1686
+ "ppl": 3.57311,
1687
+ "step": 120,
1688
+ "tokens/total": 31162368,
1689
+ "tokens/train_per_sec_per_gpu": 217.76,
1690
+ "tokens/trainable": 31086746
1691
+ },
1692
+ {
1693
+ "epoch": 3.914285714285714,
1694
+ "grad_norm": 1.6015625,
1695
+ "learning_rate": 1.0242460570300241e-06,
1696
+ "loss": 1.2545166015625,
1697
+ "memory/device_reserved (GiB)": 61.05,
1698
+ "memory/max_active (GiB)": 52.21,
1699
+ "memory/max_allocated (GiB)": 52.21,
1700
+ "ppl": 3.50614,
1701
+ "step": 121,
1702
+ "tokens/total": 31424512,
1703
+ "tokens/train_per_sec_per_gpu": 218.54,
1704
+ "tokens/trainable": 31347940
1705
+ },
1706
+ {
1707
+ "epoch": 3.946938775510204,
1708
+ "grad_norm": 4.03125,
1709
+ "learning_rate": 1.01364377190799e-06,
1710
+ "loss": 1.3125,
1711
+ "memory/device_reserved (GiB)": 61.05,
1712
+ "memory/max_active (GiB)": 52.21,
1713
+ "memory/max_allocated (GiB)": 52.21,
1714
+ "ppl": 3.71545,
1715
+ "step": 122,
1716
+ "tokens/total": 31686656,
1717
+ "tokens/train_per_sec_per_gpu": 215.64,
1718
+ "tokens/trainable": 31609240
1719
+ },
1720
+ {
1721
+ "epoch": 3.979591836734694,
1722
+ "grad_norm": 1.0625,
1723
+ "learning_rate": 1.0060656022052966e-06,
1724
+ "loss": 1.245849609375,
1725
+ "memory/device_reserved (GiB)": 61.05,
1726
+ "memory/max_active (GiB)": 52.21,
1727
+ "memory/max_allocated (GiB)": 52.21,
1728
+ "ppl": 3.47589,
1729
+ "step": 123,
1730
+ "tokens/total": 31948800,
1731
+ "tokens/train_per_sec_per_gpu": 219.18,
1732
+ "tokens/trainable": 31870266
1733
+ },
1734
+ {
1735
+ "epoch": 4.0,
1736
+ "grad_norm": 1.2421875,
1737
+ "learning_rate": 1.0015166561341943e-06,
1738
+ "loss": 1.28369140625,
1739
+ "memory/device_reserved (GiB)": 61.05,
1740
+ "memory/max_active (GiB)": 52.21,
1741
+ "memory/max_allocated (GiB)": 52.21,
1742
+ "ppl": 3.60994,
1743
+ "step": 124,
1744
+ "tokens/total": 32112640,
1745
+ "tokens/train_per_sec_per_gpu": 344.52,
1746
+ "tokens/trainable": 32033368
1747
+ }
1748
+ ],
1749
+ "logging_steps": 1,
1750
+ "max_steps": 124,
1751
+ "num_input_tokens_seen": 0,
1752
+ "num_train_epochs": 4,
1753
+ "save_steps": 124,
1754
+ "stateful_callbacks": {
1755
+ "TrainerControl": {
1756
+ "args": {
1757
+ "should_epoch_stop": false,
1758
+ "should_evaluate": false,
1759
+ "should_log": false,
1760
+ "should_save": true,
1761
+ "should_training_stop": true
1762
+ },
1763
+ "attributes": {}
1764
+ }
1765
+ },
1766
+ "total_flos": 2.153292737296728e+18,
1767
+ "train_batch_size": 1,
1768
+ "trial_name": null,
1769
+ "trial_params": null
1770
+ }
deconfound_sdf_v1/charter/post_docs_mix/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b72c80faef3cb03c8226a493817e140c2124b4a0172217a3e7812cf8f041c4
3
+ size 7377