Ba2han commited on
Commit
3ca3c61
·
verified ·
1 Parent(s): e5d5a36

Training in progress, step 500, checkpoint

Browse files
last-checkpoint/chat_template.jinja ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token -}}
2
+ {%- set keep_past_thinking = keep_past_thinking | default(false) -%}
3
+ {%- set ns = namespace(system_prompt="") -%}
4
+ {%- if messages[0]["role"] == "system" -%}
5
+ {%- set sys_content = messages[0]["content"] -%}
6
+ {%- if sys_content is not string -%}
7
+ {%- for item in sys_content -%}
8
+ {%- if item["type"] == "text" -%}
9
+ {%- set ns.system_prompt = ns.system_prompt + item["text"] -%}
10
+ {%- endif -%}
11
+ {%- endfor -%}
12
+ {%- else -%}
13
+ {%- set ns.system_prompt = sys_content -%}
14
+ {%- endif -%}
15
+ {%- set messages = messages[1:] -%}
16
+ {%- endif -%}
17
+ {%- if tools -%}
18
+ {%- set ns.system_prompt = ns.system_prompt + ("\n" if ns.system_prompt else "") + "List of tools: [" -%}
19
+ {%- for tool in tools -%}
20
+ {%- if tool is not string -%}
21
+ {%- set tool = tool | tojson -%}
22
+ {%- endif -%}
23
+ {%- set ns.system_prompt = ns.system_prompt + tool -%}
24
+ {%- if not loop.last -%}
25
+ {%- set ns.system_prompt = ns.system_prompt + ", " -%}
26
+ {%- endif -%}
27
+ {%- endfor -%}
28
+ {%- set ns.system_prompt = ns.system_prompt + "]" -%}
29
+ {%- endif -%}
30
+ {%- if ns.system_prompt -%}
31
+ {{- "<|im_start|>system\n" + ns.system_prompt + "<|im_end|>\n" -}}
32
+ {%- endif -%}
33
+ {%- set ns.last_assistant_index = -1 -%}
34
+ {%- for message in messages -%}
35
+ {%- if message["role"] == "assistant" -%}
36
+ {%- set ns.last_assistant_index = loop.index0 -%}
37
+ {%- endif -%}
38
+ {%- endfor -%}
39
+ {%- for message in messages -%}
40
+ {{- "<|im_start|>" + message["role"] + "\n" -}}
41
+ {%- if message["content"] is not string -%}
42
+ {%- set ns.content = "" -%}
43
+ {%- for item in message["content"] -%}
44
+ {%- if item["type"] == "image" -%}
45
+ {%- set ns.content = ns.content + "<image>" -%}
46
+ {%- elif item["type"] == "text" -%}
47
+ {%- set ns.content = ns.content + item["text"] -%}
48
+ {%- else -%}
49
+ {%- set ns.content = ns.content + item | tojson -%}
50
+ {%- endif -%}
51
+ {%- endfor -%}
52
+ {%- set content = ns.content -%}
53
+ {%- else -%}
54
+ {%- set content = message["content"] -%}
55
+ {%- endif -%}
56
+ {%- if message["role"] == "assistant" and not keep_past_thinking and loop.index0 != ns.last_assistant_index -%}
57
+ {%- if "</think>" in content -%}
58
+ {%- set content = content.split("</think>")[-1] | trim -%}
59
+ {%- endif -%}
60
+ {%- endif -%}
61
+ {{- content + "<|im_end|>\n" -}}
62
+ {%- endfor -%}
63
+ {%- if add_generation_prompt -%}
64
+ {{- "<|im_start|>assistant\n" -}}
65
+ {%- endif -%}
last-checkpoint/config.json ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Lfm2VlForConditionalGeneration"
4
+ ],
5
+ "bos_token_id": 1,
6
+ "do_image_splitting": true,
7
+ "downsample_factor": 2,
8
+ "dtype": "bfloat16",
9
+ "encoder_patch_size": 16,
10
+ "eos_token_id": 7,
11
+ "image_token_id": 396,
12
+ "max_image_tokens": 256,
13
+ "max_pixels_tolerance": 2.0,
14
+ "max_tiles": 10,
15
+ "min_image_tokens": 64,
16
+ "min_tiles": 2,
17
+ "model_name": "LiquidAI/LFM2.5-VL-1.6B",
18
+ "model_type": "lfm2_vl",
19
+ "pad_token_id": 0,
20
+ "projector_bias": true,
21
+ "projector_hidden_act": "gelu",
22
+ "projector_hidden_size": 2048,
23
+ "projector_use_layernorm": false,
24
+ "text_config": {
25
+ "_name_or_path": "LiquidAI/LFM2-1.2B",
26
+ "architectures": [
27
+ "Lfm2ForCausalLM"
28
+ ],
29
+ "block_auto_adjust_ff_dim": true,
30
+ "block_dim": 2048,
31
+ "block_ffn_dim_multiplier": 1.0,
32
+ "block_mlp_init_scale": 1.0,
33
+ "block_multiple_of": 256,
34
+ "block_norm_eps": 1e-05,
35
+ "block_out_init_scale": 1.0,
36
+ "block_use_swiglu": true,
37
+ "block_use_xavier_init": true,
38
+ "bos_token_id": 1,
39
+ "conv_L_cache": 3,
40
+ "conv_bias": false,
41
+ "conv_dim": 2048,
42
+ "conv_dim_out": 2048,
43
+ "conv_use_xavier_init": true,
44
+ "dtype": "bfloat16",
45
+ "eos_token_id": 7,
46
+ "full_attn_idxs": null,
47
+ "hidden_size": 2048,
48
+ "initializer_range": 0.02,
49
+ "intermediate_size": 12288,
50
+ "layer_types": [
51
+ "conv",
52
+ "conv",
53
+ "full_attention",
54
+ "conv",
55
+ "conv",
56
+ "full_attention",
57
+ "conv",
58
+ "conv",
59
+ "full_attention",
60
+ "conv",
61
+ "full_attention",
62
+ "conv",
63
+ "full_attention",
64
+ "conv",
65
+ "full_attention",
66
+ "conv"
67
+ ],
68
+ "max_position_embeddings": 128000,
69
+ "model_type": "lfm2",
70
+ "norm_eps": 1e-05,
71
+ "num_attention_heads": 32,
72
+ "num_heads": 32,
73
+ "num_hidden_layers": 16,
74
+ "num_key_value_heads": 8,
75
+ "pad_token_id": 0,
76
+ "rope_parameters": {
77
+ "rope_theta": 1000000.0,
78
+ "rope_type": "default"
79
+ },
80
+ "tie_word_embeddings": true,
81
+ "use_cache": true,
82
+ "use_pos_enc": true,
83
+ "vocab_size": 65536
84
+ },
85
+ "tie_word_embeddings": true,
86
+ "tile_size": 512,
87
+ "transformers_version": "5.5.4",
88
+ "unsloth_version": "2026.4.4",
89
+ "use_cache": false,
90
+ "use_image_special_tokens": true,
91
+ "use_thumbnail": true,
92
+ "vision_config": {
93
+ "attention_dropout": 0.0,
94
+ "dtype": "bfloat16",
95
+ "hidden_act": "gelu_pytorch_tanh",
96
+ "hidden_size": 1152,
97
+ "intermediate_size": 4304,
98
+ "layer_norm_eps": 1e-06,
99
+ "model_type": "siglip2_vision_model",
100
+ "num_attention_heads": 16,
101
+ "num_channels": 3,
102
+ "num_hidden_layers": 27,
103
+ "num_patches": 256,
104
+ "patch_size": 16,
105
+ "vision_use_head": false
106
+ }
107
+ }
last-checkpoint/generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": [
5
+ 7,
6
+ 7
7
+ ],
8
+ "pad_token_id": 0,
9
+ "transformers_version": "5.5.4"
10
+ }
last-checkpoint/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5677a2173a33d6f66237aa196624808c2b78e97d8144c6961fe447aacd25cdcf
3
+ size 3193334216
last-checkpoint/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:446bbd9048afe33cbf1538a14a5932be07294ed52bc87a492feed52801fac519
3
+ size 3464388157
last-checkpoint/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e831a926501c469a9775d4b96fe9f086ccb9933946219ebf4fe959ebd9224d3
3
+ size 14709
last-checkpoint/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a1d514a74775420a0bc0eb69e376ced5433951b8aed35df81a76d745d37898f
3
+ size 1465
last-checkpoint/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
last-checkpoint/tokenizer_config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|startoftext|>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "eos_token": "<|im_end|>",
6
+ "image_end_token": "<|image_end|>",
7
+ "image_start_token": "<|image_start|>",
8
+ "image_thumbnail": "<|img_thumbnail|>",
9
+ "image_token": "<image>",
10
+ "is_local": false,
11
+ "legacy": false,
12
+ "model_max_length": 1000000000000000019884624838656,
13
+ "model_specific_special_tokens": {
14
+ "image_end_token": "<|image_end|>",
15
+ "image_start_token": "<|image_start|>",
16
+ "image_token": "<image>"
17
+ },
18
+ "pad_token": "<|pad|>",
19
+ "padding_side": "right",
20
+ "processor_class": "Lfm2VlProcessor",
21
+ "return_token_type_ids": false,
22
+ "sp_model_kwargs": {},
23
+ "spaces_between_special_tokens": false,
24
+ "tokenizer_class": "TokenizersBackend",
25
+ "use_default_system_prompt": false,
26
+ "use_fast": true
27
+ }
last-checkpoint/trainer_state.json ADDED
@@ -0,0 +1,3534 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.04357470542818276,
6
+ "eval_steps": 500,
7
+ "global_step": 500,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 8.714941085636552e-05,
14
+ "grad_norm": 16.375,
15
+ "learning_rate": 1e-06,
16
+ "loss": 2.980116844177246,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.00017429882171273104,
21
+ "grad_norm": 19.875,
22
+ "learning_rate": 7.912745179406311e-06,
23
+ "loss": 3.0092227458953857,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.00026144823256909653,
28
+ "grad_norm": 22.5,
29
+ "learning_rate": 1.4825490358812626e-05,
30
+ "loss": 3.037306785583496,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.0003485976434254621,
35
+ "grad_norm": 15.0625,
36
+ "learning_rate": 2.1738235538218935e-05,
37
+ "loss": 2.9077248573303223,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.00043574705428182757,
42
+ "grad_norm": 16.5,
43
+ "learning_rate": 2.8650980717625252e-05,
44
+ "loss": 3.111506223678589,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.0005228964651381931,
49
+ "grad_norm": 18.75,
50
+ "learning_rate": 3.5563725897031555e-05,
51
+ "loss": 2.9358785152435303,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.0006100458759945586,
56
+ "grad_norm": 17.0,
57
+ "learning_rate": 4.2476471076437866e-05,
58
+ "loss": 2.9959819316864014,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.0006971952868509242,
63
+ "grad_norm": 19.875,
64
+ "learning_rate": 4.938921625584418e-05,
65
+ "loss": 3.071417808532715,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.0007843446977072896,
70
+ "grad_norm": 19.25,
71
+ "learning_rate": 5.63019614352505e-05,
72
+ "loss": 2.969663381576538,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.0008714941085636551,
77
+ "grad_norm": 15.25,
78
+ "learning_rate": 6.321470661465681e-05,
79
+ "loss": 2.907989740371704,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.0009586435194200207,
84
+ "grad_norm": 16.125,
85
+ "learning_rate": 7.012745179406311e-05,
86
+ "loss": 2.910642385482788,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.0010457929302763861,
91
+ "grad_norm": 16.875,
92
+ "learning_rate": 7.704019697346946e-05,
93
+ "loss": 2.9582762718200684,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.0011329423411327517,
98
+ "grad_norm": 17.375,
99
+ "learning_rate": 8.395294215287573e-05,
100
+ "loss": 2.97444748878479,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.0012200917519891172,
105
+ "grad_norm": 12.8125,
106
+ "learning_rate": 9.086568733228206e-05,
107
+ "loss": 2.9798922538757324,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.0013072411628454828,
112
+ "grad_norm": 18.125,
113
+ "learning_rate": 9.777843251168837e-05,
114
+ "loss": 2.890429973602295,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.0013943905737018483,
119
+ "grad_norm": 12.0,
120
+ "learning_rate": 0.00010469117769109469,
121
+ "loss": 2.9602813720703125,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.0014815399845582139,
126
+ "grad_norm": 8.6875,
127
+ "learning_rate": 0.000111603922870501,
128
+ "loss": 2.978081226348877,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.0015686893954145792,
133
+ "grad_norm": 7.90625,
134
+ "learning_rate": 0.00011851666804990732,
135
+ "loss": 2.899472713470459,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.0016558388062709447,
140
+ "grad_norm": 9.375,
141
+ "learning_rate": 0.00012542941322931362,
142
+ "loss": 2.990980386734009,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.0017429882171273103,
147
+ "grad_norm": 7.59375,
148
+ "learning_rate": 0.00013234215840871993,
149
+ "loss": 2.841034412384033,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.0018301376279836758,
154
+ "grad_norm": 8.375,
155
+ "learning_rate": 0.00013925490358812623,
156
+ "loss": 2.9813711643218994,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.0019172870388400414,
161
+ "grad_norm": 9.4375,
162
+ "learning_rate": 0.00014616764876753256,
163
+ "loss": 2.945570945739746,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.002004436449696407,
168
+ "grad_norm": 6.0,
169
+ "learning_rate": 0.0001530803939469389,
170
+ "loss": 3.026611089706421,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.0020915858605527722,
175
+ "grad_norm": 6.59375,
176
+ "learning_rate": 0.0001599931391263452,
177
+ "loss": 3.0398619174957275,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.002178735271409138,
182
+ "grad_norm": 4.9375,
183
+ "learning_rate": 0.00016690588430575147,
184
+ "loss": 2.729804277420044,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.0022658846822655033,
189
+ "grad_norm": 4.4375,
190
+ "learning_rate": 0.0001738186294851578,
191
+ "loss": 2.8671164512634277,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.002353034093121869,
196
+ "grad_norm": 4.75,
197
+ "learning_rate": 0.00018073137466456413,
198
+ "loss": 2.892765760421753,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.0024401835039782344,
203
+ "grad_norm": 3.34375,
204
+ "learning_rate": 0.00018764411984397044,
205
+ "loss": 2.7960426807403564,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.0025273329148345998,
210
+ "grad_norm": 3.265625,
211
+ "learning_rate": 0.00019455686502337674,
212
+ "loss": 2.8209526538848877,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.0026144823256909655,
217
+ "grad_norm": 2.890625,
218
+ "learning_rate": 0.00020146961020278307,
219
+ "loss": 2.950427293777466,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.002701631736547331,
224
+ "grad_norm": 2.625,
225
+ "learning_rate": 0.00020838235538218935,
226
+ "loss": 2.760995626449585,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.0027887811474036966,
231
+ "grad_norm": 2.5625,
232
+ "learning_rate": 0.00021529510056159568,
233
+ "loss": 2.905595064163208,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.002875930558260062,
238
+ "grad_norm": 2.484375,
239
+ "learning_rate": 0.000222207845741002,
240
+ "loss": 2.885206460952759,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.0029630799691164277,
245
+ "grad_norm": 2.5625,
246
+ "learning_rate": 0.00022912059092040834,
247
+ "loss": 3.003300666809082,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.003050229379972793,
252
+ "grad_norm": 2.375,
253
+ "learning_rate": 0.00023603333609981464,
254
+ "loss": 2.8469698429107666,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.0031373787908291584,
259
+ "grad_norm": 4.0625,
260
+ "learning_rate": 0.00024294608127922094,
261
+ "loss": 2.7171757221221924,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.003224528201685524,
266
+ "grad_norm": 2.1875,
267
+ "learning_rate": 0.0002498588264586273,
268
+ "loss": 2.888355255126953,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.0033116776125418895,
273
+ "grad_norm": 2.125,
274
+ "learning_rate": 0.0002567715716380336,
275
+ "loss": 2.792030096054077,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.0033988270233982552,
280
+ "grad_norm": 2.28125,
281
+ "learning_rate": 0.0002636843168174399,
282
+ "loss": 2.853731393814087,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.0034859764342546205,
287
+ "grad_norm": 2.1875,
288
+ "learning_rate": 0.0002705970619968462,
289
+ "loss": 3.0276989936828613,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.0035731258451109863,
294
+ "grad_norm": 2.359375,
295
+ "learning_rate": 0.0002775098071762525,
296
+ "loss": 3.0183589458465576,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.0036602752559673516,
301
+ "grad_norm": 2.171875,
302
+ "learning_rate": 0.0002844225523556588,
303
+ "loss": 2.8405275344848633,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.003747424666823717,
308
+ "grad_norm": 2.25,
309
+ "learning_rate": 0.00029133529753506515,
310
+ "loss": 2.770927667617798,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.0038345740776800827,
315
+ "grad_norm": 2.171875,
316
+ "learning_rate": 0.0002982480427144715,
317
+ "loss": 2.7248220443725586,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.0039217234885364485,
322
+ "grad_norm": 2.109375,
323
+ "learning_rate": 0.0003051607878938778,
324
+ "loss": 2.926846504211426,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.004008872899392814,
329
+ "grad_norm": 2.0625,
330
+ "learning_rate": 0.0003120735330732841,
331
+ "loss": 2.7914741039276123,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.004096022310249179,
336
+ "grad_norm": 1.9609375,
337
+ "learning_rate": 0.0003189862782526904,
338
+ "loss": 2.8833417892456055,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.0041831717211055445,
343
+ "grad_norm": 2.171875,
344
+ "learning_rate": 0.0003258990234320967,
345
+ "loss": 2.822157382965088,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.004270321131961911,
350
+ "grad_norm": 2.21875,
351
+ "learning_rate": 0.00033281176861150297,
352
+ "loss": 2.8196861743927,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.004357470542818276,
357
+ "grad_norm": 1.921875,
358
+ "learning_rate": 0.0003397245137909093,
359
+ "loss": 2.7460930347442627,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.004444619953674641,
364
+ "grad_norm": 1.828125,
365
+ "learning_rate": 0.00034663725897031563,
366
+ "loss": 2.8679468631744385,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.004531769364531007,
371
+ "grad_norm": 1.9765625,
372
+ "learning_rate": 0.00035355000414972196,
373
+ "loss": 2.670346975326538,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.004618918775387372,
378
+ "grad_norm": 1.9453125,
379
+ "learning_rate": 0.0003604627493291283,
380
+ "loss": 2.8237805366516113,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.004706068186243738,
385
+ "grad_norm": 1.7734375,
386
+ "learning_rate": 0.00036737549450853457,
387
+ "loss": 2.686187505722046,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.0047932175971001035,
392
+ "grad_norm": 1.8125,
393
+ "learning_rate": 0.0003742882396879409,
394
+ "loss": 2.8298659324645996,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.004880367007956469,
399
+ "grad_norm": 2.109375,
400
+ "learning_rate": 0.0003812009848673472,
401
+ "loss": 2.807030439376831,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.004967516418812834,
406
+ "grad_norm": 1.828125,
407
+ "learning_rate": 0.0003881137300467535,
408
+ "loss": 2.7621939182281494,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.0050546658296691995,
413
+ "grad_norm": 1.8828125,
414
+ "learning_rate": 0.00039502647522615984,
415
+ "loss": 2.792243003845215,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.005141815240525566,
420
+ "grad_norm": 1.796875,
421
+ "learning_rate": 0.00040193922040556617,
422
+ "loss": 2.6842851638793945,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.005228964651381931,
427
+ "grad_norm": 2.0625,
428
+ "learning_rate": 0.0004088519655849725,
429
+ "loss": 2.967288017272949,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.005316114062238296,
434
+ "grad_norm": 1.859375,
435
+ "learning_rate": 0.0004157647107643788,
436
+ "loss": 2.664837121963501,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.005403263473094662,
441
+ "grad_norm": 1.8984375,
442
+ "learning_rate": 0.0004226774559437851,
443
+ "loss": 2.790057420730591,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.005490412883951028,
448
+ "grad_norm": 1.7578125,
449
+ "learning_rate": 0.0004295902011231914,
450
+ "loss": 2.6879723072052,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.005577562294807393,
455
+ "grad_norm": 1.7265625,
456
+ "learning_rate": 0.0004365029463025977,
457
+ "loss": 2.6767494678497314,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.0056647117056637586,
462
+ "grad_norm": 1.8984375,
463
+ "learning_rate": 0.00044341569148200404,
464
+ "loss": 2.7523298263549805,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.005751861116520124,
469
+ "grad_norm": 1.765625,
470
+ "learning_rate": 0.0004503284366614104,
471
+ "loss": 2.6057050228118896,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.005839010527376489,
476
+ "grad_norm": 1.78125,
477
+ "learning_rate": 0.0004572411818408167,
478
+ "loss": 2.6737048625946045,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.005926159938232855,
483
+ "grad_norm": 1.765625,
484
+ "learning_rate": 0.000464153927020223,
485
+ "loss": 2.755410671234131,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.006013309349089221,
490
+ "grad_norm": 1.6953125,
491
+ "learning_rate": 0.0004710666721996293,
492
+ "loss": 2.7767393589019775,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.006100458759945586,
497
+ "grad_norm": 1.6875,
498
+ "learning_rate": 0.0004779794173790356,
499
+ "loss": 2.5728745460510254,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.006187608170801951,
504
+ "grad_norm": 1.6796875,
505
+ "learning_rate": 0.0004848921625584419,
506
+ "loss": 2.5615997314453125,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 0.006274757581658317,
511
+ "grad_norm": 1.875,
512
+ "learning_rate": 0.0004918049077378483,
513
+ "loss": 2.6013240814208984,
514
+ "step": 72
515
+ },
516
+ {
517
+ "epoch": 0.006361906992514683,
518
+ "grad_norm": 1.921875,
519
+ "learning_rate": 0.0004987176529172545,
520
+ "loss": 2.709704637527466,
521
+ "step": 73
522
+ },
523
+ {
524
+ "epoch": 0.006449056403371048,
525
+ "grad_norm": 1.765625,
526
+ "learning_rate": 0.0005056303980966609,
527
+ "loss": 2.5971601009368896,
528
+ "step": 74
529
+ },
530
+ {
531
+ "epoch": 0.006536205814227414,
532
+ "grad_norm": 1.734375,
533
+ "learning_rate": 0.0005125431432760672,
534
+ "loss": 2.578047513961792,
535
+ "step": 75
536
+ },
537
+ {
538
+ "epoch": 0.006623355225083779,
539
+ "grad_norm": 1.6171875,
540
+ "learning_rate": 0.0005194558884554734,
541
+ "loss": 2.471486806869507,
542
+ "step": 76
543
+ },
544
+ {
545
+ "epoch": 0.006710504635940145,
546
+ "grad_norm": 1.625,
547
+ "learning_rate": 0.0005263686336348797,
548
+ "loss": 2.6826093196868896,
549
+ "step": 77
550
+ },
551
+ {
552
+ "epoch": 0.0067976540467965104,
553
+ "grad_norm": 1.8046875,
554
+ "learning_rate": 0.0005332813788142861,
555
+ "loss": 2.600142240524292,
556
+ "step": 78
557
+ },
558
+ {
559
+ "epoch": 0.006884803457652876,
560
+ "grad_norm": 1.6328125,
561
+ "learning_rate": 0.0005401941239936924,
562
+ "loss": 2.487628221511841,
563
+ "step": 79
564
+ },
565
+ {
566
+ "epoch": 0.006971952868509241,
567
+ "grad_norm": 1.7734375,
568
+ "learning_rate": 0.0005471068691730987,
569
+ "loss": 2.510748863220215,
570
+ "step": 80
571
+ },
572
+ {
573
+ "epoch": 0.007059102279365606,
574
+ "grad_norm": 1.703125,
575
+ "learning_rate": 0.000554019614352505,
576
+ "loss": 2.5530645847320557,
577
+ "step": 81
578
+ },
579
+ {
580
+ "epoch": 0.007146251690221973,
581
+ "grad_norm": 1.6640625,
582
+ "learning_rate": 0.0005609323595319114,
583
+ "loss": 2.6373367309570312,
584
+ "step": 82
585
+ },
586
+ {
587
+ "epoch": 0.007233401101078338,
588
+ "grad_norm": 1.71875,
589
+ "learning_rate": 0.0005678451047113176,
590
+ "loss": 2.556617498397827,
591
+ "step": 83
592
+ },
593
+ {
594
+ "epoch": 0.007320550511934703,
595
+ "grad_norm": 1.8046875,
596
+ "learning_rate": 0.0005747578498907239,
597
+ "loss": 2.5635764598846436,
598
+ "step": 84
599
+ },
600
+ {
601
+ "epoch": 0.007407699922791069,
602
+ "grad_norm": 1.765625,
603
+ "learning_rate": 0.0005816705950701303,
604
+ "loss": 2.5362768173217773,
605
+ "step": 85
606
+ },
607
+ {
608
+ "epoch": 0.007494849333647434,
609
+ "grad_norm": 1.7109375,
610
+ "learning_rate": 0.0005885833402495366,
611
+ "loss": 2.5362229347229004,
612
+ "step": 86
613
+ },
614
+ {
615
+ "epoch": 0.0075819987445038,
616
+ "grad_norm": 1.859375,
617
+ "learning_rate": 0.0005954960854289429,
618
+ "loss": 2.6001806259155273,
619
+ "step": 87
620
+ },
621
+ {
622
+ "epoch": 0.0076691481553601655,
623
+ "grad_norm": 1.8671875,
624
+ "learning_rate": 0.0006024088306083492,
625
+ "loss": 2.541794776916504,
626
+ "step": 88
627
+ },
628
+ {
629
+ "epoch": 0.007756297566216531,
630
+ "grad_norm": 1.90625,
631
+ "learning_rate": 0.0006093215757877556,
632
+ "loss": 2.6054954528808594,
633
+ "step": 89
634
+ },
635
+ {
636
+ "epoch": 0.007843446977072897,
637
+ "grad_norm": 1.6796875,
638
+ "learning_rate": 0.0006162343209671618,
639
+ "loss": 2.5833845138549805,
640
+ "step": 90
641
+ },
642
+ {
643
+ "epoch": 0.007930596387929261,
644
+ "grad_norm": 1.8046875,
645
+ "learning_rate": 0.0006231470661465682,
646
+ "loss": 2.623051881790161,
647
+ "step": 91
648
+ },
649
+ {
650
+ "epoch": 0.008017745798785628,
651
+ "grad_norm": 1.8359375,
652
+ "learning_rate": 0.0006300598113259745,
653
+ "loss": 2.5758605003356934,
654
+ "step": 92
655
+ },
656
+ {
657
+ "epoch": 0.008104895209641992,
658
+ "grad_norm": 1.671875,
659
+ "learning_rate": 0.0006369725565053808,
660
+ "loss": 2.433521270751953,
661
+ "step": 93
662
+ },
663
+ {
664
+ "epoch": 0.008192044620498358,
665
+ "grad_norm": 1.5859375,
666
+ "learning_rate": 0.0006438853016847871,
667
+ "loss": 2.5033862590789795,
668
+ "step": 94
669
+ },
670
+ {
671
+ "epoch": 0.008279194031354725,
672
+ "grad_norm": 1.65625,
673
+ "learning_rate": 0.0006507980468641934,
674
+ "loss": 2.486121416091919,
675
+ "step": 95
676
+ },
677
+ {
678
+ "epoch": 0.008366343442211089,
679
+ "grad_norm": 1.5859375,
680
+ "learning_rate": 0.0006577107920435997,
681
+ "loss": 2.301229953765869,
682
+ "step": 96
683
+ },
684
+ {
685
+ "epoch": 0.008453492853067455,
686
+ "grad_norm": 1.578125,
687
+ "learning_rate": 0.0006646235372230059,
688
+ "loss": 2.4249179363250732,
689
+ "step": 97
690
+ },
691
+ {
692
+ "epoch": 0.008540642263923821,
693
+ "grad_norm": 1.6328125,
694
+ "learning_rate": 0.0006715362824024124,
695
+ "loss": 2.4232752323150635,
696
+ "step": 98
697
+ },
698
+ {
699
+ "epoch": 0.008627791674780186,
700
+ "grad_norm": 1.7890625,
701
+ "learning_rate": 0.0006784490275818186,
702
+ "loss": 2.5611414909362793,
703
+ "step": 99
704
+ },
705
+ {
706
+ "epoch": 0.008714941085636552,
707
+ "grad_norm": 1.6953125,
708
+ "learning_rate": 0.0006853617727612249,
709
+ "loss": 2.3588075637817383,
710
+ "step": 100
711
+ },
712
+ {
713
+ "epoch": 0.008802090496492916,
714
+ "grad_norm": 1.59375,
715
+ "learning_rate": 0.0006922745179406312,
716
+ "loss": 2.506977081298828,
717
+ "step": 101
718
+ },
719
+ {
720
+ "epoch": 0.008889239907349283,
721
+ "grad_norm": 1.6640625,
722
+ "learning_rate": 0.0006991872631200376,
723
+ "loss": 2.470222234725952,
724
+ "step": 102
725
+ },
726
+ {
727
+ "epoch": 0.008976389318205649,
728
+ "grad_norm": 1.5234375,
729
+ "learning_rate": 0.0007061000082994439,
730
+ "loss": 2.3257453441619873,
731
+ "step": 103
732
+ },
733
+ {
734
+ "epoch": 0.009063538729062013,
735
+ "grad_norm": 1.796875,
736
+ "learning_rate": 0.0007130127534788501,
737
+ "loss": 2.4208428859710693,
738
+ "step": 104
739
+ },
740
+ {
741
+ "epoch": 0.00915068813991838,
742
+ "grad_norm": 1.703125,
743
+ "learning_rate": 0.0007199254986582566,
744
+ "loss": 2.469883441925049,
745
+ "step": 105
746
+ },
747
+ {
748
+ "epoch": 0.009237837550774744,
749
+ "grad_norm": 1.765625,
750
+ "learning_rate": 0.0007268382438376628,
751
+ "loss": 2.4200963973999023,
752
+ "step": 106
753
+ },
754
+ {
755
+ "epoch": 0.00932498696163111,
756
+ "grad_norm": 1.703125,
757
+ "learning_rate": 0.0007337509890170691,
758
+ "loss": 2.3745367527008057,
759
+ "step": 107
760
+ },
761
+ {
762
+ "epoch": 0.009412136372487476,
763
+ "grad_norm": 1.7734375,
764
+ "learning_rate": 0.0007406637341964754,
765
+ "loss": 2.3642737865448,
766
+ "step": 108
767
+ },
768
+ {
769
+ "epoch": 0.00949928578334384,
770
+ "grad_norm": 1.625,
771
+ "learning_rate": 0.0007475764793758818,
772
+ "loss": 2.4235646724700928,
773
+ "step": 109
774
+ },
775
+ {
776
+ "epoch": 0.009586435194200207,
777
+ "grad_norm": 1.59375,
778
+ "learning_rate": 0.0007544892245552881,
779
+ "loss": 2.322707414627075,
780
+ "step": 110
781
+ },
782
+ {
783
+ "epoch": 0.009673584605056572,
784
+ "grad_norm": 1.796875,
785
+ "learning_rate": 0.0007614019697346943,
786
+ "loss": 2.4208385944366455,
787
+ "step": 111
788
+ },
789
+ {
790
+ "epoch": 0.009760734015912938,
791
+ "grad_norm": 1.6796875,
792
+ "learning_rate": 0.0007683147149141008,
793
+ "loss": 2.3120336532592773,
794
+ "step": 112
795
+ },
796
+ {
797
+ "epoch": 0.009847883426769304,
798
+ "grad_norm": 1.7265625,
799
+ "learning_rate": 0.000775227460093507,
800
+ "loss": 2.3327786922454834,
801
+ "step": 113
802
+ },
803
+ {
804
+ "epoch": 0.009935032837625668,
805
+ "grad_norm": 1.71875,
806
+ "learning_rate": 0.0007821402052729133,
807
+ "loss": 2.3989481925964355,
808
+ "step": 114
809
+ },
810
+ {
811
+ "epoch": 0.010022182248482035,
812
+ "grad_norm": 1.765625,
813
+ "learning_rate": 0.0007890529504523197,
814
+ "loss": 2.408418893814087,
815
+ "step": 115
816
+ },
817
+ {
818
+ "epoch": 0.010109331659338399,
819
+ "grad_norm": 1.6484375,
820
+ "learning_rate": 0.000795965695631726,
821
+ "loss": 2.494696855545044,
822
+ "step": 116
823
+ },
824
+ {
825
+ "epoch": 0.010196481070194765,
826
+ "grad_norm": 1.65625,
827
+ "learning_rate": 0.0008028784408111323,
828
+ "loss": 2.403883457183838,
829
+ "step": 117
830
+ },
831
+ {
832
+ "epoch": 0.010283630481051131,
833
+ "grad_norm": 1.6484375,
834
+ "learning_rate": 0.0008097911859905385,
835
+ "loss": 2.322655439376831,
836
+ "step": 118
837
+ },
838
+ {
839
+ "epoch": 0.010370779891907496,
840
+ "grad_norm": 1.6484375,
841
+ "learning_rate": 0.000816703931169945,
842
+ "loss": 2.389268636703491,
843
+ "step": 119
844
+ },
845
+ {
846
+ "epoch": 0.010457929302763862,
847
+ "grad_norm": 1.84375,
848
+ "learning_rate": 0.0008236166763493512,
849
+ "loss": 2.360283851623535,
850
+ "step": 120
851
+ },
852
+ {
853
+ "epoch": 0.010545078713620227,
854
+ "grad_norm": 1.5703125,
855
+ "learning_rate": 0.0008305294215287575,
856
+ "loss": 2.3794872760772705,
857
+ "step": 121
858
+ },
859
+ {
860
+ "epoch": 0.010632228124476593,
861
+ "grad_norm": 1.7578125,
862
+ "learning_rate": 0.000837442166708164,
863
+ "loss": 2.305957317352295,
864
+ "step": 122
865
+ },
866
+ {
867
+ "epoch": 0.010719377535332959,
868
+ "grad_norm": 1.7265625,
869
+ "learning_rate": 0.0008443549118875702,
870
+ "loss": 2.2807626724243164,
871
+ "step": 123
872
+ },
873
+ {
874
+ "epoch": 0.010806526946189323,
875
+ "grad_norm": 1.5625,
876
+ "learning_rate": 0.0008512676570669765,
877
+ "loss": 2.303670883178711,
878
+ "step": 124
879
+ },
880
+ {
881
+ "epoch": 0.01089367635704569,
882
+ "grad_norm": 1.6953125,
883
+ "learning_rate": 0.0008581804022463827,
884
+ "loss": 2.3687870502471924,
885
+ "step": 125
886
+ },
887
+ {
888
+ "epoch": 0.010980825767902056,
889
+ "grad_norm": 1.6484375,
890
+ "learning_rate": 0.0008650931474257892,
891
+ "loss": 2.2691609859466553,
892
+ "step": 126
893
+ },
894
+ {
895
+ "epoch": 0.01106797517875842,
896
+ "grad_norm": 1.71875,
897
+ "learning_rate": 0.0008720058926051954,
898
+ "loss": 2.1968977451324463,
899
+ "step": 127
900
+ },
901
+ {
902
+ "epoch": 0.011155124589614786,
903
+ "grad_norm": 1.609375,
904
+ "learning_rate": 0.0008789186377846017,
905
+ "loss": 2.261756181716919,
906
+ "step": 128
907
+ },
908
+ {
909
+ "epoch": 0.011242274000471151,
910
+ "grad_norm": 1.6484375,
911
+ "learning_rate": 0.0008858313829640081,
912
+ "loss": 2.457672595977783,
913
+ "step": 129
914
+ },
915
+ {
916
+ "epoch": 0.011329423411327517,
917
+ "grad_norm": 1.5546875,
918
+ "learning_rate": 0.0008927441281434144,
919
+ "loss": 2.3836045265197754,
920
+ "step": 130
921
+ },
922
+ {
923
+ "epoch": 0.011416572822183883,
924
+ "grad_norm": 1.71875,
925
+ "learning_rate": 0.0008996568733228207,
926
+ "loss": 2.319143056869507,
927
+ "step": 131
928
+ },
929
+ {
930
+ "epoch": 0.011503722233040248,
931
+ "grad_norm": 1.734375,
932
+ "learning_rate": 0.000906569618502227,
933
+ "loss": 2.393441677093506,
934
+ "step": 132
935
+ },
936
+ {
937
+ "epoch": 0.011590871643896614,
938
+ "grad_norm": 1.6328125,
939
+ "learning_rate": 0.0009134823636816334,
940
+ "loss": 2.285923957824707,
941
+ "step": 133
942
+ },
943
+ {
944
+ "epoch": 0.011678021054752978,
945
+ "grad_norm": 1.6328125,
946
+ "learning_rate": 0.0009203951088610396,
947
+ "loss": 2.176638603210449,
948
+ "step": 134
949
+ },
950
+ {
951
+ "epoch": 0.011765170465609345,
952
+ "grad_norm": 1.734375,
953
+ "learning_rate": 0.0009273078540404459,
954
+ "loss": 2.3897297382354736,
955
+ "step": 135
956
+ },
957
+ {
958
+ "epoch": 0.01185231987646571,
959
+ "grad_norm": 1.6875,
960
+ "learning_rate": 0.0009342205992198523,
961
+ "loss": 2.421382427215576,
962
+ "step": 136
963
+ },
964
+ {
965
+ "epoch": 0.011939469287322075,
966
+ "grad_norm": 1.5859375,
967
+ "learning_rate": 0.0009411333443992586,
968
+ "loss": 2.3119120597839355,
969
+ "step": 137
970
+ },
971
+ {
972
+ "epoch": 0.012026618698178441,
973
+ "grad_norm": 1.65625,
974
+ "learning_rate": 0.0009480460895786649,
975
+ "loss": 2.43278169631958,
976
+ "step": 138
977
+ },
978
+ {
979
+ "epoch": 0.012113768109034806,
980
+ "grad_norm": 1.640625,
981
+ "learning_rate": 0.0009549588347580712,
982
+ "loss": 2.324469566345215,
983
+ "step": 139
984
+ },
985
+ {
986
+ "epoch": 0.012200917519891172,
987
+ "grad_norm": 1.65625,
988
+ "learning_rate": 0.0009618715799374775,
989
+ "loss": 2.2620527744293213,
990
+ "step": 140
991
+ },
992
+ {
993
+ "epoch": 0.012288066930747538,
994
+ "grad_norm": 1.671875,
995
+ "learning_rate": 0.0009687843251168838,
996
+ "loss": 2.3233892917633057,
997
+ "step": 141
998
+ },
999
+ {
1000
+ "epoch": 0.012375216341603903,
1001
+ "grad_norm": 1.6015625,
1002
+ "learning_rate": 0.0009756970702962901,
1003
+ "loss": 2.3079047203063965,
1004
+ "step": 142
1005
+ },
1006
+ {
1007
+ "epoch": 0.012462365752460269,
1008
+ "grad_norm": 1.5859375,
1009
+ "learning_rate": 0.0009826098154756965,
1010
+ "loss": 2.406510353088379,
1011
+ "step": 143
1012
+ },
1013
+ {
1014
+ "epoch": 0.012549515163316633,
1015
+ "grad_norm": 1.6484375,
1016
+ "learning_rate": 0.0009895225606551027,
1017
+ "loss": 2.3381083011627197,
1018
+ "step": 144
1019
+ },
1020
+ {
1021
+ "epoch": 0.012636664574173,
1022
+ "grad_norm": 1.6640625,
1023
+ "learning_rate": 0.000996435305834509,
1024
+ "loss": 2.2969248294830322,
1025
+ "step": 145
1026
+ },
1027
+ {
1028
+ "epoch": 0.012723813985029366,
1029
+ "grad_norm": 1.796875,
1030
+ "learning_rate": 0.0010033480510139154,
1031
+ "loss": 2.1769518852233887,
1032
+ "step": 146
1033
+ },
1034
+ {
1035
+ "epoch": 0.01281096339588573,
1036
+ "grad_norm": 1.734375,
1037
+ "learning_rate": 0.0010102607961933216,
1038
+ "loss": 2.3034377098083496,
1039
+ "step": 147
1040
+ },
1041
+ {
1042
+ "epoch": 0.012898112806742097,
1043
+ "grad_norm": 1.65625,
1044
+ "learning_rate": 0.001017173541372728,
1045
+ "loss": 2.28684139251709,
1046
+ "step": 148
1047
+ },
1048
+ {
1049
+ "epoch": 0.012985262217598461,
1050
+ "grad_norm": 1.59375,
1051
+ "learning_rate": 0.0010240862865521342,
1052
+ "loss": 2.258565664291382,
1053
+ "step": 149
1054
+ },
1055
+ {
1056
+ "epoch": 0.013072411628454827,
1057
+ "grad_norm": 1.5703125,
1058
+ "learning_rate": 0.0010309990317315405,
1059
+ "loss": 2.114553451538086,
1060
+ "step": 150
1061
+ },
1062
+ {
1063
+ "epoch": 0.013159561039311193,
1064
+ "grad_norm": 1.5625,
1065
+ "learning_rate": 0.0010379117769109467,
1066
+ "loss": 2.260165214538574,
1067
+ "step": 151
1068
+ },
1069
+ {
1070
+ "epoch": 0.013246710450167558,
1071
+ "grad_norm": 1.5859375,
1072
+ "learning_rate": 0.0010448245220903531,
1073
+ "loss": 2.2665607929229736,
1074
+ "step": 152
1075
+ },
1076
+ {
1077
+ "epoch": 0.013333859861023924,
1078
+ "grad_norm": 1.4921875,
1079
+ "learning_rate": 0.0010517372672697593,
1080
+ "loss": 2.0330801010131836,
1081
+ "step": 153
1082
+ },
1083
+ {
1084
+ "epoch": 0.01342100927188029,
1085
+ "grad_norm": 1.6796875,
1086
+ "learning_rate": 0.0010586500124491656,
1087
+ "loss": 2.2008140087127686,
1088
+ "step": 154
1089
+ },
1090
+ {
1091
+ "epoch": 0.013508158682736655,
1092
+ "grad_norm": 1.515625,
1093
+ "learning_rate": 0.001065562757628572,
1094
+ "loss": 2.1958272457122803,
1095
+ "step": 155
1096
+ },
1097
+ {
1098
+ "epoch": 0.013595308093593021,
1099
+ "grad_norm": 1.4921875,
1100
+ "learning_rate": 0.0010724755028079784,
1101
+ "loss": 2.3595407009124756,
1102
+ "step": 156
1103
+ },
1104
+ {
1105
+ "epoch": 0.013682457504449385,
1106
+ "grad_norm": 1.515625,
1107
+ "learning_rate": 0.0010793882479873847,
1108
+ "loss": 2.205357789993286,
1109
+ "step": 157
1110
+ },
1111
+ {
1112
+ "epoch": 0.013769606915305752,
1113
+ "grad_norm": 1.7421875,
1114
+ "learning_rate": 0.0010863009931667909,
1115
+ "loss": 2.1484756469726562,
1116
+ "step": 158
1117
+ },
1118
+ {
1119
+ "epoch": 0.013856756326162118,
1120
+ "grad_norm": 1.8671875,
1121
+ "learning_rate": 0.0010932137383461973,
1122
+ "loss": 2.309096336364746,
1123
+ "step": 159
1124
+ },
1125
+ {
1126
+ "epoch": 0.013943905737018482,
1127
+ "grad_norm": 1.6953125,
1128
+ "learning_rate": 0.0011001264835256036,
1129
+ "loss": 2.185431718826294,
1130
+ "step": 160
1131
+ },
1132
+ {
1133
+ "epoch": 0.014031055147874848,
1134
+ "grad_norm": 1.5625,
1135
+ "learning_rate": 0.0011070392287050098,
1136
+ "loss": 2.1881372928619385,
1137
+ "step": 161
1138
+ },
1139
+ {
1140
+ "epoch": 0.014118204558731213,
1141
+ "grad_norm": 1.671875,
1142
+ "learning_rate": 0.0011139519738844162,
1143
+ "loss": 2.2584939002990723,
1144
+ "step": 162
1145
+ },
1146
+ {
1147
+ "epoch": 0.014205353969587579,
1148
+ "grad_norm": 1.4921875,
1149
+ "learning_rate": 0.0011208647190638227,
1150
+ "loss": 2.2748982906341553,
1151
+ "step": 163
1152
+ },
1153
+ {
1154
+ "epoch": 0.014292503380443945,
1155
+ "grad_norm": 1.5625,
1156
+ "learning_rate": 0.0011277774642432289,
1157
+ "loss": 1.9929231405258179,
1158
+ "step": 164
1159
+ },
1160
+ {
1161
+ "epoch": 0.01437965279130031,
1162
+ "grad_norm": 1.59375,
1163
+ "learning_rate": 0.001134690209422635,
1164
+ "loss": 2.2797374725341797,
1165
+ "step": 165
1166
+ },
1167
+ {
1168
+ "epoch": 0.014466802202156676,
1169
+ "grad_norm": 1.5078125,
1170
+ "learning_rate": 0.0011416029546020415,
1171
+ "loss": 2.250164031982422,
1172
+ "step": 166
1173
+ },
1174
+ {
1175
+ "epoch": 0.01455395161301304,
1176
+ "grad_norm": 1.453125,
1177
+ "learning_rate": 0.0011485156997814478,
1178
+ "loss": 2.274890899658203,
1179
+ "step": 167
1180
+ },
1181
+ {
1182
+ "epoch": 0.014641101023869407,
1183
+ "grad_norm": 1.5390625,
1184
+ "learning_rate": 0.001155428444960854,
1185
+ "loss": 2.1506783962249756,
1186
+ "step": 168
1187
+ },
1188
+ {
1189
+ "epoch": 0.014728250434725773,
1190
+ "grad_norm": 1.640625,
1191
+ "learning_rate": 0.0011623411901402604,
1192
+ "loss": 2.2475764751434326,
1193
+ "step": 169
1194
+ },
1195
+ {
1196
+ "epoch": 0.014815399845582137,
1197
+ "grad_norm": 1.609375,
1198
+ "learning_rate": 0.0011692539353196669,
1199
+ "loss": 2.2267816066741943,
1200
+ "step": 170
1201
+ },
1202
+ {
1203
+ "epoch": 0.014902549256438503,
1204
+ "grad_norm": 1.578125,
1205
+ "learning_rate": 0.001176166680499073,
1206
+ "loss": 2.070962905883789,
1207
+ "step": 171
1208
+ },
1209
+ {
1210
+ "epoch": 0.014989698667294868,
1211
+ "grad_norm": 1.6015625,
1212
+ "learning_rate": 0.0011830794256784793,
1213
+ "loss": 2.1214816570281982,
1214
+ "step": 172
1215
+ },
1216
+ {
1217
+ "epoch": 0.015076848078151234,
1218
+ "grad_norm": 1.5078125,
1219
+ "learning_rate": 0.0011899921708578857,
1220
+ "loss": 2.2736213207244873,
1221
+ "step": 173
1222
+ },
1223
+ {
1224
+ "epoch": 0.0151639974890076,
1225
+ "grad_norm": 1.4453125,
1226
+ "learning_rate": 0.001196904916037292,
1227
+ "loss": 2.1768054962158203,
1228
+ "step": 174
1229
+ },
1230
+ {
1231
+ "epoch": 0.015251146899863965,
1232
+ "grad_norm": 1.6484375,
1233
+ "learning_rate": 0.0012038176612166982,
1234
+ "loss": 2.353447675704956,
1235
+ "step": 175
1236
+ },
1237
+ {
1238
+ "epoch": 0.015338296310720331,
1239
+ "grad_norm": 1.515625,
1240
+ "learning_rate": 0.0012107304063961046,
1241
+ "loss": 2.247162342071533,
1242
+ "step": 176
1243
+ },
1244
+ {
1245
+ "epoch": 0.015425445721576695,
1246
+ "grad_norm": 1.4375,
1247
+ "learning_rate": 0.001217643151575511,
1248
+ "loss": 2.1556575298309326,
1249
+ "step": 177
1250
+ },
1251
+ {
1252
+ "epoch": 0.015512595132433062,
1253
+ "grad_norm": 1.5546875,
1254
+ "learning_rate": 0.0012245558967549173,
1255
+ "loss": 2.1065351963043213,
1256
+ "step": 178
1257
+ },
1258
+ {
1259
+ "epoch": 0.015599744543289428,
1260
+ "grad_norm": 1.5,
1261
+ "learning_rate": 0.0012314686419343235,
1262
+ "loss": 2.1535067558288574,
1263
+ "step": 179
1264
+ },
1265
+ {
1266
+ "epoch": 0.015686893954145794,
1267
+ "grad_norm": 1.5078125,
1268
+ "learning_rate": 0.00123838138711373,
1269
+ "loss": 2.193218231201172,
1270
+ "step": 180
1271
+ },
1272
+ {
1273
+ "epoch": 0.01577404336500216,
1274
+ "grad_norm": 1.640625,
1275
+ "learning_rate": 0.0012452941322931362,
1276
+ "loss": 2.1786725521087646,
1277
+ "step": 181
1278
+ },
1279
+ {
1280
+ "epoch": 0.015861192775858523,
1281
+ "grad_norm": 1.59375,
1282
+ "learning_rate": 0.0012522068774725424,
1283
+ "loss": 2.1510398387908936,
1284
+ "step": 182
1285
+ },
1286
+ {
1287
+ "epoch": 0.01594834218671489,
1288
+ "grad_norm": 1.828125,
1289
+ "learning_rate": 0.0012591196226519488,
1290
+ "loss": 2.194058895111084,
1291
+ "step": 183
1292
+ },
1293
+ {
1294
+ "epoch": 0.016035491597571255,
1295
+ "grad_norm": 1.4921875,
1296
+ "learning_rate": 0.0012660323678313553,
1297
+ "loss": 2.1457104682922363,
1298
+ "step": 184
1299
+ },
1300
+ {
1301
+ "epoch": 0.01612264100842762,
1302
+ "grad_norm": 1.5703125,
1303
+ "learning_rate": 0.0012729451130107615,
1304
+ "loss": 2.1425299644470215,
1305
+ "step": 185
1306
+ },
1307
+ {
1308
+ "epoch": 0.016209790419283984,
1309
+ "grad_norm": 1.375,
1310
+ "learning_rate": 0.0012798578581901677,
1311
+ "loss": 2.2450737953186035,
1312
+ "step": 186
1313
+ },
1314
+ {
1315
+ "epoch": 0.016296939830140352,
1316
+ "grad_norm": 1.6015625,
1317
+ "learning_rate": 0.0012867706033695742,
1318
+ "loss": 2.1825942993164062,
1319
+ "step": 187
1320
+ },
1321
+ {
1322
+ "epoch": 0.016384089240996717,
1323
+ "grad_norm": 1.375,
1324
+ "learning_rate": 0.0012936833485489804,
1325
+ "loss": 2.076286554336548,
1326
+ "step": 188
1327
+ },
1328
+ {
1329
+ "epoch": 0.01647123865185308,
1330
+ "grad_norm": 1.46875,
1331
+ "learning_rate": 0.0013005960937283866,
1332
+ "loss": 2.1608879566192627,
1333
+ "step": 189
1334
+ },
1335
+ {
1336
+ "epoch": 0.01655838806270945,
1337
+ "grad_norm": 1.4765625,
1338
+ "learning_rate": 0.001307508838907793,
1339
+ "loss": 2.1806795597076416,
1340
+ "step": 190
1341
+ },
1342
+ {
1343
+ "epoch": 0.016645537473565813,
1344
+ "grad_norm": 1.5625,
1345
+ "learning_rate": 0.0013144215840871993,
1346
+ "loss": 2.1682558059692383,
1347
+ "step": 191
1348
+ },
1349
+ {
1350
+ "epoch": 0.016732686884422178,
1351
+ "grad_norm": 1.640625,
1352
+ "learning_rate": 0.0013213343292666055,
1353
+ "loss": 2.202089548110962,
1354
+ "step": 192
1355
+ },
1356
+ {
1357
+ "epoch": 0.016819836295278546,
1358
+ "grad_norm": 1.484375,
1359
+ "learning_rate": 0.0013282470744460117,
1360
+ "loss": 2.1461832523345947,
1361
+ "step": 193
1362
+ },
1363
+ {
1364
+ "epoch": 0.01690698570613491,
1365
+ "grad_norm": 1.4140625,
1366
+ "learning_rate": 0.0013351598196254181,
1367
+ "loss": 1.9571164846420288,
1368
+ "step": 194
1369
+ },
1370
+ {
1371
+ "epoch": 0.016994135116991275,
1372
+ "grad_norm": 1.5546875,
1373
+ "learning_rate": 0.0013420725648048246,
1374
+ "loss": 2.198993682861328,
1375
+ "step": 195
1376
+ },
1377
+ {
1378
+ "epoch": 0.017081284527847643,
1379
+ "grad_norm": 1.390625,
1380
+ "learning_rate": 0.0013489853099842308,
1381
+ "loss": 2.0970957279205322,
1382
+ "step": 196
1383
+ },
1384
+ {
1385
+ "epoch": 0.017168433938704007,
1386
+ "grad_norm": 1.5,
1387
+ "learning_rate": 0.001355898055163637,
1388
+ "loss": 2.1195521354675293,
1389
+ "step": 197
1390
+ },
1391
+ {
1392
+ "epoch": 0.01725558334956037,
1393
+ "grad_norm": 1.3984375,
1394
+ "learning_rate": 0.0013628108003430435,
1395
+ "loss": 2.0975658893585205,
1396
+ "step": 198
1397
+ },
1398
+ {
1399
+ "epoch": 0.017342732760416736,
1400
+ "grad_norm": 1.3984375,
1401
+ "learning_rate": 0.0013697235455224497,
1402
+ "loss": 2.2034478187561035,
1403
+ "step": 199
1404
+ },
1405
+ {
1406
+ "epoch": 0.017429882171273104,
1407
+ "grad_norm": 1.3671875,
1408
+ "learning_rate": 0.001376636290701856,
1409
+ "loss": 2.172551155090332,
1410
+ "step": 200
1411
+ },
1412
+ {
1413
+ "epoch": 0.01751703158212947,
1414
+ "grad_norm": 1.4375,
1415
+ "learning_rate": 0.0013835490358812623,
1416
+ "loss": 2.036912679672241,
1417
+ "step": 201
1418
+ },
1419
+ {
1420
+ "epoch": 0.017604180992985833,
1421
+ "grad_norm": 1.4375,
1422
+ "learning_rate": 0.0013904617810606688,
1423
+ "loss": 2.1607420444488525,
1424
+ "step": 202
1425
+ },
1426
+ {
1427
+ "epoch": 0.0176913304038422,
1428
+ "grad_norm": 1.4453125,
1429
+ "learning_rate": 0.001397374526240075,
1430
+ "loss": 2.0542709827423096,
1431
+ "step": 203
1432
+ },
1433
+ {
1434
+ "epoch": 0.017778479814698565,
1435
+ "grad_norm": 1.375,
1436
+ "learning_rate": 0.0014042872714194812,
1437
+ "loss": 2.043264150619507,
1438
+ "step": 204
1439
+ },
1440
+ {
1441
+ "epoch": 0.01786562922555493,
1442
+ "grad_norm": 1.4140625,
1443
+ "learning_rate": 0.0014112000165988877,
1444
+ "loss": 2.129647731781006,
1445
+ "step": 205
1446
+ },
1447
+ {
1448
+ "epoch": 0.017952778636411298,
1449
+ "grad_norm": 1.390625,
1450
+ "learning_rate": 0.001418112761778294,
1451
+ "loss": 2.0812385082244873,
1452
+ "step": 206
1453
+ },
1454
+ {
1455
+ "epoch": 0.018039928047267662,
1456
+ "grad_norm": 1.46875,
1457
+ "learning_rate": 0.0014250255069577001,
1458
+ "loss": 2.0312585830688477,
1459
+ "step": 207
1460
+ },
1461
+ {
1462
+ "epoch": 0.018127077458124027,
1463
+ "grad_norm": 1.53125,
1464
+ "learning_rate": 0.0014319382521371066,
1465
+ "loss": 2.110504388809204,
1466
+ "step": 208
1467
+ },
1468
+ {
1469
+ "epoch": 0.01821422686898039,
1470
+ "grad_norm": 1.5859375,
1471
+ "learning_rate": 0.001438850997316513,
1472
+ "loss": 2.1393139362335205,
1473
+ "step": 209
1474
+ },
1475
+ {
1476
+ "epoch": 0.01830137627983676,
1477
+ "grad_norm": 1.4609375,
1478
+ "learning_rate": 0.0014457637424959192,
1479
+ "loss": 2.062541961669922,
1480
+ "step": 210
1481
+ },
1482
+ {
1483
+ "epoch": 0.018388525690693124,
1484
+ "grad_norm": 1.5078125,
1485
+ "learning_rate": 0.0014526764876753254,
1486
+ "loss": 2.1736390590667725,
1487
+ "step": 211
1488
+ },
1489
+ {
1490
+ "epoch": 0.018475675101549488,
1491
+ "grad_norm": 1.390625,
1492
+ "learning_rate": 0.0014595892328547319,
1493
+ "loss": 1.993078589439392,
1494
+ "step": 212
1495
+ },
1496
+ {
1497
+ "epoch": 0.018562824512405856,
1498
+ "grad_norm": 1.6171875,
1499
+ "learning_rate": 0.0014665019780341383,
1500
+ "loss": 2.123861312866211,
1501
+ "step": 213
1502
+ },
1503
+ {
1504
+ "epoch": 0.01864997392326222,
1505
+ "grad_norm": 1.5,
1506
+ "learning_rate": 0.0014734147232135443,
1507
+ "loss": 2.265376567840576,
1508
+ "step": 214
1509
+ },
1510
+ {
1511
+ "epoch": 0.018737123334118585,
1512
+ "grad_norm": 1.4296875,
1513
+ "learning_rate": 0.0014803274683929508,
1514
+ "loss": 2.060065984725952,
1515
+ "step": 215
1516
+ },
1517
+ {
1518
+ "epoch": 0.018824272744974953,
1519
+ "grad_norm": 1.4453125,
1520
+ "learning_rate": 0.0014872402135723572,
1521
+ "loss": 2.0445477962493896,
1522
+ "step": 216
1523
+ },
1524
+ {
1525
+ "epoch": 0.018911422155831317,
1526
+ "grad_norm": 1.3828125,
1527
+ "learning_rate": 0.0014941529587517634,
1528
+ "loss": 2.004782199859619,
1529
+ "step": 217
1530
+ },
1531
+ {
1532
+ "epoch": 0.01899857156668768,
1533
+ "grad_norm": 1.390625,
1534
+ "learning_rate": 0.0015010657039311696,
1535
+ "loss": 2.1203224658966064,
1536
+ "step": 218
1537
+ },
1538
+ {
1539
+ "epoch": 0.019085720977544046,
1540
+ "grad_norm": 1.2890625,
1541
+ "learning_rate": 0.001507978449110576,
1542
+ "loss": 2.0167741775512695,
1543
+ "step": 219
1544
+ },
1545
+ {
1546
+ "epoch": 0.019172870388400414,
1547
+ "grad_norm": 1.4140625,
1548
+ "learning_rate": 0.0015148911942899823,
1549
+ "loss": 1.9482148885726929,
1550
+ "step": 220
1551
+ },
1552
+ {
1553
+ "epoch": 0.01926001979925678,
1554
+ "grad_norm": 1.859375,
1555
+ "learning_rate": 0.0015218039394693885,
1556
+ "loss": 2.1183648109436035,
1557
+ "step": 221
1558
+ },
1559
+ {
1560
+ "epoch": 0.019347169210113143,
1561
+ "grad_norm": 1.4921875,
1562
+ "learning_rate": 0.001528716684648795,
1563
+ "loss": 2.272049903869629,
1564
+ "step": 222
1565
+ },
1566
+ {
1567
+ "epoch": 0.01943431862096951,
1568
+ "grad_norm": 1.71875,
1569
+ "learning_rate": 0.0015356294298282014,
1570
+ "loss": 2.0988314151763916,
1571
+ "step": 223
1572
+ },
1573
+ {
1574
+ "epoch": 0.019521468031825875,
1575
+ "grad_norm": 1.4375,
1576
+ "learning_rate": 0.0015425421750076076,
1577
+ "loss": 2.056494951248169,
1578
+ "step": 224
1579
+ },
1580
+ {
1581
+ "epoch": 0.01960861744268224,
1582
+ "grad_norm": 1.453125,
1583
+ "learning_rate": 0.0015494549201870138,
1584
+ "loss": 2.1593847274780273,
1585
+ "step": 225
1586
+ },
1587
+ {
1588
+ "epoch": 0.019695766853538608,
1589
+ "grad_norm": 1.40625,
1590
+ "learning_rate": 0.0015563676653664203,
1591
+ "loss": 2.065830707550049,
1592
+ "step": 226
1593
+ },
1594
+ {
1595
+ "epoch": 0.019782916264394972,
1596
+ "grad_norm": 1.4140625,
1597
+ "learning_rate": 0.0015632804105458265,
1598
+ "loss": 2.0604701042175293,
1599
+ "step": 227
1600
+ },
1601
+ {
1602
+ "epoch": 0.019870065675251337,
1603
+ "grad_norm": 1.515625,
1604
+ "learning_rate": 0.0015701931557252327,
1605
+ "loss": 2.2560975551605225,
1606
+ "step": 228
1607
+ },
1608
+ {
1609
+ "epoch": 0.019957215086107705,
1610
+ "grad_norm": 1.328125,
1611
+ "learning_rate": 0.0015771059009046392,
1612
+ "loss": 2.0184080600738525,
1613
+ "step": 229
1614
+ },
1615
+ {
1616
+ "epoch": 0.02004436449696407,
1617
+ "grad_norm": 1.4609375,
1618
+ "learning_rate": 0.0015840186460840456,
1619
+ "loss": 2.0684657096862793,
1620
+ "step": 230
1621
+ },
1622
+ {
1623
+ "epoch": 0.020131513907820434,
1624
+ "grad_norm": 1.4375,
1625
+ "learning_rate": 0.0015909313912634518,
1626
+ "loss": 2.0670692920684814,
1627
+ "step": 231
1628
+ },
1629
+ {
1630
+ "epoch": 0.020218663318676798,
1631
+ "grad_norm": 1.421875,
1632
+ "learning_rate": 0.001597844136442858,
1633
+ "loss": 2.03656268119812,
1634
+ "step": 232
1635
+ },
1636
+ {
1637
+ "epoch": 0.020305812729533166,
1638
+ "grad_norm": 1.4296875,
1639
+ "learning_rate": 0.0016047568816222645,
1640
+ "loss": 2.1474218368530273,
1641
+ "step": 233
1642
+ },
1643
+ {
1644
+ "epoch": 0.02039296214038953,
1645
+ "grad_norm": 1.3203125,
1646
+ "learning_rate": 0.0016116696268016707,
1647
+ "loss": 2.187220335006714,
1648
+ "step": 234
1649
+ },
1650
+ {
1651
+ "epoch": 0.020480111551245895,
1652
+ "grad_norm": 1.34375,
1653
+ "learning_rate": 0.0016185823719810767,
1654
+ "loss": 2.1362173557281494,
1655
+ "step": 235
1656
+ },
1657
+ {
1658
+ "epoch": 0.020567260962102263,
1659
+ "grad_norm": 1.3515625,
1660
+ "learning_rate": 0.0016254951171604834,
1661
+ "loss": 1.9493178129196167,
1662
+ "step": 236
1663
+ },
1664
+ {
1665
+ "epoch": 0.020654410372958627,
1666
+ "grad_norm": 1.3828125,
1667
+ "learning_rate": 0.0016324078623398898,
1668
+ "loss": 2.105910301208496,
1669
+ "step": 237
1670
+ },
1671
+ {
1672
+ "epoch": 0.020741559783814992,
1673
+ "grad_norm": 1.2578125,
1674
+ "learning_rate": 0.001639320607519296,
1675
+ "loss": 1.9420387744903564,
1676
+ "step": 238
1677
+ },
1678
+ {
1679
+ "epoch": 0.02082870919467136,
1680
+ "grad_norm": 1.375,
1681
+ "learning_rate": 0.0016462333526987023,
1682
+ "loss": 2.0721983909606934,
1683
+ "step": 239
1684
+ },
1685
+ {
1686
+ "epoch": 0.020915858605527724,
1687
+ "grad_norm": 1.3515625,
1688
+ "learning_rate": 0.0016531460978781087,
1689
+ "loss": 2.1015870571136475,
1690
+ "step": 240
1691
+ },
1692
+ {
1693
+ "epoch": 0.02100300801638409,
1694
+ "grad_norm": 1.2265625,
1695
+ "learning_rate": 0.001660058843057515,
1696
+ "loss": 2.103015422821045,
1697
+ "step": 241
1698
+ },
1699
+ {
1700
+ "epoch": 0.021090157427240453,
1701
+ "grad_norm": 1.4296875,
1702
+ "learning_rate": 0.0016669715882369211,
1703
+ "loss": 2.080415964126587,
1704
+ "step": 242
1705
+ },
1706
+ {
1707
+ "epoch": 0.02117730683809682,
1708
+ "grad_norm": 1.359375,
1709
+ "learning_rate": 0.0016738843334163278,
1710
+ "loss": 2.0258567333221436,
1711
+ "step": 243
1712
+ },
1713
+ {
1714
+ "epoch": 0.021264456248953185,
1715
+ "grad_norm": 1.4296875,
1716
+ "learning_rate": 0.001680797078595734,
1717
+ "loss": 2.1504578590393066,
1718
+ "step": 244
1719
+ },
1720
+ {
1721
+ "epoch": 0.02135160565980955,
1722
+ "grad_norm": 1.3359375,
1723
+ "learning_rate": 0.0016877098237751402,
1724
+ "loss": 2.0242486000061035,
1725
+ "step": 245
1726
+ },
1727
+ {
1728
+ "epoch": 0.021438755070665918,
1729
+ "grad_norm": 1.34375,
1730
+ "learning_rate": 0.0016946225689545465,
1731
+ "loss": 2.0960941314697266,
1732
+ "step": 246
1733
+ },
1734
+ {
1735
+ "epoch": 0.021525904481522282,
1736
+ "grad_norm": 1.328125,
1737
+ "learning_rate": 0.001701535314133953,
1738
+ "loss": 2.0462875366210938,
1739
+ "step": 247
1740
+ },
1741
+ {
1742
+ "epoch": 0.021613053892378647,
1743
+ "grad_norm": 1.234375,
1744
+ "learning_rate": 0.0017084480593133591,
1745
+ "loss": 1.8613609075546265,
1746
+ "step": 248
1747
+ },
1748
+ {
1749
+ "epoch": 0.021700203303235015,
1750
+ "grad_norm": 1.234375,
1751
+ "learning_rate": 0.0017153608044927653,
1752
+ "loss": 2.0070531368255615,
1753
+ "step": 249
1754
+ },
1755
+ {
1756
+ "epoch": 0.02178735271409138,
1757
+ "grad_norm": 1.328125,
1758
+ "learning_rate": 0.001722273549672172,
1759
+ "loss": 2.0557873249053955,
1760
+ "step": 250
1761
+ },
1762
+ {
1763
+ "epoch": 0.021874502124947744,
1764
+ "grad_norm": 1.4140625,
1765
+ "learning_rate": 0.0017291862948515782,
1766
+ "loss": 2.0736894607543945,
1767
+ "step": 251
1768
+ },
1769
+ {
1770
+ "epoch": 0.02196165153580411,
1771
+ "grad_norm": 1.359375,
1772
+ "learning_rate": 0.0017360990400309844,
1773
+ "loss": 2.0420143604278564,
1774
+ "step": 252
1775
+ },
1776
+ {
1777
+ "epoch": 0.022048800946660476,
1778
+ "grad_norm": 1.328125,
1779
+ "learning_rate": 0.0017430117852103907,
1780
+ "loss": 2.047842264175415,
1781
+ "step": 253
1782
+ },
1783
+ {
1784
+ "epoch": 0.02213595035751684,
1785
+ "grad_norm": 1.34375,
1786
+ "learning_rate": 0.0017499245303897971,
1787
+ "loss": 1.9989928007125854,
1788
+ "step": 254
1789
+ },
1790
+ {
1791
+ "epoch": 0.022223099768373205,
1792
+ "grad_norm": 1.3203125,
1793
+ "learning_rate": 0.0017568372755692033,
1794
+ "loss": 1.9565446376800537,
1795
+ "step": 255
1796
+ },
1797
+ {
1798
+ "epoch": 0.022310249179229573,
1799
+ "grad_norm": 1.2578125,
1800
+ "learning_rate": 0.0017637500207486096,
1801
+ "loss": 2.1068029403686523,
1802
+ "step": 256
1803
+ },
1804
+ {
1805
+ "epoch": 0.022397398590085937,
1806
+ "grad_norm": 1.2734375,
1807
+ "learning_rate": 0.001770662765928016,
1808
+ "loss": 2.0168914794921875,
1809
+ "step": 257
1810
+ },
1811
+ {
1812
+ "epoch": 0.022484548000942302,
1813
+ "grad_norm": 1.34375,
1814
+ "learning_rate": 0.0017775755111074224,
1815
+ "loss": 2.1034085750579834,
1816
+ "step": 258
1817
+ },
1818
+ {
1819
+ "epoch": 0.02257169741179867,
1820
+ "grad_norm": 1.203125,
1821
+ "learning_rate": 0.0017844882562868287,
1822
+ "loss": 2.069204330444336,
1823
+ "step": 259
1824
+ },
1825
+ {
1826
+ "epoch": 0.022658846822655034,
1827
+ "grad_norm": 1.328125,
1828
+ "learning_rate": 0.0017914010014662349,
1829
+ "loss": 2.0968642234802246,
1830
+ "step": 260
1831
+ },
1832
+ {
1833
+ "epoch": 0.0227459962335114,
1834
+ "grad_norm": 1.234375,
1835
+ "learning_rate": 0.0017983137466456413,
1836
+ "loss": 1.967484712600708,
1837
+ "step": 261
1838
+ },
1839
+ {
1840
+ "epoch": 0.022833145644367767,
1841
+ "grad_norm": 1.2265625,
1842
+ "learning_rate": 0.0018052264918250475,
1843
+ "loss": 2.0483593940734863,
1844
+ "step": 262
1845
+ },
1846
+ {
1847
+ "epoch": 0.02292029505522413,
1848
+ "grad_norm": 1.1484375,
1849
+ "learning_rate": 0.0018121392370044538,
1850
+ "loss": 1.8896889686584473,
1851
+ "step": 263
1852
+ },
1853
+ {
1854
+ "epoch": 0.023007444466080496,
1855
+ "grad_norm": 1.2421875,
1856
+ "learning_rate": 0.0018190519821838602,
1857
+ "loss": 2.069145917892456,
1858
+ "step": 264
1859
+ },
1860
+ {
1861
+ "epoch": 0.02309459387693686,
1862
+ "grad_norm": 1.3984375,
1863
+ "learning_rate": 0.0018259647273632666,
1864
+ "loss": 2.109785318374634,
1865
+ "step": 265
1866
+ },
1867
+ {
1868
+ "epoch": 0.023181743287793228,
1869
+ "grad_norm": 1.2578125,
1870
+ "learning_rate": 0.0018328774725426729,
1871
+ "loss": 2.097126007080078,
1872
+ "step": 266
1873
+ },
1874
+ {
1875
+ "epoch": 0.023268892698649592,
1876
+ "grad_norm": 1.3671875,
1877
+ "learning_rate": 0.001839790217722079,
1878
+ "loss": 2.030325174331665,
1879
+ "step": 267
1880
+ },
1881
+ {
1882
+ "epoch": 0.023356042109505957,
1883
+ "grad_norm": 1.390625,
1884
+ "learning_rate": 0.0018467029629014855,
1885
+ "loss": 2.169196128845215,
1886
+ "step": 268
1887
+ },
1888
+ {
1889
+ "epoch": 0.023443191520362325,
1890
+ "grad_norm": 1.3671875,
1891
+ "learning_rate": 0.0018536157080808917,
1892
+ "loss": 2.1001839637756348,
1893
+ "step": 269
1894
+ },
1895
+ {
1896
+ "epoch": 0.02353034093121869,
1897
+ "grad_norm": 1.359375,
1898
+ "learning_rate": 0.001860528453260298,
1899
+ "loss": 2.0785632133483887,
1900
+ "step": 270
1901
+ },
1902
+ {
1903
+ "epoch": 0.023617490342075054,
1904
+ "grad_norm": 1.296875,
1905
+ "learning_rate": 0.0018674411984397044,
1906
+ "loss": 2.0410194396972656,
1907
+ "step": 271
1908
+ },
1909
+ {
1910
+ "epoch": 0.02370463975293142,
1911
+ "grad_norm": 1.328125,
1912
+ "learning_rate": 0.0018743539436191108,
1913
+ "loss": 2.073333740234375,
1914
+ "step": 272
1915
+ },
1916
+ {
1917
+ "epoch": 0.023791789163787786,
1918
+ "grad_norm": 1.328125,
1919
+ "learning_rate": 0.001881266688798517,
1920
+ "loss": 2.003096103668213,
1921
+ "step": 273
1922
+ },
1923
+ {
1924
+ "epoch": 0.02387893857464415,
1925
+ "grad_norm": 1.2890625,
1926
+ "learning_rate": 0.0018881794339779233,
1927
+ "loss": 2.098187208175659,
1928
+ "step": 274
1929
+ },
1930
+ {
1931
+ "epoch": 0.02396608798550052,
1932
+ "grad_norm": 1.1796875,
1933
+ "learning_rate": 0.0018950921791573297,
1934
+ "loss": 2.1531052589416504,
1935
+ "step": 275
1936
+ },
1937
+ {
1938
+ "epoch": 0.024053237396356883,
1939
+ "grad_norm": 1.21875,
1940
+ "learning_rate": 0.001902004924336736,
1941
+ "loss": 1.9294949769973755,
1942
+ "step": 276
1943
+ },
1944
+ {
1945
+ "epoch": 0.024140386807213247,
1946
+ "grad_norm": 1.3125,
1947
+ "learning_rate": 0.0019089176695161422,
1948
+ "loss": 2.0394935607910156,
1949
+ "step": 277
1950
+ },
1951
+ {
1952
+ "epoch": 0.024227536218069612,
1953
+ "grad_norm": 1.265625,
1954
+ "learning_rate": 0.0019158304146955486,
1955
+ "loss": 2.1297898292541504,
1956
+ "step": 278
1957
+ },
1958
+ {
1959
+ "epoch": 0.02431468562892598,
1960
+ "grad_norm": 1.3359375,
1961
+ "learning_rate": 0.001922743159874955,
1962
+ "loss": 2.0463480949401855,
1963
+ "step": 279
1964
+ },
1965
+ {
1966
+ "epoch": 0.024401835039782344,
1967
+ "grad_norm": 1.140625,
1968
+ "learning_rate": 0.0019296559050543613,
1969
+ "loss": 2.062194347381592,
1970
+ "step": 280
1971
+ },
1972
+ {
1973
+ "epoch": 0.02448898445063871,
1974
+ "grad_norm": 1.171875,
1975
+ "learning_rate": 0.0019365686502337677,
1976
+ "loss": 1.9813222885131836,
1977
+ "step": 281
1978
+ },
1979
+ {
1980
+ "epoch": 0.024576133861495077,
1981
+ "grad_norm": 1.3125,
1982
+ "learning_rate": 0.001943481395413174,
1983
+ "loss": 1.9294824600219727,
1984
+ "step": 282
1985
+ },
1986
+ {
1987
+ "epoch": 0.02466328327235144,
1988
+ "grad_norm": 1.265625,
1989
+ "learning_rate": 0.0019503941405925802,
1990
+ "loss": 2.099668502807617,
1991
+ "step": 283
1992
+ },
1993
+ {
1994
+ "epoch": 0.024750432683207806,
1995
+ "grad_norm": 1.28125,
1996
+ "learning_rate": 0.001957306885771987,
1997
+ "loss": 1.9695556163787842,
1998
+ "step": 284
1999
+ },
2000
+ {
2001
+ "epoch": 0.024837582094064174,
2002
+ "grad_norm": 1.3125,
2003
+ "learning_rate": 0.0019642196309513933,
2004
+ "loss": 2.177349328994751,
2005
+ "step": 285
2006
+ },
2007
+ {
2008
+ "epoch": 0.024924731504920538,
2009
+ "grad_norm": 1.1953125,
2010
+ "learning_rate": 0.0019711323761307993,
2011
+ "loss": 2.044966697692871,
2012
+ "step": 286
2013
+ },
2014
+ {
2015
+ "epoch": 0.025011880915776902,
2016
+ "grad_norm": 1.2734375,
2017
+ "learning_rate": 0.0019780451213102057,
2018
+ "loss": 2.0162243843078613,
2019
+ "step": 287
2020
+ },
2021
+ {
2022
+ "epoch": 0.025099030326633267,
2023
+ "grad_norm": 1.1796875,
2024
+ "learning_rate": 0.001984957866489612,
2025
+ "loss": 2.0284998416900635,
2026
+ "step": 288
2027
+ },
2028
+ {
2029
+ "epoch": 0.025186179737489635,
2030
+ "grad_norm": 1.1875,
2031
+ "learning_rate": 0.001991870611669018,
2032
+ "loss": 1.9222617149353027,
2033
+ "step": 289
2034
+ },
2035
+ {
2036
+ "epoch": 0.025273329148346,
2037
+ "grad_norm": 1.1796875,
2038
+ "learning_rate": 0.0019987833568484246,
2039
+ "loss": 2.029639482498169,
2040
+ "step": 290
2041
+ },
2042
+ {
2043
+ "epoch": 0.025360478559202364,
2044
+ "grad_norm": 1.1484375,
2045
+ "learning_rate": 0.002,
2046
+ "loss": 2.001166582107544,
2047
+ "step": 291
2048
+ },
2049
+ {
2050
+ "epoch": 0.02544762797005873,
2051
+ "grad_norm": 1.15625,
2052
+ "learning_rate": 0.002,
2053
+ "loss": 2.0644993782043457,
2054
+ "step": 292
2055
+ },
2056
+ {
2057
+ "epoch": 0.025534777380915096,
2058
+ "grad_norm": 1.2421875,
2059
+ "learning_rate": 0.002,
2060
+ "loss": 2.013618230819702,
2061
+ "step": 293
2062
+ },
2063
+ {
2064
+ "epoch": 0.02562192679177146,
2065
+ "grad_norm": 1.234375,
2066
+ "learning_rate": 0.002,
2067
+ "loss": 1.9548147916793823,
2068
+ "step": 294
2069
+ },
2070
+ {
2071
+ "epoch": 0.02570907620262783,
2072
+ "grad_norm": 1.28125,
2073
+ "learning_rate": 0.002,
2074
+ "loss": 2.0976831912994385,
2075
+ "step": 295
2076
+ },
2077
+ {
2078
+ "epoch": 0.025796225613484193,
2079
+ "grad_norm": 1.28125,
2080
+ "learning_rate": 0.002,
2081
+ "loss": 2.043471574783325,
2082
+ "step": 296
2083
+ },
2084
+ {
2085
+ "epoch": 0.025883375024340557,
2086
+ "grad_norm": 1.2421875,
2087
+ "learning_rate": 0.002,
2088
+ "loss": 2.0143167972564697,
2089
+ "step": 297
2090
+ },
2091
+ {
2092
+ "epoch": 0.025970524435196922,
2093
+ "grad_norm": 1.1796875,
2094
+ "learning_rate": 0.002,
2095
+ "loss": 1.9477717876434326,
2096
+ "step": 298
2097
+ },
2098
+ {
2099
+ "epoch": 0.02605767384605329,
2100
+ "grad_norm": 1.2421875,
2101
+ "learning_rate": 0.002,
2102
+ "loss": 2.046755313873291,
2103
+ "step": 299
2104
+ },
2105
+ {
2106
+ "epoch": 0.026144823256909654,
2107
+ "grad_norm": 1.1640625,
2108
+ "learning_rate": 0.002,
2109
+ "loss": 2.00517201423645,
2110
+ "step": 300
2111
+ },
2112
+ {
2113
+ "epoch": 0.02623197266776602,
2114
+ "grad_norm": 1.078125,
2115
+ "learning_rate": 0.002,
2116
+ "loss": 1.8747062683105469,
2117
+ "step": 301
2118
+ },
2119
+ {
2120
+ "epoch": 0.026319122078622387,
2121
+ "grad_norm": 1.1796875,
2122
+ "learning_rate": 0.002,
2123
+ "loss": 1.9339944124221802,
2124
+ "step": 302
2125
+ },
2126
+ {
2127
+ "epoch": 0.02640627148947875,
2128
+ "grad_norm": 1.2109375,
2129
+ "learning_rate": 0.002,
2130
+ "loss": 2.032811403274536,
2131
+ "step": 303
2132
+ },
2133
+ {
2134
+ "epoch": 0.026493420900335116,
2135
+ "grad_norm": 1.21875,
2136
+ "learning_rate": 0.002,
2137
+ "loss": 2.098724126815796,
2138
+ "step": 304
2139
+ },
2140
+ {
2141
+ "epoch": 0.026580570311191484,
2142
+ "grad_norm": 1.109375,
2143
+ "learning_rate": 0.002,
2144
+ "loss": 1.916012167930603,
2145
+ "step": 305
2146
+ },
2147
+ {
2148
+ "epoch": 0.026667719722047848,
2149
+ "grad_norm": 1.171875,
2150
+ "learning_rate": 0.002,
2151
+ "loss": 2.1294262409210205,
2152
+ "step": 306
2153
+ },
2154
+ {
2155
+ "epoch": 0.026754869132904213,
2156
+ "grad_norm": 1.2265625,
2157
+ "learning_rate": 0.002,
2158
+ "loss": 2.059067487716675,
2159
+ "step": 307
2160
+ },
2161
+ {
2162
+ "epoch": 0.02684201854376058,
2163
+ "grad_norm": 1.1484375,
2164
+ "learning_rate": 0.002,
2165
+ "loss": 2.064976692199707,
2166
+ "step": 308
2167
+ },
2168
+ {
2169
+ "epoch": 0.026929167954616945,
2170
+ "grad_norm": 1.078125,
2171
+ "learning_rate": 0.002,
2172
+ "loss": 1.9300205707550049,
2173
+ "step": 309
2174
+ },
2175
+ {
2176
+ "epoch": 0.02701631736547331,
2177
+ "grad_norm": 1.21875,
2178
+ "learning_rate": 0.002,
2179
+ "loss": 1.9407846927642822,
2180
+ "step": 310
2181
+ },
2182
+ {
2183
+ "epoch": 0.027103466776329674,
2184
+ "grad_norm": 1.21875,
2185
+ "learning_rate": 0.002,
2186
+ "loss": 2.019566059112549,
2187
+ "step": 311
2188
+ },
2189
+ {
2190
+ "epoch": 0.027190616187186042,
2191
+ "grad_norm": 1.15625,
2192
+ "learning_rate": 0.002,
2193
+ "loss": 2.1206910610198975,
2194
+ "step": 312
2195
+ },
2196
+ {
2197
+ "epoch": 0.027277765598042406,
2198
+ "grad_norm": 1.15625,
2199
+ "learning_rate": 0.002,
2200
+ "loss": 2.05499005317688,
2201
+ "step": 313
2202
+ },
2203
+ {
2204
+ "epoch": 0.02736491500889877,
2205
+ "grad_norm": 1.2109375,
2206
+ "learning_rate": 0.002,
2207
+ "loss": 2.132664680480957,
2208
+ "step": 314
2209
+ },
2210
+ {
2211
+ "epoch": 0.02745206441975514,
2212
+ "grad_norm": 1.2578125,
2213
+ "learning_rate": 0.002,
2214
+ "loss": 2.0348358154296875,
2215
+ "step": 315
2216
+ },
2217
+ {
2218
+ "epoch": 0.027539213830611503,
2219
+ "grad_norm": 1.265625,
2220
+ "learning_rate": 0.002,
2221
+ "loss": 1.94222092628479,
2222
+ "step": 316
2223
+ },
2224
+ {
2225
+ "epoch": 0.027626363241467868,
2226
+ "grad_norm": 1.0859375,
2227
+ "learning_rate": 0.002,
2228
+ "loss": 1.9610005617141724,
2229
+ "step": 317
2230
+ },
2231
+ {
2232
+ "epoch": 0.027713512652324235,
2233
+ "grad_norm": 1.1015625,
2234
+ "learning_rate": 0.002,
2235
+ "loss": 2.1766140460968018,
2236
+ "step": 318
2237
+ },
2238
+ {
2239
+ "epoch": 0.0278006620631806,
2240
+ "grad_norm": 1.2734375,
2241
+ "learning_rate": 0.002,
2242
+ "loss": 2.109349489212036,
2243
+ "step": 319
2244
+ },
2245
+ {
2246
+ "epoch": 0.027887811474036964,
2247
+ "grad_norm": 1.125,
2248
+ "learning_rate": 0.002,
2249
+ "loss": 2.074075222015381,
2250
+ "step": 320
2251
+ },
2252
+ {
2253
+ "epoch": 0.02797496088489333,
2254
+ "grad_norm": 1.046875,
2255
+ "learning_rate": 0.002,
2256
+ "loss": 1.8542454242706299,
2257
+ "step": 321
2258
+ },
2259
+ {
2260
+ "epoch": 0.028062110295749697,
2261
+ "grad_norm": 1.09375,
2262
+ "learning_rate": 0.002,
2263
+ "loss": 2.072103500366211,
2264
+ "step": 322
2265
+ },
2266
+ {
2267
+ "epoch": 0.02814925970660606,
2268
+ "grad_norm": 1.0859375,
2269
+ "learning_rate": 0.002,
2270
+ "loss": 1.8817863464355469,
2271
+ "step": 323
2272
+ },
2273
+ {
2274
+ "epoch": 0.028236409117462426,
2275
+ "grad_norm": 1.0859375,
2276
+ "learning_rate": 0.002,
2277
+ "loss": 2.1079821586608887,
2278
+ "step": 324
2279
+ },
2280
+ {
2281
+ "epoch": 0.028323558528318794,
2282
+ "grad_norm": 1.2109375,
2283
+ "learning_rate": 0.002,
2284
+ "loss": 2.1467366218566895,
2285
+ "step": 325
2286
+ },
2287
+ {
2288
+ "epoch": 0.028410707939175158,
2289
+ "grad_norm": 1.15625,
2290
+ "learning_rate": 0.002,
2291
+ "loss": 2.0277698040008545,
2292
+ "step": 326
2293
+ },
2294
+ {
2295
+ "epoch": 0.028497857350031523,
2296
+ "grad_norm": 1.109375,
2297
+ "learning_rate": 0.002,
2298
+ "loss": 1.950154185295105,
2299
+ "step": 327
2300
+ },
2301
+ {
2302
+ "epoch": 0.02858500676088789,
2303
+ "grad_norm": 1.171875,
2304
+ "learning_rate": 0.002,
2305
+ "loss": 2.015425443649292,
2306
+ "step": 328
2307
+ },
2308
+ {
2309
+ "epoch": 0.028672156171744255,
2310
+ "grad_norm": 1.078125,
2311
+ "learning_rate": 0.002,
2312
+ "loss": 1.872285008430481,
2313
+ "step": 329
2314
+ },
2315
+ {
2316
+ "epoch": 0.02875930558260062,
2317
+ "grad_norm": 1.0625,
2318
+ "learning_rate": 0.002,
2319
+ "loss": 2.0059897899627686,
2320
+ "step": 330
2321
+ },
2322
+ {
2323
+ "epoch": 0.028846454993456987,
2324
+ "grad_norm": 1.1171875,
2325
+ "learning_rate": 0.002,
2326
+ "loss": 1.9773547649383545,
2327
+ "step": 331
2328
+ },
2329
+ {
2330
+ "epoch": 0.028933604404313352,
2331
+ "grad_norm": 1.109375,
2332
+ "learning_rate": 0.002,
2333
+ "loss": 2.0682241916656494,
2334
+ "step": 332
2335
+ },
2336
+ {
2337
+ "epoch": 0.029020753815169716,
2338
+ "grad_norm": 1.0390625,
2339
+ "learning_rate": 0.002,
2340
+ "loss": 1.9896056652069092,
2341
+ "step": 333
2342
+ },
2343
+ {
2344
+ "epoch": 0.02910790322602608,
2345
+ "grad_norm": 1.15625,
2346
+ "learning_rate": 0.002,
2347
+ "loss": 2.179992437362671,
2348
+ "step": 334
2349
+ },
2350
+ {
2351
+ "epoch": 0.02919505263688245,
2352
+ "grad_norm": 1.125,
2353
+ "learning_rate": 0.002,
2354
+ "loss": 1.9344980716705322,
2355
+ "step": 335
2356
+ },
2357
+ {
2358
+ "epoch": 0.029282202047738813,
2359
+ "grad_norm": 0.98828125,
2360
+ "learning_rate": 0.002,
2361
+ "loss": 1.9128037691116333,
2362
+ "step": 336
2363
+ },
2364
+ {
2365
+ "epoch": 0.029369351458595178,
2366
+ "grad_norm": 1.0859375,
2367
+ "learning_rate": 0.002,
2368
+ "loss": 1.9457592964172363,
2369
+ "step": 337
2370
+ },
2371
+ {
2372
+ "epoch": 0.029456500869451546,
2373
+ "grad_norm": 1.1796875,
2374
+ "learning_rate": 0.002,
2375
+ "loss": 2.0802388191223145,
2376
+ "step": 338
2377
+ },
2378
+ {
2379
+ "epoch": 0.02954365028030791,
2380
+ "grad_norm": 1.0625,
2381
+ "learning_rate": 0.002,
2382
+ "loss": 1.976395606994629,
2383
+ "step": 339
2384
+ },
2385
+ {
2386
+ "epoch": 0.029630799691164274,
2387
+ "grad_norm": 1.03125,
2388
+ "learning_rate": 0.002,
2389
+ "loss": 2.0161664485931396,
2390
+ "step": 340
2391
+ },
2392
+ {
2393
+ "epoch": 0.029717949102020642,
2394
+ "grad_norm": 1.03125,
2395
+ "learning_rate": 0.002,
2396
+ "loss": 1.996329426765442,
2397
+ "step": 341
2398
+ },
2399
+ {
2400
+ "epoch": 0.029805098512877007,
2401
+ "grad_norm": 1.375,
2402
+ "learning_rate": 0.002,
2403
+ "loss": 1.9847618341445923,
2404
+ "step": 342
2405
+ },
2406
+ {
2407
+ "epoch": 0.02989224792373337,
2408
+ "grad_norm": 1.1171875,
2409
+ "learning_rate": 0.002,
2410
+ "loss": 2.025886297225952,
2411
+ "step": 343
2412
+ },
2413
+ {
2414
+ "epoch": 0.029979397334589736,
2415
+ "grad_norm": 1.15625,
2416
+ "learning_rate": 0.002,
2417
+ "loss": 2.0314159393310547,
2418
+ "step": 344
2419
+ },
2420
+ {
2421
+ "epoch": 0.030066546745446104,
2422
+ "grad_norm": 1.140625,
2423
+ "learning_rate": 0.002,
2424
+ "loss": 1.9757808446884155,
2425
+ "step": 345
2426
+ },
2427
+ {
2428
+ "epoch": 0.030153696156302468,
2429
+ "grad_norm": 1.1015625,
2430
+ "learning_rate": 0.002,
2431
+ "loss": 2.00164794921875,
2432
+ "step": 346
2433
+ },
2434
+ {
2435
+ "epoch": 0.030240845567158833,
2436
+ "grad_norm": 1.046875,
2437
+ "learning_rate": 0.002,
2438
+ "loss": 1.920770525932312,
2439
+ "step": 347
2440
+ },
2441
+ {
2442
+ "epoch": 0.0303279949780152,
2443
+ "grad_norm": 1.0546875,
2444
+ "learning_rate": 0.002,
2445
+ "loss": 2.0524423122406006,
2446
+ "step": 348
2447
+ },
2448
+ {
2449
+ "epoch": 0.030415144388871565,
2450
+ "grad_norm": 1.53125,
2451
+ "learning_rate": 0.002,
2452
+ "loss": 2.0547049045562744,
2453
+ "step": 349
2454
+ },
2455
+ {
2456
+ "epoch": 0.03050229379972793,
2457
+ "grad_norm": 0.98828125,
2458
+ "learning_rate": 0.002,
2459
+ "loss": 1.9880136251449585,
2460
+ "step": 350
2461
+ },
2462
+ {
2463
+ "epoch": 0.030589443210584297,
2464
+ "grad_norm": 1.1796875,
2465
+ "learning_rate": 0.002,
2466
+ "loss": 1.987094759941101,
2467
+ "step": 351
2468
+ },
2469
+ {
2470
+ "epoch": 0.030676592621440662,
2471
+ "grad_norm": 1.015625,
2472
+ "learning_rate": 0.002,
2473
+ "loss": 1.9624769687652588,
2474
+ "step": 352
2475
+ },
2476
+ {
2477
+ "epoch": 0.030763742032297026,
2478
+ "grad_norm": 1.046875,
2479
+ "learning_rate": 0.002,
2480
+ "loss": 2.0789482593536377,
2481
+ "step": 353
2482
+ },
2483
+ {
2484
+ "epoch": 0.03085089144315339,
2485
+ "grad_norm": 1.0703125,
2486
+ "learning_rate": 0.002,
2487
+ "loss": 2.166853666305542,
2488
+ "step": 354
2489
+ },
2490
+ {
2491
+ "epoch": 0.03093804085400976,
2492
+ "grad_norm": 1.140625,
2493
+ "learning_rate": 0.002,
2494
+ "loss": 2.0598955154418945,
2495
+ "step": 355
2496
+ },
2497
+ {
2498
+ "epoch": 0.031025190264866123,
2499
+ "grad_norm": 1.03125,
2500
+ "learning_rate": 0.002,
2501
+ "loss": 1.9756646156311035,
2502
+ "step": 356
2503
+ },
2504
+ {
2505
+ "epoch": 0.031112339675722488,
2506
+ "grad_norm": 1.140625,
2507
+ "learning_rate": 0.002,
2508
+ "loss": 1.9314295053482056,
2509
+ "step": 357
2510
+ },
2511
+ {
2512
+ "epoch": 0.031199489086578856,
2513
+ "grad_norm": 1.09375,
2514
+ "learning_rate": 0.002,
2515
+ "loss": 1.911449670791626,
2516
+ "step": 358
2517
+ },
2518
+ {
2519
+ "epoch": 0.031286638497435224,
2520
+ "grad_norm": 1.0703125,
2521
+ "learning_rate": 0.002,
2522
+ "loss": 2.096069812774658,
2523
+ "step": 359
2524
+ },
2525
+ {
2526
+ "epoch": 0.03137378790829159,
2527
+ "grad_norm": 1.09375,
2528
+ "learning_rate": 0.002,
2529
+ "loss": 1.9302388429641724,
2530
+ "step": 360
2531
+ },
2532
+ {
2533
+ "epoch": 0.03146093731914795,
2534
+ "grad_norm": 1.0546875,
2535
+ "learning_rate": 0.002,
2536
+ "loss": 1.9593164920806885,
2537
+ "step": 361
2538
+ },
2539
+ {
2540
+ "epoch": 0.03154808673000432,
2541
+ "grad_norm": 1.046875,
2542
+ "learning_rate": 0.002,
2543
+ "loss": 1.9172489643096924,
2544
+ "step": 362
2545
+ },
2546
+ {
2547
+ "epoch": 0.03163523614086068,
2548
+ "grad_norm": 2.375,
2549
+ "learning_rate": 0.002,
2550
+ "loss": 2.0493578910827637,
2551
+ "step": 363
2552
+ },
2553
+ {
2554
+ "epoch": 0.031722385551717046,
2555
+ "grad_norm": 1.1328125,
2556
+ "learning_rate": 0.002,
2557
+ "loss": 1.9867511987686157,
2558
+ "step": 364
2559
+ },
2560
+ {
2561
+ "epoch": 0.03180953496257341,
2562
+ "grad_norm": 1.0546875,
2563
+ "learning_rate": 0.002,
2564
+ "loss": 2.0832464694976807,
2565
+ "step": 365
2566
+ },
2567
+ {
2568
+ "epoch": 0.03189668437342978,
2569
+ "grad_norm": 1.0703125,
2570
+ "learning_rate": 0.002,
2571
+ "loss": 1.886700987815857,
2572
+ "step": 366
2573
+ },
2574
+ {
2575
+ "epoch": 0.031983833784286146,
2576
+ "grad_norm": 1.0234375,
2577
+ "learning_rate": 0.002,
2578
+ "loss": 1.9116026163101196,
2579
+ "step": 367
2580
+ },
2581
+ {
2582
+ "epoch": 0.03207098319514251,
2583
+ "grad_norm": 1.0078125,
2584
+ "learning_rate": 0.002,
2585
+ "loss": 1.8263874053955078,
2586
+ "step": 368
2587
+ },
2588
+ {
2589
+ "epoch": 0.032158132605998875,
2590
+ "grad_norm": 1.0703125,
2591
+ "learning_rate": 0.002,
2592
+ "loss": 2.0412628650665283,
2593
+ "step": 369
2594
+ },
2595
+ {
2596
+ "epoch": 0.03224528201685524,
2597
+ "grad_norm": 1.125,
2598
+ "learning_rate": 0.002,
2599
+ "loss": 2.1048011779785156,
2600
+ "step": 370
2601
+ },
2602
+ {
2603
+ "epoch": 0.032332431427711604,
2604
+ "grad_norm": 1.03125,
2605
+ "learning_rate": 0.002,
2606
+ "loss": 2.0405256748199463,
2607
+ "step": 371
2608
+ },
2609
+ {
2610
+ "epoch": 0.03241958083856797,
2611
+ "grad_norm": 1.0,
2612
+ "learning_rate": 0.002,
2613
+ "loss": 1.9497419595718384,
2614
+ "step": 372
2615
+ },
2616
+ {
2617
+ "epoch": 0.03250673024942434,
2618
+ "grad_norm": 1.109375,
2619
+ "learning_rate": 0.002,
2620
+ "loss": 2.084228515625,
2621
+ "step": 373
2622
+ },
2623
+ {
2624
+ "epoch": 0.032593879660280704,
2625
+ "grad_norm": 1.0,
2626
+ "learning_rate": 0.002,
2627
+ "loss": 1.9401715993881226,
2628
+ "step": 374
2629
+ },
2630
+ {
2631
+ "epoch": 0.03268102907113707,
2632
+ "grad_norm": 1.296875,
2633
+ "learning_rate": 0.002,
2634
+ "loss": 2.0952723026275635,
2635
+ "step": 375
2636
+ },
2637
+ {
2638
+ "epoch": 0.03276817848199343,
2639
+ "grad_norm": 0.921875,
2640
+ "learning_rate": 0.002,
2641
+ "loss": 1.8625407218933105,
2642
+ "step": 376
2643
+ },
2644
+ {
2645
+ "epoch": 0.0328553278928498,
2646
+ "grad_norm": 1.046875,
2647
+ "learning_rate": 0.002,
2648
+ "loss": 2.0086042881011963,
2649
+ "step": 377
2650
+ },
2651
+ {
2652
+ "epoch": 0.03294247730370616,
2653
+ "grad_norm": 0.97265625,
2654
+ "learning_rate": 0.002,
2655
+ "loss": 1.9601489305496216,
2656
+ "step": 378
2657
+ },
2658
+ {
2659
+ "epoch": 0.033029626714562534,
2660
+ "grad_norm": 1.09375,
2661
+ "learning_rate": 0.002,
2662
+ "loss": 2.102181911468506,
2663
+ "step": 379
2664
+ },
2665
+ {
2666
+ "epoch": 0.0331167761254189,
2667
+ "grad_norm": 0.91015625,
2668
+ "learning_rate": 0.002,
2669
+ "loss": 1.9650415182113647,
2670
+ "step": 380
2671
+ },
2672
+ {
2673
+ "epoch": 0.03320392553627526,
2674
+ "grad_norm": 1.0390625,
2675
+ "learning_rate": 0.002,
2676
+ "loss": 1.9646992683410645,
2677
+ "step": 381
2678
+ },
2679
+ {
2680
+ "epoch": 0.03329107494713163,
2681
+ "grad_norm": 1.0625,
2682
+ "learning_rate": 0.002,
2683
+ "loss": 1.9591023921966553,
2684
+ "step": 382
2685
+ },
2686
+ {
2687
+ "epoch": 0.03337822435798799,
2688
+ "grad_norm": 1.1015625,
2689
+ "learning_rate": 0.002,
2690
+ "loss": 2.010939359664917,
2691
+ "step": 383
2692
+ },
2693
+ {
2694
+ "epoch": 0.033465373768844356,
2695
+ "grad_norm": 1.0625,
2696
+ "learning_rate": 0.002,
2697
+ "loss": 2.059732675552368,
2698
+ "step": 384
2699
+ },
2700
+ {
2701
+ "epoch": 0.03355252317970072,
2702
+ "grad_norm": 0.98046875,
2703
+ "learning_rate": 0.002,
2704
+ "loss": 2.010468006134033,
2705
+ "step": 385
2706
+ },
2707
+ {
2708
+ "epoch": 0.03363967259055709,
2709
+ "grad_norm": 1.015625,
2710
+ "learning_rate": 0.002,
2711
+ "loss": 2.05426287651062,
2712
+ "step": 386
2713
+ },
2714
+ {
2715
+ "epoch": 0.033726822001413456,
2716
+ "grad_norm": 1.0,
2717
+ "learning_rate": 0.002,
2718
+ "loss": 2.0237786769866943,
2719
+ "step": 387
2720
+ },
2721
+ {
2722
+ "epoch": 0.03381397141226982,
2723
+ "grad_norm": 1.046875,
2724
+ "learning_rate": 0.002,
2725
+ "loss": 1.9790992736816406,
2726
+ "step": 388
2727
+ },
2728
+ {
2729
+ "epoch": 0.033901120823126185,
2730
+ "grad_norm": 0.98828125,
2731
+ "learning_rate": 0.002,
2732
+ "loss": 1.950234293937683,
2733
+ "step": 389
2734
+ },
2735
+ {
2736
+ "epoch": 0.03398827023398255,
2737
+ "grad_norm": 0.953125,
2738
+ "learning_rate": 0.002,
2739
+ "loss": 1.907360315322876,
2740
+ "step": 390
2741
+ },
2742
+ {
2743
+ "epoch": 0.034075419644838914,
2744
+ "grad_norm": 0.91796875,
2745
+ "learning_rate": 0.002,
2746
+ "loss": 1.8177075386047363,
2747
+ "step": 391
2748
+ },
2749
+ {
2750
+ "epoch": 0.034162569055695285,
2751
+ "grad_norm": 1.0546875,
2752
+ "learning_rate": 0.002,
2753
+ "loss": 2.075497627258301,
2754
+ "step": 392
2755
+ },
2756
+ {
2757
+ "epoch": 0.03424971846655165,
2758
+ "grad_norm": 1.171875,
2759
+ "learning_rate": 0.002,
2760
+ "loss": 2.132970094680786,
2761
+ "step": 393
2762
+ },
2763
+ {
2764
+ "epoch": 0.034336867877408014,
2765
+ "grad_norm": 1.015625,
2766
+ "learning_rate": 0.002,
2767
+ "loss": 1.8559272289276123,
2768
+ "step": 394
2769
+ },
2770
+ {
2771
+ "epoch": 0.03442401728826438,
2772
+ "grad_norm": 1.1640625,
2773
+ "learning_rate": 0.002,
2774
+ "loss": 2.099686861038208,
2775
+ "step": 395
2776
+ },
2777
+ {
2778
+ "epoch": 0.03451116669912074,
2779
+ "grad_norm": 0.95703125,
2780
+ "learning_rate": 0.002,
2781
+ "loss": 1.87687087059021,
2782
+ "step": 396
2783
+ },
2784
+ {
2785
+ "epoch": 0.03459831610997711,
2786
+ "grad_norm": 1.0234375,
2787
+ "learning_rate": 0.002,
2788
+ "loss": 1.945698618888855,
2789
+ "step": 397
2790
+ },
2791
+ {
2792
+ "epoch": 0.03468546552083347,
2793
+ "grad_norm": 1.0859375,
2794
+ "learning_rate": 0.002,
2795
+ "loss": 1.9908119440078735,
2796
+ "step": 398
2797
+ },
2798
+ {
2799
+ "epoch": 0.034772614931689844,
2800
+ "grad_norm": 1.0,
2801
+ "learning_rate": 0.002,
2802
+ "loss": 2.079252004623413,
2803
+ "step": 399
2804
+ },
2805
+ {
2806
+ "epoch": 0.03485976434254621,
2807
+ "grad_norm": 0.92578125,
2808
+ "learning_rate": 0.002,
2809
+ "loss": 1.9281474351882935,
2810
+ "step": 400
2811
+ },
2812
+ {
2813
+ "epoch": 0.03494691375340257,
2814
+ "grad_norm": 0.94140625,
2815
+ "learning_rate": 0.002,
2816
+ "loss": 1.8578988313674927,
2817
+ "step": 401
2818
+ },
2819
+ {
2820
+ "epoch": 0.03503406316425894,
2821
+ "grad_norm": 0.94921875,
2822
+ "learning_rate": 0.002,
2823
+ "loss": 1.8781170845031738,
2824
+ "step": 402
2825
+ },
2826
+ {
2827
+ "epoch": 0.0351212125751153,
2828
+ "grad_norm": 1.015625,
2829
+ "learning_rate": 0.002,
2830
+ "loss": 1.936561107635498,
2831
+ "step": 403
2832
+ },
2833
+ {
2834
+ "epoch": 0.035208361985971666,
2835
+ "grad_norm": 1.15625,
2836
+ "learning_rate": 0.002,
2837
+ "loss": 2.086552381515503,
2838
+ "step": 404
2839
+ },
2840
+ {
2841
+ "epoch": 0.03529551139682803,
2842
+ "grad_norm": 0.96484375,
2843
+ "learning_rate": 0.002,
2844
+ "loss": 1.947652816772461,
2845
+ "step": 405
2846
+ },
2847
+ {
2848
+ "epoch": 0.0353826608076844,
2849
+ "grad_norm": 1.0625,
2850
+ "learning_rate": 0.002,
2851
+ "loss": 2.0454230308532715,
2852
+ "step": 406
2853
+ },
2854
+ {
2855
+ "epoch": 0.035469810218540766,
2856
+ "grad_norm": 1.0234375,
2857
+ "learning_rate": 0.002,
2858
+ "loss": 1.8672873973846436,
2859
+ "step": 407
2860
+ },
2861
+ {
2862
+ "epoch": 0.03555695962939713,
2863
+ "grad_norm": 1.0859375,
2864
+ "learning_rate": 0.002,
2865
+ "loss": 2.1776187419891357,
2866
+ "step": 408
2867
+ },
2868
+ {
2869
+ "epoch": 0.035644109040253495,
2870
+ "grad_norm": 0.92578125,
2871
+ "learning_rate": 0.002,
2872
+ "loss": 1.873447060585022,
2873
+ "step": 409
2874
+ },
2875
+ {
2876
+ "epoch": 0.03573125845110986,
2877
+ "grad_norm": 0.91796875,
2878
+ "learning_rate": 0.002,
2879
+ "loss": 2.0407629013061523,
2880
+ "step": 410
2881
+ },
2882
+ {
2883
+ "epoch": 0.035818407861966224,
2884
+ "grad_norm": 0.890625,
2885
+ "learning_rate": 0.002,
2886
+ "loss": 2.0063130855560303,
2887
+ "step": 411
2888
+ },
2889
+ {
2890
+ "epoch": 0.035905557272822596,
2891
+ "grad_norm": 0.98046875,
2892
+ "learning_rate": 0.002,
2893
+ "loss": 1.9252933263778687,
2894
+ "step": 412
2895
+ },
2896
+ {
2897
+ "epoch": 0.03599270668367896,
2898
+ "grad_norm": 0.90234375,
2899
+ "learning_rate": 0.002,
2900
+ "loss": 2.0427045822143555,
2901
+ "step": 413
2902
+ },
2903
+ {
2904
+ "epoch": 0.036079856094535324,
2905
+ "grad_norm": 1.0234375,
2906
+ "learning_rate": 0.002,
2907
+ "loss": 1.8753350973129272,
2908
+ "step": 414
2909
+ },
2910
+ {
2911
+ "epoch": 0.03616700550539169,
2912
+ "grad_norm": 0.97265625,
2913
+ "learning_rate": 0.002,
2914
+ "loss": 1.813300609588623,
2915
+ "step": 415
2916
+ },
2917
+ {
2918
+ "epoch": 0.03625415491624805,
2919
+ "grad_norm": 1.0859375,
2920
+ "learning_rate": 0.002,
2921
+ "loss": 1.9801394939422607,
2922
+ "step": 416
2923
+ },
2924
+ {
2925
+ "epoch": 0.03634130432710442,
2926
+ "grad_norm": 1.015625,
2927
+ "learning_rate": 0.002,
2928
+ "loss": 1.8856185674667358,
2929
+ "step": 417
2930
+ },
2931
+ {
2932
+ "epoch": 0.03642845373796078,
2933
+ "grad_norm": 0.94140625,
2934
+ "learning_rate": 0.002,
2935
+ "loss": 1.8563461303710938,
2936
+ "step": 418
2937
+ },
2938
+ {
2939
+ "epoch": 0.036515603148817154,
2940
+ "grad_norm": 0.9375,
2941
+ "learning_rate": 0.002,
2942
+ "loss": 1.8451026678085327,
2943
+ "step": 419
2944
+ },
2945
+ {
2946
+ "epoch": 0.03660275255967352,
2947
+ "grad_norm": 0.85546875,
2948
+ "learning_rate": 0.002,
2949
+ "loss": 1.9298255443572998,
2950
+ "step": 420
2951
+ },
2952
+ {
2953
+ "epoch": 0.03668990197052988,
2954
+ "grad_norm": 0.953125,
2955
+ "learning_rate": 0.002,
2956
+ "loss": 2.0476126670837402,
2957
+ "step": 421
2958
+ },
2959
+ {
2960
+ "epoch": 0.03677705138138625,
2961
+ "grad_norm": 0.90234375,
2962
+ "learning_rate": 0.002,
2963
+ "loss": 1.8805210590362549,
2964
+ "step": 422
2965
+ },
2966
+ {
2967
+ "epoch": 0.03686420079224261,
2968
+ "grad_norm": 1.0234375,
2969
+ "learning_rate": 0.002,
2970
+ "loss": 2.0011842250823975,
2971
+ "step": 423
2972
+ },
2973
+ {
2974
+ "epoch": 0.036951350203098976,
2975
+ "grad_norm": 1.03125,
2976
+ "learning_rate": 0.002,
2977
+ "loss": 1.971643328666687,
2978
+ "step": 424
2979
+ },
2980
+ {
2981
+ "epoch": 0.03703849961395535,
2982
+ "grad_norm": 0.96484375,
2983
+ "learning_rate": 0.002,
2984
+ "loss": 1.9296948909759521,
2985
+ "step": 425
2986
+ },
2987
+ {
2988
+ "epoch": 0.03712564902481171,
2989
+ "grad_norm": 0.953125,
2990
+ "learning_rate": 0.002,
2991
+ "loss": 1.8698842525482178,
2992
+ "step": 426
2993
+ },
2994
+ {
2995
+ "epoch": 0.037212798435668076,
2996
+ "grad_norm": 1.09375,
2997
+ "learning_rate": 0.002,
2998
+ "loss": 2.0018582344055176,
2999
+ "step": 427
3000
+ },
3001
+ {
3002
+ "epoch": 0.03729994784652444,
3003
+ "grad_norm": 1.078125,
3004
+ "learning_rate": 0.002,
3005
+ "loss": 1.9673770666122437,
3006
+ "step": 428
3007
+ },
3008
+ {
3009
+ "epoch": 0.037387097257380805,
3010
+ "grad_norm": 0.94921875,
3011
+ "learning_rate": 0.002,
3012
+ "loss": 1.8905961513519287,
3013
+ "step": 429
3014
+ },
3015
+ {
3016
+ "epoch": 0.03747424666823717,
3017
+ "grad_norm": 1.0546875,
3018
+ "learning_rate": 0.002,
3019
+ "loss": 2.1279525756835938,
3020
+ "step": 430
3021
+ },
3022
+ {
3023
+ "epoch": 0.037561396079093534,
3024
+ "grad_norm": 0.98046875,
3025
+ "learning_rate": 0.002,
3026
+ "loss": 1.9549392461776733,
3027
+ "step": 431
3028
+ },
3029
+ {
3030
+ "epoch": 0.037648545489949906,
3031
+ "grad_norm": 1.078125,
3032
+ "learning_rate": 0.002,
3033
+ "loss": 2.018629789352417,
3034
+ "step": 432
3035
+ },
3036
+ {
3037
+ "epoch": 0.03773569490080627,
3038
+ "grad_norm": 0.95703125,
3039
+ "learning_rate": 0.002,
3040
+ "loss": 2.0507311820983887,
3041
+ "step": 433
3042
+ },
3043
+ {
3044
+ "epoch": 0.037822844311662634,
3045
+ "grad_norm": 0.96875,
3046
+ "learning_rate": 0.002,
3047
+ "loss": 1.8507345914840698,
3048
+ "step": 434
3049
+ },
3050
+ {
3051
+ "epoch": 0.037909993722519,
3052
+ "grad_norm": 0.87109375,
3053
+ "learning_rate": 0.002,
3054
+ "loss": 2.018371105194092,
3055
+ "step": 435
3056
+ },
3057
+ {
3058
+ "epoch": 0.03799714313337536,
3059
+ "grad_norm": 0.875,
3060
+ "learning_rate": 0.002,
3061
+ "loss": 1.9152356386184692,
3062
+ "step": 436
3063
+ },
3064
+ {
3065
+ "epoch": 0.03808429254423173,
3066
+ "grad_norm": 1.0078125,
3067
+ "learning_rate": 0.002,
3068
+ "loss": 2.01894474029541,
3069
+ "step": 437
3070
+ },
3071
+ {
3072
+ "epoch": 0.03817144195508809,
3073
+ "grad_norm": 1.0,
3074
+ "learning_rate": 0.002,
3075
+ "loss": 1.9083776473999023,
3076
+ "step": 438
3077
+ },
3078
+ {
3079
+ "epoch": 0.038258591365944464,
3080
+ "grad_norm": 0.9921875,
3081
+ "learning_rate": 0.002,
3082
+ "loss": 1.8658249378204346,
3083
+ "step": 439
3084
+ },
3085
+ {
3086
+ "epoch": 0.03834574077680083,
3087
+ "grad_norm": 0.96875,
3088
+ "learning_rate": 0.002,
3089
+ "loss": 1.910384178161621,
3090
+ "step": 440
3091
+ },
3092
+ {
3093
+ "epoch": 0.03843289018765719,
3094
+ "grad_norm": 0.92578125,
3095
+ "learning_rate": 0.002,
3096
+ "loss": 1.9150588512420654,
3097
+ "step": 441
3098
+ },
3099
+ {
3100
+ "epoch": 0.03852003959851356,
3101
+ "grad_norm": 0.96484375,
3102
+ "learning_rate": 0.002,
3103
+ "loss": 1.8923720121383667,
3104
+ "step": 442
3105
+ },
3106
+ {
3107
+ "epoch": 0.03860718900936992,
3108
+ "grad_norm": 0.9453125,
3109
+ "learning_rate": 0.002,
3110
+ "loss": 2.0249733924865723,
3111
+ "step": 443
3112
+ },
3113
+ {
3114
+ "epoch": 0.038694338420226286,
3115
+ "grad_norm": 1.0078125,
3116
+ "learning_rate": 0.002,
3117
+ "loss": 1.897134780883789,
3118
+ "step": 444
3119
+ },
3120
+ {
3121
+ "epoch": 0.03878148783108266,
3122
+ "grad_norm": 0.984375,
3123
+ "learning_rate": 0.002,
3124
+ "loss": 1.9412795305252075,
3125
+ "step": 445
3126
+ },
3127
+ {
3128
+ "epoch": 0.03886863724193902,
3129
+ "grad_norm": 0.91796875,
3130
+ "learning_rate": 0.002,
3131
+ "loss": 1.893125295639038,
3132
+ "step": 446
3133
+ },
3134
+ {
3135
+ "epoch": 0.038955786652795386,
3136
+ "grad_norm": 0.94140625,
3137
+ "learning_rate": 0.002,
3138
+ "loss": 1.9204654693603516,
3139
+ "step": 447
3140
+ },
3141
+ {
3142
+ "epoch": 0.03904293606365175,
3143
+ "grad_norm": 0.9609375,
3144
+ "learning_rate": 0.002,
3145
+ "loss": 1.9805623292922974,
3146
+ "step": 448
3147
+ },
3148
+ {
3149
+ "epoch": 0.039130085474508115,
3150
+ "grad_norm": 0.9375,
3151
+ "learning_rate": 0.002,
3152
+ "loss": 1.8250699043273926,
3153
+ "step": 449
3154
+ },
3155
+ {
3156
+ "epoch": 0.03921723488536448,
3157
+ "grad_norm": 0.92578125,
3158
+ "learning_rate": 0.002,
3159
+ "loss": 1.8739783763885498,
3160
+ "step": 450
3161
+ },
3162
+ {
3163
+ "epoch": 0.039304384296220844,
3164
+ "grad_norm": 0.88671875,
3165
+ "learning_rate": 0.002,
3166
+ "loss": 1.8047534227371216,
3167
+ "step": 451
3168
+ },
3169
+ {
3170
+ "epoch": 0.039391533707077216,
3171
+ "grad_norm": 1.015625,
3172
+ "learning_rate": 0.002,
3173
+ "loss": 1.983681321144104,
3174
+ "step": 452
3175
+ },
3176
+ {
3177
+ "epoch": 0.03947868311793358,
3178
+ "grad_norm": 0.93359375,
3179
+ "learning_rate": 0.002,
3180
+ "loss": 2.0652642250061035,
3181
+ "step": 453
3182
+ },
3183
+ {
3184
+ "epoch": 0.039565832528789945,
3185
+ "grad_norm": 0.99609375,
3186
+ "learning_rate": 0.002,
3187
+ "loss": 1.9812188148498535,
3188
+ "step": 454
3189
+ },
3190
+ {
3191
+ "epoch": 0.03965298193964631,
3192
+ "grad_norm": 0.96875,
3193
+ "learning_rate": 0.002,
3194
+ "loss": 1.8507156372070312,
3195
+ "step": 455
3196
+ },
3197
+ {
3198
+ "epoch": 0.039740131350502673,
3199
+ "grad_norm": 0.9921875,
3200
+ "learning_rate": 0.002,
3201
+ "loss": 2.0216448307037354,
3202
+ "step": 456
3203
+ },
3204
+ {
3205
+ "epoch": 0.03982728076135904,
3206
+ "grad_norm": 1.0078125,
3207
+ "learning_rate": 0.002,
3208
+ "loss": 1.928618311882019,
3209
+ "step": 457
3210
+ },
3211
+ {
3212
+ "epoch": 0.03991443017221541,
3213
+ "grad_norm": 0.93359375,
3214
+ "learning_rate": 0.002,
3215
+ "loss": 1.8563501834869385,
3216
+ "step": 458
3217
+ },
3218
+ {
3219
+ "epoch": 0.040001579583071774,
3220
+ "grad_norm": 0.9765625,
3221
+ "learning_rate": 0.002,
3222
+ "loss": 2.0219364166259766,
3223
+ "step": 459
3224
+ },
3225
+ {
3226
+ "epoch": 0.04008872899392814,
3227
+ "grad_norm": 1.0078125,
3228
+ "learning_rate": 0.002,
3229
+ "loss": 1.9423730373382568,
3230
+ "step": 460
3231
+ },
3232
+ {
3233
+ "epoch": 0.0401758784047845,
3234
+ "grad_norm": 0.87109375,
3235
+ "learning_rate": 0.002,
3236
+ "loss": 1.7398076057434082,
3237
+ "step": 461
3238
+ },
3239
+ {
3240
+ "epoch": 0.04026302781564087,
3241
+ "grad_norm": 0.875,
3242
+ "learning_rate": 0.002,
3243
+ "loss": 1.946607232093811,
3244
+ "step": 462
3245
+ },
3246
+ {
3247
+ "epoch": 0.04035017722649723,
3248
+ "grad_norm": 0.8359375,
3249
+ "learning_rate": 0.002,
3250
+ "loss": 1.8465126752853394,
3251
+ "step": 463
3252
+ },
3253
+ {
3254
+ "epoch": 0.040437326637353596,
3255
+ "grad_norm": 0.91015625,
3256
+ "learning_rate": 0.002,
3257
+ "loss": 1.9049490690231323,
3258
+ "step": 464
3259
+ },
3260
+ {
3261
+ "epoch": 0.04052447604820997,
3262
+ "grad_norm": 0.87109375,
3263
+ "learning_rate": 0.002,
3264
+ "loss": 1.9343353509902954,
3265
+ "step": 465
3266
+ },
3267
+ {
3268
+ "epoch": 0.04061162545906633,
3269
+ "grad_norm": 1.03125,
3270
+ "learning_rate": 0.002,
3271
+ "loss": 1.88978910446167,
3272
+ "step": 466
3273
+ },
3274
+ {
3275
+ "epoch": 0.040698774869922696,
3276
+ "grad_norm": 0.88671875,
3277
+ "learning_rate": 0.002,
3278
+ "loss": 1.9816972017288208,
3279
+ "step": 467
3280
+ },
3281
+ {
3282
+ "epoch": 0.04078592428077906,
3283
+ "grad_norm": 0.9765625,
3284
+ "learning_rate": 0.002,
3285
+ "loss": 1.866693377494812,
3286
+ "step": 468
3287
+ },
3288
+ {
3289
+ "epoch": 0.040873073691635425,
3290
+ "grad_norm": 0.875,
3291
+ "learning_rate": 0.002,
3292
+ "loss": 1.8631305694580078,
3293
+ "step": 469
3294
+ },
3295
+ {
3296
+ "epoch": 0.04096022310249179,
3297
+ "grad_norm": 1.09375,
3298
+ "learning_rate": 0.002,
3299
+ "loss": 1.9814085960388184,
3300
+ "step": 470
3301
+ },
3302
+ {
3303
+ "epoch": 0.04104737251334816,
3304
+ "grad_norm": 0.9296875,
3305
+ "learning_rate": 0.002,
3306
+ "loss": 1.952948808670044,
3307
+ "step": 471
3308
+ },
3309
+ {
3310
+ "epoch": 0.041134521924204526,
3311
+ "grad_norm": 0.93359375,
3312
+ "learning_rate": 0.002,
3313
+ "loss": 1.7778507471084595,
3314
+ "step": 472
3315
+ },
3316
+ {
3317
+ "epoch": 0.04122167133506089,
3318
+ "grad_norm": 0.87109375,
3319
+ "learning_rate": 0.002,
3320
+ "loss": 1.9396259784698486,
3321
+ "step": 473
3322
+ },
3323
+ {
3324
+ "epoch": 0.041308820745917255,
3325
+ "grad_norm": 0.87890625,
3326
+ "learning_rate": 0.002,
3327
+ "loss": 1.774814486503601,
3328
+ "step": 474
3329
+ },
3330
+ {
3331
+ "epoch": 0.04139597015677362,
3332
+ "grad_norm": 0.9453125,
3333
+ "learning_rate": 0.002,
3334
+ "loss": 1.9689006805419922,
3335
+ "step": 475
3336
+ },
3337
+ {
3338
+ "epoch": 0.041483119567629984,
3339
+ "grad_norm": 0.98046875,
3340
+ "learning_rate": 0.002,
3341
+ "loss": 1.9724104404449463,
3342
+ "step": 476
3343
+ },
3344
+ {
3345
+ "epoch": 0.04157026897848635,
3346
+ "grad_norm": 0.95703125,
3347
+ "learning_rate": 0.002,
3348
+ "loss": 1.9812343120574951,
3349
+ "step": 477
3350
+ },
3351
+ {
3352
+ "epoch": 0.04165741838934272,
3353
+ "grad_norm": 1.5546875,
3354
+ "learning_rate": 0.002,
3355
+ "loss": 2.028676986694336,
3356
+ "step": 478
3357
+ },
3358
+ {
3359
+ "epoch": 0.041744567800199084,
3360
+ "grad_norm": 0.984375,
3361
+ "learning_rate": 0.002,
3362
+ "loss": 1.8658119440078735,
3363
+ "step": 479
3364
+ },
3365
+ {
3366
+ "epoch": 0.04183171721105545,
3367
+ "grad_norm": 0.9765625,
3368
+ "learning_rate": 0.002,
3369
+ "loss": 1.9101450443267822,
3370
+ "step": 480
3371
+ },
3372
+ {
3373
+ "epoch": 0.04191886662191181,
3374
+ "grad_norm": 1.0234375,
3375
+ "learning_rate": 0.002,
3376
+ "loss": 2.0230343341827393,
3377
+ "step": 481
3378
+ },
3379
+ {
3380
+ "epoch": 0.04200601603276818,
3381
+ "grad_norm": 0.890625,
3382
+ "learning_rate": 0.002,
3383
+ "loss": 1.901646375656128,
3384
+ "step": 482
3385
+ },
3386
+ {
3387
+ "epoch": 0.04209316544362454,
3388
+ "grad_norm": 0.96875,
3389
+ "learning_rate": 0.002,
3390
+ "loss": 1.91860032081604,
3391
+ "step": 483
3392
+ },
3393
+ {
3394
+ "epoch": 0.042180314854480906,
3395
+ "grad_norm": 0.953125,
3396
+ "learning_rate": 0.002,
3397
+ "loss": 1.8415836095809937,
3398
+ "step": 484
3399
+ },
3400
+ {
3401
+ "epoch": 0.04226746426533728,
3402
+ "grad_norm": 0.9921875,
3403
+ "learning_rate": 0.002,
3404
+ "loss": 1.9032201766967773,
3405
+ "step": 485
3406
+ },
3407
+ {
3408
+ "epoch": 0.04235461367619364,
3409
+ "grad_norm": 0.98046875,
3410
+ "learning_rate": 0.002,
3411
+ "loss": 1.857143759727478,
3412
+ "step": 486
3413
+ },
3414
+ {
3415
+ "epoch": 0.042441763087050006,
3416
+ "grad_norm": 0.8359375,
3417
+ "learning_rate": 0.002,
3418
+ "loss": 1.6680635213851929,
3419
+ "step": 487
3420
+ },
3421
+ {
3422
+ "epoch": 0.04252891249790637,
3423
+ "grad_norm": 0.890625,
3424
+ "learning_rate": 0.002,
3425
+ "loss": 1.8327181339263916,
3426
+ "step": 488
3427
+ },
3428
+ {
3429
+ "epoch": 0.042616061908762735,
3430
+ "grad_norm": 0.9921875,
3431
+ "learning_rate": 0.002,
3432
+ "loss": 1.9679945707321167,
3433
+ "step": 489
3434
+ },
3435
+ {
3436
+ "epoch": 0.0427032113196191,
3437
+ "grad_norm": 1.046875,
3438
+ "learning_rate": 0.002,
3439
+ "loss": 1.956008791923523,
3440
+ "step": 490
3441
+ },
3442
+ {
3443
+ "epoch": 0.04279036073047547,
3444
+ "grad_norm": 0.99609375,
3445
+ "learning_rate": 0.002,
3446
+ "loss": 1.87904953956604,
3447
+ "step": 491
3448
+ },
3449
+ {
3450
+ "epoch": 0.042877510141331836,
3451
+ "grad_norm": 0.921875,
3452
+ "learning_rate": 0.002,
3453
+ "loss": 1.9231213331222534,
3454
+ "step": 492
3455
+ },
3456
+ {
3457
+ "epoch": 0.0429646595521882,
3458
+ "grad_norm": 1.2109375,
3459
+ "learning_rate": 0.002,
3460
+ "loss": 1.965065836906433,
3461
+ "step": 493
3462
+ },
3463
+ {
3464
+ "epoch": 0.043051808963044565,
3465
+ "grad_norm": 0.9453125,
3466
+ "learning_rate": 0.002,
3467
+ "loss": 1.9918681383132935,
3468
+ "step": 494
3469
+ },
3470
+ {
3471
+ "epoch": 0.04313895837390093,
3472
+ "grad_norm": 0.97265625,
3473
+ "learning_rate": 0.002,
3474
+ "loss": 1.8851016759872437,
3475
+ "step": 495
3476
+ },
3477
+ {
3478
+ "epoch": 0.043226107784757294,
3479
+ "grad_norm": 0.92578125,
3480
+ "learning_rate": 0.002,
3481
+ "loss": 1.8246723413467407,
3482
+ "step": 496
3483
+ },
3484
+ {
3485
+ "epoch": 0.04331325719561366,
3486
+ "grad_norm": 0.91796875,
3487
+ "learning_rate": 0.002,
3488
+ "loss": 1.8631030321121216,
3489
+ "step": 497
3490
+ },
3491
+ {
3492
+ "epoch": 0.04340040660647003,
3493
+ "grad_norm": 0.94921875,
3494
+ "learning_rate": 0.002,
3495
+ "loss": 1.9828230142593384,
3496
+ "step": 498
3497
+ },
3498
+ {
3499
+ "epoch": 0.043487556017326394,
3500
+ "grad_norm": 1.015625,
3501
+ "learning_rate": 0.002,
3502
+ "loss": 1.9444931745529175,
3503
+ "step": 499
3504
+ },
3505
+ {
3506
+ "epoch": 0.04357470542818276,
3507
+ "grad_norm": 1.0078125,
3508
+ "learning_rate": 0.002,
3509
+ "loss": 1.9800543785095215,
3510
+ "step": 500
3511
+ }
3512
+ ],
3513
+ "logging_steps": 1,
3514
+ "max_steps": 12049,
3515
+ "num_input_tokens_seen": 0,
3516
+ "num_train_epochs": 2,
3517
+ "save_steps": 500,
3518
+ "stateful_callbacks": {
3519
+ "TrainerControl": {
3520
+ "args": {
3521
+ "should_epoch_stop": false,
3522
+ "should_evaluate": false,
3523
+ "should_log": false,
3524
+ "should_save": true,
3525
+ "should_training_stop": false
3526
+ },
3527
+ "attributes": {}
3528
+ }
3529
+ },
3530
+ "total_flos": 1.8551763601680355e+17,
3531
+ "train_batch_size": 1,
3532
+ "trial_name": null,
3533
+ "trial_params": null
3534
+ }
last-checkpoint/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acf04464caccee8e76e5e2200736032322398960e516d6237e49519cfb58664e
3
+ size 5777