melhoushi commited on
Commit
b9f4d6f
·
verified ·
1 Parent(s): c1cbcaf

Phase-1 LR=1e-5 Jacobi Forcing Coder checkpoint at step 5000 (normalized)

Browse files
added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "eos_token_id": 151645,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 3584,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 18944,
12
+ "layer_types": [
13
+ "full_attention",
14
+ "full_attention",
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention"
41
+ ],
42
+ "max_position_embeddings": 32768,
43
+ "max_window_layers": 28,
44
+ "model_type": "qwen2",
45
+ "num_attention_heads": 28,
46
+ "num_hidden_layers": 28,
47
+ "num_key_value_heads": 4,
48
+ "rms_norm_eps": 1e-06,
49
+ "rope_scaling": null,
50
+ "rope_theta": 1000000.0,
51
+ "sliding_window": null,
52
+ "tie_word_embeddings": false,
53
+ "torch_dtype": "bfloat16",
54
+ "transformers_version": "4.53.0",
55
+ "use_cache": false,
56
+ "use_sliding_window": false,
57
+ "vocab_size": 152064
58
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "repetition_penalty": 1.1,
10
+ "temperature": 0.7,
11
+ "top_k": 20,
12
+ "top_p": 0.8,
13
+ "transformers_version": "4.53.0"
14
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b59ac4f41f2776f6a6930b1781789ab92d3a8119900206f232ef6546bd3df3aa
3
+ size 4877660776
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4b52c46ae0e71f602500e86c9f3eb9152c204fa2b86fc39c906f75c57cb57fe
3
+ size 4932751008
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2072ba1adefba819ef9f1796d282f1d8e517021ae8521bff55ef79c8a4fd3270
3
+ size 4330865200
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:235e66990ab43ca9cfc0958870adb17cdb0b02987fb836a6f683e647100b4f6b
3
+ size 1089994880
model.safetensors.index.json ADDED
@@ -0,0 +1,347 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 7615616512,
4
+ "total_size": 15231233024
5
+ },
6
+ "weight_map": {
7
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
17
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
18
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
25
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
26
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
27
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
28
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
29
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
30
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
31
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
32
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
33
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
34
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
35
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
36
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
37
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
38
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
39
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
40
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
41
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
42
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
43
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
44
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
45
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
46
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
47
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
48
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
49
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
50
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
51
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
52
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
53
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
54
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
55
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
56
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
57
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
58
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
59
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
60
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
61
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
62
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
63
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
64
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
65
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
66
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
67
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
68
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
69
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
70
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
71
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
72
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
73
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
74
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
75
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
76
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
77
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
78
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
79
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
80
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
81
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
82
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
83
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
84
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
85
+ "model.layers.6.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
86
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
87
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
88
+ "model.layers.6.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
89
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
90
+ "model.layers.6.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
91
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
92
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
93
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
94
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
95
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
96
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
97
+ "model.layers.7.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
98
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
99
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
100
+ "model.layers.7.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
101
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
102
+ "model.layers.7.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
103
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
104
+ "model.layers.8.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
105
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
106
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
107
+ "model.layers.8.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
108
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
109
+ "model.layers.8.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
110
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
111
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
112
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
113
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
114
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
115
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
116
+ "model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
117
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
118
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
119
+ "model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
120
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
121
+ "model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
122
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
123
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
124
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
125
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
126
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
127
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
128
+ "model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
129
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
130
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
131
+ "model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
132
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
133
+ "model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
134
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
135
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
136
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
137
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
138
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
139
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
140
+ "model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
141
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
142
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
143
+ "model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
144
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
145
+ "model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
146
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
147
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
148
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
149
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
150
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
151
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
152
+ "model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
153
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
154
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
155
+ "model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
156
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
157
+ "model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
158
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
159
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
160
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
161
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
162
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
163
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
164
+ "model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
165
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
166
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
167
+ "model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
168
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
169
+ "model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
170
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
171
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
172
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
173
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
174
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
175
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
176
+ "model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
177
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
178
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
179
+ "model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
180
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
181
+ "model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
182
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
183
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
184
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
185
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
186
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
187
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
188
+ "model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
189
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
190
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
191
+ "model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
192
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
193
+ "model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
194
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
195
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
196
+ "model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
197
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
198
+ "model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
199
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
200
+ "model.layers.17.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
201
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
202
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
203
+ "model.layers.17.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
204
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
205
+ "model.layers.17.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
206
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
207
+ "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
208
+ "model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
209
+ "model.layers.18.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
210
+ "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
211
+ "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
212
+ "model.layers.18.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
213
+ "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
214
+ "model.layers.18.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
215
+ "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
216
+ "model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
217
+ "model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
218
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
219
+ "model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
220
+ "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
221
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
222
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
223
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
224
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
225
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
226
+ "model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
227
+ "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
228
+ "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
229
+ "model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
230
+ "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
231
+ "model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
232
+ "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
233
+ "model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
234
+ "model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
235
+ "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
236
+ "model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
237
+ "model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
238
+ "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
239
+ "model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
240
+ "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
241
+ "model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
242
+ "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
243
+ "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
244
+ "model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
245
+ "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
246
+ "model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
247
+ "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
248
+ "model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
249
+ "model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
250
+ "model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
251
+ "model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
252
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
253
+ "model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
254
+ "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
255
+ "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
256
+ "model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
257
+ "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
258
+ "model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
259
+ "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
260
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
261
+ "model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
262
+ "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
263
+ "model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
264
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
265
+ "model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
266
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
267
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
268
+ "model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
269
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
270
+ "model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
271
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
272
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
273
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
274
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
275
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
276
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
277
+ "model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
278
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
279
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
280
+ "model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
281
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
282
+ "model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
283
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
284
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
285
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
286
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
287
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
288
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
289
+ "model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
290
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
291
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
292
+ "model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
293
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
294
+ "model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
295
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
296
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
297
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
298
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
299
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
300
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
301
+ "model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
302
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
303
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
304
+ "model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
305
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
306
+ "model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
307
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
308
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
309
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
310
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
311
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
312
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
313
+ "model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
314
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
315
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
316
+ "model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
317
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
318
+ "model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
319
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
320
+ "model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
321
+ "model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
322
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
323
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
324
+ "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
325
+ "model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
326
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
327
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
328
+ "model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
329
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
330
+ "model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
331
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
332
+ "model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
333
+ "model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
334
+ "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
335
+ "model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
336
+ "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
337
+ "model.layers.27.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
338
+ "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
339
+ "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
340
+ "model.layers.27.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
341
+ "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
342
+ "model.layers.27.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
343
+ "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
344
+ "model.norm.weight": "model-00003-of-00004.safetensors",
345
+ "lm_head.weight": "model-00004-of-00004.safetensors"
346
+ }
347
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "clean_up_tokenization_spaces": false,
199
+ "eos_token": "<|im_end|>",
200
+ "errors": "replace",
201
+ "extra_special_tokens": {},
202
+ "model_max_length": 32768,
203
+ "pad_token": "<|endoftext|>",
204
+ "padding_side": "right",
205
+ "split_special_tokens": false,
206
+ "tokenizer_class": "Qwen2Tokenizer",
207
+ "unk_token": null
208
+ }
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.5,
6
+ "eval_steps": 500,
7
+ "global_step": 5000,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.001,
14
+ "grad_norm": 43.0,
15
+ "learning_rate": 1.0000000000000001e-07,
16
+ "loss": 7.7331,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.002,
21
+ "grad_norm": 30.625,
22
+ "learning_rate": 2.1111111111111113e-07,
23
+ "loss": 7.9552,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.003,
28
+ "grad_norm": 42.75,
29
+ "learning_rate": 3.2222222222222227e-07,
30
+ "loss": 8.0874,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.004,
35
+ "grad_norm": 36.75,
36
+ "learning_rate": 4.333333333333334e-07,
37
+ "loss": 7.5538,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.005,
42
+ "grad_norm": 38.5,
43
+ "learning_rate": 5.444444444444444e-07,
44
+ "loss": 8.5221,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.006,
49
+ "grad_norm": 42.0,
50
+ "learning_rate": 6.555555555555556e-07,
51
+ "loss": 8.0865,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.007,
56
+ "grad_norm": 51.0,
57
+ "learning_rate": 7.666666666666667e-07,
58
+ "loss": 8.0441,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.008,
63
+ "grad_norm": 41.25,
64
+ "learning_rate": 8.777777777777778e-07,
65
+ "loss": 7.8363,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.009,
70
+ "grad_norm": 47.75,
71
+ "learning_rate": 9.88888888888889e-07,
72
+ "loss": 8.0084,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.01,
77
+ "grad_norm": 42.5,
78
+ "learning_rate": 1.1e-06,
79
+ "loss": 7.6296,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.011,
84
+ "grad_norm": 33.75,
85
+ "learning_rate": 1.2111111111111111e-06,
86
+ "loss": 7.2967,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.012,
91
+ "grad_norm": 35.25,
92
+ "learning_rate": 1.3222222222222222e-06,
93
+ "loss": 7.1319,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.013,
98
+ "grad_norm": 50.25,
99
+ "learning_rate": 1.4333333333333335e-06,
100
+ "loss": 7.5432,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.014,
105
+ "grad_norm": 39.75,
106
+ "learning_rate": 1.5444444444444446e-06,
107
+ "loss": 7.4151,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.015,
112
+ "grad_norm": 27.75,
113
+ "learning_rate": 1.6555555555555559e-06,
114
+ "loss": 6.7109,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 0.016,
119
+ "grad_norm": 35.75,
120
+ "learning_rate": 1.7666666666666668e-06,
121
+ "loss": 5.9371,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 0.017,
126
+ "grad_norm": 30.625,
127
+ "learning_rate": 1.8777777777777778e-06,
128
+ "loss": 6.5138,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 0.018,
133
+ "grad_norm": 40.5,
134
+ "learning_rate": 1.988888888888889e-06,
135
+ "loss": 6.038,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 0.019,
140
+ "grad_norm": 31.875,
141
+ "learning_rate": 2.1000000000000002e-06,
142
+ "loss": 6.0491,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 0.02,
147
+ "grad_norm": 30.125,
148
+ "learning_rate": 2.2111111111111113e-06,
149
+ "loss": 5.8265,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 0.021,
154
+ "grad_norm": 34.25,
155
+ "learning_rate": 2.3222222222222224e-06,
156
+ "loss": 5.4501,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 0.022,
161
+ "grad_norm": 27.625,
162
+ "learning_rate": 2.4333333333333335e-06,
163
+ "loss": 5.9894,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 0.023,
168
+ "grad_norm": 26.0,
169
+ "learning_rate": 2.5444444444444446e-06,
170
+ "loss": 5.3144,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 0.024,
175
+ "grad_norm": 24.125,
176
+ "learning_rate": 2.6555555555555556e-06,
177
+ "loss": 5.4183,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 0.025,
182
+ "grad_norm": 24.75,
183
+ "learning_rate": 2.766666666666667e-06,
184
+ "loss": 5.2284,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 0.026,
189
+ "grad_norm": 25.25,
190
+ "learning_rate": 2.8777777777777782e-06,
191
+ "loss": 4.6897,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 0.027,
196
+ "grad_norm": 25.75,
197
+ "learning_rate": 2.988888888888889e-06,
198
+ "loss": 5.0752,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 0.028,
203
+ "grad_norm": 21.75,
204
+ "learning_rate": 3.1000000000000004e-06,
205
+ "loss": 4.7286,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 0.029,
210
+ "grad_norm": 26.625,
211
+ "learning_rate": 3.2111111111111115e-06,
212
+ "loss": 4.9517,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 0.03,
217
+ "grad_norm": 24.375,
218
+ "learning_rate": 3.322222222222222e-06,
219
+ "loss": 4.7127,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 0.031,
224
+ "grad_norm": 17.625,
225
+ "learning_rate": 3.4333333333333336e-06,
226
+ "loss": 4.3605,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 0.032,
231
+ "grad_norm": 20.5,
232
+ "learning_rate": 3.5444444444444447e-06,
233
+ "loss": 4.7058,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 0.033,
238
+ "grad_norm": 26.125,
239
+ "learning_rate": 3.6555555555555562e-06,
240
+ "loss": 4.3845,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 0.034,
245
+ "grad_norm": 20.25,
246
+ "learning_rate": 3.766666666666667e-06,
247
+ "loss": 4.045,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 0.035,
252
+ "grad_norm": 19.375,
253
+ "learning_rate": 3.877777777777778e-06,
254
+ "loss": 4.3713,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 0.036,
259
+ "grad_norm": 26.875,
260
+ "learning_rate": 3.9888888888888895e-06,
261
+ "loss": 4.391,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 0.037,
266
+ "grad_norm": 24.0,
267
+ "learning_rate": 4.1e-06,
268
+ "loss": 4.327,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 0.038,
273
+ "grad_norm": 21.5,
274
+ "learning_rate": 4.211111111111112e-06,
275
+ "loss": 4.0787,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 0.039,
280
+ "grad_norm": 18.0,
281
+ "learning_rate": 4.322222222222223e-06,
282
+ "loss": 3.9586,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 0.04,
287
+ "grad_norm": 28.875,
288
+ "learning_rate": 4.433333333333334e-06,
289
+ "loss": 4.112,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 0.041,
294
+ "grad_norm": 21.375,
295
+ "learning_rate": 4.544444444444445e-06,
296
+ "loss": 3.7625,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 0.042,
301
+ "grad_norm": 21.125,
302
+ "learning_rate": 4.655555555555556e-06,
303
+ "loss": 3.6063,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 0.043,
308
+ "grad_norm": 19.625,
309
+ "learning_rate": 4.766666666666667e-06,
310
+ "loss": 3.8684,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 0.044,
315
+ "grad_norm": 18.75,
316
+ "learning_rate": 4.877777777777778e-06,
317
+ "loss": 3.3533,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 0.045,
322
+ "grad_norm": 22.5,
323
+ "learning_rate": 4.988888888888889e-06,
324
+ "loss": 3.403,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 0.046,
329
+ "grad_norm": 20.0,
330
+ "learning_rate": 5.1e-06,
331
+ "loss": 3.3105,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 0.047,
336
+ "grad_norm": 17.375,
337
+ "learning_rate": 5.211111111111111e-06,
338
+ "loss": 3.573,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 0.048,
343
+ "grad_norm": 21.25,
344
+ "learning_rate": 5.322222222222223e-06,
345
+ "loss": 3.3262,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 0.049,
350
+ "grad_norm": 25.625,
351
+ "learning_rate": 5.4333333333333335e-06,
352
+ "loss": 3.1476,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 0.05,
357
+ "grad_norm": 20.875,
358
+ "learning_rate": 5.544444444444445e-06,
359
+ "loss": 3.3898,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 0.051,
364
+ "grad_norm": 26.125,
365
+ "learning_rate": 5.6555555555555566e-06,
366
+ "loss": 3.5781,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 0.052,
371
+ "grad_norm": 21.5,
372
+ "learning_rate": 5.766666666666667e-06,
373
+ "loss": 3.4613,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 0.053,
378
+ "grad_norm": 20.5,
379
+ "learning_rate": 5.877777777777778e-06,
380
+ "loss": 3.1643,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 0.054,
385
+ "grad_norm": 19.75,
386
+ "learning_rate": 5.98888888888889e-06,
387
+ "loss": 3.7729,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 0.055,
392
+ "grad_norm": 21.875,
393
+ "learning_rate": 6.1e-06,
394
+ "loss": 3.3309,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 0.056,
399
+ "grad_norm": 20.0,
400
+ "learning_rate": 6.211111111111111e-06,
401
+ "loss": 3.4296,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 0.057,
406
+ "grad_norm": 20.5,
407
+ "learning_rate": 6.322222222222223e-06,
408
+ "loss": 3.3118,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 0.058,
413
+ "grad_norm": 19.375,
414
+ "learning_rate": 6.433333333333333e-06,
415
+ "loss": 3.2141,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 0.059,
420
+ "grad_norm": 24.875,
421
+ "learning_rate": 6.544444444444445e-06,
422
+ "loss": 3.2603,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 0.06,
427
+ "grad_norm": 18.75,
428
+ "learning_rate": 6.655555555555556e-06,
429
+ "loss": 2.9433,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 0.061,
434
+ "grad_norm": 19.625,
435
+ "learning_rate": 6.7666666666666665e-06,
436
+ "loss": 3.2694,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 0.062,
441
+ "grad_norm": 22.375,
442
+ "learning_rate": 6.8777777777777785e-06,
443
+ "loss": 3.228,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 0.063,
448
+ "grad_norm": 19.125,
449
+ "learning_rate": 6.9888888888888895e-06,
450
+ "loss": 3.28,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 0.064,
455
+ "grad_norm": 17.625,
456
+ "learning_rate": 7.100000000000001e-06,
457
+ "loss": 2.9169,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 0.065,
462
+ "grad_norm": 22.5,
463
+ "learning_rate": 7.211111111111112e-06,
464
+ "loss": 3.0098,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 0.066,
469
+ "grad_norm": 22.375,
470
+ "learning_rate": 7.322222222222223e-06,
471
+ "loss": 2.866,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 0.067,
476
+ "grad_norm": 23.25,
477
+ "learning_rate": 7.433333333333334e-06,
478
+ "loss": 3.1667,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 0.068,
483
+ "grad_norm": 19.5,
484
+ "learning_rate": 7.544444444444445e-06,
485
+ "loss": 3.1545,
486
+ "step": 680
487
+ },
488
+ {
489
+ "epoch": 0.069,
490
+ "grad_norm": 18.875,
491
+ "learning_rate": 7.655555555555556e-06,
492
+ "loss": 2.9292,
493
+ "step": 690
494
+ },
495
+ {
496
+ "epoch": 0.07,
497
+ "grad_norm": 22.125,
498
+ "learning_rate": 7.766666666666666e-06,
499
+ "loss": 3.212,
500
+ "step": 700
501
+ },
502
+ {
503
+ "epoch": 0.071,
504
+ "grad_norm": 21.375,
505
+ "learning_rate": 7.877777777777778e-06,
506
+ "loss": 2.9498,
507
+ "step": 710
508
+ },
509
+ {
510
+ "epoch": 0.072,
511
+ "grad_norm": 19.875,
512
+ "learning_rate": 7.98888888888889e-06,
513
+ "loss": 3.0016,
514
+ "step": 720
515
+ },
516
+ {
517
+ "epoch": 0.073,
518
+ "grad_norm": 20.625,
519
+ "learning_rate": 8.1e-06,
520
+ "loss": 3.0745,
521
+ "step": 730
522
+ },
523
+ {
524
+ "epoch": 0.074,
525
+ "grad_norm": 22.75,
526
+ "learning_rate": 8.211111111111112e-06,
527
+ "loss": 3.0406,
528
+ "step": 740
529
+ },
530
+ {
531
+ "epoch": 0.075,
532
+ "grad_norm": 21.0,
533
+ "learning_rate": 8.322222222222223e-06,
534
+ "loss": 3.2412,
535
+ "step": 750
536
+ },
537
+ {
538
+ "epoch": 0.076,
539
+ "grad_norm": 19.125,
540
+ "learning_rate": 8.433333333333334e-06,
541
+ "loss": 2.8193,
542
+ "step": 760
543
+ },
544
+ {
545
+ "epoch": 0.077,
546
+ "grad_norm": 20.625,
547
+ "learning_rate": 8.544444444444445e-06,
548
+ "loss": 3.1971,
549
+ "step": 770
550
+ },
551
+ {
552
+ "epoch": 0.078,
553
+ "grad_norm": 22.375,
554
+ "learning_rate": 8.655555555555557e-06,
555
+ "loss": 2.8541,
556
+ "step": 780
557
+ },
558
+ {
559
+ "epoch": 0.079,
560
+ "grad_norm": 18.0,
561
+ "learning_rate": 8.766666666666669e-06,
562
+ "loss": 2.7302,
563
+ "step": 790
564
+ },
565
+ {
566
+ "epoch": 0.08,
567
+ "grad_norm": 20.375,
568
+ "learning_rate": 8.877777777777779e-06,
569
+ "loss": 2.6119,
570
+ "step": 800
571
+ },
572
+ {
573
+ "epoch": 0.081,
574
+ "grad_norm": 25.375,
575
+ "learning_rate": 8.988888888888889e-06,
576
+ "loss": 3.0592,
577
+ "step": 810
578
+ },
579
+ {
580
+ "epoch": 0.082,
581
+ "grad_norm": 19.625,
582
+ "learning_rate": 9.100000000000001e-06,
583
+ "loss": 2.9597,
584
+ "step": 820
585
+ },
586
+ {
587
+ "epoch": 0.083,
588
+ "grad_norm": 19.875,
589
+ "learning_rate": 9.211111111111111e-06,
590
+ "loss": 2.8639,
591
+ "step": 830
592
+ },
593
+ {
594
+ "epoch": 0.084,
595
+ "grad_norm": 22.75,
596
+ "learning_rate": 9.322222222222223e-06,
597
+ "loss": 2.9534,
598
+ "step": 840
599
+ },
600
+ {
601
+ "epoch": 0.085,
602
+ "grad_norm": 20.0,
603
+ "learning_rate": 9.433333333333335e-06,
604
+ "loss": 2.7801,
605
+ "step": 850
606
+ },
607
+ {
608
+ "epoch": 0.086,
609
+ "grad_norm": 24.375,
610
+ "learning_rate": 9.544444444444445e-06,
611
+ "loss": 2.8712,
612
+ "step": 860
613
+ },
614
+ {
615
+ "epoch": 0.087,
616
+ "grad_norm": 16.75,
617
+ "learning_rate": 9.655555555555556e-06,
618
+ "loss": 2.7678,
619
+ "step": 870
620
+ },
621
+ {
622
+ "epoch": 0.088,
623
+ "grad_norm": 18.25,
624
+ "learning_rate": 9.766666666666667e-06,
625
+ "loss": 2.7104,
626
+ "step": 880
627
+ },
628
+ {
629
+ "epoch": 0.089,
630
+ "grad_norm": 17.875,
631
+ "learning_rate": 9.877777777777778e-06,
632
+ "loss": 3.0698,
633
+ "step": 890
634
+ },
635
+ {
636
+ "epoch": 0.09,
637
+ "grad_norm": 20.125,
638
+ "learning_rate": 9.98888888888889e-06,
639
+ "loss": 2.7498,
640
+ "step": 900
641
+ },
642
+ {
643
+ "epoch": 0.091,
644
+ "grad_norm": 18.75,
645
+ "learning_rate": 9.999997639854591e-06,
646
+ "loss": 2.9519,
647
+ "step": 910
648
+ },
649
+ {
650
+ "epoch": 0.092,
651
+ "grad_norm": 18.0,
652
+ "learning_rate": 9.999989481330112e-06,
653
+ "loss": 2.4722,
654
+ "step": 920
655
+ },
656
+ {
657
+ "epoch": 0.093,
658
+ "grad_norm": 17.5,
659
+ "learning_rate": 9.99997549529847e-06,
660
+ "loss": 3.0277,
661
+ "step": 930
662
+ },
663
+ {
664
+ "epoch": 0.094,
665
+ "grad_norm": 19.125,
666
+ "learning_rate": 9.999955681775966e-06,
667
+ "loss": 2.7975,
668
+ "step": 940
669
+ },
670
+ {
671
+ "epoch": 0.095,
672
+ "grad_norm": 22.25,
673
+ "learning_rate": 9.999930040785695e-06,
674
+ "loss": 2.7893,
675
+ "step": 950
676
+ },
677
+ {
678
+ "epoch": 0.096,
679
+ "grad_norm": 19.0,
680
+ "learning_rate": 9.99989857235754e-06,
681
+ "loss": 2.7635,
682
+ "step": 960
683
+ },
684
+ {
685
+ "epoch": 0.097,
686
+ "grad_norm": 21.625,
687
+ "learning_rate": 9.999861276528177e-06,
688
+ "loss": 2.5933,
689
+ "step": 970
690
+ },
691
+ {
692
+ "epoch": 0.098,
693
+ "grad_norm": 19.875,
694
+ "learning_rate": 9.999818153341078e-06,
695
+ "loss": 2.8434,
696
+ "step": 980
697
+ },
698
+ {
699
+ "epoch": 0.099,
700
+ "grad_norm": 14.6875,
701
+ "learning_rate": 9.999769202846499e-06,
702
+ "loss": 2.9051,
703
+ "step": 990
704
+ },
705
+ {
706
+ "epoch": 0.1,
707
+ "grad_norm": 18.0,
708
+ "learning_rate": 9.999714425101493e-06,
709
+ "loss": 2.675,
710
+ "step": 1000
711
+ },
712
+ {
713
+ "epoch": 0.101,
714
+ "grad_norm": 19.375,
715
+ "learning_rate": 9.999653820169904e-06,
716
+ "loss": 2.718,
717
+ "step": 1010
718
+ },
719
+ {
720
+ "epoch": 0.102,
721
+ "grad_norm": 18.625,
722
+ "learning_rate": 9.99958738812237e-06,
723
+ "loss": 2.9848,
724
+ "step": 1020
725
+ },
726
+ {
727
+ "epoch": 0.103,
728
+ "grad_norm": 20.125,
729
+ "learning_rate": 9.999515129036312e-06,
730
+ "loss": 3.0125,
731
+ "step": 1030
732
+ },
733
+ {
734
+ "epoch": 0.104,
735
+ "grad_norm": 18.25,
736
+ "learning_rate": 9.999437042995954e-06,
737
+ "loss": 2.7403,
738
+ "step": 1040
739
+ },
740
+ {
741
+ "epoch": 0.105,
742
+ "grad_norm": 23.25,
743
+ "learning_rate": 9.999353130092302e-06,
744
+ "loss": 2.8504,
745
+ "step": 1050
746
+ },
747
+ {
748
+ "epoch": 0.106,
749
+ "grad_norm": 18.875,
750
+ "learning_rate": 9.999263390423157e-06,
751
+ "loss": 2.7261,
752
+ "step": 1060
753
+ },
754
+ {
755
+ "epoch": 0.107,
756
+ "grad_norm": 19.875,
757
+ "learning_rate": 9.999167824093114e-06,
758
+ "loss": 2.8094,
759
+ "step": 1070
760
+ },
761
+ {
762
+ "epoch": 0.108,
763
+ "grad_norm": 21.25,
764
+ "learning_rate": 9.999066431213553e-06,
765
+ "loss": 2.7743,
766
+ "step": 1080
767
+ },
768
+ {
769
+ "epoch": 0.109,
770
+ "grad_norm": 21.125,
771
+ "learning_rate": 9.998959211902647e-06,
772
+ "loss": 2.7938,
773
+ "step": 1090
774
+ },
775
+ {
776
+ "epoch": 0.11,
777
+ "grad_norm": 19.25,
778
+ "learning_rate": 9.998846166285365e-06,
779
+ "loss": 2.8453,
780
+ "step": 1100
781
+ },
782
+ {
783
+ "epoch": 0.111,
784
+ "grad_norm": 15.125,
785
+ "learning_rate": 9.998727294493457e-06,
786
+ "loss": 2.5622,
787
+ "step": 1110
788
+ },
789
+ {
790
+ "epoch": 0.112,
791
+ "grad_norm": 17.75,
792
+ "learning_rate": 9.998602596665471e-06,
793
+ "loss": 2.4045,
794
+ "step": 1120
795
+ },
796
+ {
797
+ "epoch": 0.113,
798
+ "grad_norm": 20.625,
799
+ "learning_rate": 9.998472072946746e-06,
800
+ "loss": 2.9039,
801
+ "step": 1130
802
+ },
803
+ {
804
+ "epoch": 0.114,
805
+ "grad_norm": 18.375,
806
+ "learning_rate": 9.9983357234894e-06,
807
+ "loss": 2.5652,
808
+ "step": 1140
809
+ },
810
+ {
811
+ "epoch": 0.115,
812
+ "grad_norm": 18.625,
813
+ "learning_rate": 9.998193548452356e-06,
814
+ "loss": 2.6909,
815
+ "step": 1150
816
+ },
817
+ {
818
+ "epoch": 0.116,
819
+ "grad_norm": 18.625,
820
+ "learning_rate": 9.998045548001316e-06,
821
+ "loss": 2.8375,
822
+ "step": 1160
823
+ },
824
+ {
825
+ "epoch": 0.117,
826
+ "grad_norm": 21.875,
827
+ "learning_rate": 9.997891722308776e-06,
828
+ "loss": 2.8469,
829
+ "step": 1170
830
+ },
831
+ {
832
+ "epoch": 0.118,
833
+ "grad_norm": 17.0,
834
+ "learning_rate": 9.99773207155402e-06,
835
+ "loss": 2.9496,
836
+ "step": 1180
837
+ },
838
+ {
839
+ "epoch": 0.119,
840
+ "grad_norm": 20.875,
841
+ "learning_rate": 9.997566595923123e-06,
842
+ "loss": 2.7453,
843
+ "step": 1190
844
+ },
845
+ {
846
+ "epoch": 0.12,
847
+ "grad_norm": 17.75,
848
+ "learning_rate": 9.997395295608945e-06,
849
+ "loss": 2.6202,
850
+ "step": 1200
851
+ },
852
+ {
853
+ "epoch": 0.121,
854
+ "grad_norm": 21.0,
855
+ "learning_rate": 9.99721817081114e-06,
856
+ "loss": 2.9364,
857
+ "step": 1210
858
+ },
859
+ {
860
+ "epoch": 0.122,
861
+ "grad_norm": 15.9375,
862
+ "learning_rate": 9.997035221736146e-06,
863
+ "loss": 2.9739,
864
+ "step": 1220
865
+ },
866
+ {
867
+ "epoch": 0.123,
868
+ "grad_norm": 18.0,
869
+ "learning_rate": 9.99684644859719e-06,
870
+ "loss": 2.696,
871
+ "step": 1230
872
+ },
873
+ {
874
+ "epoch": 0.124,
875
+ "grad_norm": 18.125,
876
+ "learning_rate": 9.996651851614292e-06,
877
+ "loss": 2.8032,
878
+ "step": 1240
879
+ },
880
+ {
881
+ "epoch": 0.125,
882
+ "grad_norm": 19.625,
883
+ "learning_rate": 9.99645143101425e-06,
884
+ "loss": 2.8369,
885
+ "step": 1250
886
+ },
887
+ {
888
+ "epoch": 0.126,
889
+ "grad_norm": 21.125,
890
+ "learning_rate": 9.996245187030657e-06,
891
+ "loss": 2.9879,
892
+ "step": 1260
893
+ },
894
+ {
895
+ "epoch": 0.127,
896
+ "grad_norm": 17.25,
897
+ "learning_rate": 9.996033119903894e-06,
898
+ "loss": 2.6743,
899
+ "step": 1270
900
+ },
901
+ {
902
+ "epoch": 0.128,
903
+ "grad_norm": 16.125,
904
+ "learning_rate": 9.995815229881123e-06,
905
+ "loss": 2.8574,
906
+ "step": 1280
907
+ },
908
+ {
909
+ "epoch": 0.129,
910
+ "grad_norm": 16.75,
911
+ "learning_rate": 9.995591517216295e-06,
912
+ "loss": 2.5371,
913
+ "step": 1290
914
+ },
915
+ {
916
+ "epoch": 0.13,
917
+ "grad_norm": 16.125,
918
+ "learning_rate": 9.995361982170152e-06,
919
+ "loss": 2.7498,
920
+ "step": 1300
921
+ },
922
+ {
923
+ "epoch": 0.131,
924
+ "grad_norm": 16.75,
925
+ "learning_rate": 9.995126625010212e-06,
926
+ "loss": 2.8387,
927
+ "step": 1310
928
+ },
929
+ {
930
+ "epoch": 0.132,
931
+ "grad_norm": 16.375,
932
+ "learning_rate": 9.994885446010791e-06,
933
+ "loss": 2.6821,
934
+ "step": 1320
935
+ },
936
+ {
937
+ "epoch": 0.133,
938
+ "grad_norm": 21.75,
939
+ "learning_rate": 9.994638445452978e-06,
940
+ "loss": 2.6755,
941
+ "step": 1330
942
+ },
943
+ {
944
+ "epoch": 0.134,
945
+ "grad_norm": 15.75,
946
+ "learning_rate": 9.994385623624658e-06,
947
+ "loss": 2.5222,
948
+ "step": 1340
949
+ },
950
+ {
951
+ "epoch": 0.135,
952
+ "grad_norm": 23.375,
953
+ "learning_rate": 9.994126980820496e-06,
954
+ "loss": 2.6076,
955
+ "step": 1350
956
+ },
957
+ {
958
+ "epoch": 0.136,
959
+ "grad_norm": 23.75,
960
+ "learning_rate": 9.993862517341937e-06,
961
+ "loss": 2.4664,
962
+ "step": 1360
963
+ },
964
+ {
965
+ "epoch": 0.137,
966
+ "grad_norm": 18.5,
967
+ "learning_rate": 9.993592233497216e-06,
968
+ "loss": 3.0119,
969
+ "step": 1370
970
+ },
971
+ {
972
+ "epoch": 0.138,
973
+ "grad_norm": 18.25,
974
+ "learning_rate": 9.993316129601352e-06,
975
+ "loss": 2.8505,
976
+ "step": 1380
977
+ },
978
+ {
979
+ "epoch": 0.139,
980
+ "grad_norm": 15.5,
981
+ "learning_rate": 9.993034205976141e-06,
982
+ "loss": 2.7681,
983
+ "step": 1390
984
+ },
985
+ {
986
+ "epoch": 0.14,
987
+ "grad_norm": 17.0,
988
+ "learning_rate": 9.992746462950171e-06,
989
+ "loss": 2.487,
990
+ "step": 1400
991
+ },
992
+ {
993
+ "epoch": 0.141,
994
+ "grad_norm": 20.875,
995
+ "learning_rate": 9.992452900858804e-06,
996
+ "loss": 2.8098,
997
+ "step": 1410
998
+ },
999
+ {
1000
+ "epoch": 0.142,
1001
+ "grad_norm": 18.75,
1002
+ "learning_rate": 9.99215352004419e-06,
1003
+ "loss": 2.8728,
1004
+ "step": 1420
1005
+ },
1006
+ {
1007
+ "epoch": 0.143,
1008
+ "grad_norm": 16.5,
1009
+ "learning_rate": 9.991848320855258e-06,
1010
+ "loss": 2.8186,
1011
+ "step": 1430
1012
+ },
1013
+ {
1014
+ "epoch": 0.144,
1015
+ "grad_norm": 20.5,
1016
+ "learning_rate": 9.991537303647717e-06,
1017
+ "loss": 2.7092,
1018
+ "step": 1440
1019
+ },
1020
+ {
1021
+ "epoch": 0.145,
1022
+ "grad_norm": 18.625,
1023
+ "learning_rate": 9.991220468784059e-06,
1024
+ "loss": 2.5199,
1025
+ "step": 1450
1026
+ },
1027
+ {
1028
+ "epoch": 0.146,
1029
+ "grad_norm": 17.625,
1030
+ "learning_rate": 9.99089781663356e-06,
1031
+ "loss": 2.5873,
1032
+ "step": 1460
1033
+ },
1034
+ {
1035
+ "epoch": 0.147,
1036
+ "grad_norm": 20.0,
1037
+ "learning_rate": 9.990569347572268e-06,
1038
+ "loss": 2.4267,
1039
+ "step": 1470
1040
+ },
1041
+ {
1042
+ "epoch": 0.148,
1043
+ "grad_norm": 19.375,
1044
+ "learning_rate": 9.990235061983015e-06,
1045
+ "loss": 2.8161,
1046
+ "step": 1480
1047
+ },
1048
+ {
1049
+ "epoch": 0.149,
1050
+ "grad_norm": 15.9375,
1051
+ "learning_rate": 9.989894960255417e-06,
1052
+ "loss": 2.6606,
1053
+ "step": 1490
1054
+ },
1055
+ {
1056
+ "epoch": 0.15,
1057
+ "grad_norm": 14.0,
1058
+ "learning_rate": 9.98954904278586e-06,
1059
+ "loss": 2.6006,
1060
+ "step": 1500
1061
+ },
1062
+ {
1063
+ "epoch": 0.151,
1064
+ "grad_norm": 20.25,
1065
+ "learning_rate": 9.989197309977512e-06,
1066
+ "loss": 2.8076,
1067
+ "step": 1510
1068
+ },
1069
+ {
1070
+ "epoch": 0.152,
1071
+ "grad_norm": 21.25,
1072
+ "learning_rate": 9.98883976224032e-06,
1073
+ "loss": 2.8272,
1074
+ "step": 1520
1075
+ },
1076
+ {
1077
+ "epoch": 0.153,
1078
+ "grad_norm": 17.125,
1079
+ "learning_rate": 9.988476399991006e-06,
1080
+ "loss": 2.8416,
1081
+ "step": 1530
1082
+ },
1083
+ {
1084
+ "epoch": 0.154,
1085
+ "grad_norm": 15.0,
1086
+ "learning_rate": 9.988107223653072e-06,
1087
+ "loss": 2.3451,
1088
+ "step": 1540
1089
+ },
1090
+ {
1091
+ "epoch": 0.155,
1092
+ "grad_norm": 15.25,
1093
+ "learning_rate": 9.987732233656793e-06,
1094
+ "loss": 2.7907,
1095
+ "step": 1550
1096
+ },
1097
+ {
1098
+ "epoch": 0.156,
1099
+ "grad_norm": 20.625,
1100
+ "learning_rate": 9.987351430439223e-06,
1101
+ "loss": 2.7175,
1102
+ "step": 1560
1103
+ },
1104
+ {
1105
+ "epoch": 0.157,
1106
+ "grad_norm": 19.375,
1107
+ "learning_rate": 9.986964814444189e-06,
1108
+ "loss": 3.1835,
1109
+ "step": 1570
1110
+ },
1111
+ {
1112
+ "epoch": 0.158,
1113
+ "grad_norm": 23.25,
1114
+ "learning_rate": 9.98657238612229e-06,
1115
+ "loss": 2.687,
1116
+ "step": 1580
1117
+ },
1118
+ {
1119
+ "epoch": 0.159,
1120
+ "grad_norm": 18.5,
1121
+ "learning_rate": 9.986174145930909e-06,
1122
+ "loss": 2.5697,
1123
+ "step": 1590
1124
+ },
1125
+ {
1126
+ "epoch": 0.16,
1127
+ "grad_norm": 23.25,
1128
+ "learning_rate": 9.985770094334193e-06,
1129
+ "loss": 2.5566,
1130
+ "step": 1600
1131
+ },
1132
+ {
1133
+ "epoch": 0.161,
1134
+ "grad_norm": 19.25,
1135
+ "learning_rate": 9.985360231803065e-06,
1136
+ "loss": 2.4284,
1137
+ "step": 1610
1138
+ },
1139
+ {
1140
+ "epoch": 0.162,
1141
+ "grad_norm": 15.5625,
1142
+ "learning_rate": 9.984944558815222e-06,
1143
+ "loss": 2.5651,
1144
+ "step": 1620
1145
+ },
1146
+ {
1147
+ "epoch": 0.163,
1148
+ "grad_norm": 18.5,
1149
+ "learning_rate": 9.984523075855133e-06,
1150
+ "loss": 2.5574,
1151
+ "step": 1630
1152
+ },
1153
+ {
1154
+ "epoch": 0.164,
1155
+ "grad_norm": 20.25,
1156
+ "learning_rate": 9.984095783414037e-06,
1157
+ "loss": 2.6908,
1158
+ "step": 1640
1159
+ },
1160
+ {
1161
+ "epoch": 0.165,
1162
+ "grad_norm": 19.5,
1163
+ "learning_rate": 9.983662681989946e-06,
1164
+ "loss": 2.4126,
1165
+ "step": 1650
1166
+ },
1167
+ {
1168
+ "epoch": 0.166,
1169
+ "grad_norm": 23.5,
1170
+ "learning_rate": 9.983223772087642e-06,
1171
+ "loss": 2.6288,
1172
+ "step": 1660
1173
+ },
1174
+ {
1175
+ "epoch": 0.167,
1176
+ "grad_norm": 17.75,
1177
+ "learning_rate": 9.982779054218673e-06,
1178
+ "loss": 2.7709,
1179
+ "step": 1670
1180
+ },
1181
+ {
1182
+ "epoch": 0.168,
1183
+ "grad_norm": 17.0,
1184
+ "learning_rate": 9.982328528901366e-06,
1185
+ "loss": 2.8173,
1186
+ "step": 1680
1187
+ },
1188
+ {
1189
+ "epoch": 0.169,
1190
+ "grad_norm": 20.0,
1191
+ "learning_rate": 9.981872196660803e-06,
1192
+ "loss": 2.7205,
1193
+ "step": 1690
1194
+ },
1195
+ {
1196
+ "epoch": 0.17,
1197
+ "grad_norm": 21.625,
1198
+ "learning_rate": 9.981410058028845e-06,
1199
+ "loss": 2.6691,
1200
+ "step": 1700
1201
+ },
1202
+ {
1203
+ "epoch": 0.171,
1204
+ "grad_norm": 20.375,
1205
+ "learning_rate": 9.980942113544114e-06,
1206
+ "loss": 2.6803,
1207
+ "step": 1710
1208
+ },
1209
+ {
1210
+ "epoch": 0.172,
1211
+ "grad_norm": 21.5,
1212
+ "learning_rate": 9.980468363752004e-06,
1213
+ "loss": 2.8254,
1214
+ "step": 1720
1215
+ },
1216
+ {
1217
+ "epoch": 0.173,
1218
+ "grad_norm": 20.75,
1219
+ "learning_rate": 9.979988809204667e-06,
1220
+ "loss": 2.8123,
1221
+ "step": 1730
1222
+ },
1223
+ {
1224
+ "epoch": 0.174,
1225
+ "grad_norm": 20.5,
1226
+ "learning_rate": 9.979503450461034e-06,
1227
+ "loss": 2.6096,
1228
+ "step": 1740
1229
+ },
1230
+ {
1231
+ "epoch": 0.175,
1232
+ "grad_norm": 21.0,
1233
+ "learning_rate": 9.979012288086785e-06,
1234
+ "loss": 2.8623,
1235
+ "step": 1750
1236
+ },
1237
+ {
1238
+ "epoch": 0.176,
1239
+ "grad_norm": 16.5,
1240
+ "learning_rate": 9.978515322654374e-06,
1241
+ "loss": 2.9909,
1242
+ "step": 1760
1243
+ },
1244
+ {
1245
+ "epoch": 0.177,
1246
+ "grad_norm": 19.125,
1247
+ "learning_rate": 9.978012554743017e-06,
1248
+ "loss": 2.7251,
1249
+ "step": 1770
1250
+ },
1251
+ {
1252
+ "epoch": 0.178,
1253
+ "grad_norm": 17.25,
1254
+ "learning_rate": 9.977503984938692e-06,
1255
+ "loss": 2.9922,
1256
+ "step": 1780
1257
+ },
1258
+ {
1259
+ "epoch": 0.179,
1260
+ "grad_norm": 19.875,
1261
+ "learning_rate": 9.976989613834138e-06,
1262
+ "loss": 2.4104,
1263
+ "step": 1790
1264
+ },
1265
+ {
1266
+ "epoch": 0.18,
1267
+ "grad_norm": 20.0,
1268
+ "learning_rate": 9.976469442028857e-06,
1269
+ "loss": 2.6709,
1270
+ "step": 1800
1271
+ },
1272
+ {
1273
+ "epoch": 0.181,
1274
+ "grad_norm": 20.875,
1275
+ "learning_rate": 9.97594347012911e-06,
1276
+ "loss": 2.4566,
1277
+ "step": 1810
1278
+ },
1279
+ {
1280
+ "epoch": 0.182,
1281
+ "grad_norm": 18.375,
1282
+ "learning_rate": 9.975411698747923e-06,
1283
+ "loss": 2.4003,
1284
+ "step": 1820
1285
+ },
1286
+ {
1287
+ "epoch": 0.183,
1288
+ "grad_norm": 18.375,
1289
+ "learning_rate": 9.974874128505075e-06,
1290
+ "loss": 2.6298,
1291
+ "step": 1830
1292
+ },
1293
+ {
1294
+ "epoch": 0.184,
1295
+ "grad_norm": 21.0,
1296
+ "learning_rate": 9.974330760027104e-06,
1297
+ "loss": 2.5359,
1298
+ "step": 1840
1299
+ },
1300
+ {
1301
+ "epoch": 0.185,
1302
+ "grad_norm": 17.25,
1303
+ "learning_rate": 9.973781593947311e-06,
1304
+ "loss": 2.5899,
1305
+ "step": 1850
1306
+ },
1307
+ {
1308
+ "epoch": 0.186,
1309
+ "grad_norm": 17.0,
1310
+ "learning_rate": 9.973226630905753e-06,
1311
+ "loss": 2.5445,
1312
+ "step": 1860
1313
+ },
1314
+ {
1315
+ "epoch": 0.187,
1316
+ "grad_norm": 18.5,
1317
+ "learning_rate": 9.972665871549238e-06,
1318
+ "loss": 2.948,
1319
+ "step": 1870
1320
+ },
1321
+ {
1322
+ "epoch": 0.188,
1323
+ "grad_norm": 19.25,
1324
+ "learning_rate": 9.972099316531335e-06,
1325
+ "loss": 2.1919,
1326
+ "step": 1880
1327
+ },
1328
+ {
1329
+ "epoch": 0.189,
1330
+ "grad_norm": 16.75,
1331
+ "learning_rate": 9.971526966512364e-06,
1332
+ "loss": 2.6727,
1333
+ "step": 1890
1334
+ },
1335
+ {
1336
+ "epoch": 0.19,
1337
+ "grad_norm": 18.625,
1338
+ "learning_rate": 9.970948822159402e-06,
1339
+ "loss": 2.7471,
1340
+ "step": 1900
1341
+ },
1342
+ {
1343
+ "epoch": 0.191,
1344
+ "grad_norm": 18.875,
1345
+ "learning_rate": 9.970364884146282e-06,
1346
+ "loss": 2.5303,
1347
+ "step": 1910
1348
+ },
1349
+ {
1350
+ "epoch": 0.192,
1351
+ "grad_norm": 20.5,
1352
+ "learning_rate": 9.969775153153583e-06,
1353
+ "loss": 2.7076,
1354
+ "step": 1920
1355
+ },
1356
+ {
1357
+ "epoch": 0.193,
1358
+ "grad_norm": 17.375,
1359
+ "learning_rate": 9.969179629868636e-06,
1360
+ "loss": 2.5328,
1361
+ "step": 1930
1362
+ },
1363
+ {
1364
+ "epoch": 0.194,
1365
+ "grad_norm": 18.25,
1366
+ "learning_rate": 9.968578314985533e-06,
1367
+ "loss": 2.8174,
1368
+ "step": 1940
1369
+ },
1370
+ {
1371
+ "epoch": 0.195,
1372
+ "grad_norm": 19.75,
1373
+ "learning_rate": 9.967971209205102e-06,
1374
+ "loss": 2.7,
1375
+ "step": 1950
1376
+ },
1377
+ {
1378
+ "epoch": 0.196,
1379
+ "grad_norm": 20.25,
1380
+ "learning_rate": 9.96735831323493e-06,
1381
+ "loss": 2.8078,
1382
+ "step": 1960
1383
+ },
1384
+ {
1385
+ "epoch": 0.197,
1386
+ "grad_norm": 22.125,
1387
+ "learning_rate": 9.966739627789349e-06,
1388
+ "loss": 2.8192,
1389
+ "step": 1970
1390
+ },
1391
+ {
1392
+ "epoch": 0.198,
1393
+ "grad_norm": 19.75,
1394
+ "learning_rate": 9.966115153589439e-06,
1395
+ "loss": 2.4911,
1396
+ "step": 1980
1397
+ },
1398
+ {
1399
+ "epoch": 0.199,
1400
+ "grad_norm": 20.5,
1401
+ "learning_rate": 9.965484891363029e-06,
1402
+ "loss": 2.9307,
1403
+ "step": 1990
1404
+ },
1405
+ {
1406
+ "epoch": 0.2,
1407
+ "grad_norm": 19.625,
1408
+ "learning_rate": 9.96484884184469e-06,
1409
+ "loss": 2.5714,
1410
+ "step": 2000
1411
+ },
1412
+ {
1413
+ "epoch": 0.201,
1414
+ "grad_norm": 18.625,
1415
+ "learning_rate": 9.964207005775741e-06,
1416
+ "loss": 2.5079,
1417
+ "step": 2010
1418
+ },
1419
+ {
1420
+ "epoch": 0.202,
1421
+ "grad_norm": 16.75,
1422
+ "learning_rate": 9.963559383904244e-06,
1423
+ "loss": 2.6346,
1424
+ "step": 2020
1425
+ },
1426
+ {
1427
+ "epoch": 0.203,
1428
+ "grad_norm": 19.5,
1429
+ "learning_rate": 9.962905976985007e-06,
1430
+ "loss": 2.8173,
1431
+ "step": 2030
1432
+ },
1433
+ {
1434
+ "epoch": 0.204,
1435
+ "grad_norm": 18.625,
1436
+ "learning_rate": 9.962246785779575e-06,
1437
+ "loss": 2.5824,
1438
+ "step": 2040
1439
+ },
1440
+ {
1441
+ "epoch": 0.205,
1442
+ "grad_norm": 21.125,
1443
+ "learning_rate": 9.96158181105624e-06,
1444
+ "loss": 2.7661,
1445
+ "step": 2050
1446
+ },
1447
+ {
1448
+ "epoch": 0.206,
1449
+ "grad_norm": 20.0,
1450
+ "learning_rate": 9.960911053590033e-06,
1451
+ "loss": 2.7627,
1452
+ "step": 2060
1453
+ },
1454
+ {
1455
+ "epoch": 0.207,
1456
+ "grad_norm": 20.5,
1457
+ "learning_rate": 9.96023451416272e-06,
1458
+ "loss": 2.8217,
1459
+ "step": 2070
1460
+ },
1461
+ {
1462
+ "epoch": 0.208,
1463
+ "grad_norm": 21.875,
1464
+ "learning_rate": 9.959552193562816e-06,
1465
+ "loss": 2.8213,
1466
+ "step": 2080
1467
+ },
1468
+ {
1469
+ "epoch": 0.209,
1470
+ "grad_norm": 16.75,
1471
+ "learning_rate": 9.958864092585567e-06,
1472
+ "loss": 2.4847,
1473
+ "step": 2090
1474
+ },
1475
+ {
1476
+ "epoch": 0.21,
1477
+ "grad_norm": 18.25,
1478
+ "learning_rate": 9.958170212032955e-06,
1479
+ "loss": 2.3802,
1480
+ "step": 2100
1481
+ },
1482
+ {
1483
+ "epoch": 0.211,
1484
+ "grad_norm": 19.375,
1485
+ "learning_rate": 9.957470552713701e-06,
1486
+ "loss": 2.9577,
1487
+ "step": 2110
1488
+ },
1489
+ {
1490
+ "epoch": 0.212,
1491
+ "grad_norm": 16.75,
1492
+ "learning_rate": 9.956765115443264e-06,
1493
+ "loss": 2.4746,
1494
+ "step": 2120
1495
+ },
1496
+ {
1497
+ "epoch": 0.213,
1498
+ "grad_norm": 15.375,
1499
+ "learning_rate": 9.956053901043831e-06,
1500
+ "loss": 2.8087,
1501
+ "step": 2130
1502
+ },
1503
+ {
1504
+ "epoch": 0.214,
1505
+ "grad_norm": 18.25,
1506
+ "learning_rate": 9.955336910344326e-06,
1507
+ "loss": 2.7429,
1508
+ "step": 2140
1509
+ },
1510
+ {
1511
+ "epoch": 0.215,
1512
+ "grad_norm": 17.75,
1513
+ "learning_rate": 9.954614144180403e-06,
1514
+ "loss": 2.9068,
1515
+ "step": 2150
1516
+ },
1517
+ {
1518
+ "epoch": 0.216,
1519
+ "grad_norm": 23.0,
1520
+ "learning_rate": 9.953885603394449e-06,
1521
+ "loss": 2.9658,
1522
+ "step": 2160
1523
+ },
1524
+ {
1525
+ "epoch": 0.217,
1526
+ "grad_norm": 20.125,
1527
+ "learning_rate": 9.953151288835583e-06,
1528
+ "loss": 2.9416,
1529
+ "step": 2170
1530
+ },
1531
+ {
1532
+ "epoch": 0.218,
1533
+ "grad_norm": 18.5,
1534
+ "learning_rate": 9.95241120135965e-06,
1535
+ "loss": 2.6781,
1536
+ "step": 2180
1537
+ },
1538
+ {
1539
+ "epoch": 0.219,
1540
+ "grad_norm": 19.875,
1541
+ "learning_rate": 9.951665341829227e-06,
1542
+ "loss": 2.5796,
1543
+ "step": 2190
1544
+ },
1545
+ {
1546
+ "epoch": 0.22,
1547
+ "grad_norm": 23.875,
1548
+ "learning_rate": 9.950913711113613e-06,
1549
+ "loss": 2.7474,
1550
+ "step": 2200
1551
+ },
1552
+ {
1553
+ "epoch": 0.221,
1554
+ "grad_norm": 20.625,
1555
+ "learning_rate": 9.950156310088836e-06,
1556
+ "loss": 2.671,
1557
+ "step": 2210
1558
+ },
1559
+ {
1560
+ "epoch": 0.222,
1561
+ "grad_norm": 24.0,
1562
+ "learning_rate": 9.949393139637655e-06,
1563
+ "loss": 2.8648,
1564
+ "step": 2220
1565
+ },
1566
+ {
1567
+ "epoch": 0.223,
1568
+ "grad_norm": 17.125,
1569
+ "learning_rate": 9.948624200649544e-06,
1570
+ "loss": 2.6385,
1571
+ "step": 2230
1572
+ },
1573
+ {
1574
+ "epoch": 0.224,
1575
+ "grad_norm": 26.25,
1576
+ "learning_rate": 9.947849494020705e-06,
1577
+ "loss": 2.5898,
1578
+ "step": 2240
1579
+ },
1580
+ {
1581
+ "epoch": 0.225,
1582
+ "grad_norm": 19.625,
1583
+ "learning_rate": 9.947069020654062e-06,
1584
+ "loss": 2.517,
1585
+ "step": 2250
1586
+ },
1587
+ {
1588
+ "epoch": 0.226,
1589
+ "grad_norm": 17.375,
1590
+ "learning_rate": 9.946282781459259e-06,
1591
+ "loss": 2.4048,
1592
+ "step": 2260
1593
+ },
1594
+ {
1595
+ "epoch": 0.227,
1596
+ "grad_norm": 20.75,
1597
+ "learning_rate": 9.945490777352662e-06,
1598
+ "loss": 2.6212,
1599
+ "step": 2270
1600
+ },
1601
+ {
1602
+ "epoch": 0.228,
1603
+ "grad_norm": 18.375,
1604
+ "learning_rate": 9.944693009257354e-06,
1605
+ "loss": 2.8589,
1606
+ "step": 2280
1607
+ },
1608
+ {
1609
+ "epoch": 0.229,
1610
+ "grad_norm": 17.75,
1611
+ "learning_rate": 9.943889478103137e-06,
1612
+ "loss": 2.6638,
1613
+ "step": 2290
1614
+ },
1615
+ {
1616
+ "epoch": 0.23,
1617
+ "grad_norm": 18.375,
1618
+ "learning_rate": 9.94308018482653e-06,
1619
+ "loss": 2.4957,
1620
+ "step": 2300
1621
+ },
1622
+ {
1623
+ "epoch": 0.231,
1624
+ "grad_norm": 15.0625,
1625
+ "learning_rate": 9.942265130370767e-06,
1626
+ "loss": 2.5983,
1627
+ "step": 2310
1628
+ },
1629
+ {
1630
+ "epoch": 0.232,
1631
+ "grad_norm": 17.5,
1632
+ "learning_rate": 9.941444315685798e-06,
1633
+ "loss": 2.4284,
1634
+ "step": 2320
1635
+ },
1636
+ {
1637
+ "epoch": 0.233,
1638
+ "grad_norm": 20.375,
1639
+ "learning_rate": 9.940617741728284e-06,
1640
+ "loss": 2.7618,
1641
+ "step": 2330
1642
+ },
1643
+ {
1644
+ "epoch": 0.234,
1645
+ "grad_norm": 19.125,
1646
+ "learning_rate": 9.939785409461603e-06,
1647
+ "loss": 2.7838,
1648
+ "step": 2340
1649
+ },
1650
+ {
1651
+ "epoch": 0.235,
1652
+ "grad_norm": 18.625,
1653
+ "learning_rate": 9.938947319855839e-06,
1654
+ "loss": 2.3683,
1655
+ "step": 2350
1656
+ },
1657
+ {
1658
+ "epoch": 0.236,
1659
+ "grad_norm": 19.625,
1660
+ "learning_rate": 9.93810347388779e-06,
1661
+ "loss": 2.715,
1662
+ "step": 2360
1663
+ },
1664
+ {
1665
+ "epoch": 0.237,
1666
+ "grad_norm": 20.625,
1667
+ "learning_rate": 9.93725387254096e-06,
1668
+ "loss": 2.9065,
1669
+ "step": 2370
1670
+ },
1671
+ {
1672
+ "epoch": 0.238,
1673
+ "grad_norm": 18.0,
1674
+ "learning_rate": 9.936398516805565e-06,
1675
+ "loss": 2.8114,
1676
+ "step": 2380
1677
+ },
1678
+ {
1679
+ "epoch": 0.239,
1680
+ "grad_norm": 17.625,
1681
+ "learning_rate": 9.935537407678522e-06,
1682
+ "loss": 2.6193,
1683
+ "step": 2390
1684
+ },
1685
+ {
1686
+ "epoch": 0.24,
1687
+ "grad_norm": 17.75,
1688
+ "learning_rate": 9.934670546163463e-06,
1689
+ "loss": 2.3808,
1690
+ "step": 2400
1691
+ },
1692
+ {
1693
+ "epoch": 0.241,
1694
+ "grad_norm": 20.375,
1695
+ "learning_rate": 9.933797933270711e-06,
1696
+ "loss": 2.7193,
1697
+ "step": 2410
1698
+ },
1699
+ {
1700
+ "epoch": 0.242,
1701
+ "grad_norm": 17.5,
1702
+ "learning_rate": 9.932919570017305e-06,
1703
+ "loss": 2.3256,
1704
+ "step": 2420
1705
+ },
1706
+ {
1707
+ "epoch": 0.243,
1708
+ "grad_norm": 23.75,
1709
+ "learning_rate": 9.93203545742698e-06,
1710
+ "loss": 2.6923,
1711
+ "step": 2430
1712
+ },
1713
+ {
1714
+ "epoch": 0.244,
1715
+ "grad_norm": 19.375,
1716
+ "learning_rate": 9.931145596530172e-06,
1717
+ "loss": 2.8172,
1718
+ "step": 2440
1719
+ },
1720
+ {
1721
+ "epoch": 0.245,
1722
+ "grad_norm": 19.25,
1723
+ "learning_rate": 9.930249988364016e-06,
1724
+ "loss": 2.5078,
1725
+ "step": 2450
1726
+ },
1727
+ {
1728
+ "epoch": 0.246,
1729
+ "grad_norm": 17.625,
1730
+ "learning_rate": 9.92934863397235e-06,
1731
+ "loss": 2.506,
1732
+ "step": 2460
1733
+ },
1734
+ {
1735
+ "epoch": 0.247,
1736
+ "grad_norm": 16.625,
1737
+ "learning_rate": 9.928441534405702e-06,
1738
+ "loss": 2.6793,
1739
+ "step": 2470
1740
+ },
1741
+ {
1742
+ "epoch": 0.248,
1743
+ "grad_norm": 23.125,
1744
+ "learning_rate": 9.927528690721304e-06,
1745
+ "loss": 2.8273,
1746
+ "step": 2480
1747
+ },
1748
+ {
1749
+ "epoch": 0.249,
1750
+ "grad_norm": 23.5,
1751
+ "learning_rate": 9.926610103983076e-06,
1752
+ "loss": 2.7844,
1753
+ "step": 2490
1754
+ },
1755
+ {
1756
+ "epoch": 0.25,
1757
+ "grad_norm": 23.0,
1758
+ "learning_rate": 9.925685775261636e-06,
1759
+ "loss": 2.9647,
1760
+ "step": 2500
1761
+ },
1762
+ {
1763
+ "epoch": 0.251,
1764
+ "grad_norm": 20.375,
1765
+ "learning_rate": 9.924755705634292e-06,
1766
+ "loss": 2.5624,
1767
+ "step": 2510
1768
+ },
1769
+ {
1770
+ "epoch": 0.252,
1771
+ "grad_norm": 19.0,
1772
+ "learning_rate": 9.923819896185043e-06,
1773
+ "loss": 2.6843,
1774
+ "step": 2520
1775
+ },
1776
+ {
1777
+ "epoch": 0.253,
1778
+ "grad_norm": 16.625,
1779
+ "learning_rate": 9.92287834800458e-06,
1780
+ "loss": 2.735,
1781
+ "step": 2530
1782
+ },
1783
+ {
1784
+ "epoch": 0.254,
1785
+ "grad_norm": 22.125,
1786
+ "learning_rate": 9.921931062190281e-06,
1787
+ "loss": 2.8574,
1788
+ "step": 2540
1789
+ },
1790
+ {
1791
+ "epoch": 0.255,
1792
+ "grad_norm": 19.75,
1793
+ "learning_rate": 9.92097803984621e-06,
1794
+ "loss": 2.8776,
1795
+ "step": 2550
1796
+ },
1797
+ {
1798
+ "epoch": 0.256,
1799
+ "grad_norm": 19.375,
1800
+ "learning_rate": 9.92001928208312e-06,
1801
+ "loss": 2.604,
1802
+ "step": 2560
1803
+ },
1804
+ {
1805
+ "epoch": 0.257,
1806
+ "grad_norm": 19.625,
1807
+ "learning_rate": 9.919054790018445e-06,
1808
+ "loss": 2.8309,
1809
+ "step": 2570
1810
+ },
1811
+ {
1812
+ "epoch": 0.258,
1813
+ "grad_norm": 15.4375,
1814
+ "learning_rate": 9.918084564776308e-06,
1815
+ "loss": 2.7132,
1816
+ "step": 2580
1817
+ },
1818
+ {
1819
+ "epoch": 0.259,
1820
+ "grad_norm": 16.125,
1821
+ "learning_rate": 9.917108607487504e-06,
1822
+ "loss": 2.5709,
1823
+ "step": 2590
1824
+ },
1825
+ {
1826
+ "epoch": 0.26,
1827
+ "grad_norm": 24.125,
1828
+ "learning_rate": 9.91612691928952e-06,
1829
+ "loss": 2.6128,
1830
+ "step": 2600
1831
+ },
1832
+ {
1833
+ "epoch": 0.261,
1834
+ "grad_norm": 20.375,
1835
+ "learning_rate": 9.915139501326517e-06,
1836
+ "loss": 2.3172,
1837
+ "step": 2610
1838
+ },
1839
+ {
1840
+ "epoch": 0.262,
1841
+ "grad_norm": 18.25,
1842
+ "learning_rate": 9.914146354749333e-06,
1843
+ "loss": 2.5294,
1844
+ "step": 2620
1845
+ },
1846
+ {
1847
+ "epoch": 0.263,
1848
+ "grad_norm": 18.375,
1849
+ "learning_rate": 9.913147480715482e-06,
1850
+ "loss": 2.4213,
1851
+ "step": 2630
1852
+ },
1853
+ {
1854
+ "epoch": 0.264,
1855
+ "grad_norm": 21.125,
1856
+ "learning_rate": 9.91214288038916e-06,
1857
+ "loss": 2.7051,
1858
+ "step": 2640
1859
+ },
1860
+ {
1861
+ "epoch": 0.265,
1862
+ "grad_norm": 20.75,
1863
+ "learning_rate": 9.911132554941231e-06,
1864
+ "loss": 2.8351,
1865
+ "step": 2650
1866
+ },
1867
+ {
1868
+ "epoch": 0.266,
1869
+ "grad_norm": 17.0,
1870
+ "learning_rate": 9.910116505549233e-06,
1871
+ "loss": 2.5062,
1872
+ "step": 2660
1873
+ },
1874
+ {
1875
+ "epoch": 0.267,
1876
+ "grad_norm": 18.625,
1877
+ "learning_rate": 9.909094733397375e-06,
1878
+ "loss": 2.4828,
1879
+ "step": 2670
1880
+ },
1881
+ {
1882
+ "epoch": 0.268,
1883
+ "grad_norm": 17.75,
1884
+ "learning_rate": 9.908067239676538e-06,
1885
+ "loss": 2.5945,
1886
+ "step": 2680
1887
+ },
1888
+ {
1889
+ "epoch": 0.269,
1890
+ "grad_norm": 19.0,
1891
+ "learning_rate": 9.907034025584267e-06,
1892
+ "loss": 2.5403,
1893
+ "step": 2690
1894
+ },
1895
+ {
1896
+ "epoch": 0.27,
1897
+ "grad_norm": 21.75,
1898
+ "learning_rate": 9.905995092324781e-06,
1899
+ "loss": 2.4999,
1900
+ "step": 2700
1901
+ },
1902
+ {
1903
+ "epoch": 0.271,
1904
+ "grad_norm": 22.125,
1905
+ "learning_rate": 9.904950441108957e-06,
1906
+ "loss": 2.7494,
1907
+ "step": 2710
1908
+ },
1909
+ {
1910
+ "epoch": 0.272,
1911
+ "grad_norm": 17.25,
1912
+ "learning_rate": 9.903900073154343e-06,
1913
+ "loss": 2.5713,
1914
+ "step": 2720
1915
+ },
1916
+ {
1917
+ "epoch": 0.273,
1918
+ "grad_norm": 18.75,
1919
+ "learning_rate": 9.902843989685144e-06,
1920
+ "loss": 2.5711,
1921
+ "step": 2730
1922
+ },
1923
+ {
1924
+ "epoch": 0.274,
1925
+ "grad_norm": 17.875,
1926
+ "learning_rate": 9.901782191932233e-06,
1927
+ "loss": 2.7827,
1928
+ "step": 2740
1929
+ },
1930
+ {
1931
+ "epoch": 0.275,
1932
+ "grad_norm": 20.875,
1933
+ "learning_rate": 9.900714681133135e-06,
1934
+ "loss": 2.5141,
1935
+ "step": 2750
1936
+ },
1937
+ {
1938
+ "epoch": 0.276,
1939
+ "grad_norm": 21.375,
1940
+ "learning_rate": 9.899641458532041e-06,
1941
+ "loss": 2.4677,
1942
+ "step": 2760
1943
+ },
1944
+ {
1945
+ "epoch": 0.277,
1946
+ "grad_norm": 18.25,
1947
+ "learning_rate": 9.898562525379797e-06,
1948
+ "loss": 2.5868,
1949
+ "step": 2770
1950
+ },
1951
+ {
1952
+ "epoch": 0.278,
1953
+ "grad_norm": 20.0,
1954
+ "learning_rate": 9.897477882933902e-06,
1955
+ "loss": 2.5782,
1956
+ "step": 2780
1957
+ },
1958
+ {
1959
+ "epoch": 0.279,
1960
+ "grad_norm": 19.875,
1961
+ "learning_rate": 9.896387532458509e-06,
1962
+ "loss": 2.6296,
1963
+ "step": 2790
1964
+ },
1965
+ {
1966
+ "epoch": 0.28,
1967
+ "grad_norm": 21.125,
1968
+ "learning_rate": 9.89529147522443e-06,
1969
+ "loss": 2.7367,
1970
+ "step": 2800
1971
+ },
1972
+ {
1973
+ "epoch": 0.281,
1974
+ "grad_norm": 19.625,
1975
+ "learning_rate": 9.894189712509122e-06,
1976
+ "loss": 2.8607,
1977
+ "step": 2810
1978
+ },
1979
+ {
1980
+ "epoch": 0.282,
1981
+ "grad_norm": 18.125,
1982
+ "learning_rate": 9.893082245596692e-06,
1983
+ "loss": 2.6773,
1984
+ "step": 2820
1985
+ },
1986
+ {
1987
+ "epoch": 0.283,
1988
+ "grad_norm": 17.0,
1989
+ "learning_rate": 9.891969075777902e-06,
1990
+ "loss": 2.6371,
1991
+ "step": 2830
1992
+ },
1993
+ {
1994
+ "epoch": 0.284,
1995
+ "grad_norm": 17.375,
1996
+ "learning_rate": 9.890850204350148e-06,
1997
+ "loss": 2.6154,
1998
+ "step": 2840
1999
+ },
2000
+ {
2001
+ "epoch": 0.285,
2002
+ "grad_norm": 20.25,
2003
+ "learning_rate": 9.889725632617486e-06,
2004
+ "loss": 2.3764,
2005
+ "step": 2850
2006
+ },
2007
+ {
2008
+ "epoch": 0.286,
2009
+ "grad_norm": 23.0,
2010
+ "learning_rate": 9.888595361890605e-06,
2011
+ "loss": 2.9898,
2012
+ "step": 2860
2013
+ },
2014
+ {
2015
+ "epoch": 0.287,
2016
+ "grad_norm": 20.75,
2017
+ "learning_rate": 9.887459393486843e-06,
2018
+ "loss": 2.7216,
2019
+ "step": 2870
2020
+ },
2021
+ {
2022
+ "epoch": 0.288,
2023
+ "grad_norm": 20.75,
2024
+ "learning_rate": 9.886317728730172e-06,
2025
+ "loss": 2.7847,
2026
+ "step": 2880
2027
+ },
2028
+ {
2029
+ "epoch": 0.289,
2030
+ "grad_norm": 18.0,
2031
+ "learning_rate": 9.885170368951209e-06,
2032
+ "loss": 2.6752,
2033
+ "step": 2890
2034
+ },
2035
+ {
2036
+ "epoch": 0.29,
2037
+ "grad_norm": 31.25,
2038
+ "learning_rate": 9.884017315487205e-06,
2039
+ "loss": 2.6616,
2040
+ "step": 2900
2041
+ },
2042
+ {
2043
+ "epoch": 0.291,
2044
+ "grad_norm": 17.75,
2045
+ "learning_rate": 9.882858569682048e-06,
2046
+ "loss": 2.623,
2047
+ "step": 2910
2048
+ },
2049
+ {
2050
+ "epoch": 0.292,
2051
+ "grad_norm": 21.5,
2052
+ "learning_rate": 9.881694132886263e-06,
2053
+ "loss": 2.4582,
2054
+ "step": 2920
2055
+ },
2056
+ {
2057
+ "epoch": 0.293,
2058
+ "grad_norm": 19.5,
2059
+ "learning_rate": 9.880524006457004e-06,
2060
+ "loss": 2.7289,
2061
+ "step": 2930
2062
+ },
2063
+ {
2064
+ "epoch": 0.294,
2065
+ "grad_norm": 16.625,
2066
+ "learning_rate": 9.879348191758058e-06,
2067
+ "loss": 2.5351,
2068
+ "step": 2940
2069
+ },
2070
+ {
2071
+ "epoch": 0.295,
2072
+ "grad_norm": 19.75,
2073
+ "learning_rate": 9.878166690159843e-06,
2074
+ "loss": 2.405,
2075
+ "step": 2950
2076
+ },
2077
+ {
2078
+ "epoch": 0.296,
2079
+ "grad_norm": 15.5,
2080
+ "learning_rate": 9.8769795030394e-06,
2081
+ "loss": 2.8448,
2082
+ "step": 2960
2083
+ },
2084
+ {
2085
+ "epoch": 0.297,
2086
+ "grad_norm": 19.125,
2087
+ "learning_rate": 9.875786631780404e-06,
2088
+ "loss": 2.6537,
2089
+ "step": 2970
2090
+ },
2091
+ {
2092
+ "epoch": 0.298,
2093
+ "grad_norm": 21.125,
2094
+ "learning_rate": 9.87458807777315e-06,
2095
+ "loss": 2.9104,
2096
+ "step": 2980
2097
+ },
2098
+ {
2099
+ "epoch": 0.299,
2100
+ "grad_norm": 19.125,
2101
+ "learning_rate": 9.873383842414557e-06,
2102
+ "loss": 2.5027,
2103
+ "step": 2990
2104
+ },
2105
+ {
2106
+ "epoch": 0.3,
2107
+ "grad_norm": 16.375,
2108
+ "learning_rate": 9.872173927108165e-06,
2109
+ "loss": 2.565,
2110
+ "step": 3000
2111
+ },
2112
+ {
2113
+ "epoch": 0.301,
2114
+ "grad_norm": 20.375,
2115
+ "learning_rate": 9.870958333264137e-06,
2116
+ "loss": 2.9015,
2117
+ "step": 3010
2118
+ },
2119
+ {
2120
+ "epoch": 0.302,
2121
+ "grad_norm": 22.125,
2122
+ "learning_rate": 9.869737062299252e-06,
2123
+ "loss": 2.6939,
2124
+ "step": 3020
2125
+ },
2126
+ {
2127
+ "epoch": 0.303,
2128
+ "grad_norm": 18.375,
2129
+ "learning_rate": 9.868510115636905e-06,
2130
+ "loss": 2.6959,
2131
+ "step": 3030
2132
+ },
2133
+ {
2134
+ "epoch": 0.304,
2135
+ "grad_norm": 20.5,
2136
+ "learning_rate": 9.867277494707106e-06,
2137
+ "loss": 2.5169,
2138
+ "step": 3040
2139
+ },
2140
+ {
2141
+ "epoch": 0.305,
2142
+ "grad_norm": 18.0,
2143
+ "learning_rate": 9.866039200946483e-06,
2144
+ "loss": 2.7834,
2145
+ "step": 3050
2146
+ },
2147
+ {
2148
+ "epoch": 0.306,
2149
+ "grad_norm": 14.125,
2150
+ "learning_rate": 9.864795235798267e-06,
2151
+ "loss": 2.7562,
2152
+ "step": 3060
2153
+ },
2154
+ {
2155
+ "epoch": 0.307,
2156
+ "grad_norm": 16.25,
2157
+ "learning_rate": 9.863545600712311e-06,
2158
+ "loss": 2.3539,
2159
+ "step": 3070
2160
+ },
2161
+ {
2162
+ "epoch": 0.308,
2163
+ "grad_norm": 18.375,
2164
+ "learning_rate": 9.862290297145065e-06,
2165
+ "loss": 2.7669,
2166
+ "step": 3080
2167
+ },
2168
+ {
2169
+ "epoch": 0.309,
2170
+ "grad_norm": 20.25,
2171
+ "learning_rate": 9.86102932655959e-06,
2172
+ "loss": 2.897,
2173
+ "step": 3090
2174
+ },
2175
+ {
2176
+ "epoch": 0.31,
2177
+ "grad_norm": 19.125,
2178
+ "learning_rate": 9.859762690425555e-06,
2179
+ "loss": 2.5958,
2180
+ "step": 3100
2181
+ },
2182
+ {
2183
+ "epoch": 0.311,
2184
+ "grad_norm": 18.75,
2185
+ "learning_rate": 9.858490390219227e-06,
2186
+ "loss": 2.9046,
2187
+ "step": 3110
2188
+ },
2189
+ {
2190
+ "epoch": 0.312,
2191
+ "grad_norm": 21.0,
2192
+ "learning_rate": 9.857212427423478e-06,
2193
+ "loss": 2.4583,
2194
+ "step": 3120
2195
+ },
2196
+ {
2197
+ "epoch": 0.313,
2198
+ "grad_norm": 22.375,
2199
+ "learning_rate": 9.855928803527776e-06,
2200
+ "loss": 2.9481,
2201
+ "step": 3130
2202
+ },
2203
+ {
2204
+ "epoch": 0.314,
2205
+ "grad_norm": 19.125,
2206
+ "learning_rate": 9.854639520028196e-06,
2207
+ "loss": 2.9641,
2208
+ "step": 3140
2209
+ },
2210
+ {
2211
+ "epoch": 0.315,
2212
+ "grad_norm": 15.8125,
2213
+ "learning_rate": 9.853344578427393e-06,
2214
+ "loss": 2.8134,
2215
+ "step": 3150
2216
+ },
2217
+ {
2218
+ "epoch": 0.316,
2219
+ "grad_norm": 18.875,
2220
+ "learning_rate": 9.852043980234635e-06,
2221
+ "loss": 2.5857,
2222
+ "step": 3160
2223
+ },
2224
+ {
2225
+ "epoch": 0.317,
2226
+ "grad_norm": 22.875,
2227
+ "learning_rate": 9.850737726965773e-06,
2228
+ "loss": 2.5806,
2229
+ "step": 3170
2230
+ },
2231
+ {
2232
+ "epoch": 0.318,
2233
+ "grad_norm": 20.625,
2234
+ "learning_rate": 9.849425820143245e-06,
2235
+ "loss": 3.1725,
2236
+ "step": 3180
2237
+ },
2238
+ {
2239
+ "epoch": 0.319,
2240
+ "grad_norm": 16.75,
2241
+ "learning_rate": 9.84810826129609e-06,
2242
+ "loss": 2.6841,
2243
+ "step": 3190
2244
+ },
2245
+ {
2246
+ "epoch": 0.32,
2247
+ "grad_norm": 17.125,
2248
+ "learning_rate": 9.846785051959924e-06,
2249
+ "loss": 2.5288,
2250
+ "step": 3200
2251
+ },
2252
+ {
2253
+ "epoch": 0.321,
2254
+ "grad_norm": 20.375,
2255
+ "learning_rate": 9.845456193676952e-06,
2256
+ "loss": 2.488,
2257
+ "step": 3210
2258
+ },
2259
+ {
2260
+ "epoch": 0.322,
2261
+ "grad_norm": 18.5,
2262
+ "learning_rate": 9.844121687995968e-06,
2263
+ "loss": 2.4729,
2264
+ "step": 3220
2265
+ },
2266
+ {
2267
+ "epoch": 0.323,
2268
+ "grad_norm": 17.25,
2269
+ "learning_rate": 9.842781536472339e-06,
2270
+ "loss": 2.5037,
2271
+ "step": 3230
2272
+ },
2273
+ {
2274
+ "epoch": 0.324,
2275
+ "grad_norm": 19.25,
2276
+ "learning_rate": 9.841435740668018e-06,
2277
+ "loss": 2.649,
2278
+ "step": 3240
2279
+ },
2280
+ {
2281
+ "epoch": 0.325,
2282
+ "grad_norm": 17.375,
2283
+ "learning_rate": 9.840084302151537e-06,
2284
+ "loss": 2.4221,
2285
+ "step": 3250
2286
+ },
2287
+ {
2288
+ "epoch": 0.326,
2289
+ "grad_norm": 18.375,
2290
+ "learning_rate": 9.838727222498001e-06,
2291
+ "loss": 2.5987,
2292
+ "step": 3260
2293
+ },
2294
+ {
2295
+ "epoch": 0.327,
2296
+ "grad_norm": 15.9375,
2297
+ "learning_rate": 9.837364503289093e-06,
2298
+ "loss": 2.3907,
2299
+ "step": 3270
2300
+ },
2301
+ {
2302
+ "epoch": 0.328,
2303
+ "grad_norm": 19.25,
2304
+ "learning_rate": 9.835996146113064e-06,
2305
+ "loss": 2.7607,
2306
+ "step": 3280
2307
+ },
2308
+ {
2309
+ "epoch": 0.329,
2310
+ "grad_norm": 19.5,
2311
+ "learning_rate": 9.834622152564746e-06,
2312
+ "loss": 2.7398,
2313
+ "step": 3290
2314
+ },
2315
+ {
2316
+ "epoch": 0.33,
2317
+ "grad_norm": 17.25,
2318
+ "learning_rate": 9.833242524245528e-06,
2319
+ "loss": 2.5979,
2320
+ "step": 3300
2321
+ },
2322
+ {
2323
+ "epoch": 0.331,
2324
+ "grad_norm": 16.5,
2325
+ "learning_rate": 9.831857262763375e-06,
2326
+ "loss": 2.4874,
2327
+ "step": 3310
2328
+ },
2329
+ {
2330
+ "epoch": 0.332,
2331
+ "grad_norm": 20.125,
2332
+ "learning_rate": 9.830466369732814e-06,
2333
+ "loss": 2.7418,
2334
+ "step": 3320
2335
+ },
2336
+ {
2337
+ "epoch": 0.333,
2338
+ "grad_norm": 20.875,
2339
+ "learning_rate": 9.829069846774935e-06,
2340
+ "loss": 2.5257,
2341
+ "step": 3330
2342
+ },
2343
+ {
2344
+ "epoch": 0.334,
2345
+ "grad_norm": 19.0,
2346
+ "learning_rate": 9.827667695517393e-06,
2347
+ "loss": 2.5789,
2348
+ "step": 3340
2349
+ },
2350
+ {
2351
+ "epoch": 0.335,
2352
+ "grad_norm": 18.75,
2353
+ "learning_rate": 9.8262599175944e-06,
2354
+ "loss": 2.5456,
2355
+ "step": 3350
2356
+ },
2357
+ {
2358
+ "epoch": 0.336,
2359
+ "grad_norm": 22.75,
2360
+ "learning_rate": 9.824846514646726e-06,
2361
+ "loss": 2.9754,
2362
+ "step": 3360
2363
+ },
2364
+ {
2365
+ "epoch": 0.337,
2366
+ "grad_norm": 18.625,
2367
+ "learning_rate": 9.8234274883217e-06,
2368
+ "loss": 2.5788,
2369
+ "step": 3370
2370
+ },
2371
+ {
2372
+ "epoch": 0.338,
2373
+ "grad_norm": 18.875,
2374
+ "learning_rate": 9.8220028402732e-06,
2375
+ "loss": 2.6314,
2376
+ "step": 3380
2377
+ },
2378
+ {
2379
+ "epoch": 0.339,
2380
+ "grad_norm": 19.125,
2381
+ "learning_rate": 9.820572572161658e-06,
2382
+ "loss": 2.508,
2383
+ "step": 3390
2384
+ },
2385
+ {
2386
+ "epoch": 0.34,
2387
+ "grad_norm": 19.625,
2388
+ "learning_rate": 9.819136685654059e-06,
2389
+ "loss": 2.9974,
2390
+ "step": 3400
2391
+ },
2392
+ {
2393
+ "epoch": 0.341,
2394
+ "grad_norm": 17.0,
2395
+ "learning_rate": 9.817695182423935e-06,
2396
+ "loss": 2.6797,
2397
+ "step": 3410
2398
+ },
2399
+ {
2400
+ "epoch": 0.342,
2401
+ "grad_norm": 21.0,
2402
+ "learning_rate": 9.81624806415136e-06,
2403
+ "loss": 2.7353,
2404
+ "step": 3420
2405
+ },
2406
+ {
2407
+ "epoch": 0.343,
2408
+ "grad_norm": 16.125,
2409
+ "learning_rate": 9.814795332522962e-06,
2410
+ "loss": 2.5796,
2411
+ "step": 3430
2412
+ },
2413
+ {
2414
+ "epoch": 0.344,
2415
+ "grad_norm": 21.75,
2416
+ "learning_rate": 9.813336989231901e-06,
2417
+ "loss": 2.7384,
2418
+ "step": 3440
2419
+ },
2420
+ {
2421
+ "epoch": 0.345,
2422
+ "grad_norm": 19.875,
2423
+ "learning_rate": 9.811873035977883e-06,
2424
+ "loss": 2.6481,
2425
+ "step": 3450
2426
+ },
2427
+ {
2428
+ "epoch": 0.346,
2429
+ "grad_norm": 19.0,
2430
+ "learning_rate": 9.810403474467149e-06,
2431
+ "loss": 2.6103,
2432
+ "step": 3460
2433
+ },
2434
+ {
2435
+ "epoch": 0.347,
2436
+ "grad_norm": 19.75,
2437
+ "learning_rate": 9.808928306412482e-06,
2438
+ "loss": 2.5278,
2439
+ "step": 3470
2440
+ },
2441
+ {
2442
+ "epoch": 0.348,
2443
+ "grad_norm": 18.0,
2444
+ "learning_rate": 9.807447533533196e-06,
2445
+ "loss": 2.8516,
2446
+ "step": 3480
2447
+ },
2448
+ {
2449
+ "epoch": 0.349,
2450
+ "grad_norm": 24.75,
2451
+ "learning_rate": 9.805961157555134e-06,
2452
+ "loss": 2.6572,
2453
+ "step": 3490
2454
+ },
2455
+ {
2456
+ "epoch": 0.35,
2457
+ "grad_norm": 16.25,
2458
+ "learning_rate": 9.804469180210677e-06,
2459
+ "loss": 2.4459,
2460
+ "step": 3500
2461
+ },
2462
+ {
2463
+ "epoch": 0.351,
2464
+ "grad_norm": 18.875,
2465
+ "learning_rate": 9.802971603238726e-06,
2466
+ "loss": 2.6319,
2467
+ "step": 3510
2468
+ },
2469
+ {
2470
+ "epoch": 0.352,
2471
+ "grad_norm": 19.625,
2472
+ "learning_rate": 9.801468428384716e-06,
2473
+ "loss": 2.6243,
2474
+ "step": 3520
2475
+ },
2476
+ {
2477
+ "epoch": 0.353,
2478
+ "grad_norm": 19.875,
2479
+ "learning_rate": 9.799959657400604e-06,
2480
+ "loss": 2.4742,
2481
+ "step": 3530
2482
+ },
2483
+ {
2484
+ "epoch": 0.354,
2485
+ "grad_norm": 19.0,
2486
+ "learning_rate": 9.798445292044865e-06,
2487
+ "loss": 2.8687,
2488
+ "step": 3540
2489
+ },
2490
+ {
2491
+ "epoch": 0.355,
2492
+ "grad_norm": 23.0,
2493
+ "learning_rate": 9.796925334082501e-06,
2494
+ "loss": 2.8029,
2495
+ "step": 3550
2496
+ },
2497
+ {
2498
+ "epoch": 0.356,
2499
+ "grad_norm": 21.5,
2500
+ "learning_rate": 9.795399785285026e-06,
2501
+ "loss": 2.9439,
2502
+ "step": 3560
2503
+ },
2504
+ {
2505
+ "epoch": 0.357,
2506
+ "grad_norm": 22.375,
2507
+ "learning_rate": 9.793868647430476e-06,
2508
+ "loss": 2.5769,
2509
+ "step": 3570
2510
+ },
2511
+ {
2512
+ "epoch": 0.358,
2513
+ "grad_norm": 21.0,
2514
+ "learning_rate": 9.792331922303396e-06,
2515
+ "loss": 2.5519,
2516
+ "step": 3580
2517
+ },
2518
+ {
2519
+ "epoch": 0.359,
2520
+ "grad_norm": 17.375,
2521
+ "learning_rate": 9.790789611694846e-06,
2522
+ "loss": 2.5939,
2523
+ "step": 3590
2524
+ },
2525
+ {
2526
+ "epoch": 0.36,
2527
+ "grad_norm": 21.375,
2528
+ "learning_rate": 9.789241717402396e-06,
2529
+ "loss": 2.3467,
2530
+ "step": 3600
2531
+ },
2532
+ {
2533
+ "epoch": 0.361,
2534
+ "grad_norm": 20.5,
2535
+ "learning_rate": 9.78768824123012e-06,
2536
+ "loss": 2.506,
2537
+ "step": 3610
2538
+ },
2539
+ {
2540
+ "epoch": 0.362,
2541
+ "grad_norm": 16.625,
2542
+ "learning_rate": 9.786129184988601e-06,
2543
+ "loss": 2.4018,
2544
+ "step": 3620
2545
+ },
2546
+ {
2547
+ "epoch": 0.363,
2548
+ "grad_norm": 20.0,
2549
+ "learning_rate": 9.78456455049493e-06,
2550
+ "loss": 2.5399,
2551
+ "step": 3630
2552
+ },
2553
+ {
2554
+ "epoch": 0.364,
2555
+ "grad_norm": 18.75,
2556
+ "learning_rate": 9.782994339572688e-06,
2557
+ "loss": 2.4026,
2558
+ "step": 3640
2559
+ },
2560
+ {
2561
+ "epoch": 0.365,
2562
+ "grad_norm": 20.25,
2563
+ "learning_rate": 9.781418554051964e-06,
2564
+ "loss": 2.3732,
2565
+ "step": 3650
2566
+ },
2567
+ {
2568
+ "epoch": 0.366,
2569
+ "grad_norm": 17.25,
2570
+ "learning_rate": 9.779837195769345e-06,
2571
+ "loss": 2.6251,
2572
+ "step": 3660
2573
+ },
2574
+ {
2575
+ "epoch": 0.367,
2576
+ "grad_norm": 20.75,
2577
+ "learning_rate": 9.778250266567908e-06,
2578
+ "loss": 2.7751,
2579
+ "step": 3670
2580
+ },
2581
+ {
2582
+ "epoch": 0.368,
2583
+ "grad_norm": 23.0,
2584
+ "learning_rate": 9.776657768297225e-06,
2585
+ "loss": 2.6921,
2586
+ "step": 3680
2587
+ },
2588
+ {
2589
+ "epoch": 0.369,
2590
+ "grad_norm": 17.5,
2591
+ "learning_rate": 9.775059702813357e-06,
2592
+ "loss": 2.4276,
2593
+ "step": 3690
2594
+ },
2595
+ {
2596
+ "epoch": 0.37,
2597
+ "grad_norm": 17.875,
2598
+ "learning_rate": 9.77345607197886e-06,
2599
+ "loss": 2.4817,
2600
+ "step": 3700
2601
+ },
2602
+ {
2603
+ "epoch": 0.371,
2604
+ "grad_norm": 18.25,
2605
+ "learning_rate": 9.771846877662768e-06,
2606
+ "loss": 2.6489,
2607
+ "step": 3710
2608
+ },
2609
+ {
2610
+ "epoch": 0.372,
2611
+ "grad_norm": 20.875,
2612
+ "learning_rate": 9.770232121740606e-06,
2613
+ "loss": 2.6174,
2614
+ "step": 3720
2615
+ },
2616
+ {
2617
+ "epoch": 0.373,
2618
+ "grad_norm": 19.375,
2619
+ "learning_rate": 9.768611806094376e-06,
2620
+ "loss": 2.4813,
2621
+ "step": 3730
2622
+ },
2623
+ {
2624
+ "epoch": 0.374,
2625
+ "grad_norm": 21.0,
2626
+ "learning_rate": 9.766985932612566e-06,
2627
+ "loss": 2.5242,
2628
+ "step": 3740
2629
+ },
2630
+ {
2631
+ "epoch": 0.375,
2632
+ "grad_norm": 21.125,
2633
+ "learning_rate": 9.765354503190133e-06,
2634
+ "loss": 2.5407,
2635
+ "step": 3750
2636
+ },
2637
+ {
2638
+ "epoch": 0.376,
2639
+ "grad_norm": 15.875,
2640
+ "learning_rate": 9.763717519728518e-06,
2641
+ "loss": 2.5035,
2642
+ "step": 3760
2643
+ },
2644
+ {
2645
+ "epoch": 0.377,
2646
+ "grad_norm": 19.125,
2647
+ "learning_rate": 9.76207498413563e-06,
2648
+ "loss": 2.9284,
2649
+ "step": 3770
2650
+ },
2651
+ {
2652
+ "epoch": 0.378,
2653
+ "grad_norm": 19.25,
2654
+ "learning_rate": 9.760426898325849e-06,
2655
+ "loss": 2.9116,
2656
+ "step": 3780
2657
+ },
2658
+ {
2659
+ "epoch": 0.379,
2660
+ "grad_norm": 18.125,
2661
+ "learning_rate": 9.758773264220027e-06,
2662
+ "loss": 2.5067,
2663
+ "step": 3790
2664
+ },
2665
+ {
2666
+ "epoch": 0.38,
2667
+ "grad_norm": 20.25,
2668
+ "learning_rate": 9.757114083745482e-06,
2669
+ "loss": 2.3966,
2670
+ "step": 3800
2671
+ },
2672
+ {
2673
+ "epoch": 0.381,
2674
+ "grad_norm": 18.125,
2675
+ "learning_rate": 9.755449358835995e-06,
2676
+ "loss": 2.7571,
2677
+ "step": 3810
2678
+ },
2679
+ {
2680
+ "epoch": 0.382,
2681
+ "grad_norm": 18.0,
2682
+ "learning_rate": 9.75377909143181e-06,
2683
+ "loss": 2.5862,
2684
+ "step": 3820
2685
+ },
2686
+ {
2687
+ "epoch": 0.383,
2688
+ "grad_norm": 19.5,
2689
+ "learning_rate": 9.752103283479626e-06,
2690
+ "loss": 2.46,
2691
+ "step": 3830
2692
+ },
2693
+ {
2694
+ "epoch": 0.384,
2695
+ "grad_norm": 19.25,
2696
+ "learning_rate": 9.750421936932608e-06,
2697
+ "loss": 2.3346,
2698
+ "step": 3840
2699
+ },
2700
+ {
2701
+ "epoch": 0.385,
2702
+ "grad_norm": 19.5,
2703
+ "learning_rate": 9.74873505375037e-06,
2704
+ "loss": 2.4179,
2705
+ "step": 3850
2706
+ },
2707
+ {
2708
+ "epoch": 0.386,
2709
+ "grad_norm": 17.75,
2710
+ "learning_rate": 9.747042635898982e-06,
2711
+ "loss": 2.3839,
2712
+ "step": 3860
2713
+ },
2714
+ {
2715
+ "epoch": 0.387,
2716
+ "grad_norm": 14.75,
2717
+ "learning_rate": 9.745344685350963e-06,
2718
+ "loss": 2.646,
2719
+ "step": 3870
2720
+ },
2721
+ {
2722
+ "epoch": 0.388,
2723
+ "grad_norm": 20.0,
2724
+ "learning_rate": 9.743641204085282e-06,
2725
+ "loss": 2.6814,
2726
+ "step": 3880
2727
+ },
2728
+ {
2729
+ "epoch": 0.389,
2730
+ "grad_norm": 18.0,
2731
+ "learning_rate": 9.74193219408735e-06,
2732
+ "loss": 2.4887,
2733
+ "step": 3890
2734
+ },
2735
+ {
2736
+ "epoch": 0.39,
2737
+ "grad_norm": 18.0,
2738
+ "learning_rate": 9.740217657349028e-06,
2739
+ "loss": 2.6592,
2740
+ "step": 3900
2741
+ },
2742
+ {
2743
+ "epoch": 0.391,
2744
+ "grad_norm": 20.25,
2745
+ "learning_rate": 9.738497595868615e-06,
2746
+ "loss": 2.4634,
2747
+ "step": 3910
2748
+ },
2749
+ {
2750
+ "epoch": 0.392,
2751
+ "grad_norm": 19.75,
2752
+ "learning_rate": 9.736772011650846e-06,
2753
+ "loss": 2.9073,
2754
+ "step": 3920
2755
+ },
2756
+ {
2757
+ "epoch": 0.393,
2758
+ "grad_norm": 17.25,
2759
+ "learning_rate": 9.735040906706898e-06,
2760
+ "loss": 2.3341,
2761
+ "step": 3930
2762
+ },
2763
+ {
2764
+ "epoch": 0.394,
2765
+ "grad_norm": 22.0,
2766
+ "learning_rate": 9.733304283054384e-06,
2767
+ "loss": 2.6865,
2768
+ "step": 3940
2769
+ },
2770
+ {
2771
+ "epoch": 0.395,
2772
+ "grad_norm": 20.25,
2773
+ "learning_rate": 9.731562142717341e-06,
2774
+ "loss": 2.6186,
2775
+ "step": 3950
2776
+ },
2777
+ {
2778
+ "epoch": 0.396,
2779
+ "grad_norm": 14.75,
2780
+ "learning_rate": 9.729814487726241e-06,
2781
+ "loss": 2.3226,
2782
+ "step": 3960
2783
+ },
2784
+ {
2785
+ "epoch": 0.397,
2786
+ "grad_norm": 23.25,
2787
+ "learning_rate": 9.728061320117985e-06,
2788
+ "loss": 2.4437,
2789
+ "step": 3970
2790
+ },
2791
+ {
2792
+ "epoch": 0.398,
2793
+ "grad_norm": 17.5,
2794
+ "learning_rate": 9.726302641935895e-06,
2795
+ "loss": 2.3598,
2796
+ "step": 3980
2797
+ },
2798
+ {
2799
+ "epoch": 0.399,
2800
+ "grad_norm": 14.125,
2801
+ "learning_rate": 9.724538455229718e-06,
2802
+ "loss": 2.3781,
2803
+ "step": 3990
2804
+ },
2805
+ {
2806
+ "epoch": 0.4,
2807
+ "grad_norm": 21.5,
2808
+ "learning_rate": 9.722768762055619e-06,
2809
+ "loss": 2.8198,
2810
+ "step": 4000
2811
+ },
2812
+ {
2813
+ "epoch": 0.401,
2814
+ "grad_norm": 18.25,
2815
+ "learning_rate": 9.720993564476183e-06,
2816
+ "loss": 2.2972,
2817
+ "step": 4010
2818
+ },
2819
+ {
2820
+ "epoch": 0.402,
2821
+ "grad_norm": 20.25,
2822
+ "learning_rate": 9.719212864560412e-06,
2823
+ "loss": 2.399,
2824
+ "step": 4020
2825
+ },
2826
+ {
2827
+ "epoch": 0.403,
2828
+ "grad_norm": 20.25,
2829
+ "learning_rate": 9.717426664383713e-06,
2830
+ "loss": 2.5677,
2831
+ "step": 4030
2832
+ },
2833
+ {
2834
+ "epoch": 0.404,
2835
+ "grad_norm": 17.75,
2836
+ "learning_rate": 9.715634966027915e-06,
2837
+ "loss": 2.6581,
2838
+ "step": 4040
2839
+ },
2840
+ {
2841
+ "epoch": 0.405,
2842
+ "grad_norm": 20.5,
2843
+ "learning_rate": 9.713837771581248e-06,
2844
+ "loss": 2.5335,
2845
+ "step": 4050
2846
+ },
2847
+ {
2848
+ "epoch": 0.406,
2849
+ "grad_norm": 17.75,
2850
+ "learning_rate": 9.712035083138347e-06,
2851
+ "loss": 2.1949,
2852
+ "step": 4060
2853
+ },
2854
+ {
2855
+ "epoch": 0.407,
2856
+ "grad_norm": 21.0,
2857
+ "learning_rate": 9.710226902800255e-06,
2858
+ "loss": 2.3183,
2859
+ "step": 4070
2860
+ },
2861
+ {
2862
+ "epoch": 0.408,
2863
+ "grad_norm": 20.5,
2864
+ "learning_rate": 9.708413232674412e-06,
2865
+ "loss": 2.3879,
2866
+ "step": 4080
2867
+ },
2868
+ {
2869
+ "epoch": 0.409,
2870
+ "grad_norm": 17.125,
2871
+ "learning_rate": 9.706594074874656e-06,
2872
+ "loss": 2.3861,
2873
+ "step": 4090
2874
+ },
2875
+ {
2876
+ "epoch": 0.41,
2877
+ "grad_norm": 20.375,
2878
+ "learning_rate": 9.704769431521226e-06,
2879
+ "loss": 2.4686,
2880
+ "step": 4100
2881
+ },
2882
+ {
2883
+ "epoch": 0.411,
2884
+ "grad_norm": 14.9375,
2885
+ "learning_rate": 9.702939304740747e-06,
2886
+ "loss": 2.4789,
2887
+ "step": 4110
2888
+ },
2889
+ {
2890
+ "epoch": 0.412,
2891
+ "grad_norm": 20.0,
2892
+ "learning_rate": 9.701103696666241e-06,
2893
+ "loss": 2.5005,
2894
+ "step": 4120
2895
+ },
2896
+ {
2897
+ "epoch": 0.413,
2898
+ "grad_norm": 16.75,
2899
+ "learning_rate": 9.699262609437117e-06,
2900
+ "loss": 2.6703,
2901
+ "step": 4130
2902
+ },
2903
+ {
2904
+ "epoch": 0.414,
2905
+ "grad_norm": 17.875,
2906
+ "learning_rate": 9.697416045199167e-06,
2907
+ "loss": 2.6555,
2908
+ "step": 4140
2909
+ },
2910
+ {
2911
+ "epoch": 0.415,
2912
+ "grad_norm": 19.625,
2913
+ "learning_rate": 9.695564006104572e-06,
2914
+ "loss": 2.5342,
2915
+ "step": 4150
2916
+ },
2917
+ {
2918
+ "epoch": 0.416,
2919
+ "grad_norm": 20.625,
2920
+ "learning_rate": 9.693706494311887e-06,
2921
+ "loss": 2.3838,
2922
+ "step": 4160
2923
+ },
2924
+ {
2925
+ "epoch": 0.417,
2926
+ "grad_norm": 15.75,
2927
+ "learning_rate": 9.691843511986051e-06,
2928
+ "loss": 2.4372,
2929
+ "step": 4170
2930
+ },
2931
+ {
2932
+ "epoch": 0.418,
2933
+ "grad_norm": 20.5,
2934
+ "learning_rate": 9.68997506129838e-06,
2935
+ "loss": 2.6174,
2936
+ "step": 4180
2937
+ },
2938
+ {
2939
+ "epoch": 0.419,
2940
+ "grad_norm": 16.625,
2941
+ "learning_rate": 9.688101144426557e-06,
2942
+ "loss": 2.3661,
2943
+ "step": 4190
2944
+ },
2945
+ {
2946
+ "epoch": 0.42,
2947
+ "grad_norm": 18.5,
2948
+ "learning_rate": 9.68622176355464e-06,
2949
+ "loss": 2.1973,
2950
+ "step": 4200
2951
+ },
2952
+ {
2953
+ "epoch": 0.421,
2954
+ "grad_norm": 16.25,
2955
+ "learning_rate": 9.684336920873055e-06,
2956
+ "loss": 2.3309,
2957
+ "step": 4210
2958
+ },
2959
+ {
2960
+ "epoch": 0.422,
2961
+ "grad_norm": 17.0,
2962
+ "learning_rate": 9.682446618578593e-06,
2963
+ "loss": 2.4981,
2964
+ "step": 4220
2965
+ },
2966
+ {
2967
+ "epoch": 0.423,
2968
+ "grad_norm": 14.625,
2969
+ "learning_rate": 9.680550858874409e-06,
2970
+ "loss": 2.8275,
2971
+ "step": 4230
2972
+ },
2973
+ {
2974
+ "epoch": 0.424,
2975
+ "grad_norm": 20.5,
2976
+ "learning_rate": 9.678649643970018e-06,
2977
+ "loss": 2.6569,
2978
+ "step": 4240
2979
+ },
2980
+ {
2981
+ "epoch": 0.425,
2982
+ "grad_norm": 19.875,
2983
+ "learning_rate": 9.676742976081295e-06,
2984
+ "loss": 2.8605,
2985
+ "step": 4250
2986
+ },
2987
+ {
2988
+ "epoch": 0.426,
2989
+ "grad_norm": 17.375,
2990
+ "learning_rate": 9.674830857430466e-06,
2991
+ "loss": 2.396,
2992
+ "step": 4260
2993
+ },
2994
+ {
2995
+ "epoch": 0.427,
2996
+ "grad_norm": 17.25,
2997
+ "learning_rate": 9.672913290246115e-06,
2998
+ "loss": 2.4021,
2999
+ "step": 4270
3000
+ },
3001
+ {
3002
+ "epoch": 0.428,
3003
+ "grad_norm": 20.625,
3004
+ "learning_rate": 9.670990276763174e-06,
3005
+ "loss": 2.5815,
3006
+ "step": 4280
3007
+ },
3008
+ {
3009
+ "epoch": 0.429,
3010
+ "grad_norm": 17.75,
3011
+ "learning_rate": 9.669061819222923e-06,
3012
+ "loss": 2.3317,
3013
+ "step": 4290
3014
+ },
3015
+ {
3016
+ "epoch": 0.43,
3017
+ "grad_norm": 22.625,
3018
+ "learning_rate": 9.667127919872983e-06,
3019
+ "loss": 2.6058,
3020
+ "step": 4300
3021
+ },
3022
+ {
3023
+ "epoch": 0.431,
3024
+ "grad_norm": 20.625,
3025
+ "learning_rate": 9.665188580967326e-06,
3026
+ "loss": 2.7117,
3027
+ "step": 4310
3028
+ },
3029
+ {
3030
+ "epoch": 0.432,
3031
+ "grad_norm": 19.625,
3032
+ "learning_rate": 9.663243804766256e-06,
3033
+ "loss": 2.5155,
3034
+ "step": 4320
3035
+ },
3036
+ {
3037
+ "epoch": 0.433,
3038
+ "grad_norm": 19.375,
3039
+ "learning_rate": 9.661293593536418e-06,
3040
+ "loss": 2.5754,
3041
+ "step": 4330
3042
+ },
3043
+ {
3044
+ "epoch": 0.434,
3045
+ "grad_norm": 19.25,
3046
+ "learning_rate": 9.65933794955079e-06,
3047
+ "loss": 2.6044,
3048
+ "step": 4340
3049
+ },
3050
+ {
3051
+ "epoch": 0.435,
3052
+ "grad_norm": 18.75,
3053
+ "learning_rate": 9.657376875088687e-06,
3054
+ "loss": 2.4606,
3055
+ "step": 4350
3056
+ },
3057
+ {
3058
+ "epoch": 0.436,
3059
+ "grad_norm": 18.875,
3060
+ "learning_rate": 9.655410372435743e-06,
3061
+ "loss": 2.5395,
3062
+ "step": 4360
3063
+ },
3064
+ {
3065
+ "epoch": 0.437,
3066
+ "grad_norm": 19.0,
3067
+ "learning_rate": 9.653438443883928e-06,
3068
+ "loss": 2.4258,
3069
+ "step": 4370
3070
+ },
3071
+ {
3072
+ "epoch": 0.438,
3073
+ "grad_norm": 19.125,
3074
+ "learning_rate": 9.651461091731531e-06,
3075
+ "loss": 2.3891,
3076
+ "step": 4380
3077
+ },
3078
+ {
3079
+ "epoch": 0.439,
3080
+ "grad_norm": 20.125,
3081
+ "learning_rate": 9.649478318283163e-06,
3082
+ "loss": 2.7879,
3083
+ "step": 4390
3084
+ },
3085
+ {
3086
+ "epoch": 0.44,
3087
+ "grad_norm": 19.125,
3088
+ "learning_rate": 9.647490125849756e-06,
3089
+ "loss": 2.3331,
3090
+ "step": 4400
3091
+ },
3092
+ {
3093
+ "epoch": 0.441,
3094
+ "grad_norm": 21.875,
3095
+ "learning_rate": 9.645496516748555e-06,
3096
+ "loss": 2.4382,
3097
+ "step": 4410
3098
+ },
3099
+ {
3100
+ "epoch": 0.442,
3101
+ "grad_norm": 20.75,
3102
+ "learning_rate": 9.64349749330312e-06,
3103
+ "loss": 2.5799,
3104
+ "step": 4420
3105
+ },
3106
+ {
3107
+ "epoch": 0.443,
3108
+ "grad_norm": 17.25,
3109
+ "learning_rate": 9.64149305784332e-06,
3110
+ "loss": 2.7297,
3111
+ "step": 4430
3112
+ },
3113
+ {
3114
+ "epoch": 0.444,
3115
+ "grad_norm": 17.875,
3116
+ "learning_rate": 9.639483212705331e-06,
3117
+ "loss": 2.7431,
3118
+ "step": 4440
3119
+ },
3120
+ {
3121
+ "epoch": 0.445,
3122
+ "grad_norm": 19.0,
3123
+ "learning_rate": 9.637467960231637e-06,
3124
+ "loss": 2.4937,
3125
+ "step": 4450
3126
+ },
3127
+ {
3128
+ "epoch": 0.446,
3129
+ "grad_norm": 25.375,
3130
+ "learning_rate": 9.635447302771022e-06,
3131
+ "loss": 2.6898,
3132
+ "step": 4460
3133
+ },
3134
+ {
3135
+ "epoch": 0.447,
3136
+ "grad_norm": 18.875,
3137
+ "learning_rate": 9.63342124267857e-06,
3138
+ "loss": 2.2197,
3139
+ "step": 4470
3140
+ },
3141
+ {
3142
+ "epoch": 0.448,
3143
+ "grad_norm": 20.125,
3144
+ "learning_rate": 9.631389782315663e-06,
3145
+ "loss": 2.5553,
3146
+ "step": 4480
3147
+ },
3148
+ {
3149
+ "epoch": 0.449,
3150
+ "grad_norm": 18.0,
3151
+ "learning_rate": 9.629352924049975e-06,
3152
+ "loss": 2.477,
3153
+ "step": 4490
3154
+ },
3155
+ {
3156
+ "epoch": 0.45,
3157
+ "grad_norm": 16.75,
3158
+ "learning_rate": 9.627310670255471e-06,
3159
+ "loss": 2.2515,
3160
+ "step": 4500
3161
+ },
3162
+ {
3163
+ "epoch": 0.451,
3164
+ "grad_norm": 19.625,
3165
+ "learning_rate": 9.625263023312408e-06,
3166
+ "loss": 2.5055,
3167
+ "step": 4510
3168
+ },
3169
+ {
3170
+ "epoch": 0.452,
3171
+ "grad_norm": 15.75,
3172
+ "learning_rate": 9.623209985607327e-06,
3173
+ "loss": 2.3196,
3174
+ "step": 4520
3175
+ },
3176
+ {
3177
+ "epoch": 0.453,
3178
+ "grad_norm": 19.125,
3179
+ "learning_rate": 9.621151559533048e-06,
3180
+ "loss": 2.4119,
3181
+ "step": 4530
3182
+ },
3183
+ {
3184
+ "epoch": 0.454,
3185
+ "grad_norm": 20.625,
3186
+ "learning_rate": 9.619087747488675e-06,
3187
+ "loss": 2.7065,
3188
+ "step": 4540
3189
+ },
3190
+ {
3191
+ "epoch": 0.455,
3192
+ "grad_norm": 19.375,
3193
+ "learning_rate": 9.617018551879593e-06,
3194
+ "loss": 2.531,
3195
+ "step": 4550
3196
+ },
3197
+ {
3198
+ "epoch": 0.456,
3199
+ "grad_norm": 19.625,
3200
+ "learning_rate": 9.614943975117454e-06,
3201
+ "loss": 2.7495,
3202
+ "step": 4560
3203
+ },
3204
+ {
3205
+ "epoch": 0.457,
3206
+ "grad_norm": 16.25,
3207
+ "learning_rate": 9.612864019620187e-06,
3208
+ "loss": 2.454,
3209
+ "step": 4570
3210
+ },
3211
+ {
3212
+ "epoch": 0.458,
3213
+ "grad_norm": 19.75,
3214
+ "learning_rate": 9.610778687811988e-06,
3215
+ "loss": 2.5686,
3216
+ "step": 4580
3217
+ },
3218
+ {
3219
+ "epoch": 0.459,
3220
+ "grad_norm": 22.125,
3221
+ "learning_rate": 9.608687982123318e-06,
3222
+ "loss": 2.4886,
3223
+ "step": 4590
3224
+ },
3225
+ {
3226
+ "epoch": 0.46,
3227
+ "grad_norm": 15.4375,
3228
+ "learning_rate": 9.606591904990903e-06,
3229
+ "loss": 2.3279,
3230
+ "step": 4600
3231
+ },
3232
+ {
3233
+ "epoch": 0.461,
3234
+ "grad_norm": 15.625,
3235
+ "learning_rate": 9.60449045885773e-06,
3236
+ "loss": 2.9503,
3237
+ "step": 4610
3238
+ },
3239
+ {
3240
+ "epoch": 0.462,
3241
+ "grad_norm": 21.0,
3242
+ "learning_rate": 9.602383646173041e-06,
3243
+ "loss": 2.5394,
3244
+ "step": 4620
3245
+ },
3246
+ {
3247
+ "epoch": 0.463,
3248
+ "grad_norm": 19.75,
3249
+ "learning_rate": 9.600271469392335e-06,
3250
+ "loss": 2.4151,
3251
+ "step": 4630
3252
+ },
3253
+ {
3254
+ "epoch": 0.464,
3255
+ "grad_norm": 20.875,
3256
+ "learning_rate": 9.598153930977364e-06,
3257
+ "loss": 2.7415,
3258
+ "step": 4640
3259
+ },
3260
+ {
3261
+ "epoch": 0.465,
3262
+ "grad_norm": 18.75,
3263
+ "learning_rate": 9.596031033396126e-06,
3264
+ "loss": 2.5966,
3265
+ "step": 4650
3266
+ },
3267
+ {
3268
+ "epoch": 0.466,
3269
+ "grad_norm": 18.625,
3270
+ "learning_rate": 9.593902779122865e-06,
3271
+ "loss": 2.4929,
3272
+ "step": 4660
3273
+ },
3274
+ {
3275
+ "epoch": 0.467,
3276
+ "grad_norm": 21.0,
3277
+ "learning_rate": 9.591769170638072e-06,
3278
+ "loss": 2.6185,
3279
+ "step": 4670
3280
+ },
3281
+ {
3282
+ "epoch": 0.468,
3283
+ "grad_norm": 19.25,
3284
+ "learning_rate": 9.589630210428476e-06,
3285
+ "loss": 2.5501,
3286
+ "step": 4680
3287
+ },
3288
+ {
3289
+ "epoch": 0.469,
3290
+ "grad_norm": 18.125,
3291
+ "learning_rate": 9.587485900987042e-06,
3292
+ "loss": 2.4147,
3293
+ "step": 4690
3294
+ },
3295
+ {
3296
+ "epoch": 0.47,
3297
+ "grad_norm": 17.5,
3298
+ "learning_rate": 9.585336244812969e-06,
3299
+ "loss": 2.554,
3300
+ "step": 4700
3301
+ },
3302
+ {
3303
+ "epoch": 0.471,
3304
+ "grad_norm": 17.125,
3305
+ "learning_rate": 9.583181244411694e-06,
3306
+ "loss": 2.64,
3307
+ "step": 4710
3308
+ },
3309
+ {
3310
+ "epoch": 0.472,
3311
+ "grad_norm": 17.5,
3312
+ "learning_rate": 9.581020902294876e-06,
3313
+ "loss": 2.5522,
3314
+ "step": 4720
3315
+ },
3316
+ {
3317
+ "epoch": 0.473,
3318
+ "grad_norm": 24.625,
3319
+ "learning_rate": 9.5788552209804e-06,
3320
+ "loss": 2.8493,
3321
+ "step": 4730
3322
+ },
3323
+ {
3324
+ "epoch": 0.474,
3325
+ "grad_norm": 19.5,
3326
+ "learning_rate": 9.576684202992381e-06,
3327
+ "loss": 2.3638,
3328
+ "step": 4740
3329
+ },
3330
+ {
3331
+ "epoch": 0.475,
3332
+ "grad_norm": 18.75,
3333
+ "learning_rate": 9.574507850861145e-06,
3334
+ "loss": 2.4673,
3335
+ "step": 4750
3336
+ },
3337
+ {
3338
+ "epoch": 0.476,
3339
+ "grad_norm": 20.0,
3340
+ "learning_rate": 9.572326167123242e-06,
3341
+ "loss": 2.5699,
3342
+ "step": 4760
3343
+ },
3344
+ {
3345
+ "epoch": 0.477,
3346
+ "grad_norm": 18.0,
3347
+ "learning_rate": 9.570139154321429e-06,
3348
+ "loss": 2.522,
3349
+ "step": 4770
3350
+ },
3351
+ {
3352
+ "epoch": 0.478,
3353
+ "grad_norm": 19.5,
3354
+ "learning_rate": 9.567946815004681e-06,
3355
+ "loss": 2.7148,
3356
+ "step": 4780
3357
+ },
3358
+ {
3359
+ "epoch": 0.479,
3360
+ "grad_norm": 17.75,
3361
+ "learning_rate": 9.565749151728176e-06,
3362
+ "loss": 2.5433,
3363
+ "step": 4790
3364
+ },
3365
+ {
3366
+ "epoch": 0.48,
3367
+ "grad_norm": 19.375,
3368
+ "learning_rate": 9.563546167053302e-06,
3369
+ "loss": 2.6228,
3370
+ "step": 4800
3371
+ },
3372
+ {
3373
+ "epoch": 0.481,
3374
+ "grad_norm": 19.75,
3375
+ "learning_rate": 9.561337863547642e-06,
3376
+ "loss": 2.3278,
3377
+ "step": 4810
3378
+ },
3379
+ {
3380
+ "epoch": 0.482,
3381
+ "grad_norm": 18.125,
3382
+ "learning_rate": 9.559124243784985e-06,
3383
+ "loss": 2.318,
3384
+ "step": 4820
3385
+ },
3386
+ {
3387
+ "epoch": 0.483,
3388
+ "grad_norm": 17.5,
3389
+ "learning_rate": 9.556905310345313e-06,
3390
+ "loss": 2.6863,
3391
+ "step": 4830
3392
+ },
3393
+ {
3394
+ "epoch": 0.484,
3395
+ "grad_norm": 16.625,
3396
+ "learning_rate": 9.554681065814802e-06,
3397
+ "loss": 2.6111,
3398
+ "step": 4840
3399
+ },
3400
+ {
3401
+ "epoch": 0.485,
3402
+ "grad_norm": 16.375,
3403
+ "learning_rate": 9.552451512785816e-06,
3404
+ "loss": 2.3087,
3405
+ "step": 4850
3406
+ },
3407
+ {
3408
+ "epoch": 0.486,
3409
+ "grad_norm": 18.625,
3410
+ "learning_rate": 9.55021665385691e-06,
3411
+ "loss": 2.5179,
3412
+ "step": 4860
3413
+ },
3414
+ {
3415
+ "epoch": 0.487,
3416
+ "grad_norm": 19.75,
3417
+ "learning_rate": 9.54797649163282e-06,
3418
+ "loss": 2.4464,
3419
+ "step": 4870
3420
+ },
3421
+ {
3422
+ "epoch": 0.488,
3423
+ "grad_norm": 18.25,
3424
+ "learning_rate": 9.545731028724463e-06,
3425
+ "loss": 2.6145,
3426
+ "step": 4880
3427
+ },
3428
+ {
3429
+ "epoch": 0.489,
3430
+ "grad_norm": 21.0,
3431
+ "learning_rate": 9.543480267748935e-06,
3432
+ "loss": 2.4499,
3433
+ "step": 4890
3434
+ },
3435
+ {
3436
+ "epoch": 0.49,
3437
+ "grad_norm": 20.625,
3438
+ "learning_rate": 9.541224211329504e-06,
3439
+ "loss": 2.3893,
3440
+ "step": 4900
3441
+ },
3442
+ {
3443
+ "epoch": 0.491,
3444
+ "grad_norm": 17.75,
3445
+ "learning_rate": 9.53896286209562e-06,
3446
+ "loss": 2.475,
3447
+ "step": 4910
3448
+ },
3449
+ {
3450
+ "epoch": 0.492,
3451
+ "grad_norm": 16.375,
3452
+ "learning_rate": 9.536696222682887e-06,
3453
+ "loss": 2.585,
3454
+ "step": 4920
3455
+ },
3456
+ {
3457
+ "epoch": 0.493,
3458
+ "grad_norm": 21.25,
3459
+ "learning_rate": 9.534424295733085e-06,
3460
+ "loss": 2.4422,
3461
+ "step": 4930
3462
+ },
3463
+ {
3464
+ "epoch": 0.494,
3465
+ "grad_norm": 21.75,
3466
+ "learning_rate": 9.532147083894153e-06,
3467
+ "loss": 2.7116,
3468
+ "step": 4940
3469
+ },
3470
+ {
3471
+ "epoch": 0.495,
3472
+ "grad_norm": 20.5,
3473
+ "learning_rate": 9.529864589820192e-06,
3474
+ "loss": 2.7823,
3475
+ "step": 4950
3476
+ },
3477
+ {
3478
+ "epoch": 0.496,
3479
+ "grad_norm": 16.0,
3480
+ "learning_rate": 9.527576816171454e-06,
3481
+ "loss": 2.7586,
3482
+ "step": 4960
3483
+ },
3484
+ {
3485
+ "epoch": 0.497,
3486
+ "grad_norm": 20.25,
3487
+ "learning_rate": 9.525283765614353e-06,
3488
+ "loss": 2.4244,
3489
+ "step": 4970
3490
+ },
3491
+ {
3492
+ "epoch": 0.498,
3493
+ "grad_norm": 19.0,
3494
+ "learning_rate": 9.522985440821444e-06,
3495
+ "loss": 2.7349,
3496
+ "step": 4980
3497
+ },
3498
+ {
3499
+ "epoch": 0.499,
3500
+ "grad_norm": 22.625,
3501
+ "learning_rate": 9.520681844471435e-06,
3502
+ "loss": 2.7601,
3503
+ "step": 4990
3504
+ },
3505
+ {
3506
+ "epoch": 0.5,
3507
+ "grad_norm": 18.625,
3508
+ "learning_rate": 9.518372979249178e-06,
3509
+ "loss": 2.7425,
3510
+ "step": 5000
3511
+ }
3512
+ ],
3513
+ "logging_steps": 10,
3514
+ "max_steps": 10000,
3515
+ "num_input_tokens_seen": 0,
3516
+ "num_train_epochs": 1,
3517
+ "save_steps": 1000,
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": 0.0,
3531
+ "train_batch_size": 1,
3532
+ "trial_name": null,
3533
+ "trial_params": null
3534
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff