Lansechen commited on
Commit
4e4e32c
·
verified ·
1 Parent(s): 69e1014

Model save

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
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-7B-Instruct
3
+ library_name: transformers
4
+ model_name: Qwen2.5-7B-Open-R1-Distill
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for Qwen2.5-7B-Open-R1-Distill
13
+
14
+ This model is a fine-tuned version of [Qwen/Qwen2.5-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-7B-Instruct).
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
23
+ generator = pipeline("text-generation", model="Lansechen/Qwen2.5-7B-Open-R1-Distill", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/chenran1995-the-chinese-university-of-hong-kong/huggingface/runs/jzel939e)
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.15.0.dev0
38
+ - Transformers: 4.49.0.dev0
39
+ - Pytorch: 2.5.1+cu121
40
+ - Datasets: 3.2.0
41
+ - Tokenizers: 0.21.0
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @misc{vonwerra2022trl,
51
+ title = {{TRL: Transformer Reinforcement Learning}},
52
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
53
+ year = 2020,
54
+ journal = {GitHub repository},
55
+ publisher = {GitHub},
56
+ howpublished = {\url{https://github.com/huggingface/trl}}
57
+ }
58
+ ```
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
+ }
all_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 353216432701440.0,
3
+ "train_loss": 0.5622668473232394,
4
+ "train_runtime": 6715.662,
5
+ "train_samples": 16610,
6
+ "train_samples_per_second": 6.44,
7
+ "train_steps_per_second": 0.1
8
+ }
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Qwen/Qwen2.5-7B-Instruct",
3
+ "architectures": [
4
+ "Qwen2ForCausalLM"
5
+ ],
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 3584,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 18944,
13
+ "max_position_embeddings": 32768,
14
+ "max_window_layers": 28,
15
+ "model_type": "qwen2",
16
+ "num_attention_heads": 28,
17
+ "num_hidden_layers": 28,
18
+ "num_key_value_heads": 4,
19
+ "rms_norm_eps": 1e-06,
20
+ "rope_scaling": null,
21
+ "rope_theta": 1000000.0,
22
+ "sliding_window": null,
23
+ "tie_word_embeddings": false,
24
+ "torch_dtype": "bfloat16",
25
+ "transformers_version": "4.49.0.dev0",
26
+ "use_cache": false,
27
+ "use_sliding_window": false,
28
+ "vocab_size": 152064
29
+ }
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.05,
10
+ "temperature": 0.7,
11
+ "top_k": 20,
12
+ "top_p": 0.8,
13
+ "transformers_version": "4.49.0.dev0"
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:b3b3ad3986104202b3f0068cbe23315259e07ad22b4c24c50804150de1ac21d1
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:b39461ab481e4e162d82a751d76d3f299159b304466d00de37089cd33abff49b
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:0aae074fc78d16ffad6bf9a928c1a59a38a6e6ead6f8ced251177f3b03d0f014
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:3e7330f7325d3b8b495e443979171e79e246e8c8ace20d3983423846bc9c4043
3
+ size 1089994880
model.safetensors.index.json ADDED
@@ -0,0 +1,346 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 15231233024
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00004-of-00004.safetensors",
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.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
33
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
34
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
35
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
36
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
37
+ "model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
38
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
39
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
40
+ "model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
41
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
42
+ "model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
43
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
44
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
45
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
46
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
47
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
48
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
49
+ "model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
50
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
51
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
52
+ "model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
53
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
54
+ "model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
55
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
56
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
57
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
58
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
59
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
60
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
61
+ "model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
62
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
63
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
64
+ "model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
65
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
66
+ "model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
67
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
68
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
69
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
70
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
71
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
72
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
73
+ "model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
74
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
75
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
76
+ "model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
77
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
78
+ "model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
79
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
80
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
81
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
82
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
83
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
84
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
85
+ "model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
86
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
87
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
88
+ "model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
89
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
90
+ "model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
91
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
92
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
93
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
94
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
95
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
96
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
97
+ "model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
98
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
99
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
100
+ "model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
101
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
102
+ "model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
103
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
104
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
105
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
106
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
107
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
108
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
109
+ "model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
110
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
111
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
112
+ "model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
113
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
114
+ "model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
115
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
116
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
117
+ "model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
118
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
119
+ "model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
120
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
121
+ "model.layers.17.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
122
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
123
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
124
+ "model.layers.17.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
125
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
126
+ "model.layers.17.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
127
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
128
+ "model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
129
+ "model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
130
+ "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
131
+ "model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
132
+ "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
133
+ "model.layers.18.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
134
+ "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
135
+ "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
136
+ "model.layers.18.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
137
+ "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
138
+ "model.layers.18.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
139
+ "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
140
+ "model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
141
+ "model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
142
+ "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
143
+ "model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
144
+ "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
145
+ "model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
146
+ "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
147
+ "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
148
+ "model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
149
+ "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
150
+ "model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
151
+ "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
152
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
153
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
154
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
155
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
156
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
157
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
158
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
159
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
160
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
161
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
162
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
163
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
164
+ "model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
165
+ "model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
166
+ "model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
167
+ "model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
168
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
169
+ "model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
170
+ "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
171
+ "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
172
+ "model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
173
+ "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
174
+ "model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
175
+ "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
176
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
177
+ "model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
178
+ "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
179
+ "model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
180
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
181
+ "model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
182
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
183
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
184
+ "model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
185
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
186
+ "model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
187
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
188
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
189
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
190
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
191
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
192
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
193
+ "model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
194
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
195
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
196
+ "model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
197
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
198
+ "model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
199
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
200
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
201
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
202
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
203
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
204
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
205
+ "model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
206
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
207
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
208
+ "model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
209
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
210
+ "model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
211
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
212
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
213
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
214
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
215
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
216
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
217
+ "model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
218
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
219
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
220
+ "model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
221
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
222
+ "model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
223
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
224
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
225
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
226
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
227
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
228
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
229
+ "model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
230
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
231
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
232
+ "model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
233
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
234
+ "model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
235
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
236
+ "model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
237
+ "model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
238
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
239
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
240
+ "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
241
+ "model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
242
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
243
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
244
+ "model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
245
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
246
+ "model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
247
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
248
+ "model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
249
+ "model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
250
+ "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
251
+ "model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
252
+ "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
253
+ "model.layers.27.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
254
+ "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
255
+ "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
256
+ "model.layers.27.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
257
+ "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
258
+ "model.layers.27.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
259
+ "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
260
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
261
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
262
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
263
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
264
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
265
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
266
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
267
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
268
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
269
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
270
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
271
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
272
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
273
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
274
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
275
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
276
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
277
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
278
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
279
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
280
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
281
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
282
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
283
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
284
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
285
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
286
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
287
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
288
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
289
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
290
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
291
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
292
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
293
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
294
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
295
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
296
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
297
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
298
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
299
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
300
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
301
+ "model.layers.6.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
302
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
303
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
304
+ "model.layers.6.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
305
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
306
+ "model.layers.6.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
307
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
308
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
309
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
310
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
311
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
312
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
313
+ "model.layers.7.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
314
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
315
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
316
+ "model.layers.7.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
317
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
318
+ "model.layers.7.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
319
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
320
+ "model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
321
+ "model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
322
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
323
+ "model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
324
+ "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
325
+ "model.layers.8.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
326
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
327
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
328
+ "model.layers.8.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
329
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
330
+ "model.layers.8.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
331
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
332
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
333
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
334
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
335
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
336
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
337
+ "model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
338
+ "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
339
+ "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
340
+ "model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
341
+ "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
342
+ "model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
343
+ "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
344
+ "model.norm.weight": "model-00003-of-00004.safetensors"
345
+ }
346
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<|im_end|>"
25
+ }
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,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
+ "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
+ "extra_special_tokens": {},
203
+ "model_max_length": 131072,
204
+ "pad_token": "<|im_end|>",
205
+ "split_special_tokens": false,
206
+ "tokenizer_class": "Qwen2Tokenizer",
207
+ "unk_token": null
208
+ }
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 353216432701440.0,
3
+ "train_loss": 0.5622668473232394,
4
+ "train_runtime": 6715.662,
5
+ "train_samples": 16610,
6
+ "train_samples_per_second": 6.44,
7
+ "train_steps_per_second": 0.1
8
+ }
trainer_state.json ADDED
@@ -0,0 +1,1169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 1.9944506104328523,
5
+ "eval_steps": 100,
6
+ "global_step": 674,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.014798372179060304,
13
+ "grad_norm": 5.873154780480371,
14
+ "learning_rate": 1.4705882352941177e-06,
15
+ "loss": 1.0358,
16
+ "mean_token_accuracy": 0.7316388096760399,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.029596744358120607,
21
+ "grad_norm": 2.7302446707854355,
22
+ "learning_rate": 2.9411764705882355e-06,
23
+ "loss": 0.9812,
24
+ "mean_token_accuracy": 0.7361123286780883,
25
+ "step": 10
26
+ },
27
+ {
28
+ "epoch": 0.04439511653718091,
29
+ "grad_norm": 3.03547184400763,
30
+ "learning_rate": 4.411764705882353e-06,
31
+ "loss": 0.8803,
32
+ "mean_token_accuracy": 0.7516669682842145,
33
+ "step": 15
34
+ },
35
+ {
36
+ "epoch": 0.059193488716241215,
37
+ "grad_norm": 1.5576396009412468,
38
+ "learning_rate": 5.882352941176471e-06,
39
+ "loss": 0.8387,
40
+ "mean_token_accuracy": 0.7561171292671415,
41
+ "step": 20
42
+ },
43
+ {
44
+ "epoch": 0.07399186089530152,
45
+ "grad_norm": 1.3126755575110347,
46
+ "learning_rate": 7.352941176470589e-06,
47
+ "loss": 0.7641,
48
+ "mean_token_accuracy": 0.7717625620142604,
49
+ "step": 25
50
+ },
51
+ {
52
+ "epoch": 0.08879023307436182,
53
+ "grad_norm": 1.131500623385499,
54
+ "learning_rate": 8.823529411764707e-06,
55
+ "loss": 0.7446,
56
+ "mean_token_accuracy": 0.7737013804383679,
57
+ "step": 30
58
+ },
59
+ {
60
+ "epoch": 0.10358860525342212,
61
+ "grad_norm": 0.9746110376645529,
62
+ "learning_rate": 1.0294117647058823e-05,
63
+ "loss": 0.7026,
64
+ "mean_token_accuracy": 0.7842407428168722,
65
+ "step": 35
66
+ },
67
+ {
68
+ "epoch": 0.11838697743248243,
69
+ "grad_norm": 0.8048648951759245,
70
+ "learning_rate": 1.1764705882352942e-05,
71
+ "loss": 0.6771,
72
+ "mean_token_accuracy": 0.7908444648972979,
73
+ "step": 40
74
+ },
75
+ {
76
+ "epoch": 0.13318534961154274,
77
+ "grad_norm": 0.7246415333990206,
78
+ "learning_rate": 1.323529411764706e-05,
79
+ "loss": 0.6749,
80
+ "mean_token_accuracy": 0.7900594568987716,
81
+ "step": 45
82
+ },
83
+ {
84
+ "epoch": 0.14798372179060304,
85
+ "grad_norm": 0.733308835624135,
86
+ "learning_rate": 1.4705882352941179e-05,
87
+ "loss": 0.6563,
88
+ "mean_token_accuracy": 0.794592206192389,
89
+ "step": 50
90
+ },
91
+ {
92
+ "epoch": 0.16278209396966334,
93
+ "grad_norm": 0.6871482502089021,
94
+ "learning_rate": 1.6176470588235296e-05,
95
+ "loss": 0.6632,
96
+ "mean_token_accuracy": 0.7921971534490387,
97
+ "step": 55
98
+ },
99
+ {
100
+ "epoch": 0.17758046614872364,
101
+ "grad_norm": 0.8281978814043339,
102
+ "learning_rate": 1.7647058823529414e-05,
103
+ "loss": 0.6514,
104
+ "mean_token_accuracy": 0.795665163740184,
105
+ "step": 60
106
+ },
107
+ {
108
+ "epoch": 0.19237883832778394,
109
+ "grad_norm": 0.7622897914821601,
110
+ "learning_rate": 1.911764705882353e-05,
111
+ "loss": 0.6431,
112
+ "mean_token_accuracy": 0.7967185961432454,
113
+ "step": 65
114
+ },
115
+ {
116
+ "epoch": 0.20717721050684423,
117
+ "grad_norm": 0.8856687285958836,
118
+ "learning_rate": 1.9999462497359468e-05,
119
+ "loss": 0.6458,
120
+ "mean_token_accuracy": 0.7961518920305644,
121
+ "step": 70
122
+ },
123
+ {
124
+ "epoch": 0.22197558268590456,
125
+ "grad_norm": 0.8648081169174577,
126
+ "learning_rate": 1.9993416256221894e-05,
127
+ "loss": 0.6292,
128
+ "mean_token_accuracy": 0.8005888190620526,
129
+ "step": 75
130
+ },
131
+ {
132
+ "epoch": 0.23677395486496486,
133
+ "grad_norm": 0.9841783524126788,
134
+ "learning_rate": 1.9980655971335944e-05,
135
+ "loss": 0.6366,
136
+ "mean_token_accuracy": 0.799150493727798,
137
+ "step": 80
138
+ },
139
+ {
140
+ "epoch": 0.25157232704402516,
141
+ "grad_norm": 0.9669517949140644,
142
+ "learning_rate": 1.996119021565693e-05,
143
+ "loss": 0.64,
144
+ "mean_token_accuracy": 0.7973381757677048,
145
+ "step": 85
146
+ },
147
+ {
148
+ "epoch": 0.2663706992230855,
149
+ "grad_norm": 0.6825929599407571,
150
+ "learning_rate": 1.993503206718859e-05,
151
+ "loss": 0.617,
152
+ "mean_token_accuracy": 0.8039111947065061,
153
+ "step": 90
154
+ },
155
+ {
156
+ "epoch": 0.28116907140214575,
157
+ "grad_norm": 0.8142287191995574,
158
+ "learning_rate": 1.9902199100196697e-05,
159
+ "loss": 0.6258,
160
+ "mean_token_accuracy": 0.8010917085972388,
161
+ "step": 95
162
+ },
163
+ {
164
+ "epoch": 0.2959674435812061,
165
+ "grad_norm": 0.9019643715085159,
166
+ "learning_rate": 1.986271337340182e-05,
167
+ "loss": 0.6276,
168
+ "mean_token_accuracy": 0.8001004001746479,
169
+ "step": 100
170
+ },
171
+ {
172
+ "epoch": 0.2959674435812061,
173
+ "eval_loss": 0.6472288370132446,
174
+ "eval_mean_token_accuracy": 0.7845021541173288,
175
+ "eval_runtime": 6.5166,
176
+ "eval_samples_per_second": 19.796,
177
+ "eval_steps_per_second": 1.381,
178
+ "step": 100
179
+ },
180
+ {
181
+ "epoch": 0.31076581576026635,
182
+ "grad_norm": 0.7150123689431418,
183
+ "learning_rate": 1.9816601415159266e-05,
184
+ "loss": 0.6244,
185
+ "mean_token_accuracy": 0.8011849701811149,
186
+ "step": 105
187
+ },
188
+ {
189
+ "epoch": 0.3255641879393267,
190
+ "grad_norm": 0.6980396354767331,
191
+ "learning_rate": 1.976389420563607e-05,
192
+ "loss": 0.6217,
193
+ "mean_token_accuracy": 0.801985873495792,
194
+ "step": 110
195
+ },
196
+ {
197
+ "epoch": 0.340362560118387,
198
+ "grad_norm": 0.6483393489372591,
199
+ "learning_rate": 1.970462715599711e-05,
200
+ "loss": 0.6322,
201
+ "mean_token_accuracy": 0.7991809991309625,
202
+ "step": 115
203
+ },
204
+ {
205
+ "epoch": 0.3551609322974473,
206
+ "grad_norm": 0.979103404344262,
207
+ "learning_rate": 1.9638840084614182e-05,
208
+ "loss": 0.6357,
209
+ "mean_token_accuracy": 0.7973750612372874,
210
+ "step": 120
211
+ },
212
+ {
213
+ "epoch": 0.3699593044765076,
214
+ "grad_norm": 0.8094703898028167,
215
+ "learning_rate": 1.95665771903142e-05,
216
+ "loss": 0.6213,
217
+ "mean_token_accuracy": 0.8013703064346392,
218
+ "step": 125
219
+ },
220
+ {
221
+ "epoch": 0.38475767665556787,
222
+ "grad_norm": 0.6673144346319013,
223
+ "learning_rate": 1.9487887022684336e-05,
224
+ "loss": 0.6218,
225
+ "mean_token_accuracy": 0.801030665681516,
226
+ "step": 130
227
+ },
228
+ {
229
+ "epoch": 0.3995560488346282,
230
+ "grad_norm": 0.7516131294185259,
231
+ "learning_rate": 1.9402822449454154e-05,
232
+ "loss": 0.6282,
233
+ "mean_token_accuracy": 0.7992502751239201,
234
+ "step": 135
235
+ },
236
+ {
237
+ "epoch": 0.41435442101368847,
238
+ "grad_norm": 0.7370168539382796,
239
+ "learning_rate": 1.9311440620976597e-05,
240
+ "loss": 0.6018,
241
+ "mean_token_accuracy": 0.8070717337408512,
242
+ "step": 140
243
+ },
244
+ {
245
+ "epoch": 0.4291527931927488,
246
+ "grad_norm": 0.7862154472350684,
247
+ "learning_rate": 1.9213802931831697e-05,
248
+ "loss": 0.6155,
249
+ "mean_token_accuracy": 0.802514757532942,
250
+ "step": 145
251
+ },
252
+ {
253
+ "epoch": 0.4439511653718091,
254
+ "grad_norm": 0.7898214724874093,
255
+ "learning_rate": 1.9109974979578852e-05,
256
+ "loss": 0.6108,
257
+ "mean_token_accuracy": 0.8044094200292469,
258
+ "step": 150
259
+ },
260
+ {
261
+ "epoch": 0.4587495375508694,
262
+ "grad_norm": 0.608446294301407,
263
+ "learning_rate": 1.90000265206853e-05,
264
+ "loss": 0.6027,
265
+ "mean_token_accuracy": 0.806479159361958,
266
+ "step": 155
267
+ },
268
+ {
269
+ "epoch": 0.4735479097299297,
270
+ "grad_norm": 0.5678200773895826,
271
+ "learning_rate": 1.8884031423660492e-05,
272
+ "loss": 0.6289,
273
+ "mean_token_accuracy": 0.7983312645587797,
274
+ "step": 160
275
+ },
276
+ {
277
+ "epoch": 0.48834628190899,
278
+ "grad_norm": 0.6033985057026514,
279
+ "learning_rate": 1.8762067619427745e-05,
280
+ "loss": 0.61,
281
+ "mean_token_accuracy": 0.8047108713973555,
282
+ "step": 165
283
+ },
284
+ {
285
+ "epoch": 0.5031446540880503,
286
+ "grad_norm": 0.5992911013052771,
287
+ "learning_rate": 1.8634217048966638e-05,
288
+ "loss": 0.6191,
289
+ "mean_token_accuracy": 0.8013076609623978,
290
+ "step": 170
291
+ },
292
+ {
293
+ "epoch": 0.5179430262671106,
294
+ "grad_norm": 0.5751533773422749,
295
+ "learning_rate": 1.8500565608261215e-05,
296
+ "loss": 0.6156,
297
+ "mean_token_accuracy": 0.8024848851435087,
298
+ "step": 175
299
+ },
300
+ {
301
+ "epoch": 0.532741398446171,
302
+ "grad_norm": 0.6220153794810835,
303
+ "learning_rate": 1.836120309059107e-05,
304
+ "loss": 0.6038,
305
+ "mean_token_accuracy": 0.8065419061854854,
306
+ "step": 180
307
+ },
308
+ {
309
+ "epoch": 0.5475397706252312,
310
+ "grad_norm": 0.6920076911839688,
311
+ "learning_rate": 1.821622312620401e-05,
312
+ "loss": 0.6094,
313
+ "mean_token_accuracy": 0.8044180389709078,
314
+ "step": 185
315
+ },
316
+ {
317
+ "epoch": 0.5623381428042915,
318
+ "grad_norm": 0.6335045165654816,
319
+ "learning_rate": 1.8065723119410885e-05,
320
+ "loss": 0.6007,
321
+ "mean_token_accuracy": 0.806239594556011,
322
+ "step": 190
323
+ },
324
+ {
325
+ "epoch": 0.5771365149833518,
326
+ "grad_norm": 0.6098906282400972,
327
+ "learning_rate": 1.7909804183144837e-05,
328
+ "loss": 0.5924,
329
+ "mean_token_accuracy": 0.8088368233387964,
330
+ "step": 195
331
+ },
332
+ {
333
+ "epoch": 0.5919348871624122,
334
+ "grad_norm": 0.8208150519558218,
335
+ "learning_rate": 1.77485710710289e-05,
336
+ "loss": 0.6043,
337
+ "mean_token_accuracy": 0.8053209709695288,
338
+ "step": 200
339
+ },
340
+ {
341
+ "epoch": 0.5919348871624122,
342
+ "eval_loss": 0.6231433749198914,
343
+ "eval_mean_token_accuracy": 0.7912066239860207,
344
+ "eval_runtime": 6.3415,
345
+ "eval_samples_per_second": 20.342,
346
+ "eval_steps_per_second": 1.419,
347
+ "step": 200
348
+ },
349
+ {
350
+ "epoch": 0.6067332593414725,
351
+ "grad_norm": 0.6714044631395076,
352
+ "learning_rate": 1.7582132106997615e-05,
353
+ "loss": 0.5923,
354
+ "mean_token_accuracy": 0.8088909032775599,
355
+ "step": 205
356
+ },
357
+ {
358
+ "epoch": 0.6215316315205327,
359
+ "grad_norm": 0.8401201986800505,
360
+ "learning_rate": 1.741059911251997e-05,
361
+ "loss": 0.6003,
362
+ "mean_token_accuracy": 0.806414436502344,
363
+ "step": 210
364
+ },
365
+ {
366
+ "epoch": 0.636330003699593,
367
+ "grad_norm": 0.6569802080109917,
368
+ "learning_rate": 1.72340873314725e-05,
369
+ "loss": 0.623,
370
+ "mean_token_accuracy": 0.7999445189854004,
371
+ "step": 215
372
+ },
373
+ {
374
+ "epoch": 0.6511283758786534,
375
+ "grad_norm": 0.6353154021756793,
376
+ "learning_rate": 1.7052715352713076e-05,
377
+ "loss": 0.601,
378
+ "mean_token_accuracy": 0.8066583299464509,
379
+ "step": 220
380
+ },
381
+ {
382
+ "epoch": 0.6659267480577137,
383
+ "grad_norm": 0.7902464536029117,
384
+ "learning_rate": 1.686660503040737e-05,
385
+ "loss": 0.6077,
386
+ "mean_token_accuracy": 0.8039797702097446,
387
+ "step": 225
388
+ },
389
+ {
390
+ "epoch": 0.680725120236774,
391
+ "grad_norm": 0.7600702527146179,
392
+ "learning_rate": 1.667588140216154e-05,
393
+ "loss": 0.5895,
394
+ "mean_token_accuracy": 0.8099449022198094,
395
+ "step": 230
396
+ },
397
+ {
398
+ "epoch": 0.6955234924158342,
399
+ "grad_norm": 0.6399316952926574,
400
+ "learning_rate": 1.648067260501611e-05,
401
+ "loss": 0.5912,
402
+ "mean_token_accuracy": 0.8097495784127322,
403
+ "step": 235
404
+ },
405
+ {
406
+ "epoch": 0.7103218645948945,
407
+ "grad_norm": 0.5938255287852134,
408
+ "learning_rate": 1.628110978935756e-05,
409
+ "loss": 0.5861,
410
+ "mean_token_accuracy": 0.8110299862187713,
411
+ "step": 240
412
+ },
413
+ {
414
+ "epoch": 0.7251202367739549,
415
+ "grad_norm": 0.5516247344403948,
416
+ "learning_rate": 1.6077327030805318e-05,
417
+ "loss": 0.5957,
418
+ "mean_token_accuracy": 0.8081890998354544,
419
+ "step": 245
420
+ },
421
+ {
422
+ "epoch": 0.7399186089530152,
423
+ "grad_norm": 0.5358819162228247,
424
+ "learning_rate": 1.586946124013354e-05,
425
+ "loss": 0.5937,
426
+ "mean_token_accuracy": 0.8082340118564328,
427
+ "step": 250
428
+ },
429
+ {
430
+ "epoch": 0.7547169811320755,
431
+ "grad_norm": 0.5743339462905654,
432
+ "learning_rate": 1.565765207128805e-05,
433
+ "loss": 0.5966,
434
+ "mean_token_accuracy": 0.8075976770129074,
435
+ "step": 255
436
+ },
437
+ {
438
+ "epoch": 0.7695153533111357,
439
+ "grad_norm": 0.5841284502622155,
440
+ "learning_rate": 1.5442041827560274e-05,
441
+ "loss": 0.5938,
442
+ "mean_token_accuracy": 0.8076648713915502,
443
+ "step": 260
444
+ },
445
+ {
446
+ "epoch": 0.7843137254901961,
447
+ "grad_norm": 0.6940679472696052,
448
+ "learning_rate": 1.5222775365981272e-05,
449
+ "loss": 0.6095,
450
+ "mean_token_accuracy": 0.8029689580959074,
451
+ "step": 265
452
+ },
453
+ {
454
+ "epoch": 0.7991120976692564,
455
+ "grad_norm": 0.6414717793774399,
456
+ "learning_rate": 1.5000000000000002e-05,
457
+ "loss": 0.5941,
458
+ "mean_token_accuracy": 0.8084243933246892,
459
+ "step": 270
460
+ },
461
+ {
462
+ "epoch": 0.8139104698483167,
463
+ "grad_norm": 0.6630453098140449,
464
+ "learning_rate": 1.477386540051127e-05,
465
+ "loss": 0.5924,
466
+ "mean_token_accuracy": 0.8085968065338565,
467
+ "step": 275
468
+ },
469
+ {
470
+ "epoch": 0.8287088420273769,
471
+ "grad_norm": 0.5329351587424306,
472
+ "learning_rate": 1.4544523495299843e-05,
473
+ "loss": 0.5928,
474
+ "mean_token_accuracy": 0.8086729440068728,
475
+ "step": 280
476
+ },
477
+ {
478
+ "epoch": 0.8435072142064373,
479
+ "grad_norm": 0.5691213867020044,
480
+ "learning_rate": 1.4312128366968244e-05,
481
+ "loss": 0.5938,
482
+ "mean_token_accuracy": 0.8081435195731949,
483
+ "step": 285
484
+ },
485
+ {
486
+ "epoch": 0.8583055863854976,
487
+ "grad_norm": 0.5938272204816656,
488
+ "learning_rate": 1.4076836149416889e-05,
489
+ "loss": 0.5913,
490
+ "mean_token_accuracy": 0.8087761945203304,
491
+ "step": 290
492
+ },
493
+ {
494
+ "epoch": 0.8731039585645579,
495
+ "grad_norm": 0.5805213248288529,
496
+ "learning_rate": 1.3838804922946027e-05,
497
+ "loss": 0.585,
498
+ "mean_token_accuracy": 0.8101805362726768,
499
+ "step": 295
500
+ },
501
+ {
502
+ "epoch": 0.8879023307436182,
503
+ "grad_norm": 0.6205605411976073,
504
+ "learning_rate": 1.3598194608050011e-05,
505
+ "loss": 0.5802,
506
+ "mean_token_accuracy": 0.8121841999933388,
507
+ "step": 300
508
+ },
509
+ {
510
+ "epoch": 0.8879023307436182,
511
+ "eval_loss": 0.6104118227958679,
512
+ "eval_mean_token_accuracy": 0.7934096616040734,
513
+ "eval_runtime": 6.1066,
514
+ "eval_samples_per_second": 21.125,
515
+ "eval_steps_per_second": 1.474,
516
+ "step": 300
517
+ },
518
+ {
519
+ "epoch": 0.9027007029226785,
520
+ "grad_norm": 0.7297198048917212,
521
+ "learning_rate": 1.335516685797525e-05,
522
+ "loss": 0.586,
523
+ "mean_token_accuracy": 0.810322515899198,
524
+ "step": 305
525
+ },
526
+ {
527
+ "epoch": 0.9174990751017388,
528
+ "grad_norm": 0.602250101942619,
529
+ "learning_rate": 1.3109884950114007e-05,
530
+ "loss": 0.5613,
531
+ "mean_token_accuracy": 0.8177320884892854,
532
+ "step": 310
533
+ },
534
+ {
535
+ "epoch": 0.9322974472807991,
536
+ "grad_norm": 0.6006942498904174,
537
+ "learning_rate": 1.2862513676307009e-05,
538
+ "loss": 0.5856,
539
+ "mean_token_accuracy": 0.8108803864525672,
540
+ "step": 315
541
+ },
542
+ {
543
+ "epoch": 0.9470958194598594,
544
+ "grad_norm": 0.5906459830930271,
545
+ "learning_rate": 1.2613219232128608e-05,
546
+ "loss": 0.5826,
547
+ "mean_token_accuracy": 0.8115907786923229,
548
+ "step": 320
549
+ },
550
+ {
551
+ "epoch": 0.9618941916389198,
552
+ "grad_norm": 0.5654651253378785,
553
+ "learning_rate": 1.2362169105228828e-05,
554
+ "loss": 0.5708,
555
+ "mean_token_accuracy": 0.8148788229848793,
556
+ "step": 325
557
+ },
558
+ {
559
+ "epoch": 0.97669256381798,
560
+ "grad_norm": 0.5635367188735272,
561
+ "learning_rate": 1.2109531962807333e-05,
562
+ "loss": 0.5819,
563
+ "mean_token_accuracy": 0.8115773325816088,
564
+ "step": 330
565
+ },
566
+ {
567
+ "epoch": 0.9914909359970403,
568
+ "grad_norm": 0.5384743407697841,
569
+ "learning_rate": 1.1855477538294934e-05,
570
+ "loss": 0.5799,
571
+ "mean_token_accuracy": 0.8120798124309256,
572
+ "step": 335
573
+ },
574
+ {
575
+ "epoch": 1.005919348871624,
576
+ "grad_norm": 0.5783705022677265,
577
+ "learning_rate": 1.1600176517318742e-05,
578
+ "loss": 0.5644,
579
+ "mean_token_accuracy": 0.8145082282309362,
580
+ "step": 340
581
+ },
582
+ {
583
+ "epoch": 1.0207177210506844,
584
+ "grad_norm": 0.5807541271960216,
585
+ "learning_rate": 1.1343800423027583e-05,
586
+ "loss": 0.4893,
587
+ "mean_token_accuracy": 0.8366001069155035,
588
+ "step": 345
589
+ },
590
+ {
591
+ "epoch": 1.0355160932297447,
592
+ "grad_norm": 0.5433694319463491,
593
+ "learning_rate": 1.1086521500854746e-05,
594
+ "loss": 0.5071,
595
+ "mean_token_accuracy": 0.8305881093033763,
596
+ "step": 350
597
+ },
598
+ {
599
+ "epoch": 1.050314465408805,
600
+ "grad_norm": 0.5182231950386379,
601
+ "learning_rate": 1.0828512602795462e-05,
602
+ "loss": 0.4939,
603
+ "mean_token_accuracy": 0.8343194538829101,
604
+ "step": 355
605
+ },
606
+ {
607
+ "epoch": 1.0651128375878653,
608
+ "grad_norm": 0.5037505691014269,
609
+ "learning_rate": 1.0569947071276847e-05,
610
+ "loss": 0.4928,
611
+ "mean_token_accuracy": 0.835155279119328,
612
+ "step": 360
613
+ },
614
+ {
615
+ "epoch": 1.0799112097669257,
616
+ "grad_norm": 0.564944204052768,
617
+ "learning_rate": 1.031099862269837e-05,
618
+ "loss": 0.4873,
619
+ "mean_token_accuracy": 0.8368559662890556,
620
+ "step": 365
621
+ },
622
+ {
623
+ "epoch": 1.094709581945986,
624
+ "grad_norm": 0.5595329516276406,
625
+ "learning_rate": 1.0051841230721065e-05,
626
+ "loss": 0.4893,
627
+ "mean_token_accuracy": 0.8358682899054711,
628
+ "step": 370
629
+ },
630
+ {
631
+ "epoch": 1.1095079541250463,
632
+ "grad_norm": 0.5285152685540331,
633
+ "learning_rate": 9.7926490093839e-06,
634
+ "loss": 0.4954,
635
+ "mean_token_accuracy": 0.8341621077008965,
636
+ "step": 375
637
+ },
638
+ {
639
+ "epoch": 1.1243063263041067,
640
+ "grad_norm": 0.5327723259054864,
641
+ "learning_rate": 9.533596096125826e-06,
642
+ "loss": 0.4867,
643
+ "mean_token_accuracy": 0.8366172696103386,
644
+ "step": 380
645
+ },
646
+ {
647
+ "epoch": 1.1391046984831668,
648
+ "grad_norm": 0.510981211269355,
649
+ "learning_rate": 9.274856534792138e-06,
650
+ "loss": 0.4906,
651
+ "mean_token_accuracy": 0.8355201401059643,
652
+ "step": 385
653
+ },
654
+ {
655
+ "epoch": 1.153903070662227,
656
+ "grad_norm": 0.4732678571726286,
657
+ "learning_rate": 9.016604158703654e-06,
658
+ "loss": 0.498,
659
+ "mean_token_accuracy": 0.8336145988179512,
660
+ "step": 390
661
+ },
662
+ {
663
+ "epoch": 1.1687014428412874,
664
+ "grad_norm": 0.48443746142305255,
665
+ "learning_rate": 8.759012473867407e-06,
666
+ "loss": 0.491,
667
+ "mean_token_accuracy": 0.8355485698296391,
668
+ "step": 395
669
+ },
670
+ {
671
+ "epoch": 1.1834998150203477,
672
+ "grad_norm": 0.4731281950641427,
673
+ "learning_rate": 8.502254542407186e-06,
674
+ "loss": 0.4692,
675
+ "mean_token_accuracy": 0.842170479481814,
676
+ "step": 400
677
+ },
678
+ {
679
+ "epoch": 1.1834998150203477,
680
+ "eval_loss": 0.6122505068778992,
681
+ "eval_mean_token_accuracy": 0.7936213309389266,
682
+ "eval_runtime": 6.0923,
683
+ "eval_samples_per_second": 21.174,
684
+ "eval_steps_per_second": 1.477,
685
+ "step": 400
686
+ },
687
+ {
688
+ "epoch": 1.198298187199408,
689
+ "grad_norm": 0.5150264599473962,
690
+ "learning_rate": 8.246502866292324e-06,
691
+ "loss": 0.4835,
692
+ "mean_token_accuracy": 0.8375680928020935,
693
+ "step": 405
694
+ },
695
+ {
696
+ "epoch": 1.2130965593784684,
697
+ "grad_norm": 0.5827954564832128,
698
+ "learning_rate": 7.991929271442817e-06,
699
+ "loss": 0.5036,
700
+ "mean_token_accuracy": 0.8310098830108341,
701
+ "step": 410
702
+ },
703
+ {
704
+ "epoch": 1.2278949315575287,
705
+ "grad_norm": 0.5041753437883894,
706
+ "learning_rate": 7.738704792288654e-06,
707
+ "loss": 0.483,
708
+ "mean_token_accuracy": 0.8377270123486676,
709
+ "step": 415
710
+ },
711
+ {
712
+ "epoch": 1.242693303736589,
713
+ "grad_norm": 0.5241445257788216,
714
+ "learning_rate": 7.48699955686089e-06,
715
+ "loss": 0.4894,
716
+ "mean_token_accuracy": 0.8358706999239033,
717
+ "step": 420
718
+ },
719
+ {
720
+ "epoch": 1.2574916759156491,
721
+ "grad_norm": 0.5226584287142753,
722
+ "learning_rate": 7.236982672491699e-06,
723
+ "loss": 0.4821,
724
+ "mean_token_accuracy": 0.8382222441572734,
725
+ "step": 425
726
+ },
727
+ {
728
+ "epoch": 1.2722900480947095,
729
+ "grad_norm": 0.490044247064958,
730
+ "learning_rate": 6.988822112200157e-06,
731
+ "loss": 0.486,
732
+ "mean_token_accuracy": 0.8368370161402969,
733
+ "step": 430
734
+ },
735
+ {
736
+ "epoch": 1.2870884202737698,
737
+ "grad_norm": 0.5317283328876345,
738
+ "learning_rate": 6.742684601840142e-06,
739
+ "loss": 0.4786,
740
+ "mean_token_accuracy": 0.8396670102889878,
741
+ "step": 435
742
+ },
743
+ {
744
+ "epoch": 1.3018867924528301,
745
+ "grad_norm": 0.507584587318353,
746
+ "learning_rate": 6.498735508086094e-06,
747
+ "loss": 0.4984,
748
+ "mean_token_accuracy": 0.8329999129949046,
749
+ "step": 440
750
+ },
751
+ {
752
+ "epoch": 1.3166851646318904,
753
+ "grad_norm": 0.5529390368067023,
754
+ "learning_rate": 6.2571387273319905e-06,
755
+ "loss": 0.4978,
756
+ "mean_token_accuracy": 0.8333015398194806,
757
+ "step": 445
758
+ },
759
+ {
760
+ "epoch": 1.3314835368109508,
761
+ "grad_norm": 0.5142205830677098,
762
+ "learning_rate": 6.018056575578075e-06,
763
+ "loss": 0.4894,
764
+ "mean_token_accuracy": 0.8355656770271265,
765
+ "step": 450
766
+ },
767
+ {
768
+ "epoch": 1.346281908990011,
769
+ "grad_norm": 0.5342014198273357,
770
+ "learning_rate": 5.781649679379379e-06,
771
+ "loss": 0.5019,
772
+ "mean_token_accuracy": 0.8318304389937466,
773
+ "step": 455
774
+ },
775
+ {
776
+ "epoch": 1.3610802811690714,
777
+ "grad_norm": 0.4799261938242619,
778
+ "learning_rate": 5.548076867929331e-06,
779
+ "loss": 0.4892,
780
+ "mean_token_accuracy": 0.8358409622456374,
781
+ "step": 460
782
+ },
783
+ {
784
+ "epoch": 1.3758786533481318,
785
+ "grad_norm": 0.46967732257069056,
786
+ "learning_rate": 5.31749506635086e-06,
787
+ "loss": 0.4994,
788
+ "mean_token_accuracy": 0.8324497870625261,
789
+ "step": 465
790
+ },
791
+ {
792
+ "epoch": 1.390677025527192,
793
+ "grad_norm": 0.5045843092566024,
794
+ "learning_rate": 5.090059190266779e-06,
795
+ "loss": 0.4822,
796
+ "mean_token_accuracy": 0.8378351822530098,
797
+ "step": 470
798
+ },
799
+ {
800
+ "epoch": 1.4054753977062524,
801
+ "grad_norm": 0.5034011568000825,
802
+ "learning_rate": 4.865922041720239e-06,
803
+ "loss": 0.5055,
804
+ "mean_token_accuracy": 0.8304427567413514,
805
+ "step": 475
806
+ },
807
+ {
808
+ "epoch": 1.4202737698853127,
809
+ "grad_norm": 0.47256306136960424,
810
+ "learning_rate": 4.645234206515171e-06,
811
+ "loss": 0.4929,
812
+ "mean_token_accuracy": 0.8342068444593862,
813
+ "step": 480
814
+ },
815
+ {
816
+ "epoch": 1.435072142064373,
817
+ "grad_norm": 0.49515858020681464,
818
+ "learning_rate": 4.4281439530457174e-06,
819
+ "loss": 0.4939,
820
+ "mean_token_accuracy": 0.834274260171407,
821
+ "step": 485
822
+ },
823
+ {
824
+ "epoch": 1.4498705142434332,
825
+ "grad_norm": 0.4840617155614409,
826
+ "learning_rate": 4.214797132682597e-06,
827
+ "loss": 0.4852,
828
+ "mean_token_accuracy": 0.8372765024644311,
829
+ "step": 490
830
+ },
831
+ {
832
+ "epoch": 1.4646688864224935,
833
+ "grad_norm": 0.49943267891019005,
834
+ "learning_rate": 4.00533708178334e-06,
835
+ "loss": 0.4858,
836
+ "mean_token_accuracy": 0.836826425891306,
837
+ "step": 495
838
+ },
839
+ {
840
+ "epoch": 1.4794672586015538,
841
+ "grad_norm": 0.535086423343104,
842
+ "learning_rate": 3.799904525392251e-06,
843
+ "loss": 0.4853,
844
+ "mean_token_accuracy": 0.8369330424939075,
845
+ "step": 500
846
+ },
847
+ {
848
+ "epoch": 1.4794672586015538,
849
+ "eval_loss": 0.6056095361709595,
850
+ "eval_mean_token_accuracy": 0.7942514186664803,
851
+ "eval_runtime": 6.1497,
852
+ "eval_samples_per_second": 20.977,
853
+ "eval_steps_per_second": 1.463,
854
+ "step": 500
855
+ },
856
+ {
857
+ "epoch": 1.4942656307806141,
858
+ "grad_norm": 0.4941288619954431,
859
+ "learning_rate": 3.5986374826947067e-06,
860
+ "loss": 0.4827,
861
+ "mean_token_accuracy": 0.8380983909060842,
862
+ "step": 505
863
+ },
864
+ {
865
+ "epoch": 1.5090640029596745,
866
+ "grad_norm": 0.4754211926164501,
867
+ "learning_rate": 3.401671174289469e-06,
868
+ "loss": 0.492,
869
+ "mean_token_accuracy": 0.8351341916654714,
870
+ "step": 510
871
+ },
872
+ {
873
+ "epoch": 1.5238623751387348,
874
+ "grad_norm": 0.4527582687943253,
875
+ "learning_rate": 3.209137931341143e-06,
876
+ "loss": 0.4871,
877
+ "mean_token_accuracy": 0.8364601649661985,
878
+ "step": 515
879
+ },
880
+ {
881
+ "epoch": 1.538660747317795,
882
+ "grad_norm": 0.43914511259053823,
883
+ "learning_rate": 3.021167106673928e-06,
884
+ "loss": 0.4855,
885
+ "mean_token_accuracy": 0.8372060162299879,
886
+ "step": 520
887
+ },
888
+ {
889
+ "epoch": 1.5534591194968552,
890
+ "grad_norm": 0.46502320560112126,
891
+ "learning_rate": 2.837884987866363e-06,
892
+ "loss": 0.4783,
893
+ "mean_token_accuracy": 0.8394779314965,
894
+ "step": 525
895
+ },
896
+ {
897
+ "epoch": 1.5682574916759155,
898
+ "grad_norm": 0.4369912107652261,
899
+ "learning_rate": 2.6594147124053983e-06,
900
+ "loss": 0.4825,
901
+ "mean_token_accuracy": 0.8379071135113556,
902
+ "step": 530
903
+ },
904
+ {
905
+ "epoch": 1.5830558638549759,
906
+ "grad_norm": 0.4449286788626254,
907
+ "learning_rate": 2.485876184956928e-06,
908
+ "loss": 0.4913,
909
+ "mean_token_accuracy": 0.8354638704130558,
910
+ "step": 535
911
+ },
912
+ {
913
+ "epoch": 1.5978542360340362,
914
+ "grad_norm": 0.46732223732064015,
915
+ "learning_rate": 2.317385996808195e-06,
916
+ "loss": 0.4856,
917
+ "mean_token_accuracy": 0.8368914405972762,
918
+ "step": 540
919
+ },
920
+ {
921
+ "epoch": 1.6126526082130965,
922
+ "grad_norm": 0.4749892439400419,
923
+ "learning_rate": 2.1540573475363402e-06,
924
+ "loss": 0.4893,
925
+ "mean_token_accuracy": 0.8357088261947915,
926
+ "step": 545
927
+ },
928
+ {
929
+ "epoch": 1.6274509803921569,
930
+ "grad_norm": 0.5078286609977927,
931
+ "learning_rate": 1.9959999689556407e-06,
932
+ "loss": 0.4892,
933
+ "mean_token_accuracy": 0.8357268296517397,
934
+ "step": 550
935
+ },
936
+ {
937
+ "epoch": 1.6422493525712172,
938
+ "grad_norm": 0.47604879820071366,
939
+ "learning_rate": 1.8433200513945338e-06,
940
+ "loss": 0.4784,
941
+ "mean_token_accuracy": 0.8390242499052107,
942
+ "step": 555
943
+ },
944
+ {
945
+ "epoch": 1.6570477247502775,
946
+ "grad_norm": 0.45061563547081396,
947
+ "learning_rate": 1.6961201723520248e-06,
948
+ "loss": 0.4821,
949
+ "mean_token_accuracy": 0.8374660341007056,
950
+ "step": 560
951
+ },
952
+ {
953
+ "epoch": 1.6718460969293378,
954
+ "grad_norm": 0.4795504545771744,
955
+ "learning_rate": 1.5544992275813053e-06,
956
+ "loss": 0.4836,
957
+ "mean_token_accuracy": 0.8379238131885172,
958
+ "step": 565
959
+ },
960
+ {
961
+ "epoch": 1.6866444691083982,
962
+ "grad_norm": 0.44572074348268154,
963
+ "learning_rate": 1.4185523646469822e-06,
964
+ "loss": 0.4813,
965
+ "mean_token_accuracy": 0.8388045352010174,
966
+ "step": 570
967
+ },
968
+ {
969
+ "epoch": 1.7014428412874585,
970
+ "grad_norm": 0.45502483472339594,
971
+ "learning_rate": 1.2883709190004956e-06,
972
+ "loss": 0.4871,
973
+ "mean_token_accuracy": 0.8364350531341807,
974
+ "step": 575
975
+ },
976
+ {
977
+ "epoch": 1.7162412134665188,
978
+ "grad_norm": 0.43045928009716183,
979
+ "learning_rate": 1.1640423526166987e-06,
980
+ "loss": 0.4895,
981
+ "mean_token_accuracy": 0.8357896599301256,
982
+ "step": 580
983
+ },
984
+ {
985
+ "epoch": 1.7310395856455791,
986
+ "grad_norm": 0.48054095613941866,
987
+ "learning_rate": 1.0456501952328191e-06,
988
+ "loss": 0.4814,
989
+ "mean_token_accuracy": 0.8385132350939039,
990
+ "step": 585
991
+ },
992
+ {
993
+ "epoch": 1.7458379578246392,
994
+ "grad_norm": 0.4707038925760079,
995
+ "learning_rate": 9.332739882292752e-07,
996
+ "loss": 0.4879,
997
+ "mean_token_accuracy": 0.8363748056422965,
998
+ "step": 590
999
+ },
1000
+ {
1001
+ "epoch": 1.7606363300036996,
1002
+ "grad_norm": 0.44774391369503874,
1003
+ "learning_rate": 8.269892311900696e-07,
1004
+ "loss": 0.485,
1005
+ "mean_token_accuracy": 0.8370924962194861,
1006
+ "step": 595
1007
+ },
1008
+ {
1009
+ "epoch": 1.77543470218276,
1010
+ "grad_norm": 0.44217804145780687,
1011
+ "learning_rate": 7.268673311786378e-07,
1012
+ "loss": 0.487,
1013
+ "mean_token_accuracy": 0.8367829655047669,
1014
+ "step": 600
1015
+ },
1016
+ {
1017
+ "epoch": 1.77543470218276,
1018
+ "eval_loss": 0.6028669476509094,
1019
+ "eval_mean_token_accuracy": 0.7946372086347616,
1020
+ "eval_runtime": 5.8974,
1021
+ "eval_samples_per_second": 21.874,
1022
+ "eval_steps_per_second": 1.526,
1023
+ "step": 600
1024
+ },
1025
+ {
1026
+ "epoch": 1.7902330743618202,
1027
+ "grad_norm": 0.4212551312476089,
1028
+ "learning_rate": 6.329755547632499e-07,
1029
+ "loss": 0.481,
1030
+ "mean_token_accuracy": 0.8380260492823615,
1031
+ "step": 605
1032
+ },
1033
+ {
1034
+ "epoch": 1.8050314465408805,
1035
+ "grad_norm": 0.4419285219229318,
1036
+ "learning_rate": 5.453769828241872e-07,
1037
+ "loss": 0.4795,
1038
+ "mean_token_accuracy": 0.8382598064519,
1039
+ "step": 610
1040
+ },
1041
+ {
1042
+ "epoch": 1.8198298187199407,
1043
+ "grad_norm": 0.499815451916348,
1044
+ "learning_rate": 4.6413046817306404e-07,
1045
+ "loss": 0.4862,
1046
+ "mean_token_accuracy": 0.8363923916890554,
1047
+ "step": 615
1048
+ },
1049
+ {
1050
+ "epoch": 1.834628190899001,
1051
+ "grad_norm": 0.4324430376968095,
1052
+ "learning_rate": 3.8929059601275463e-07,
1053
+ "loss": 0.4863,
1054
+ "mean_token_accuracy": 0.8357708143663004,
1055
+ "step": 620
1056
+ },
1057
+ {
1058
+ "epoch": 1.8494265630780613,
1059
+ "grad_norm": 0.4370786144717368,
1060
+ "learning_rate": 3.209076472645112e-07,
1061
+ "loss": 0.4891,
1062
+ "mean_token_accuracy": 0.8358666367602456,
1063
+ "step": 625
1064
+ },
1065
+ {
1066
+ "epoch": 1.8642249352571216,
1067
+ "grad_norm": 0.45737986580821133,
1068
+ "learning_rate": 2.5902756478688674e-07,
1069
+ "loss": 0.4963,
1070
+ "mean_token_accuracy": 0.8331480584594694,
1071
+ "step": 630
1072
+ },
1073
+ {
1074
+ "epoch": 1.879023307436182,
1075
+ "grad_norm": 0.42489875386754616,
1076
+ "learning_rate": 2.036919225091827e-07,
1077
+ "loss": 0.4933,
1078
+ "mean_token_accuracy": 0.8345084669554433,
1079
+ "step": 635
1080
+ },
1081
+ {
1082
+ "epoch": 1.8938216796152423,
1083
+ "grad_norm": 0.42638036110345007,
1084
+ "learning_rate": 1.5493789750014032e-07,
1085
+ "loss": 0.4818,
1086
+ "mean_token_accuracy": 0.8377955277757284,
1087
+ "step": 640
1088
+ },
1089
+ {
1090
+ "epoch": 1.9086200517943026,
1091
+ "grad_norm": 0.4389784765863673,
1092
+ "learning_rate": 1.1279824499064396e-07,
1093
+ "loss": 0.4912,
1094
+ "mean_token_accuracy": 0.8349241801685163,
1095
+ "step": 645
1096
+ },
1097
+ {
1098
+ "epoch": 1.923418423973363,
1099
+ "grad_norm": 0.43580993132452517,
1100
+ "learning_rate": 7.730127636723539e-08,
1101
+ "loss": 0.4943,
1102
+ "mean_token_accuracy": 0.8335521500337608,
1103
+ "step": 650
1104
+ },
1105
+ {
1106
+ "epoch": 1.9382167961524233,
1107
+ "grad_norm": 0.4353963897285251,
1108
+ "learning_rate": 4.8470840151195745e-08,
1109
+ "loss": 0.4921,
1110
+ "mean_token_accuracy": 0.8345618071063619,
1111
+ "step": 655
1112
+ },
1113
+ {
1114
+ "epoch": 1.9530151683314836,
1115
+ "grad_norm": 0.4350347619455507,
1116
+ "learning_rate": 2.6326305976001054e-08,
1117
+ "loss": 0.4986,
1118
+ "mean_token_accuracy": 0.832946417411262,
1119
+ "step": 660
1120
+ },
1121
+ {
1122
+ "epoch": 1.967813540510544,
1123
+ "grad_norm": 0.446342705896711,
1124
+ "learning_rate": 1.0882551573891953e-08,
1125
+ "loss": 0.4794,
1126
+ "mean_token_accuracy": 0.8385054214689411,
1127
+ "step": 665
1128
+ },
1129
+ {
1130
+ "epoch": 1.9826119126896042,
1131
+ "grad_norm": 0.41623371280095184,
1132
+ "learning_rate": 2.149952780321485e-09,
1133
+ "loss": 0.4907,
1134
+ "mean_token_accuracy": 0.8352915916379982,
1135
+ "step": 670
1136
+ },
1137
+ {
1138
+ "epoch": 1.9944506104328523,
1139
+ "mean_token_accuracy": 0.8362395005721152,
1140
+ "step": 674,
1141
+ "total_flos": 353216432701440.0,
1142
+ "train_loss": 0.5622668473232394,
1143
+ "train_runtime": 6715.662,
1144
+ "train_samples_per_second": 6.44,
1145
+ "train_steps_per_second": 0.1
1146
+ }
1147
+ ],
1148
+ "logging_steps": 5,
1149
+ "max_steps": 674,
1150
+ "num_input_tokens_seen": 0,
1151
+ "num_train_epochs": 2,
1152
+ "save_steps": 500,
1153
+ "stateful_callbacks": {
1154
+ "TrainerControl": {
1155
+ "args": {
1156
+ "should_epoch_stop": false,
1157
+ "should_evaluate": false,
1158
+ "should_log": false,
1159
+ "should_save": false,
1160
+ "should_training_stop": false
1161
+ },
1162
+ "attributes": {}
1163
+ }
1164
+ },
1165
+ "total_flos": 353216432701440.0,
1166
+ "train_batch_size": 2,
1167
+ "trial_name": null,
1168
+ "trial_params": null
1169
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e42d2412b154d4789c7eb3f8da79522135dea6e8589a6bc6811c35a8aab0fc6
3
+ size 7352
vocab.json ADDED
The diff for this file is too large to render. See raw diff