LeTue09 commited on
Commit
0d26333
·
verified ·
1 Parent(s): 1e68b37

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
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
+ "dtype": "float32",
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
+ "pad_token_id": 151643,
49
+ "rms_norm_eps": 1e-06,
50
+ "rope_scaling": null,
51
+ "rope_theta": 1000000.0,
52
+ "sliding_window": null,
53
+ "tie_word_embeddings": false,
54
+ "transformers_version": "4.57.1",
55
+ "use_cache": false,
56
+ "use_sliding_window": false,
57
+ "vocab_size": 152064
58
+ }
generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151643
6
+ ],
7
+ "pad_token_id": 151643,
8
+ "repetition_penalty": 1.1,
9
+ "temperature": 0.7,
10
+ "top_k": 20,
11
+ "top_p": 0.8,
12
+ "transformers_version": "4.57.1"
13
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcd99ecbbec307e344ed9413cea2a7ebaf3774f48c5627828de518727cd6a240
3
+ size 4976687216
model-00002-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cd2b8cbbe1bb9d5852b5206b048e46a601be2558433b9f77996d180c5f85604
3
+ size 4778622352
model-00003-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b20be39887ce0a7e2eae9bb997953c9ace0bac3e1258a789d12ac573d2dae6f7
3
+ size 4932743960
model-00004-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9a34111297daed13a14d565856a28e4b9e1df3eeea154a66f8fafafa2236059
3
+ size 4932743992
model-00005-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ceb2341410afd3c8b9330e59587468854a50f996f7a8ca4d6c0708c53d7e68ea
3
+ size 4998852296
model-00006-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37bb68cef8737131ac7c86a184ed2fff0b66d76f555ae81510f3e564978adc7e
3
+ size 3662865184
model-00007-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b54a403826df6c856ee5b59c9fc5246a25b4b97795f0c7b2bb007cc2566f669f
3
+ size 2179989632
model.safetensors.index.json ADDED
@@ -0,0 +1,347 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 951952064,
4
+ "total_size": 30462466048
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00007-of-00007.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00007.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00007.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00007.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00007.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
14
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00007.safetensors",
15
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00007.safetensors",
16
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
17
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00007.safetensors",
18
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00007.safetensors",
19
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00007.safetensors",
20
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00007.safetensors",
21
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00007.safetensors",
22
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
23
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00007.safetensors",
24
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00007.safetensors",
25
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
26
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00007.safetensors",
27
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00007.safetensors",
28
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
29
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00007.safetensors",
30
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00007.safetensors",
31
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00007.safetensors",
32
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00007.safetensors",
33
+ "model.layers.10.input_layernorm.weight": "model-00003-of-00007.safetensors",
34
+ "model.layers.10.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
35
+ "model.layers.10.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
36
+ "model.layers.10.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
37
+ "model.layers.10.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
38
+ "model.layers.10.self_attn.k_proj.bias": "model-00003-of-00007.safetensors",
39
+ "model.layers.10.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
40
+ "model.layers.10.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
41
+ "model.layers.10.self_attn.q_proj.bias": "model-00003-of-00007.safetensors",
42
+ "model.layers.10.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
43
+ "model.layers.10.self_attn.v_proj.bias": "model-00003-of-00007.safetensors",
44
+ "model.layers.10.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
45
+ "model.layers.11.input_layernorm.weight": "model-00003-of-00007.safetensors",
46
+ "model.layers.11.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
47
+ "model.layers.11.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
48
+ "model.layers.11.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
49
+ "model.layers.11.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
50
+ "model.layers.11.self_attn.k_proj.bias": "model-00003-of-00007.safetensors",
51
+ "model.layers.11.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
52
+ "model.layers.11.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
53
+ "model.layers.11.self_attn.q_proj.bias": "model-00003-of-00007.safetensors",
54
+ "model.layers.11.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
55
+ "model.layers.11.self_attn.v_proj.bias": "model-00003-of-00007.safetensors",
56
+ "model.layers.11.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
57
+ "model.layers.12.input_layernorm.weight": "model-00003-of-00007.safetensors",
58
+ "model.layers.12.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
59
+ "model.layers.12.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
60
+ "model.layers.12.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
61
+ "model.layers.12.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
62
+ "model.layers.12.self_attn.k_proj.bias": "model-00003-of-00007.safetensors",
63
+ "model.layers.12.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
64
+ "model.layers.12.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
65
+ "model.layers.12.self_attn.q_proj.bias": "model-00003-of-00007.safetensors",
66
+ "model.layers.12.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
67
+ "model.layers.12.self_attn.v_proj.bias": "model-00003-of-00007.safetensors",
68
+ "model.layers.12.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
69
+ "model.layers.13.input_layernorm.weight": "model-00004-of-00007.safetensors",
70
+ "model.layers.13.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
71
+ "model.layers.13.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
72
+ "model.layers.13.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
73
+ "model.layers.13.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
74
+ "model.layers.13.self_attn.k_proj.bias": "model-00003-of-00007.safetensors",
75
+ "model.layers.13.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
76
+ "model.layers.13.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
77
+ "model.layers.13.self_attn.q_proj.bias": "model-00003-of-00007.safetensors",
78
+ "model.layers.13.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
79
+ "model.layers.13.self_attn.v_proj.bias": "model-00003-of-00007.safetensors",
80
+ "model.layers.13.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
81
+ "model.layers.14.input_layernorm.weight": "model-00004-of-00007.safetensors",
82
+ "model.layers.14.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
83
+ "model.layers.14.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
84
+ "model.layers.14.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
85
+ "model.layers.14.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
86
+ "model.layers.14.self_attn.k_proj.bias": "model-00004-of-00007.safetensors",
87
+ "model.layers.14.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
88
+ "model.layers.14.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
89
+ "model.layers.14.self_attn.q_proj.bias": "model-00004-of-00007.safetensors",
90
+ "model.layers.14.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
91
+ "model.layers.14.self_attn.v_proj.bias": "model-00004-of-00007.safetensors",
92
+ "model.layers.14.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
93
+ "model.layers.15.input_layernorm.weight": "model-00004-of-00007.safetensors",
94
+ "model.layers.15.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
95
+ "model.layers.15.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
96
+ "model.layers.15.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
97
+ "model.layers.15.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
98
+ "model.layers.15.self_attn.k_proj.bias": "model-00004-of-00007.safetensors",
99
+ "model.layers.15.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
100
+ "model.layers.15.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
101
+ "model.layers.15.self_attn.q_proj.bias": "model-00004-of-00007.safetensors",
102
+ "model.layers.15.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
103
+ "model.layers.15.self_attn.v_proj.bias": "model-00004-of-00007.safetensors",
104
+ "model.layers.15.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
105
+ "model.layers.16.input_layernorm.weight": "model-00004-of-00007.safetensors",
106
+ "model.layers.16.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
107
+ "model.layers.16.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
108
+ "model.layers.16.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
109
+ "model.layers.16.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
110
+ "model.layers.16.self_attn.k_proj.bias": "model-00004-of-00007.safetensors",
111
+ "model.layers.16.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
112
+ "model.layers.16.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
113
+ "model.layers.16.self_attn.q_proj.bias": "model-00004-of-00007.safetensors",
114
+ "model.layers.16.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
115
+ "model.layers.16.self_attn.v_proj.bias": "model-00004-of-00007.safetensors",
116
+ "model.layers.16.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
117
+ "model.layers.17.input_layernorm.weight": "model-00004-of-00007.safetensors",
118
+ "model.layers.17.mlp.down_proj.weight": "model-00004-of-00007.safetensors",
119
+ "model.layers.17.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
120
+ "model.layers.17.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
121
+ "model.layers.17.post_attention_layernorm.weight": "model-00004-of-00007.safetensors",
122
+ "model.layers.17.self_attn.k_proj.bias": "model-00004-of-00007.safetensors",
123
+ "model.layers.17.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
124
+ "model.layers.17.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
125
+ "model.layers.17.self_attn.q_proj.bias": "model-00004-of-00007.safetensors",
126
+ "model.layers.17.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
127
+ "model.layers.17.self_attn.v_proj.bias": "model-00004-of-00007.safetensors",
128
+ "model.layers.17.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
129
+ "model.layers.18.input_layernorm.weight": "model-00005-of-00007.safetensors",
130
+ "model.layers.18.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
131
+ "model.layers.18.mlp.gate_proj.weight": "model-00004-of-00007.safetensors",
132
+ "model.layers.18.mlp.up_proj.weight": "model-00004-of-00007.safetensors",
133
+ "model.layers.18.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
134
+ "model.layers.18.self_attn.k_proj.bias": "model-00004-of-00007.safetensors",
135
+ "model.layers.18.self_attn.k_proj.weight": "model-00004-of-00007.safetensors",
136
+ "model.layers.18.self_attn.o_proj.weight": "model-00004-of-00007.safetensors",
137
+ "model.layers.18.self_attn.q_proj.bias": "model-00004-of-00007.safetensors",
138
+ "model.layers.18.self_attn.q_proj.weight": "model-00004-of-00007.safetensors",
139
+ "model.layers.18.self_attn.v_proj.bias": "model-00004-of-00007.safetensors",
140
+ "model.layers.18.self_attn.v_proj.weight": "model-00004-of-00007.safetensors",
141
+ "model.layers.19.input_layernorm.weight": "model-00005-of-00007.safetensors",
142
+ "model.layers.19.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
143
+ "model.layers.19.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
144
+ "model.layers.19.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
145
+ "model.layers.19.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
146
+ "model.layers.19.self_attn.k_proj.bias": "model-00005-of-00007.safetensors",
147
+ "model.layers.19.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
148
+ "model.layers.19.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
149
+ "model.layers.19.self_attn.q_proj.bias": "model-00005-of-00007.safetensors",
150
+ "model.layers.19.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
151
+ "model.layers.19.self_attn.v_proj.bias": "model-00005-of-00007.safetensors",
152
+ "model.layers.19.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
153
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00007.safetensors",
154
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00007.safetensors",
155
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00007.safetensors",
156
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00007.safetensors",
157
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00007.safetensors",
158
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00007.safetensors",
159
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00007.safetensors",
160
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00007.safetensors",
161
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00007.safetensors",
162
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00007.safetensors",
163
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00007.safetensors",
164
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00007.safetensors",
165
+ "model.layers.20.input_layernorm.weight": "model-00005-of-00007.safetensors",
166
+ "model.layers.20.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
167
+ "model.layers.20.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
168
+ "model.layers.20.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
169
+ "model.layers.20.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
170
+ "model.layers.20.self_attn.k_proj.bias": "model-00005-of-00007.safetensors",
171
+ "model.layers.20.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
172
+ "model.layers.20.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
173
+ "model.layers.20.self_attn.q_proj.bias": "model-00005-of-00007.safetensors",
174
+ "model.layers.20.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
175
+ "model.layers.20.self_attn.v_proj.bias": "model-00005-of-00007.safetensors",
176
+ "model.layers.20.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
177
+ "model.layers.21.input_layernorm.weight": "model-00005-of-00007.safetensors",
178
+ "model.layers.21.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
179
+ "model.layers.21.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
180
+ "model.layers.21.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
181
+ "model.layers.21.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
182
+ "model.layers.21.self_attn.k_proj.bias": "model-00005-of-00007.safetensors",
183
+ "model.layers.21.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
184
+ "model.layers.21.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
185
+ "model.layers.21.self_attn.q_proj.bias": "model-00005-of-00007.safetensors",
186
+ "model.layers.21.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
187
+ "model.layers.21.self_attn.v_proj.bias": "model-00005-of-00007.safetensors",
188
+ "model.layers.21.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
189
+ "model.layers.22.input_layernorm.weight": "model-00005-of-00007.safetensors",
190
+ "model.layers.22.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
191
+ "model.layers.22.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
192
+ "model.layers.22.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
193
+ "model.layers.22.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
194
+ "model.layers.22.self_attn.k_proj.bias": "model-00005-of-00007.safetensors",
195
+ "model.layers.22.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
196
+ "model.layers.22.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
197
+ "model.layers.22.self_attn.q_proj.bias": "model-00005-of-00007.safetensors",
198
+ "model.layers.22.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
199
+ "model.layers.22.self_attn.v_proj.bias": "model-00005-of-00007.safetensors",
200
+ "model.layers.22.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
201
+ "model.layers.23.input_layernorm.weight": "model-00005-of-00007.safetensors",
202
+ "model.layers.23.mlp.down_proj.weight": "model-00005-of-00007.safetensors",
203
+ "model.layers.23.mlp.gate_proj.weight": "model-00005-of-00007.safetensors",
204
+ "model.layers.23.mlp.up_proj.weight": "model-00005-of-00007.safetensors",
205
+ "model.layers.23.post_attention_layernorm.weight": "model-00005-of-00007.safetensors",
206
+ "model.layers.23.self_attn.k_proj.bias": "model-00005-of-00007.safetensors",
207
+ "model.layers.23.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
208
+ "model.layers.23.self_attn.o_proj.weight": "model-00005-of-00007.safetensors",
209
+ "model.layers.23.self_attn.q_proj.bias": "model-00005-of-00007.safetensors",
210
+ "model.layers.23.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
211
+ "model.layers.23.self_attn.v_proj.bias": "model-00005-of-00007.safetensors",
212
+ "model.layers.23.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
213
+ "model.layers.24.input_layernorm.weight": "model-00006-of-00007.safetensors",
214
+ "model.layers.24.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
215
+ "model.layers.24.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
216
+ "model.layers.24.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
217
+ "model.layers.24.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
218
+ "model.layers.24.self_attn.k_proj.bias": "model-00005-of-00007.safetensors",
219
+ "model.layers.24.self_attn.k_proj.weight": "model-00005-of-00007.safetensors",
220
+ "model.layers.24.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
221
+ "model.layers.24.self_attn.q_proj.bias": "model-00005-of-00007.safetensors",
222
+ "model.layers.24.self_attn.q_proj.weight": "model-00005-of-00007.safetensors",
223
+ "model.layers.24.self_attn.v_proj.bias": "model-00005-of-00007.safetensors",
224
+ "model.layers.24.self_attn.v_proj.weight": "model-00005-of-00007.safetensors",
225
+ "model.layers.25.input_layernorm.weight": "model-00006-of-00007.safetensors",
226
+ "model.layers.25.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
227
+ "model.layers.25.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
228
+ "model.layers.25.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
229
+ "model.layers.25.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
230
+ "model.layers.25.self_attn.k_proj.bias": "model-00006-of-00007.safetensors",
231
+ "model.layers.25.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
232
+ "model.layers.25.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
233
+ "model.layers.25.self_attn.q_proj.bias": "model-00006-of-00007.safetensors",
234
+ "model.layers.25.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
235
+ "model.layers.25.self_attn.v_proj.bias": "model-00006-of-00007.safetensors",
236
+ "model.layers.25.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
237
+ "model.layers.26.input_layernorm.weight": "model-00006-of-00007.safetensors",
238
+ "model.layers.26.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
239
+ "model.layers.26.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
240
+ "model.layers.26.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
241
+ "model.layers.26.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
242
+ "model.layers.26.self_attn.k_proj.bias": "model-00006-of-00007.safetensors",
243
+ "model.layers.26.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
244
+ "model.layers.26.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
245
+ "model.layers.26.self_attn.q_proj.bias": "model-00006-of-00007.safetensors",
246
+ "model.layers.26.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
247
+ "model.layers.26.self_attn.v_proj.bias": "model-00006-of-00007.safetensors",
248
+ "model.layers.26.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
249
+ "model.layers.27.input_layernorm.weight": "model-00006-of-00007.safetensors",
250
+ "model.layers.27.mlp.down_proj.weight": "model-00006-of-00007.safetensors",
251
+ "model.layers.27.mlp.gate_proj.weight": "model-00006-of-00007.safetensors",
252
+ "model.layers.27.mlp.up_proj.weight": "model-00006-of-00007.safetensors",
253
+ "model.layers.27.post_attention_layernorm.weight": "model-00006-of-00007.safetensors",
254
+ "model.layers.27.self_attn.k_proj.bias": "model-00006-of-00007.safetensors",
255
+ "model.layers.27.self_attn.k_proj.weight": "model-00006-of-00007.safetensors",
256
+ "model.layers.27.self_attn.o_proj.weight": "model-00006-of-00007.safetensors",
257
+ "model.layers.27.self_attn.q_proj.bias": "model-00006-of-00007.safetensors",
258
+ "model.layers.27.self_attn.q_proj.weight": "model-00006-of-00007.safetensors",
259
+ "model.layers.27.self_attn.v_proj.bias": "model-00006-of-00007.safetensors",
260
+ "model.layers.27.self_attn.v_proj.weight": "model-00006-of-00007.safetensors",
261
+ "model.layers.3.input_layernorm.weight": "model-00002-of-00007.safetensors",
262
+ "model.layers.3.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
263
+ "model.layers.3.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
264
+ "model.layers.3.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
265
+ "model.layers.3.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
266
+ "model.layers.3.self_attn.k_proj.bias": "model-00002-of-00007.safetensors",
267
+ "model.layers.3.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
268
+ "model.layers.3.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
269
+ "model.layers.3.self_attn.q_proj.bias": "model-00002-of-00007.safetensors",
270
+ "model.layers.3.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
271
+ "model.layers.3.self_attn.v_proj.bias": "model-00002-of-00007.safetensors",
272
+ "model.layers.3.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
273
+ "model.layers.4.input_layernorm.weight": "model-00002-of-00007.safetensors",
274
+ "model.layers.4.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
275
+ "model.layers.4.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
276
+ "model.layers.4.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
277
+ "model.layers.4.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
278
+ "model.layers.4.self_attn.k_proj.bias": "model-00002-of-00007.safetensors",
279
+ "model.layers.4.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
280
+ "model.layers.4.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
281
+ "model.layers.4.self_attn.q_proj.bias": "model-00002-of-00007.safetensors",
282
+ "model.layers.4.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
283
+ "model.layers.4.self_attn.v_proj.bias": "model-00002-of-00007.safetensors",
284
+ "model.layers.4.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
285
+ "model.layers.5.input_layernorm.weight": "model-00002-of-00007.safetensors",
286
+ "model.layers.5.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
287
+ "model.layers.5.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
288
+ "model.layers.5.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
289
+ "model.layers.5.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
290
+ "model.layers.5.self_attn.k_proj.bias": "model-00002-of-00007.safetensors",
291
+ "model.layers.5.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
292
+ "model.layers.5.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
293
+ "model.layers.5.self_attn.q_proj.bias": "model-00002-of-00007.safetensors",
294
+ "model.layers.5.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
295
+ "model.layers.5.self_attn.v_proj.bias": "model-00002-of-00007.safetensors",
296
+ "model.layers.5.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
297
+ "model.layers.6.input_layernorm.weight": "model-00002-of-00007.safetensors",
298
+ "model.layers.6.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
299
+ "model.layers.6.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
300
+ "model.layers.6.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
301
+ "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
302
+ "model.layers.6.self_attn.k_proj.bias": "model-00002-of-00007.safetensors",
303
+ "model.layers.6.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
304
+ "model.layers.6.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
305
+ "model.layers.6.self_attn.q_proj.bias": "model-00002-of-00007.safetensors",
306
+ "model.layers.6.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
307
+ "model.layers.6.self_attn.v_proj.bias": "model-00002-of-00007.safetensors",
308
+ "model.layers.6.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
309
+ "model.layers.7.input_layernorm.weight": "model-00002-of-00007.safetensors",
310
+ "model.layers.7.mlp.down_proj.weight": "model-00002-of-00007.safetensors",
311
+ "model.layers.7.mlp.gate_proj.weight": "model-00002-of-00007.safetensors",
312
+ "model.layers.7.mlp.up_proj.weight": "model-00002-of-00007.safetensors",
313
+ "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00007.safetensors",
314
+ "model.layers.7.self_attn.k_proj.bias": "model-00002-of-00007.safetensors",
315
+ "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
316
+ "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
317
+ "model.layers.7.self_attn.q_proj.bias": "model-00002-of-00007.safetensors",
318
+ "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
319
+ "model.layers.7.self_attn.v_proj.bias": "model-00002-of-00007.safetensors",
320
+ "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
321
+ "model.layers.8.input_layernorm.weight": "model-00003-of-00007.safetensors",
322
+ "model.layers.8.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
323
+ "model.layers.8.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
324
+ "model.layers.8.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
325
+ "model.layers.8.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
326
+ "model.layers.8.self_attn.k_proj.bias": "model-00002-of-00007.safetensors",
327
+ "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00007.safetensors",
328
+ "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00007.safetensors",
329
+ "model.layers.8.self_attn.q_proj.bias": "model-00002-of-00007.safetensors",
330
+ "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00007.safetensors",
331
+ "model.layers.8.self_attn.v_proj.bias": "model-00002-of-00007.safetensors",
332
+ "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00007.safetensors",
333
+ "model.layers.9.input_layernorm.weight": "model-00003-of-00007.safetensors",
334
+ "model.layers.9.mlp.down_proj.weight": "model-00003-of-00007.safetensors",
335
+ "model.layers.9.mlp.gate_proj.weight": "model-00003-of-00007.safetensors",
336
+ "model.layers.9.mlp.up_proj.weight": "model-00003-of-00007.safetensors",
337
+ "model.layers.9.post_attention_layernorm.weight": "model-00003-of-00007.safetensors",
338
+ "model.layers.9.self_attn.k_proj.bias": "model-00003-of-00007.safetensors",
339
+ "model.layers.9.self_attn.k_proj.weight": "model-00003-of-00007.safetensors",
340
+ "model.layers.9.self_attn.o_proj.weight": "model-00003-of-00007.safetensors",
341
+ "model.layers.9.self_attn.q_proj.bias": "model-00003-of-00007.safetensors",
342
+ "model.layers.9.self_attn.q_proj.weight": "model-00003-of-00007.safetensors",
343
+ "model.layers.9.self_attn.v_proj.bias": "model-00003-of-00007.safetensors",
344
+ "model.layers.9.self_attn.v_proj.weight": "model-00003-of-00007.safetensors",
345
+ "model.norm.weight": "model-00006-of-00007.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.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
3
+ size 11421896
tokenizer_config.json ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\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>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\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\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
199
+ "clean_up_tokenization_spaces": false,
200
+ "eos_token": "<|im_end|>",
201
+ "errors": "replace",
202
+ "model_max_length": 32768,
203
+ "pad_token": "<|endoftext|>",
204
+ "split_special_tokens": false,
205
+ "tokenizer_class": "Qwen2Tokenizer",
206
+ "unk_token": null
207
+ }
trainer_state.json ADDED
@@ -0,0 +1,1404 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.0,
6
+ "eval_steps": 500,
7
+ "global_step": 1370,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.8819891855120658,
14
+ "epoch": 0.014603870025556773,
15
+ "grad_norm": 0.8598580956459045,
16
+ "learning_rate": 1.7475728155339808e-06,
17
+ "loss": 0.8448,
18
+ "mean_token_accuracy": 0.7740211486816406,
19
+ "num_tokens": 770936.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.9709278956055641,
24
+ "epoch": 0.029207740051113547,
25
+ "grad_norm": 0.615368127822876,
26
+ "learning_rate": 3.689320388349515e-06,
27
+ "loss": 0.8205,
28
+ "mean_token_accuracy": 0.7773708969354629,
29
+ "num_tokens": 1541367.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 1.0815545290708541,
34
+ "epoch": 0.04381161007667032,
35
+ "grad_norm": 0.6463781595230103,
36
+ "learning_rate": 5.631067961165049e-06,
37
+ "loss": 0.7713,
38
+ "mean_token_accuracy": 0.7880979612469673,
39
+ "num_tokens": 2318852.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 1.0128332734107972,
44
+ "epoch": 0.058415480102227094,
45
+ "grad_norm": 0.5948992371559143,
46
+ "learning_rate": 7.572815533980583e-06,
47
+ "loss": 0.7764,
48
+ "mean_token_accuracy": 0.7841672986745835,
49
+ "num_tokens": 3084308.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 1.012282955646515,
54
+ "epoch": 0.07301935012778386,
55
+ "grad_norm": 0.6310043931007385,
56
+ "learning_rate": 9.514563106796117e-06,
57
+ "loss": 0.7564,
58
+ "mean_token_accuracy": 0.7881451666355133,
59
+ "num_tokens": 3834841.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 1.0291071116924286,
64
+ "epoch": 0.08762322015334063,
65
+ "grad_norm": 0.6180324554443359,
66
+ "learning_rate": 1.145631067961165e-05,
67
+ "loss": 0.7502,
68
+ "mean_token_accuracy": 0.7902129292488098,
69
+ "num_tokens": 4596954.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 1.0330789506435394,
74
+ "epoch": 0.1022270901788974,
75
+ "grad_norm": 0.6203945279121399,
76
+ "learning_rate": 1.3398058252427187e-05,
77
+ "loss": 0.7596,
78
+ "mean_token_accuracy": 0.7884851574897767,
79
+ "num_tokens": 5367587.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.0233020395040513,
84
+ "epoch": 0.11683096020445419,
85
+ "grad_norm": 0.5948684811592102,
86
+ "learning_rate": 1.533980582524272e-05,
87
+ "loss": 0.7538,
88
+ "mean_token_accuracy": 0.788135002553463,
89
+ "num_tokens": 6132539.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.022057643532753,
94
+ "epoch": 0.13143483023001096,
95
+ "grad_norm": 0.6073455810546875,
96
+ "learning_rate": 1.7281553398058253e-05,
97
+ "loss": 0.7418,
98
+ "mean_token_accuracy": 0.7916493251919746,
99
+ "num_tokens": 6910021.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.0418485432863236,
104
+ "epoch": 0.14603870025556773,
105
+ "grad_norm": 0.56880784034729,
106
+ "learning_rate": 1.922330097087379e-05,
107
+ "loss": 0.7686,
108
+ "mean_token_accuracy": 0.7854298010468483,
109
+ "num_tokens": 7672070.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 1.0249923586845398,
114
+ "epoch": 0.1606425702811245,
115
+ "grad_norm": 0.6060709357261658,
116
+ "learning_rate": 1.9999839020034848e-05,
117
+ "loss": 0.7376,
118
+ "mean_token_accuracy": 0.7922860443592071,
119
+ "num_tokens": 8437851.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 1.0423746079206466,
124
+ "epoch": 0.17524644030668127,
125
+ "grad_norm": 0.5950225591659546,
126
+ "learning_rate": 1.9998855272350457e-05,
127
+ "loss": 0.75,
128
+ "mean_token_accuracy": 0.7883219286799431,
129
+ "num_tokens": 9220959.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 1.058434711396694,
134
+ "epoch": 0.18985031033223804,
135
+ "grad_norm": 0.5805737972259521,
136
+ "learning_rate": 1.99969772981684e-05,
137
+ "loss": 0.754,
138
+ "mean_token_accuracy": 0.7883959293365479,
139
+ "num_tokens": 9998137.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 1.055925799906254,
144
+ "epoch": 0.2044541803577948,
145
+ "grad_norm": 0.5844792723655701,
146
+ "learning_rate": 1.9994205265441328e-05,
147
+ "loss": 0.7443,
148
+ "mean_token_accuracy": 0.7903072774410248,
149
+ "num_tokens": 10776402.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 1.0465368673205375,
154
+ "epoch": 0.21905805038335158,
155
+ "grad_norm": 0.6346914172172546,
156
+ "learning_rate": 1.9990539422080134e-05,
157
+ "loss": 0.7423,
158
+ "mean_token_accuracy": 0.7909073531627655,
159
+ "num_tokens": 11537876.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 1.0467117950320244,
164
+ "epoch": 0.23366192040890837,
165
+ "grad_norm": 0.555743396282196,
166
+ "learning_rate": 1.9985980095931774e-05,
167
+ "loss": 0.7426,
168
+ "mean_token_accuracy": 0.7902399882674217,
169
+ "num_tokens": 12313854.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 1.0474098443984985,
174
+ "epoch": 0.24826579043446514,
175
+ "grad_norm": 0.6585262417793274,
176
+ "learning_rate": 1.9980527694749952e-05,
177
+ "loss": 0.7502,
178
+ "mean_token_accuracy": 0.7889217540621758,
179
+ "num_tokens": 13059556.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 1.046202352643013,
184
+ "epoch": 0.2628696604600219,
185
+ "grad_norm": 0.5887473225593567,
186
+ "learning_rate": 1.9974182706158646e-05,
187
+ "loss": 0.7287,
188
+ "mean_token_accuracy": 0.7938704118132591,
189
+ "num_tokens": 13829911.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 1.0543677926063537,
194
+ "epoch": 0.27747353048557866,
195
+ "grad_norm": 0.5907500982284546,
196
+ "learning_rate": 1.996694569760851e-05,
197
+ "loss": 0.7465,
198
+ "mean_token_accuracy": 0.790279072523117,
199
+ "num_tokens": 14595687.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 1.059071497619152,
204
+ "epoch": 0.29207740051113545,
205
+ "grad_norm": 0.5858122706413269,
206
+ "learning_rate": 1.995881731632611e-05,
207
+ "loss": 0.7376,
208
+ "mean_token_accuracy": 0.7931964993476868,
209
+ "num_tokens": 15362920.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 1.0532679110765457,
214
+ "epoch": 0.3066812705366922,
215
+ "grad_norm": 0.5991299152374268,
216
+ "learning_rate": 1.9949798289256054e-05,
217
+ "loss": 0.7578,
218
+ "mean_token_accuracy": 0.786410291492939,
219
+ "num_tokens": 16128067.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 1.0485742643475533,
224
+ "epoch": 0.321285140562249,
225
+ "grad_norm": 0.5720910429954529,
226
+ "learning_rate": 1.993988942299598e-05,
227
+ "loss": 0.7404,
228
+ "mean_token_accuracy": 0.7914015546441078,
229
+ "num_tokens": 16911462.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 1.0678794473409652,
234
+ "epoch": 0.3358890105878058,
235
+ "grad_norm": 0.6100424528121948,
236
+ "learning_rate": 1.9929091603724404e-05,
237
+ "loss": 0.7479,
238
+ "mean_token_accuracy": 0.7890788897871971,
239
+ "num_tokens": 17697397.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 1.0550393044948578,
244
+ "epoch": 0.35049288061336253,
245
+ "grad_norm": 0.5960067510604858,
246
+ "learning_rate": 1.9917405797121484e-05,
247
+ "loss": 0.7518,
248
+ "mean_token_accuracy": 0.7884634032845497,
249
+ "num_tokens": 18465317.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 1.0647842451930045,
254
+ "epoch": 0.36509675063891933,
255
+ "grad_norm": 0.61286461353302,
256
+ "learning_rate": 1.990483304828264e-05,
257
+ "loss": 0.7568,
258
+ "mean_token_accuracy": 0.7871849820017814,
259
+ "num_tokens": 19218071.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 1.02879488915205,
264
+ "epoch": 0.3797006206644761,
265
+ "grad_norm": 0.5549123883247375,
266
+ "learning_rate": 1.9891374481625112e-05,
267
+ "loss": 0.7221,
268
+ "mean_token_accuracy": 0.7956910878419876,
269
+ "num_tokens": 19985551.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 1.0511873975396155,
274
+ "epoch": 0.39430449069003287,
275
+ "grad_norm": 0.542924702167511,
276
+ "learning_rate": 1.987703130078737e-05,
277
+ "loss": 0.7303,
278
+ "mean_token_accuracy": 0.7930067017674446,
279
+ "num_tokens": 20759854.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 1.046246202290058,
284
+ "epoch": 0.4089083607155896,
285
+ "grad_norm": 0.5551313161849976,
286
+ "learning_rate": 1.986180478852149e-05,
287
+ "loss": 0.7252,
288
+ "mean_token_accuracy": 0.7956920295953751,
289
+ "num_tokens": 21543604.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 1.0610669255256653,
294
+ "epoch": 0.4235122307411464,
295
+ "grad_norm": 0.629205048084259,
296
+ "learning_rate": 1.9845696306578433e-05,
297
+ "loss": 0.7377,
298
+ "mean_token_accuracy": 0.7924546420574188,
299
+ "num_tokens": 22310802.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 1.0590673327445983,
304
+ "epoch": 0.43811610076670315,
305
+ "grad_norm": 0.6042408347129822,
306
+ "learning_rate": 1.9828707295586253e-05,
307
+ "loss": 0.7356,
308
+ "mean_token_accuracy": 0.7922392532229423,
309
+ "num_tokens": 23088849.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 1.059952473640442,
314
+ "epoch": 0.45271997079225995,
315
+ "grad_norm": 0.6013913750648499,
316
+ "learning_rate": 1.981083927492125e-05,
317
+ "loss": 0.7379,
318
+ "mean_token_accuracy": 0.7928509280085564,
319
+ "num_tokens": 23858610.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 1.0460969746112823,
324
+ "epoch": 0.46732384081781675,
325
+ "grad_norm": 0.5834254622459412,
326
+ "learning_rate": 1.9792093842572106e-05,
327
+ "loss": 0.7335,
328
+ "mean_token_accuracy": 0.7924273937940598,
329
+ "num_tokens": 24590316.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 1.0532741829752923,
334
+ "epoch": 0.4819277108433735,
335
+ "grad_norm": 0.5749837160110474,
336
+ "learning_rate": 1.9772472674996962e-05,
337
+ "loss": 0.746,
338
+ "mean_token_accuracy": 0.789176419377327,
339
+ "num_tokens": 25353089.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 1.0500716269016266,
344
+ "epoch": 0.4965315808689303,
345
+ "grad_norm": 0.5746060609817505,
346
+ "learning_rate": 1.975197752697349e-05,
347
+ "loss": 0.7414,
348
+ "mean_token_accuracy": 0.7907495066523552,
349
+ "num_tokens": 26117777.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 1.051976852118969,
354
+ "epoch": 0.5111354508944871,
355
+ "grad_norm": 0.5868931412696838,
356
+ "learning_rate": 1.973061023144196e-05,
357
+ "loss": 0.7256,
358
+ "mean_token_accuracy": 0.7959051370620728,
359
+ "num_tokens": 26885934.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 1.078227588534355,
364
+ "epoch": 0.5257393209200438,
365
+ "grad_norm": 0.5909886360168457,
366
+ "learning_rate": 1.9708372699341297e-05,
367
+ "loss": 0.7568,
368
+ "mean_token_accuracy": 0.7874275401234627,
369
+ "num_tokens": 27648234.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 1.0532238066196442,
374
+ "epoch": 0.5403431909456006,
375
+ "grad_norm": 0.5472894310951233,
376
+ "learning_rate": 1.9685266919438208e-05,
377
+ "loss": 0.7351,
378
+ "mean_token_accuracy": 0.7938356637954712,
379
+ "num_tokens": 28411776.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 1.0588267534971236,
384
+ "epoch": 0.5549470609711573,
385
+ "grad_norm": 0.5929501056671143,
386
+ "learning_rate": 1.9661294958149312e-05,
387
+ "loss": 0.745,
388
+ "mean_token_accuracy": 0.7911377623677254,
389
+ "num_tokens": 29169804.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 1.0762585639953612,
394
+ "epoch": 0.5695509309967142,
395
+ "grad_norm": 0.6019272804260254,
396
+ "learning_rate": 1.963645895935632e-05,
397
+ "loss": 0.7458,
398
+ "mean_token_accuracy": 0.7898744881153107,
399
+ "num_tokens": 29942397.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 1.0671012222766876,
404
+ "epoch": 0.5841548010222709,
405
+ "grad_norm": 0.6131295561790466,
406
+ "learning_rate": 1.9610761144214307e-05,
407
+ "loss": 0.7547,
408
+ "mean_token_accuracy": 0.7888392016291619,
409
+ "num_tokens": 30737478.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 1.0662592992186546,
414
+ "epoch": 0.5987586710478277,
415
+ "grad_norm": 0.579192578792572,
416
+ "learning_rate": 1.9584203810953094e-05,
417
+ "loss": 0.731,
418
+ "mean_token_accuracy": 0.7930623203516006,
419
+ "num_tokens": 31487239.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 1.0672000512480735,
424
+ "epoch": 0.6133625410733844,
425
+ "grad_norm": 0.5550879836082458,
426
+ "learning_rate": 1.9556789334671668e-05,
427
+ "loss": 0.7395,
428
+ "mean_token_accuracy": 0.792091254889965,
429
+ "num_tokens": 32248396.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 1.0656457453966142,
434
+ "epoch": 0.6279664110989412,
435
+ "grad_norm": 1.1255723237991333,
436
+ "learning_rate": 1.9528520167125803e-05,
437
+ "loss": 0.7395,
438
+ "mean_token_accuracy": 0.7922166392207146,
439
+ "num_tokens": 33011134.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 1.0731883138418197,
444
+ "epoch": 0.642570281124498,
445
+ "grad_norm": 0.5882017016410828,
446
+ "learning_rate": 1.9499398836508776e-05,
447
+ "loss": 0.7493,
448
+ "mean_token_accuracy": 0.7877946421504021,
449
+ "num_tokens": 33787966.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 1.0552370175719261,
454
+ "epoch": 0.6571741511500547,
455
+ "grad_norm": 0.6130959987640381,
456
+ "learning_rate": 1.9469427947225267e-05,
457
+ "loss": 0.7111,
458
+ "mean_token_accuracy": 0.7995760783553123,
459
+ "num_tokens": 34559268.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 1.069392178952694,
464
+ "epoch": 0.6717780211756116,
465
+ "grad_norm": 0.5893939733505249,
466
+ "learning_rate": 1.9438610179658447e-05,
467
+ "loss": 0.7364,
468
+ "mean_token_accuracy": 0.7937344864010811,
469
+ "num_tokens": 35306495.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 1.0607215002179147,
474
+ "epoch": 0.6863818912011683,
475
+ "grad_norm": 0.5958935022354126,
476
+ "learning_rate": 1.9406948289930247e-05,
477
+ "loss": 0.7358,
478
+ "mean_token_accuracy": 0.7919678211212158,
479
+ "num_tokens": 36064111.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 1.079184153676033,
484
+ "epoch": 0.7009857612267251,
485
+ "grad_norm": 0.5986253619194031,
486
+ "learning_rate": 1.9374445109654888e-05,
487
+ "loss": 0.7421,
488
+ "mean_token_accuracy": 0.7907416477799416,
489
+ "num_tokens": 36832765.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 1.0671533614397049,
494
+ "epoch": 0.7155896312522818,
495
+ "grad_norm": 0.5463415384292603,
496
+ "learning_rate": 1.9341103545685637e-05,
497
+ "loss": 0.7304,
498
+ "mean_token_accuracy": 0.7941543251276016,
499
+ "num_tokens": 37609612.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 1.0800618380308151,
504
+ "epoch": 0.7301935012778387,
505
+ "grad_norm": 0.7118626832962036,
506
+ "learning_rate": 1.930692657985482e-05,
507
+ "loss": 0.7289,
508
+ "mean_token_accuracy": 0.7952305421233177,
509
+ "num_tokens": 38378623.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 1.051339966058731,
514
+ "epoch": 0.7447973713033954,
515
+ "grad_norm": 0.5645574331283569,
516
+ "learning_rate": 1.927191726870718e-05,
517
+ "loss": 0.7091,
518
+ "mean_token_accuracy": 0.7985311895608902,
519
+ "num_tokens": 39146551.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 1.0769214510917664,
524
+ "epoch": 0.7594012413289521,
525
+ "grad_norm": 0.6002981066703796,
526
+ "learning_rate": 1.9236078743226502e-05,
527
+ "loss": 0.7288,
528
+ "mean_token_accuracy": 0.7942462310194969,
529
+ "num_tokens": 39908848.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 1.0461754769086837,
534
+ "epoch": 0.7740051113545089,
535
+ "grad_norm": 0.5525550246238708,
536
+ "learning_rate": 1.919941420855559e-05,
537
+ "loss": 0.7058,
538
+ "mean_token_accuracy": 0.8000339075922966,
539
+ "num_tokens": 40694755.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 1.0753471747040748,
544
+ "epoch": 0.7886089813800657,
545
+ "grad_norm": 0.5900936722755432,
546
+ "learning_rate": 1.916192694370965e-05,
547
+ "loss": 0.7535,
548
+ "mean_token_accuracy": 0.7890919044613838,
549
+ "num_tokens": 41468815.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 1.0729323342442512,
554
+ "epoch": 0.8032128514056225,
555
+ "grad_norm": 0.6021299958229065,
556
+ "learning_rate": 1.912362030128302e-05,
557
+ "loss": 0.7149,
558
+ "mean_token_accuracy": 0.7978271067142486,
559
+ "num_tokens": 42243180.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 1.0811306938529015,
564
+ "epoch": 0.8178167214311792,
565
+ "grad_norm": 0.5898880958557129,
566
+ "learning_rate": 1.9084497707149337e-05,
567
+ "loss": 0.7383,
568
+ "mean_token_accuracy": 0.7915405228734016,
569
+ "num_tokens": 43002684.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 1.0548559844493866,
574
+ "epoch": 0.8324205914567361,
575
+ "grad_norm": 0.6246165633201599,
576
+ "learning_rate": 1.9044562660155158e-05,
577
+ "loss": 0.7287,
578
+ "mean_token_accuracy": 0.7933633595705032,
579
+ "num_tokens": 43756816.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 1.0436548948287965,
584
+ "epoch": 0.8470244614822928,
585
+ "grad_norm": 0.5454269051551819,
586
+ "learning_rate": 1.900381873180704e-05,
587
+ "loss": 0.7019,
588
+ "mean_token_accuracy": 0.8000532567501069,
589
+ "num_tokens": 44502793.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 1.061595305800438,
594
+ "epoch": 0.8616283315078496,
595
+ "grad_norm": 0.5577073693275452,
596
+ "learning_rate": 1.896226956595214e-05,
597
+ "loss": 0.7347,
598
+ "mean_token_accuracy": 0.7934001550078392,
599
+ "num_tokens": 45260661.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 1.0671459570527078,
604
+ "epoch": 0.8762322015334063,
605
+ "grad_norm": 0.5666953325271606,
606
+ "learning_rate": 1.891991887845233e-05,
607
+ "loss": 0.7157,
608
+ "mean_token_accuracy": 0.7979460313916207,
609
+ "num_tokens": 46040873.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 1.0621700644493104,
614
+ "epoch": 0.8908360715589632,
615
+ "grad_norm": 0.5529576539993286,
616
+ "learning_rate": 1.887677045685188e-05,
617
+ "loss": 0.7252,
618
+ "mean_token_accuracy": 0.7951329663395882,
619
+ "num_tokens": 46818910.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 1.0564261555671692,
624
+ "epoch": 0.9054399415845199,
625
+ "grad_norm": 0.6081776022911072,
626
+ "learning_rate": 1.8832828160038717e-05,
627
+ "loss": 0.7224,
628
+ "mean_token_accuracy": 0.7945129945874214,
629
+ "num_tokens": 47581801.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 1.0867107123136521,
634
+ "epoch": 0.9200438116100766,
635
+ "grad_norm": 0.5485532283782959,
636
+ "learning_rate": 1.8788095917899322e-05,
637
+ "loss": 0.7397,
638
+ "mean_token_accuracy": 0.7922059059143066,
639
+ "num_tokens": 48353228.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 1.0725250199437142,
644
+ "epoch": 0.9346476816356335,
645
+ "grad_norm": 0.5478349924087524,
646
+ "learning_rate": 1.8742577730967275e-05,
647
+ "loss": 0.7282,
648
+ "mean_token_accuracy": 0.7937524914741516,
649
+ "num_tokens": 49128771.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 1.065740318596363,
654
+ "epoch": 0.9492515516611902,
655
+ "grad_norm": 0.5200572609901428,
656
+ "learning_rate": 1.8696277670065453e-05,
657
+ "loss": 0.7158,
658
+ "mean_token_accuracy": 0.7966950073838234,
659
+ "num_tokens": 49898864.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 1.0765223398804664,
664
+ "epoch": 0.963855421686747,
665
+ "grad_norm": 0.5623005032539368,
666
+ "learning_rate": 1.8649199875942e-05,
667
+ "loss": 0.7316,
668
+ "mean_token_accuracy": 0.79328583329916,
669
+ "num_tokens": 50667692.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 1.0664428249001503,
674
+ "epoch": 0.9784592917123037,
675
+ "grad_norm": 0.5457090735435486,
676
+ "learning_rate": 1.860134855889997e-05,
677
+ "loss": 0.7192,
678
+ "mean_token_accuracy": 0.7951617255806923,
679
+ "num_tokens": 51439436.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 1.054172757267952,
684
+ "epoch": 0.9930631617378606,
685
+ "grad_norm": 0.558342456817627,
686
+ "learning_rate": 1.8552727998420815e-05,
687
+ "loss": 0.7284,
688
+ "mean_token_accuracy": 0.795482975244522,
689
+ "num_tokens": 52216680.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 1.0329305483744695,
694
+ "epoch": 1.0073019350127783,
695
+ "grad_norm": 0.519607424736023,
696
+ "learning_rate": 1.850334254278164e-05,
697
+ "loss": 0.6312,
698
+ "mean_token_accuracy": 0.8187721814864721,
699
+ "num_tokens": 52953330.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 0.8502921864390374,
704
+ "epoch": 1.0219058050383352,
705
+ "grad_norm": 0.6058902740478516,
706
+ "learning_rate": 1.845319660866635e-05,
707
+ "loss": 0.5259,
708
+ "mean_token_accuracy": 0.8443149983882904,
709
+ "num_tokens": 53713129.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 0.8117894425988197,
714
+ "epoch": 1.036509675063892,
715
+ "grad_norm": 0.5925081968307495,
716
+ "learning_rate": 1.8402294680770607e-05,
717
+ "loss": 0.5039,
718
+ "mean_token_accuracy": 0.8498010948300362,
719
+ "num_tokens": 54480149.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 0.7792180389165878,
724
+ "epoch": 1.0511135450894487,
725
+ "grad_norm": 0.637313961982727,
726
+ "learning_rate": 1.8350641311400813e-05,
727
+ "loss": 0.4964,
728
+ "mean_token_accuracy": 0.851611290872097,
729
+ "num_tokens": 55232208.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 0.8110285863280297,
734
+ "epoch": 1.0657174151150055,
735
+ "grad_norm": 0.6269355416297913,
736
+ "learning_rate": 1.8298241120066923e-05,
737
+ "loss": 0.5102,
738
+ "mean_token_accuracy": 0.8473430201411247,
739
+ "num_tokens": 56017632.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 0.805873404443264,
744
+ "epoch": 1.0803212851405624,
745
+ "grad_norm": 0.6263405084609985,
746
+ "learning_rate": 1.8245098793069353e-05,
747
+ "loss": 0.4989,
748
+ "mean_token_accuracy": 0.8503431648015976,
749
+ "num_tokens": 56794094.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 0.7984029710292816,
754
+ "epoch": 1.094925155166119,
755
+ "grad_norm": 0.6596930623054504,
756
+ "learning_rate": 1.819121908307985e-05,
757
+ "loss": 0.5029,
758
+ "mean_token_accuracy": 0.8493917599320412,
759
+ "num_tokens": 57569065.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 0.8163655236363411,
764
+ "epoch": 1.1095290251916758,
765
+ "grad_norm": 0.6013880372047424,
766
+ "learning_rate": 1.813660680871645e-05,
767
+ "loss": 0.508,
768
+ "mean_token_accuracy": 0.8476730227470398,
769
+ "num_tokens": 58342947.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 0.8022693067789077,
774
+ "epoch": 1.1241328952172325,
775
+ "grad_norm": 0.6172059774398804,
776
+ "learning_rate": 1.8081266854112536e-05,
777
+ "loss": 0.5066,
778
+ "mean_token_accuracy": 0.847652480006218,
779
+ "num_tokens": 59095076.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 0.8082443997263908,
784
+ "epoch": 1.1387367652427893,
785
+ "grad_norm": 0.5798039436340332,
786
+ "learning_rate": 1.8025204168480036e-05,
787
+ "loss": 0.5084,
788
+ "mean_token_accuracy": 0.8473975166678429,
789
+ "num_tokens": 59855251.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 0.8160747662186623,
794
+ "epoch": 1.1533406352683462,
795
+ "grad_norm": 0.6323524713516235,
796
+ "learning_rate": 1.7968423765666805e-05,
797
+ "loss": 0.5181,
798
+ "mean_token_accuracy": 0.8460124984383584,
799
+ "num_tokens": 60616729.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 0.8220678076148034,
804
+ "epoch": 1.1679445052939028,
805
+ "grad_norm": 0.5704360008239746,
806
+ "learning_rate": 1.7910930723708206e-05,
807
+ "loss": 0.4989,
808
+ "mean_token_accuracy": 0.8500168919563293,
809
+ "num_tokens": 61391607.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 0.8171453341841698,
814
+ "epoch": 1.1825483753194597,
815
+ "grad_norm": 0.6301026940345764,
816
+ "learning_rate": 1.7852730184372996e-05,
817
+ "loss": 0.5094,
818
+ "mean_token_accuracy": 0.847735871374607,
819
+ "num_tokens": 62176326.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 0.8387730494141579,
824
+ "epoch": 1.1971522453450165,
825
+ "grad_norm": 0.6920040845870972,
826
+ "learning_rate": 1.779382735270345e-05,
827
+ "loss": 0.528,
828
+ "mean_token_accuracy": 0.8430045962333679,
829
+ "num_tokens": 62936900.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 0.8173261970281601,
834
+ "epoch": 1.2117561153705732,
835
+ "grad_norm": 0.6174663305282593,
836
+ "learning_rate": 1.773422749654988e-05,
837
+ "loss": 0.505,
838
+ "mean_token_accuracy": 0.849335603415966,
839
+ "num_tokens": 63714937.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 0.8201940849423408,
844
+ "epoch": 1.22635998539613,
845
+ "grad_norm": 0.6521441340446472,
846
+ "learning_rate": 1.7673935946099515e-05,
847
+ "loss": 0.5169,
848
+ "mean_token_accuracy": 0.8452720895409584,
849
+ "num_tokens": 64484592.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 0.8129187062382698,
854
+ "epoch": 1.2409638554216866,
855
+ "grad_norm": 0.6480047106742859,
856
+ "learning_rate": 1.7612958093399793e-05,
857
+ "loss": 0.5101,
858
+ "mean_token_accuracy": 0.847150382399559,
859
+ "num_tokens": 65242523.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 0.797595490515232,
864
+ "epoch": 1.2555677254472435,
865
+ "grad_norm": 0.6072301268577576,
866
+ "learning_rate": 1.7551299391876147e-05,
867
+ "loss": 0.4954,
868
+ "mean_token_accuracy": 0.8505616560578346,
869
+ "num_tokens": 66010969.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 0.8110659316182136,
874
+ "epoch": 1.2701715954728003,
875
+ "grad_norm": 0.6669343709945679,
876
+ "learning_rate": 1.7488965355844293e-05,
877
+ "loss": 0.5132,
878
+ "mean_token_accuracy": 0.8465436458587646,
879
+ "num_tokens": 66767531.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 0.8244558870792389,
884
+ "epoch": 1.284775465498357,
885
+ "grad_norm": 0.6384320855140686,
886
+ "learning_rate": 1.742596156001705e-05,
887
+ "loss": 0.5276,
888
+ "mean_token_accuracy": 0.8408863857388497,
889
+ "num_tokens": 67498692.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 0.8114714965224266,
894
+ "epoch": 1.2993793355239138,
895
+ "grad_norm": 0.5711145401000977,
896
+ "learning_rate": 1.73622936390058e-05,
897
+ "loss": 0.5139,
898
+ "mean_token_accuracy": 0.8463606715202332,
899
+ "num_tokens": 68285940.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 0.8195077747106552,
904
+ "epoch": 1.3139832055494707,
905
+ "grad_norm": 0.6267218589782715,
906
+ "learning_rate": 1.7297967286816553e-05,
907
+ "loss": 0.5154,
908
+ "mean_token_accuracy": 0.8449677467346192,
909
+ "num_tokens": 69039571.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 0.8230465367436409,
914
+ "epoch": 1.3285870755750273,
915
+ "grad_norm": 0.6753976345062256,
916
+ "learning_rate": 1.723298825634072e-05,
917
+ "loss": 0.5357,
918
+ "mean_token_accuracy": 0.8401415064930916,
919
+ "num_tokens": 69793108.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 0.8096449464559555,
924
+ "epoch": 1.3431909456005842,
925
+ "grad_norm": 0.6720008850097656,
926
+ "learning_rate": 1.716736235884062e-05,
927
+ "loss": 0.5098,
928
+ "mean_token_accuracy": 0.8470739260315895,
929
+ "num_tokens": 70568130.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 0.8186160072684288,
934
+ "epoch": 1.357794815626141,
935
+ "grad_norm": 0.5903974771499634,
936
+ "learning_rate": 1.7101095463429748e-05,
937
+ "loss": 0.5198,
938
+ "mean_token_accuracy": 0.8454992339015007,
939
+ "num_tokens": 71349507.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 0.8150006383657455,
944
+ "epoch": 1.3723986856516976,
945
+ "grad_norm": 0.5898988842964172,
946
+ "learning_rate": 1.7034193496547903e-05,
947
+ "loss": 0.5071,
948
+ "mean_token_accuracy": 0.8491646945476532,
949
+ "num_tokens": 72135471.0,
950
+ "step": 940
951
+ },
952
+ {
953
+ "entropy": 0.808189807832241,
954
+ "epoch": 1.3870025556772545,
955
+ "grad_norm": 0.5973511934280396,
956
+ "learning_rate": 1.6966662441431157e-05,
957
+ "loss": 0.5321,
958
+ "mean_token_accuracy": 0.8418431639671325,
959
+ "num_tokens": 72886499.0,
960
+ "step": 950
961
+ },
962
+ {
963
+ "entropy": 0.8094048380851746,
964
+ "epoch": 1.4016064257028114,
965
+ "grad_norm": 0.6130071878433228,
966
+ "learning_rate": 1.6898508337576754e-05,
967
+ "loss": 0.519,
968
+ "mean_token_accuracy": 0.8449132606387139,
969
+ "num_tokens": 73639876.0,
970
+ "step": 960
971
+ },
972
+ {
973
+ "entropy": 0.8094017982482911,
974
+ "epoch": 1.416210295728368,
975
+ "grad_norm": 0.6462528705596924,
976
+ "learning_rate": 1.6829737280203e-05,
977
+ "loss": 0.5158,
978
+ "mean_token_accuracy": 0.8453432083129883,
979
+ "num_tokens": 74401459.0,
980
+ "step": 970
981
+ },
982
+ {
983
+ "entropy": 0.8205527007579804,
984
+ "epoch": 1.4308141657539248,
985
+ "grad_norm": 0.6410425901412964,
986
+ "learning_rate": 1.676035541970411e-05,
987
+ "loss": 0.5366,
988
+ "mean_token_accuracy": 0.8401491552591324,
989
+ "num_tokens": 75180262.0,
990
+ "step": 980
991
+ },
992
+ {
993
+ "entropy": 0.8101997837424278,
994
+ "epoch": 1.4454180357794817,
995
+ "grad_norm": 0.6770428419113159,
996
+ "learning_rate": 1.669036896110021e-05,
997
+ "loss": 0.5278,
998
+ "mean_token_accuracy": 0.8413688018918037,
999
+ "num_tokens": 75935757.0,
1000
+ "step": 990
1001
+ },
1002
+ {
1003
+ "entropy": 0.8236281529068947,
1004
+ "epoch": 1.4600219058050383,
1005
+ "grad_norm": 0.5985122323036194,
1006
+ "learning_rate": 1.6619784163482372e-05,
1007
+ "loss": 0.5169,
1008
+ "mean_token_accuracy": 0.8454629138112069,
1009
+ "num_tokens": 76677214.0,
1010
+ "step": 1000
1011
+ },
1012
+ {
1013
+ "entropy": 0.8149201571941376,
1014
+ "epoch": 1.4746257758305952,
1015
+ "grad_norm": 0.6033229231834412,
1016
+ "learning_rate": 1.6548607339452853e-05,
1017
+ "loss": 0.5157,
1018
+ "mean_token_accuracy": 0.8454660639166832,
1019
+ "num_tokens": 77429839.0,
1020
+ "step": 1010
1021
+ },
1022
+ {
1023
+ "entropy": 0.8358469530940056,
1024
+ "epoch": 1.4892296458561518,
1025
+ "grad_norm": 0.6250749826431274,
1026
+ "learning_rate": 1.6476844854560537e-05,
1027
+ "loss": 0.5274,
1028
+ "mean_token_accuracy": 0.8430205255746841,
1029
+ "num_tokens": 78198665.0,
1030
+ "step": 1020
1031
+ },
1032
+ {
1033
+ "entropy": 0.8159400016069412,
1034
+ "epoch": 1.5038335158817087,
1035
+ "grad_norm": 0.6094375848770142,
1036
+ "learning_rate": 1.640450312673166e-05,
1037
+ "loss": 0.5237,
1038
+ "mean_token_accuracy": 0.8430356681346893,
1039
+ "num_tokens": 78963745.0,
1040
+ "step": 1030
1041
+ },
1042
+ {
1043
+ "entropy": 0.7948550447821617,
1044
+ "epoch": 1.5184373859072653,
1045
+ "grad_norm": 0.6190559267997742,
1046
+ "learning_rate": 1.6331588625695823e-05,
1047
+ "loss": 0.4984,
1048
+ "mean_token_accuracy": 0.850845368206501,
1049
+ "num_tokens": 79742482.0,
1050
+ "step": 1040
1051
+ },
1052
+ {
1053
+ "entropy": 0.8203089535236359,
1054
+ "epoch": 1.5330412559328221,
1055
+ "grad_norm": 0.627266526222229,
1056
+ "learning_rate": 1.6258107872407376e-05,
1057
+ "loss": 0.5222,
1058
+ "mean_token_accuracy": 0.8443042784929276,
1059
+ "num_tokens": 80513082.0,
1060
+ "step": 1050
1061
+ },
1062
+ {
1063
+ "entropy": 0.8034705385565758,
1064
+ "epoch": 1.547645125958379,
1065
+ "grad_norm": 0.5822563767433167,
1066
+ "learning_rate": 1.6184067438462268e-05,
1067
+ "loss": 0.5108,
1068
+ "mean_token_accuracy": 0.8467739015817642,
1069
+ "num_tokens": 81287042.0,
1070
+ "step": 1060
1071
+ },
1072
+ {
1073
+ "entropy": 0.7996939823031426,
1074
+ "epoch": 1.5622489959839356,
1075
+ "grad_norm": 0.8322076201438904,
1076
+ "learning_rate": 1.6109473945510277e-05,
1077
+ "loss": 0.5059,
1078
+ "mean_token_accuracy": 0.8484288737177849,
1079
+ "num_tokens": 82062918.0,
1080
+ "step": 1070
1081
+ },
1082
+ {
1083
+ "entropy": 0.8242404267191887,
1084
+ "epoch": 1.5768528660094925,
1085
+ "grad_norm": 0.6267576217651367,
1086
+ "learning_rate": 1.6034334064662868e-05,
1087
+ "loss": 0.5236,
1088
+ "mean_token_accuracy": 0.8428681313991546,
1089
+ "num_tokens": 82835236.0,
1090
+ "step": 1080
1091
+ },
1092
+ {
1093
+ "entropy": 0.8226122260093689,
1094
+ "epoch": 1.5914567360350493,
1095
+ "grad_norm": 0.578869104385376,
1096
+ "learning_rate": 1.595865451589654e-05,
1097
+ "loss": 0.522,
1098
+ "mean_token_accuracy": 0.8434418380260468,
1099
+ "num_tokens": 83610617.0,
1100
+ "step": 1090
1101
+ },
1102
+ {
1103
+ "entropy": 0.8142560958862305,
1104
+ "epoch": 1.606060606060606,
1105
+ "grad_norm": 0.652740478515625,
1106
+ "learning_rate": 1.5882442067451856e-05,
1107
+ "loss": 0.52,
1108
+ "mean_token_accuracy": 0.8449100449681282,
1109
+ "num_tokens": 84379036.0,
1110
+ "step": 1100
1111
+ },
1112
+ {
1113
+ "entropy": 0.8149377256631851,
1114
+ "epoch": 1.6206644760861628,
1115
+ "grad_norm": 0.5886592864990234,
1116
+ "learning_rate": 1.5805703535228137e-05,
1117
+ "loss": 0.5318,
1118
+ "mean_token_accuracy": 0.8409554123878479,
1119
+ "num_tokens": 85126712.0,
1120
+ "step": 1110
1121
+ },
1122
+ {
1123
+ "entropy": 0.8216987118124962,
1124
+ "epoch": 1.6352683461117197,
1125
+ "grad_norm": 0.625464916229248,
1126
+ "learning_rate": 1.5728445782173896e-05,
1127
+ "loss": 0.5213,
1128
+ "mean_token_accuracy": 0.8435990065336227,
1129
+ "num_tokens": 85888279.0,
1130
+ "step": 1120
1131
+ },
1132
+ {
1133
+ "entropy": 0.8107628434896469,
1134
+ "epoch": 1.6498722161372763,
1135
+ "grad_norm": 0.6127883195877075,
1136
+ "learning_rate": 1.565067571767306e-05,
1137
+ "loss": 0.5307,
1138
+ "mean_token_accuracy": 0.8404728651046753,
1139
+ "num_tokens": 86651718.0,
1140
+ "step": 1130
1141
+ },
1142
+ {
1143
+ "entropy": 0.8122030794620514,
1144
+ "epoch": 1.6644760861628332,
1145
+ "grad_norm": 0.6447589993476868,
1146
+ "learning_rate": 1.557240029692705e-05,
1147
+ "loss": 0.5288,
1148
+ "mean_token_accuracy": 0.8413975268602372,
1149
+ "num_tokens": 87418899.0,
1150
+ "step": 1140
1151
+ },
1152
+ {
1153
+ "entropy": 0.8063643991947174,
1154
+ "epoch": 1.67907995618839,
1155
+ "grad_norm": 0.6214607357978821,
1156
+ "learning_rate": 1.5493626520332758e-05,
1157
+ "loss": 0.5046,
1158
+ "mean_token_accuracy": 0.8487621054053307,
1159
+ "num_tokens": 88197755.0,
1160
+ "step": 1150
1161
+ },
1162
+ {
1163
+ "entropy": 0.811661048233509,
1164
+ "epoch": 1.6936838262139466,
1165
+ "grad_norm": 0.587363600730896,
1166
+ "learning_rate": 1.5414361432856475e-05,
1167
+ "loss": 0.5232,
1168
+ "mean_token_accuracy": 0.8434179335832596,
1169
+ "num_tokens": 88960882.0,
1170
+ "step": 1160
1171
+ },
1172
+ {
1173
+ "entropy": 0.824562780559063,
1174
+ "epoch": 1.7082876962395035,
1175
+ "grad_norm": 0.5840896964073181,
1176
+ "learning_rate": 1.533461212340384e-05,
1177
+ "loss": 0.5295,
1178
+ "mean_token_accuracy": 0.8425872087478637,
1179
+ "num_tokens": 89730659.0,
1180
+ "step": 1170
1181
+ },
1182
+ {
1183
+ "entropy": 0.8084111362695694,
1184
+ "epoch": 1.7228915662650603,
1185
+ "grad_norm": 0.6445785760879517,
1186
+ "learning_rate": 1.5254385724185872e-05,
1187
+ "loss": 0.5189,
1188
+ "mean_token_accuracy": 0.8443948805332184,
1189
+ "num_tokens": 90519374.0,
1190
+ "step": 1180
1191
+ },
1192
+ {
1193
+ "entropy": 0.802851003408432,
1194
+ "epoch": 1.737495436290617,
1195
+ "grad_norm": 0.5873962044715881,
1196
+ "learning_rate": 1.5173689410081091e-05,
1197
+ "loss": 0.5215,
1198
+ "mean_token_accuracy": 0.8436427339911461,
1199
+ "num_tokens": 91280437.0,
1200
+ "step": 1190
1201
+ },
1202
+ {
1203
+ "entropy": 0.8080698132514954,
1204
+ "epoch": 1.7520993063161738,
1205
+ "grad_norm": 0.594432532787323,
1206
+ "learning_rate": 1.5092530397993877e-05,
1207
+ "loss": 0.519,
1208
+ "mean_token_accuracy": 0.8449363052845001,
1209
+ "num_tokens": 92051212.0,
1210
+ "step": 1200
1211
+ },
1212
+ {
1213
+ "entropy": 0.8046671271324157,
1214
+ "epoch": 1.7667031763417307,
1215
+ "grad_norm": 0.6073573231697083,
1216
+ "learning_rate": 1.5010915946209013e-05,
1217
+ "loss": 0.5207,
1218
+ "mean_token_accuracy": 0.8437707021832466,
1219
+ "num_tokens": 92824656.0,
1220
+ "step": 1210
1221
+ },
1222
+ {
1223
+ "entropy": 0.799671696126461,
1224
+ "epoch": 1.7813070463672873,
1225
+ "grad_norm": 0.5851039886474609,
1226
+ "learning_rate": 1.492885335374258e-05,
1227
+ "loss": 0.5171,
1228
+ "mean_token_accuracy": 0.845556665956974,
1229
+ "num_tokens": 93601248.0,
1230
+ "step": 1220
1231
+ },
1232
+ {
1233
+ "entropy": 0.7995420083403587,
1234
+ "epoch": 1.795910916392844,
1235
+ "grad_norm": 0.6009591221809387,
1236
+ "learning_rate": 1.4846349959689166e-05,
1237
+ "loss": 0.5064,
1238
+ "mean_token_accuracy": 0.8478008210659027,
1239
+ "num_tokens": 94367653.0,
1240
+ "step": 1230
1241
+ },
1242
+ {
1243
+ "entropy": 0.8032964497804642,
1244
+ "epoch": 1.810514786418401,
1245
+ "grad_norm": 0.6265828013420105,
1246
+ "learning_rate": 1.4763413142565524e-05,
1247
+ "loss": 0.5126,
1248
+ "mean_token_accuracy": 0.8462978065013885,
1249
+ "num_tokens": 95134532.0,
1250
+ "step": 1240
1251
+ },
1252
+ {
1253
+ "entropy": 0.8157682687044143,
1254
+ "epoch": 1.8251186564439577,
1255
+ "grad_norm": 0.6303804516792297,
1256
+ "learning_rate": 1.468005031965068e-05,
1257
+ "loss": 0.5285,
1258
+ "mean_token_accuracy": 0.8411597847938538,
1259
+ "num_tokens": 95888124.0,
1260
+ "step": 1250
1261
+ },
1262
+ {
1263
+ "entropy": 0.8242416352033615,
1264
+ "epoch": 1.8397225264695143,
1265
+ "grad_norm": 0.6679196953773499,
1266
+ "learning_rate": 1.4596268946322587e-05,
1267
+ "loss": 0.5277,
1268
+ "mean_token_accuracy": 0.8423770368099213,
1269
+ "num_tokens": 96640919.0,
1270
+ "step": 1260
1271
+ },
1272
+ {
1273
+ "entropy": 0.8027110368013382,
1274
+ "epoch": 1.8543263964950711,
1275
+ "grad_norm": 0.6514571309089661,
1276
+ "learning_rate": 1.4512076515391375e-05,
1277
+ "loss": 0.5144,
1278
+ "mean_token_accuracy": 0.845685575902462,
1279
+ "num_tokens": 97402349.0,
1280
+ "step": 1270
1281
+ },
1282
+ {
1283
+ "entropy": 0.8184534996747971,
1284
+ "epoch": 1.868930266520628,
1285
+ "grad_norm": 0.6248390078544617,
1286
+ "learning_rate": 1.4427480556429237e-05,
1287
+ "loss": 0.5232,
1288
+ "mean_token_accuracy": 0.8441895946860314,
1289
+ "num_tokens": 98195965.0,
1290
+ "step": 1280
1291
+ },
1292
+ {
1293
+ "entropy": 0.8160968586802483,
1294
+ "epoch": 1.8835341365461846,
1295
+ "grad_norm": 0.6021704077720642,
1296
+ "learning_rate": 1.4342488635097044e-05,
1297
+ "loss": 0.5149,
1298
+ "mean_token_accuracy": 0.8458479061722756,
1299
+ "num_tokens": 98968374.0,
1300
+ "step": 1290
1301
+ },
1302
+ {
1303
+ "entropy": 0.8257978558540344,
1304
+ "epoch": 1.8981380065717415,
1305
+ "grad_norm": 0.5873125195503235,
1306
+ "learning_rate": 1.425710835246773e-05,
1307
+ "loss": 0.5265,
1308
+ "mean_token_accuracy": 0.8433559283614158,
1309
+ "num_tokens": 99729725.0,
1310
+ "step": 1300
1311
+ },
1312
+ {
1313
+ "entropy": 0.8362466841936111,
1314
+ "epoch": 1.9127418765972983,
1315
+ "grad_norm": 0.6376807689666748,
1316
+ "learning_rate": 1.4171347344346494e-05,
1317
+ "loss": 0.5343,
1318
+ "mean_token_accuracy": 0.8405352383852005,
1319
+ "num_tokens": 100511457.0,
1320
+ "step": 1310
1321
+ },
1322
+ {
1323
+ "entropy": 0.806542806327343,
1324
+ "epoch": 1.927345746622855,
1325
+ "grad_norm": 0.6307621002197266,
1326
+ "learning_rate": 1.4085213280587916e-05,
1327
+ "loss": 0.508,
1328
+ "mean_token_accuracy": 0.8474292501807212,
1329
+ "num_tokens": 101294648.0,
1330
+ "step": 1320
1331
+ },
1332
+ {
1333
+ "entropy": 0.828097864985466,
1334
+ "epoch": 1.9419496166484118,
1335
+ "grad_norm": 0.6401568055152893,
1336
+ "learning_rate": 1.3998713864410029e-05,
1337
+ "loss": 0.523,
1338
+ "mean_token_accuracy": 0.8436363622546196,
1339
+ "num_tokens": 102057660.0,
1340
+ "step": 1330
1341
+ },
1342
+ {
1343
+ "entropy": 0.8092041403055191,
1344
+ "epoch": 1.9565534866739687,
1345
+ "grad_norm": 0.5988907217979431,
1346
+ "learning_rate": 1.3911856831705372e-05,
1347
+ "loss": 0.5199,
1348
+ "mean_token_accuracy": 0.8438414841890335,
1349
+ "num_tokens": 102826372.0,
1350
+ "step": 1340
1351
+ },
1352
+ {
1353
+ "entropy": 0.8254723891615867,
1354
+ "epoch": 1.9711573566995253,
1355
+ "grad_norm": 0.6260574460029602,
1356
+ "learning_rate": 1.3824649950349173e-05,
1357
+ "loss": 0.5307,
1358
+ "mean_token_accuracy": 0.8420073762536049,
1359
+ "num_tokens": 103585161.0,
1360
+ "step": 1350
1361
+ },
1362
+ {
1363
+ "entropy": 0.8164636805653572,
1364
+ "epoch": 1.9857612267250822,
1365
+ "grad_norm": 0.6160163879394531,
1366
+ "learning_rate": 1.373710101950464e-05,
1367
+ "loss": 0.5213,
1368
+ "mean_token_accuracy": 0.8451445356011391,
1369
+ "num_tokens": 104380569.0,
1370
+ "step": 1360
1371
+ },
1372
+ {
1373
+ "entropy": 0.8088174370618967,
1374
+ "epoch": 2.0,
1375
+ "grad_norm": 0.6965954303741455,
1376
+ "learning_rate": 1.3649217868925435e-05,
1377
+ "loss": 0.5143,
1378
+ "mean_token_accuracy": 0.8466584361516513,
1379
+ "num_tokens": 105148277.0,
1380
+ "step": 1370
1381
+ }
1382
+ ],
1383
+ "logging_steps": 10,
1384
+ "max_steps": 3425,
1385
+ "num_input_tokens_seen": 0,
1386
+ "num_train_epochs": 5,
1387
+ "save_steps": 500,
1388
+ "stateful_callbacks": {
1389
+ "TrainerControl": {
1390
+ "args": {
1391
+ "should_epoch_stop": false,
1392
+ "should_evaluate": false,
1393
+ "should_log": false,
1394
+ "should_save": true,
1395
+ "should_training_stop": false
1396
+ },
1397
+ "attributes": {}
1398
+ }
1399
+ },
1400
+ "total_flos": 8.54747959995138e+17,
1401
+ "train_batch_size": 4,
1402
+ "trial_name": null,
1403
+ "trial_params": null
1404
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcae2930bf0a52637d2a62b591647b4719b80a1a27e03c4d883bb330b7178dd5
3
+ size 6737
vocab.json ADDED
The diff for this file is too large to render. See raw diff