mehuldamani commited on
Commit
8a7eae7
·
verified ·
1 Parent(s): 2716ea2

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,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-7B
3
+ library_name: transformers
4
+ model_name: bandit-log-RLCR-v2
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - grpo
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for bandit-log-RLCR-v2
13
+
14
+ This model is a fine-tuned version of [Qwen/Qwen2.5-7B](https://huggingface.co/Qwen/Qwen2.5-7B).
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="mehuldamani/bandit-log-RLCR-v2", 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/mehuldamani/RLCR/runs/s8iyh018)
31
+
32
+
33
+ This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.16.0.dev0
38
+ - Transformers: 4.48.3
39
+ - Pytorch: 2.5.1
40
+ - Datasets: 4.0.0
41
+ - Tokenizers: 0.21.1
42
+
43
+ ## Citations
44
+
45
+ Cite GRPO as:
46
+
47
+ ```bibtex
48
+ @article{zhihong2024deepseekmath,
49
+ title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
50
+ author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
51
+ year = 2024,
52
+ eprint = {arXiv:2402.03300},
53
+ }
54
+
55
+ ```
56
+
57
+ Cite TRL as:
58
+
59
+ ```bibtex
60
+ @misc{vonwerra2022trl,
61
+ title = {{TRL: Transformer Reinforcement Learning}},
62
+ 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},
63
+ year = 2020,
64
+ journal = {GitHub repository},
65
+ publisher = {GitHub},
66
+ howpublished = {\url{https://github.com/huggingface/trl}}
67
+ }
68
+ ```
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
+ }
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Qwen/Qwen2.5-7B",
3
+ "architectures": [
4
+ "Qwen2ForCausalLM"
5
+ ],
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151643,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 3584,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 18944,
13
+ "max_position_embeddings": 131072,
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.48.3",
26
+ "use_cache": false,
27
+ "use_mrope": false,
28
+ "use_sliding_window": false,
29
+ "vocab_size": 152064
30
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "eos_token_id": 151643,
4
+ "max_new_tokens": 2048,
5
+ "transformers_version": "4.48.3"
6
+ }
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:775dc52cbe5ee37dcf6ad6caaf6c6c2bf780b8f69ab95b58b372524882310a64
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:a0b06b592abba4b514c0e51931a7c5673bc794bf5f985fecda7be742151ea2ae
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:10483e85d1825d1d624b2e814fd86ab33bde6a804b15e9f206f8a79cd0e6aabb
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:58793dc043a4f3c1a79883c1d4de10c0b4d7a93bf2cc8d6631ab72b4e8c9a7d4
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,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": "<|endoftext|>",
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:5eee858c5123a4279c3e1f7b81247343f356ac767940b2692a928ad929543214
3
+ size 11422063
tokenizer_config.json ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 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 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": "<|endoftext|>",
201
+ "errors": "replace",
202
+ "extra_special_tokens": {},
203
+ "model_max_length": 131072,
204
+ "pad_token": "<|endoftext|>",
205
+ "padding_side": "left",
206
+ "split_special_tokens": false,
207
+ "tokenizer_class": "Qwen2Tokenizer",
208
+ "unk_token": null
209
+ }
trainer_state.json ADDED
@@ -0,0 +1,1031 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.9996190476190476,
5
+ "eval_steps": 50,
6
+ "global_step": 164,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "clip_ratio/high_max": 0.0,
13
+ "clip_ratio/high_mean": 0.0,
14
+ "clip_ratio/low_mean": 0.0,
15
+ "clip_ratio/low_min": 0.0,
16
+ "clip_ratio/region_mean": 0.0,
17
+ "completions/clipped_ratio": 0.77080078125,
18
+ "completions/max_length": 128.0,
19
+ "completions/max_terminated_length": 128.0,
20
+ "completions/mean_length": 116.9482421875,
21
+ "completions/mean_terminated_length": 79.82200317382812,
22
+ "completions/min_length": 2.0,
23
+ "completions/min_terminated_length": 2.0,
24
+ "epoch": 0.030476190476190476,
25
+ "grad_norm": 0.2547481060028076,
26
+ "learning_rate": 5.555555555555555e-07,
27
+ "loss": 0.1961,
28
+ "num_tokens": 3786478.0,
29
+ "reward": 0.8699400663375855,
30
+ "reward_std": 1.7978902339935303,
31
+ "rewards/accuracy_reward": 0.0283203125,
32
+ "rewards/brier_reward": 0.12994426488876343,
33
+ "rewards/confidence_one_or_zero": 0.1083984375,
34
+ "rewards/format_reward": 0.16884765625,
35
+ "rewards/log_2_reward": 1.5427121639251709,
36
+ "rewards/mean_confidence_reward": 0.10250047892332077,
37
+ "step": 5
38
+ },
39
+ {
40
+ "clip_ratio/high_max": 0.0,
41
+ "clip_ratio/high_mean": 0.0,
42
+ "clip_ratio/low_mean": 0.0,
43
+ "clip_ratio/low_min": 0.0,
44
+ "clip_ratio/region_mean": 0.0,
45
+ "completions/clipped_ratio": 0.44853515625,
46
+ "completions/max_length": 128.0,
47
+ "completions/max_terminated_length": 128.0,
48
+ "completions/mean_length": 98.93623046875,
49
+ "completions/mean_terminated_length": 76.31569213867188,
50
+ "completions/min_length": 6.4,
51
+ "completions/min_terminated_length": 6.4,
52
+ "epoch": 0.06095238095238095,
53
+ "grad_norm": 0.9249232411384583,
54
+ "learning_rate": 1e-06,
55
+ "loss": 0.3834,
56
+ "num_tokens": 7388449.0,
57
+ "reward": 2.7091397285461425,
58
+ "reward_std": 2.2789249181747437,
59
+ "rewards/accuracy_reward": 0.107421875,
60
+ "rewards/brier_reward": 0.3979889452457428,
61
+ "rewards/confidence_one_or_zero": 0.21123046875,
62
+ "rewards/format_reward": 0.52158203125,
63
+ "rewards/log_2_reward": 4.789275646209717,
64
+ "rewards/mean_confidence_reward": 0.254657456278801,
65
+ "step": 10
66
+ },
67
+ {
68
+ "clip_ratio/high_max": 0.0,
69
+ "clip_ratio/high_mean": 0.0,
70
+ "clip_ratio/low_mean": 0.0,
71
+ "clip_ratio/low_min": 0.0,
72
+ "clip_ratio/region_mean": 0.0,
73
+ "completions/clipped_ratio": 0.04111328125,
74
+ "completions/max_length": 128.0,
75
+ "completions/max_terminated_length": 126.8,
76
+ "completions/mean_length": 64.40888671875,
77
+ "completions/mean_terminated_length": 61.81023941040039,
78
+ "completions/min_length": 16.6,
79
+ "completions/min_terminated_length": 16.6,
80
+ "epoch": 0.09142857142857143,
81
+ "grad_norm": 0.09482545405626297,
82
+ "learning_rate": 1e-06,
83
+ "loss": 0.115,
84
+ "num_tokens": 10635996.0,
85
+ "reward": 4.9152580261230465,
86
+ "reward_std": 1.1983887672424316,
87
+ "rewards/accuracy_reward": 0.1896484375,
88
+ "rewards/brier_reward": 0.7029260516166687,
89
+ "rewards/confidence_one_or_zero": 0.308984375,
90
+ "rewards/format_reward": 0.94921875,
91
+ "rewards/log_2_reward": 8.69164867401123,
92
+ "rewards/mean_confidence_reward": 0.43842514157295226,
93
+ "step": 15
94
+ },
95
+ {
96
+ "clip_ratio/high_max": 0.0,
97
+ "clip_ratio/high_mean": 0.0,
98
+ "clip_ratio/low_mean": 0.0,
99
+ "clip_ratio/low_min": 0.0,
100
+ "clip_ratio/region_mean": 0.0,
101
+ "completions/clipped_ratio": 0.0001953125,
102
+ "completions/max_length": 113.0,
103
+ "completions/max_terminated_length": 100.2,
104
+ "completions/mean_length": 43.7119140625,
105
+ "completions/mean_terminated_length": 43.69547882080078,
106
+ "completions/min_length": 18.8,
107
+ "completions/min_terminated_length": 18.8,
108
+ "epoch": 0.1219047619047619,
109
+ "grad_norm": 0.00744120217859745,
110
+ "learning_rate": 1e-06,
111
+ "loss": -0.0043,
112
+ "num_tokens": 13670230.0,
113
+ "reward": 5.309306526184082,
114
+ "reward_std": 0.32826481461524964,
115
+ "rewards/accuracy_reward": 0.18349609375,
116
+ "rewards/brier_reward": 0.8068550109863282,
117
+ "rewards/confidence_one_or_zero": 0.39267578125,
118
+ "rewards/format_reward": 0.99794921875,
119
+ "rewards/log_2_reward": 9.437167739868164,
120
+ "rewards/mean_confidence_reward": 0.35327613949775694,
121
+ "step": 20
122
+ },
123
+ {
124
+ "clip_ratio/high_max": 0.0,
125
+ "clip_ratio/high_mean": 0.0,
126
+ "clip_ratio/low_mean": 0.0,
127
+ "clip_ratio/low_min": 0.0,
128
+ "clip_ratio/region_mean": 0.0,
129
+ "completions/clipped_ratio": 9.765625e-05,
130
+ "completions/max_length": 106.8,
131
+ "completions/max_terminated_length": 98.0,
132
+ "completions/mean_length": 42.294140625,
133
+ "completions/mean_terminated_length": 42.28580551147461,
134
+ "completions/min_length": 21.8,
135
+ "completions/min_terminated_length": 21.8,
136
+ "epoch": 0.1523809523809524,
137
+ "grad_norm": 0.0060423314571380615,
138
+ "learning_rate": 1e-06,
139
+ "loss": -0.0001,
140
+ "num_tokens": 16692602.0,
141
+ "reward": 5.426451015472412,
142
+ "reward_std": 0.18737927973270416,
143
+ "rewards/accuracy_reward": 0.16845703125,
144
+ "rewards/brier_reward": 0.8912161231040955,
145
+ "rewards/confidence_one_or_zero": 0.5732421875,
146
+ "rewards/format_reward": 0.998828125,
147
+ "rewards/log_2_reward": 9.68561668395996,
148
+ "rewards/mean_confidence_reward": 0.21070439517498016,
149
+ "step": 25
150
+ },
151
+ {
152
+ "clip_ratio/high_max": 0.0,
153
+ "clip_ratio/high_mean": 0.0,
154
+ "clip_ratio/low_mean": 0.0,
155
+ "clip_ratio/low_min": 0.0,
156
+ "clip_ratio/region_mean": 0.0,
157
+ "completions/clipped_ratio": 0.0,
158
+ "completions/max_length": 76.4,
159
+ "completions/max_terminated_length": 76.4,
160
+ "completions/mean_length": 41.1986328125,
161
+ "completions/mean_terminated_length": 41.1986328125,
162
+ "completions/min_length": 23.2,
163
+ "completions/min_terminated_length": 23.2,
164
+ "epoch": 0.18285714285714286,
165
+ "grad_norm": 0.004254295490682125,
166
+ "learning_rate": 1e-06,
167
+ "loss": -0.0002,
168
+ "num_tokens": 19701580.0,
169
+ "reward": 5.47640905380249,
170
+ "reward_std": 0.0742596685886383,
171
+ "rewards/accuracy_reward": 0.05986328125,
172
+ "rewards/brier_reward": 0.9633856773376465,
173
+ "rewards/confidence_one_or_zero": 0.86806640625,
174
+ "rewards/format_reward": 0.99921875,
175
+ "rewards/log_2_reward": 9.893736457824707,
176
+ "rewards/mean_confidence_reward": 0.05211978480219841,
177
+ "step": 30
178
+ },
179
+ {
180
+ "clip_ratio/high_max": 0.0,
181
+ "clip_ratio/high_mean": 0.0,
182
+ "clip_ratio/low_mean": 0.0,
183
+ "clip_ratio/low_min": 0.0,
184
+ "clip_ratio/region_mean": 0.0,
185
+ "completions/clipped_ratio": 0.0,
186
+ "completions/max_length": 71.0,
187
+ "completions/max_terminated_length": 71.0,
188
+ "completions/mean_length": 39.89755859375,
189
+ "completions/mean_terminated_length": 39.89755859375,
190
+ "completions/min_length": 23.8,
191
+ "completions/min_terminated_length": 23.8,
192
+ "epoch": 0.21333333333333335,
193
+ "grad_norm": 5.5466916819568723e-05,
194
+ "learning_rate": 1e-06,
195
+ "loss": -0.0002,
196
+ "num_tokens": 22695315.0,
197
+ "reward": 5.49622688293457,
198
+ "reward_std": 0.015401666914112867,
199
+ "rewards/accuracy_reward": 0.0021484375,
200
+ "rewards/brier_reward": 0.9974494576454163,
201
+ "rewards/confidence_one_or_zero": 0.98984375,
202
+ "rewards/format_reward": 0.99970703125,
203
+ "rewards/log_2_reward": 9.990598487854005,
204
+ "rewards/mean_confidence_reward": 0.0037255858958815226,
205
+ "step": 35
206
+ },
207
+ {
208
+ "clip_ratio/high_max": 0.0,
209
+ "clip_ratio/high_mean": 0.0,
210
+ "clip_ratio/low_mean": 0.0,
211
+ "clip_ratio/low_min": 0.0,
212
+ "clip_ratio/region_mean": 0.0,
213
+ "completions/clipped_ratio": 0.0,
214
+ "completions/max_length": 62.0,
215
+ "completions/max_terminated_length": 62.0,
216
+ "completions/mean_length": 39.62392578125,
217
+ "completions/mean_terminated_length": 39.62392578125,
218
+ "completions/min_length": 24.8,
219
+ "completions/min_terminated_length": 24.8,
220
+ "epoch": 0.2438095238095238,
221
+ "grad_norm": 0.0,
222
+ "learning_rate": 1e-06,
223
+ "loss": 0.0,
224
+ "num_tokens": 25691976.0,
225
+ "reward": 5.499967384338379,
226
+ "reward_std": 0.00018490625079721213,
227
+ "rewards/accuracy_reward": 0.0,
228
+ "rewards/brier_reward": 0.9999882698059082,
229
+ "rewards/confidence_one_or_zero": 0.99970703125,
230
+ "rewards/format_reward": 1.0,
231
+ "rewards/log_2_reward": 9.999934768676757,
232
+ "rewards/mean_confidence_reward": 5.859375087311491e-05,
233
+ "step": 40
234
+ },
235
+ {
236
+ "clip_ratio/high_max": 0.0,
237
+ "clip_ratio/high_mean": 0.0,
238
+ "clip_ratio/low_mean": 0.0,
239
+ "clip_ratio/low_min": 0.0,
240
+ "clip_ratio/region_mean": 0.0,
241
+ "completions/clipped_ratio": 0.0,
242
+ "completions/max_length": 57.0,
243
+ "completions/max_terminated_length": 57.0,
244
+ "completions/mean_length": 39.17685546875,
245
+ "completions/mean_terminated_length": 39.17685546875,
246
+ "completions/min_length": 25.2,
247
+ "completions/min_terminated_length": 25.2,
248
+ "epoch": 0.2742857142857143,
249
+ "grad_norm": 0.0,
250
+ "learning_rate": 1e-06,
251
+ "loss": 0.0,
252
+ "num_tokens": 28683067.0,
253
+ "reward": 5.499900531768799,
254
+ "reward_std": 0.0005625242134556174,
255
+ "rewards/accuracy_reward": 9.765625e-05,
256
+ "rewards/brier_reward": 0.9999013662338256,
257
+ "rewards/confidence_one_or_zero": 0.99970703125,
258
+ "rewards/format_reward": 1.0,
259
+ "rewards/log_2_reward": 9.999703407287598,
260
+ "rewards/mean_confidence_reward": 6.83593774738256e-05,
261
+ "step": 45
262
+ },
263
+ {
264
+ "clip_ratio/high_max": 0.0,
265
+ "clip_ratio/high_mean": 0.0,
266
+ "clip_ratio/low_mean": 0.0,
267
+ "clip_ratio/low_min": 0.0,
268
+ "clip_ratio/region_mean": 0.0,
269
+ "completions/clipped_ratio": 0.0,
270
+ "completions/max_length": 55.4,
271
+ "completions/max_terminated_length": 55.4,
272
+ "completions/mean_length": 38.91845703125,
273
+ "completions/mean_terminated_length": 38.91845703125,
274
+ "completions/min_length": 25.4,
275
+ "completions/min_terminated_length": 25.4,
276
+ "epoch": 0.3047619047619048,
277
+ "grad_norm": 0.0,
278
+ "learning_rate": 1e-06,
279
+ "loss": 0.0,
280
+ "num_tokens": 31665112.0,
281
+ "reward": 5.499433135986328,
282
+ "reward_std": 0.0030375825241208076,
283
+ "rewards/accuracy_reward": 9.765625e-05,
284
+ "rewards/brier_reward": 0.9998398423194885,
285
+ "rewards/confidence_one_or_zero": 0.99990234375,
286
+ "rewards/format_reward": 0.99990234375,
287
+ "rewards/log_2_reward": 9.998866271972656,
288
+ "rewards/mean_confidence_reward": 1.9531250291038305e-05,
289
+ "step": 50
290
+ },
291
+ {
292
+ "epoch": 0.3047619047619048,
293
+ "eval_completions/clipped_ratio": 0.0,
294
+ "eval_completions/max_length": 46.5,
295
+ "eval_completions/max_terminated_length": 46.5,
296
+ "eval_completions/mean_length": 38.41298484802246,
297
+ "eval_completions/mean_terminated_length": 38.41298484802246,
298
+ "eval_completions/min_length": 26.5,
299
+ "eval_completions/min_terminated_length": 26.5,
300
+ "eval_loss": 0.0,
301
+ "eval_num_tokens": 31665112.0,
302
+ "eval_reward": 5.5,
303
+ "eval_reward_std": 0.0,
304
+ "eval_rewards/accuracy_reward": 0.0,
305
+ "eval_rewards/brier_reward": 1.0,
306
+ "eval_rewards/confidence_one_or_zero": 1.0,
307
+ "eval_rewards/format_reward": 1.0,
308
+ "eval_rewards/log_2_reward": 10.0,
309
+ "eval_rewards/mean_confidence_reward": 0.0,
310
+ "eval_runtime": 8.5224,
311
+ "eval_samples_per_second": 58.669,
312
+ "eval_steps_per_second": 0.469,
313
+ "step": 50
314
+ },
315
+ {
316
+ "clip_ratio/high_max": 0.0,
317
+ "clip_ratio/high_mean": 0.0,
318
+ "clip_ratio/low_mean": 0.0,
319
+ "clip_ratio/low_min": 0.0,
320
+ "clip_ratio/region_mean": 0.0,
321
+ "completions/clipped_ratio": 0.0,
322
+ "completions/max_length": 57.8,
323
+ "completions/max_terminated_length": 57.8,
324
+ "completions/mean_length": 38.93466796875,
325
+ "completions/mean_terminated_length": 38.93466796875,
326
+ "completions/min_length": 25.4,
327
+ "completions/min_terminated_length": 25.4,
328
+ "epoch": 0.3352380952380952,
329
+ "grad_norm": 0.0,
330
+ "learning_rate": 1e-06,
331
+ "loss": -0.0001,
332
+ "num_tokens": 34651099.0,
333
+ "reward": 5.4989158630371096,
334
+ "reward_std": 0.006133038754342124,
335
+ "rewards/accuracy_reward": 9.765625e-05,
336
+ "rewards/brier_reward": 0.9997568368911743,
337
+ "rewards/confidence_one_or_zero": 0.9998046875,
338
+ "rewards/format_reward": 0.9998046875,
339
+ "rewards/log_2_reward": 9.99792938232422,
340
+ "rewards/mean_confidence_reward": 2.9296876164153218e-05,
341
+ "step": 55
342
+ },
343
+ {
344
+ "clip_ratio/high_max": 0.0,
345
+ "clip_ratio/high_mean": 0.0,
346
+ "clip_ratio/low_mean": 0.0,
347
+ "clip_ratio/low_min": 0.0,
348
+ "clip_ratio/region_mean": 0.0,
349
+ "completions/clipped_ratio": 0.0,
350
+ "completions/max_length": 58.4,
351
+ "completions/max_terminated_length": 58.4,
352
+ "completions/mean_length": 39.1458984375,
353
+ "completions/mean_terminated_length": 39.1458984375,
354
+ "completions/min_length": 25.6,
355
+ "completions/min_terminated_length": 25.6,
356
+ "epoch": 0.3657142857142857,
357
+ "grad_norm": 0.0,
358
+ "learning_rate": 1e-06,
359
+ "loss": 0.0002,
360
+ "num_tokens": 37641969.0,
361
+ "reward": 5.499462890625,
362
+ "reward_std": 0.003038349375128746,
363
+ "rewards/accuracy_reward": 0.0,
364
+ "rewards/brier_reward": 0.99990234375,
365
+ "rewards/confidence_one_or_zero": 1.0,
366
+ "rewards/format_reward": 0.99990234375,
367
+ "rewards/log_2_reward": 9.9990234375,
368
+ "rewards/mean_confidence_reward": 0.0,
369
+ "step": 60
370
+ },
371
+ {
372
+ "clip_ratio/high_max": 0.0,
373
+ "clip_ratio/high_mean": 0.0,
374
+ "clip_ratio/low_mean": 0.0,
375
+ "clip_ratio/low_min": 0.0,
376
+ "clip_ratio/region_mean": 0.0,
377
+ "completions/clipped_ratio": 0.0,
378
+ "completions/max_length": 56.6,
379
+ "completions/max_terminated_length": 56.6,
380
+ "completions/mean_length": 39.14443359375,
381
+ "completions/mean_terminated_length": 39.14443359375,
382
+ "completions/min_length": 25.8,
383
+ "completions/min_terminated_length": 25.8,
384
+ "epoch": 0.3961904761904762,
385
+ "grad_norm": 0.0,
386
+ "learning_rate": 1e-06,
387
+ "loss": -0.0,
388
+ "num_tokens": 40631320.0,
389
+ "reward": 5.499462890625,
390
+ "reward_std": 0.003038349375128746,
391
+ "rewards/accuracy_reward": 0.0,
392
+ "rewards/brier_reward": 0.99990234375,
393
+ "rewards/confidence_one_or_zero": 1.0,
394
+ "rewards/format_reward": 0.99990234375,
395
+ "rewards/log_2_reward": 9.9990234375,
396
+ "rewards/mean_confidence_reward": 0.0,
397
+ "step": 65
398
+ },
399
+ {
400
+ "clip_ratio/high_max": 0.0,
401
+ "clip_ratio/high_mean": 0.0,
402
+ "clip_ratio/low_mean": 0.0,
403
+ "clip_ratio/low_min": 0.0,
404
+ "clip_ratio/region_mean": 0.0,
405
+ "completions/clipped_ratio": 0.0,
406
+ "completions/max_length": 58.0,
407
+ "completions/max_terminated_length": 58.0,
408
+ "completions/mean_length": 39.17412109375,
409
+ "completions/mean_terminated_length": 39.17412109375,
410
+ "completions/min_length": 24.6,
411
+ "completions/min_terminated_length": 24.6,
412
+ "epoch": 0.4266666666666667,
413
+ "grad_norm": 0.0,
414
+ "learning_rate": 1e-06,
415
+ "loss": 0.0001,
416
+ "num_tokens": 43622127.0,
417
+ "reward": 5.499462890625,
418
+ "reward_std": 0.003038349375128746,
419
+ "rewards/accuracy_reward": 0.0,
420
+ "rewards/brier_reward": 0.99990234375,
421
+ "rewards/confidence_one_or_zero": 0.99990234375,
422
+ "rewards/format_reward": 0.99990234375,
423
+ "rewards/log_2_reward": 9.9990234375,
424
+ "rewards/mean_confidence_reward": 0.0,
425
+ "step": 70
426
+ },
427
+ {
428
+ "clip_ratio/high_max": 0.0,
429
+ "clip_ratio/high_mean": 0.0,
430
+ "clip_ratio/low_mean": 0.0,
431
+ "clip_ratio/low_min": 0.0,
432
+ "clip_ratio/region_mean": 0.0,
433
+ "completions/clipped_ratio": 0.0,
434
+ "completions/max_length": 60.4,
435
+ "completions/max_terminated_length": 60.4,
436
+ "completions/mean_length": 38.94501953125,
437
+ "completions/mean_terminated_length": 38.94501953125,
438
+ "completions/min_length": 25.2,
439
+ "completions/min_terminated_length": 25.2,
440
+ "epoch": 0.45714285714285713,
441
+ "grad_norm": 0.0,
442
+ "learning_rate": 1e-06,
443
+ "loss": 0.0,
444
+ "num_tokens": 46606236.0,
445
+ "reward": 5.5,
446
+ "reward_std": 0.0,
447
+ "rewards/accuracy_reward": 0.0,
448
+ "rewards/brier_reward": 1.0,
449
+ "rewards/confidence_one_or_zero": 1.0,
450
+ "rewards/format_reward": 1.0,
451
+ "rewards/log_2_reward": 10.0,
452
+ "rewards/mean_confidence_reward": 0.0,
453
+ "step": 75
454
+ },
455
+ {
456
+ "clip_ratio/high_max": 0.0,
457
+ "clip_ratio/high_mean": 0.0,
458
+ "clip_ratio/low_mean": 0.0,
459
+ "clip_ratio/low_min": 0.0,
460
+ "clip_ratio/region_mean": 0.0,
461
+ "completions/clipped_ratio": 0.0,
462
+ "completions/max_length": 57.2,
463
+ "completions/max_terminated_length": 57.2,
464
+ "completions/mean_length": 39.04951171875,
465
+ "completions/mean_terminated_length": 39.04951171875,
466
+ "completions/min_length": 25.4,
467
+ "completions/min_terminated_length": 25.4,
468
+ "epoch": 0.4876190476190476,
469
+ "grad_norm": 0.0,
470
+ "learning_rate": 1e-06,
471
+ "loss": 0.0,
472
+ "num_tokens": 49590423.0,
473
+ "reward": 5.5,
474
+ "reward_std": 0.0,
475
+ "rewards/accuracy_reward": 0.0,
476
+ "rewards/brier_reward": 1.0,
477
+ "rewards/confidence_one_or_zero": 1.0,
478
+ "rewards/format_reward": 1.0,
479
+ "rewards/log_2_reward": 10.0,
480
+ "rewards/mean_confidence_reward": 0.0,
481
+ "step": 80
482
+ },
483
+ {
484
+ "clip_ratio/high_max": 0.0,
485
+ "clip_ratio/high_mean": 0.0,
486
+ "clip_ratio/low_mean": 0.0,
487
+ "clip_ratio/low_min": 0.0,
488
+ "clip_ratio/region_mean": 0.0,
489
+ "completions/clipped_ratio": 0.0,
490
+ "completions/max_length": 60.2,
491
+ "completions/max_terminated_length": 60.2,
492
+ "completions/mean_length": 39.11123046875,
493
+ "completions/mean_terminated_length": 39.11123046875,
494
+ "completions/min_length": 25.8,
495
+ "completions/min_terminated_length": 25.8,
496
+ "epoch": 0.518095238095238,
497
+ "grad_norm": 0.0,
498
+ "learning_rate": 1e-06,
499
+ "loss": 0.0,
500
+ "num_tokens": 52576458.0,
501
+ "reward": 5.5,
502
+ "reward_std": 0.0,
503
+ "rewards/accuracy_reward": 0.0,
504
+ "rewards/brier_reward": 1.0,
505
+ "rewards/confidence_one_or_zero": 1.0,
506
+ "rewards/format_reward": 1.0,
507
+ "rewards/log_2_reward": 10.0,
508
+ "rewards/mean_confidence_reward": 0.0,
509
+ "step": 85
510
+ },
511
+ {
512
+ "clip_ratio/high_max": 0.0,
513
+ "clip_ratio/high_mean": 0.0,
514
+ "clip_ratio/low_mean": 0.0,
515
+ "clip_ratio/low_min": 0.0,
516
+ "clip_ratio/region_mean": 0.0,
517
+ "completions/clipped_ratio": 0.0,
518
+ "completions/max_length": 58.0,
519
+ "completions/max_terminated_length": 58.0,
520
+ "completions/mean_length": 39.10869140625,
521
+ "completions/mean_terminated_length": 39.10869140625,
522
+ "completions/min_length": 25.6,
523
+ "completions/min_terminated_length": 25.6,
524
+ "epoch": 0.5485714285714286,
525
+ "grad_norm": 0.0,
526
+ "learning_rate": 1e-06,
527
+ "loss": 0.0,
528
+ "num_tokens": 55563779.0,
529
+ "reward": 5.499970245361328,
530
+ "reward_std": 0.00016833491390570997,
531
+ "rewards/accuracy_reward": 9.765625e-05,
532
+ "rewards/brier_reward": 0.9999374985694885,
533
+ "rewards/confidence_one_or_zero": 0.99990234375,
534
+ "rewards/format_reward": 1.0,
535
+ "rewards/log_2_reward": 9.999842834472656,
536
+ "rewards/mean_confidence_reward": 1.9531250291038305e-05,
537
+ "step": 90
538
+ },
539
+ {
540
+ "clip_ratio/high_max": 0.0,
541
+ "clip_ratio/high_mean": 0.0,
542
+ "clip_ratio/low_mean": 0.0,
543
+ "clip_ratio/low_min": 0.0,
544
+ "clip_ratio/region_mean": 0.0,
545
+ "completions/clipped_ratio": 0.0,
546
+ "completions/max_length": 55.2,
547
+ "completions/max_terminated_length": 55.2,
548
+ "completions/mean_length": 39.05234375,
549
+ "completions/mean_terminated_length": 39.05234375,
550
+ "completions/min_length": 26.2,
551
+ "completions/min_terminated_length": 26.2,
552
+ "epoch": 0.579047619047619,
553
+ "grad_norm": 0.0,
554
+ "learning_rate": 1e-06,
555
+ "loss": 0.0,
556
+ "num_tokens": 58549307.0,
557
+ "reward": 5.5,
558
+ "reward_std": 0.0,
559
+ "rewards/accuracy_reward": 0.0,
560
+ "rewards/brier_reward": 1.0,
561
+ "rewards/confidence_one_or_zero": 1.0,
562
+ "rewards/format_reward": 1.0,
563
+ "rewards/log_2_reward": 10.0,
564
+ "rewards/mean_confidence_reward": 0.0,
565
+ "step": 95
566
+ },
567
+ {
568
+ "clip_ratio/high_max": 0.0,
569
+ "clip_ratio/high_mean": 0.0,
570
+ "clip_ratio/low_mean": 0.0,
571
+ "clip_ratio/low_min": 0.0,
572
+ "clip_ratio/region_mean": 0.0,
573
+ "completions/clipped_ratio": 0.0,
574
+ "completions/max_length": 57.6,
575
+ "completions/max_terminated_length": 57.6,
576
+ "completions/mean_length": 39.0751953125,
577
+ "completions/mean_terminated_length": 39.0751953125,
578
+ "completions/min_length": 25.8,
579
+ "completions/min_terminated_length": 25.8,
580
+ "epoch": 0.6095238095238096,
581
+ "grad_norm": 0.0,
582
+ "learning_rate": 1e-06,
583
+ "loss": 0.0,
584
+ "num_tokens": 61537405.0,
585
+ "reward": 5.5,
586
+ "reward_std": 0.0,
587
+ "rewards/accuracy_reward": 0.0,
588
+ "rewards/brier_reward": 1.0,
589
+ "rewards/confidence_one_or_zero": 1.0,
590
+ "rewards/format_reward": 1.0,
591
+ "rewards/log_2_reward": 10.0,
592
+ "rewards/mean_confidence_reward": 0.0,
593
+ "step": 100
594
+ },
595
+ {
596
+ "epoch": 0.6095238095238096,
597
+ "eval_completions/clipped_ratio": 0.0,
598
+ "eval_completions/max_length": 53.25,
599
+ "eval_completions/max_terminated_length": 53.25,
600
+ "eval_completions/mean_length": 39.020877838134766,
601
+ "eval_completions/mean_terminated_length": 39.020877838134766,
602
+ "eval_completions/min_length": 29.0,
603
+ "eval_completions/min_terminated_length": 29.0,
604
+ "eval_loss": 0.0,
605
+ "eval_num_tokens": 61537405.0,
606
+ "eval_reward": 5.5,
607
+ "eval_reward_std": 0.0,
608
+ "eval_rewards/accuracy_reward": 0.0,
609
+ "eval_rewards/brier_reward": 1.0,
610
+ "eval_rewards/confidence_one_or_zero": 1.0,
611
+ "eval_rewards/format_reward": 1.0,
612
+ "eval_rewards/log_2_reward": 10.0,
613
+ "eval_rewards/mean_confidence_reward": 0.0,
614
+ "eval_runtime": 8.25,
615
+ "eval_samples_per_second": 60.606,
616
+ "eval_steps_per_second": 0.485,
617
+ "step": 100
618
+ },
619
+ {
620
+ "clip_ratio/high_max": 0.0,
621
+ "clip_ratio/high_mean": 0.0,
622
+ "clip_ratio/low_mean": 0.0,
623
+ "clip_ratio/low_min": 0.0,
624
+ "clip_ratio/region_mean": 0.0,
625
+ "completions/clipped_ratio": 0.0,
626
+ "completions/max_length": 58.0,
627
+ "completions/max_terminated_length": 58.0,
628
+ "completions/mean_length": 39.10244140625,
629
+ "completions/mean_terminated_length": 39.10244140625,
630
+ "completions/min_length": 25.6,
631
+ "completions/min_terminated_length": 25.6,
632
+ "epoch": 0.64,
633
+ "grad_norm": 0.0,
634
+ "learning_rate": 1e-06,
635
+ "loss": 0.0,
636
+ "num_tokens": 64529366.0,
637
+ "reward": 5.5,
638
+ "reward_std": 0.0,
639
+ "rewards/accuracy_reward": 0.0,
640
+ "rewards/brier_reward": 1.0,
641
+ "rewards/confidence_one_or_zero": 1.0,
642
+ "rewards/format_reward": 1.0,
643
+ "rewards/log_2_reward": 10.0,
644
+ "rewards/mean_confidence_reward": 0.0,
645
+ "step": 105
646
+ },
647
+ {
648
+ "clip_ratio/high_max": 0.0,
649
+ "clip_ratio/high_mean": 0.0,
650
+ "clip_ratio/low_mean": 0.0,
651
+ "clip_ratio/low_min": 0.0,
652
+ "clip_ratio/region_mean": 0.0,
653
+ "completions/clipped_ratio": 0.0,
654
+ "completions/max_length": 55.8,
655
+ "completions/max_terminated_length": 55.8,
656
+ "completions/mean_length": 39.0609375,
657
+ "completions/mean_terminated_length": 39.0609375,
658
+ "completions/min_length": 25.8,
659
+ "completions/min_terminated_length": 25.8,
660
+ "epoch": 0.6704761904761904,
661
+ "grad_norm": 0.0,
662
+ "learning_rate": 1e-06,
663
+ "loss": 0.0,
664
+ "num_tokens": 67517446.0,
665
+ "reward": 5.5,
666
+ "reward_std": 0.0,
667
+ "rewards/accuracy_reward": 0.0,
668
+ "rewards/brier_reward": 1.0,
669
+ "rewards/confidence_one_or_zero": 1.0,
670
+ "rewards/format_reward": 1.0,
671
+ "rewards/log_2_reward": 10.0,
672
+ "rewards/mean_confidence_reward": 0.0,
673
+ "step": 110
674
+ },
675
+ {
676
+ "clip_ratio/high_max": 0.0,
677
+ "clip_ratio/high_mean": 0.0,
678
+ "clip_ratio/low_mean": 0.0,
679
+ "clip_ratio/low_min": 0.0,
680
+ "clip_ratio/region_mean": 0.0,
681
+ "completions/clipped_ratio": 0.0,
682
+ "completions/max_length": 56.4,
683
+ "completions/max_terminated_length": 56.4,
684
+ "completions/mean_length": 38.946875,
685
+ "completions/mean_terminated_length": 38.946875,
686
+ "completions/min_length": 25.4,
687
+ "completions/min_terminated_length": 25.4,
688
+ "epoch": 0.700952380952381,
689
+ "grad_norm": 0.0,
690
+ "learning_rate": 1e-06,
691
+ "loss": 0.0,
692
+ "num_tokens": 70503046.0,
693
+ "reward": 5.499989128112793,
694
+ "reward_std": 6.163541693240404e-05,
695
+ "rewards/accuracy_reward": 0.0,
696
+ "rewards/brier_reward": 0.9999960899353028,
697
+ "rewards/confidence_one_or_zero": 0.99990234375,
698
+ "rewards/format_reward": 1.0,
699
+ "rewards/log_2_reward": 9.999978256225585,
700
+ "rewards/mean_confidence_reward": 1.9531250291038305e-05,
701
+ "step": 115
702
+ },
703
+ {
704
+ "clip_ratio/high_max": 0.0,
705
+ "clip_ratio/high_mean": 0.0,
706
+ "clip_ratio/low_mean": 0.0,
707
+ "clip_ratio/low_min": 0.0,
708
+ "clip_ratio/region_mean": 0.0,
709
+ "completions/clipped_ratio": 0.0,
710
+ "completions/max_length": 58.4,
711
+ "completions/max_terminated_length": 58.4,
712
+ "completions/mean_length": 39.1416015625,
713
+ "completions/mean_terminated_length": 39.1416015625,
714
+ "completions/min_length": 26.2,
715
+ "completions/min_terminated_length": 26.2,
716
+ "epoch": 0.7314285714285714,
717
+ "grad_norm": 0.0,
718
+ "learning_rate": 1e-06,
719
+ "loss": 0.0,
720
+ "num_tokens": 73492144.0,
721
+ "reward": 5.5,
722
+ "reward_std": 0.0,
723
+ "rewards/accuracy_reward": 0.0,
724
+ "rewards/brier_reward": 1.0,
725
+ "rewards/confidence_one_or_zero": 1.0,
726
+ "rewards/format_reward": 1.0,
727
+ "rewards/log_2_reward": 10.0,
728
+ "rewards/mean_confidence_reward": 0.0,
729
+ "step": 120
730
+ },
731
+ {
732
+ "clip_ratio/high_max": 0.0,
733
+ "clip_ratio/high_mean": 0.0,
734
+ "clip_ratio/low_mean": 0.0,
735
+ "clip_ratio/low_min": 0.0,
736
+ "clip_ratio/region_mean": 0.0,
737
+ "completions/clipped_ratio": 0.0,
738
+ "completions/max_length": 57.8,
739
+ "completions/max_terminated_length": 57.8,
740
+ "completions/mean_length": 39.1482421875,
741
+ "completions/mean_terminated_length": 39.1482421875,
742
+ "completions/min_length": 26.2,
743
+ "completions/min_terminated_length": 26.2,
744
+ "epoch": 0.7619047619047619,
745
+ "grad_norm": 0.0,
746
+ "learning_rate": 1e-06,
747
+ "loss": 0.0,
748
+ "num_tokens": 76482046.0,
749
+ "reward": 5.5,
750
+ "reward_std": 0.0,
751
+ "rewards/accuracy_reward": 0.0,
752
+ "rewards/brier_reward": 1.0,
753
+ "rewards/confidence_one_or_zero": 1.0,
754
+ "rewards/format_reward": 1.0,
755
+ "rewards/log_2_reward": 10.0,
756
+ "rewards/mean_confidence_reward": 0.0,
757
+ "step": 125
758
+ },
759
+ {
760
+ "clip_ratio/high_max": 0.0,
761
+ "clip_ratio/high_mean": 0.0,
762
+ "clip_ratio/low_mean": 0.0,
763
+ "clip_ratio/low_min": 0.0,
764
+ "clip_ratio/region_mean": 0.0,
765
+ "completions/clipped_ratio": 0.0,
766
+ "completions/max_length": 57.0,
767
+ "completions/max_terminated_length": 57.0,
768
+ "completions/mean_length": 39.20634765625,
769
+ "completions/mean_terminated_length": 39.20634765625,
770
+ "completions/min_length": 25.6,
771
+ "completions/min_terminated_length": 25.6,
772
+ "epoch": 0.7923809523809524,
773
+ "grad_norm": 0.0,
774
+ "learning_rate": 1e-06,
775
+ "loss": 0.0,
776
+ "num_tokens": 79472607.0,
777
+ "reward": 5.5,
778
+ "reward_std": 0.0,
779
+ "rewards/accuracy_reward": 0.0,
780
+ "rewards/brier_reward": 1.0,
781
+ "rewards/confidence_one_or_zero": 1.0,
782
+ "rewards/format_reward": 1.0,
783
+ "rewards/log_2_reward": 10.0,
784
+ "rewards/mean_confidence_reward": 0.0,
785
+ "step": 130
786
+ },
787
+ {
788
+ "clip_ratio/high_max": 0.0,
789
+ "clip_ratio/high_mean": 0.0,
790
+ "clip_ratio/low_mean": 0.0,
791
+ "clip_ratio/low_min": 0.0,
792
+ "clip_ratio/region_mean": 0.0,
793
+ "completions/clipped_ratio": 0.0,
794
+ "completions/max_length": 57.8,
795
+ "completions/max_terminated_length": 57.8,
796
+ "completions/mean_length": 38.862890625,
797
+ "completions/mean_terminated_length": 38.862890625,
798
+ "completions/min_length": 25.8,
799
+ "completions/min_terminated_length": 25.8,
800
+ "epoch": 0.8228571428571428,
801
+ "grad_norm": 0.0,
802
+ "learning_rate": 1e-06,
803
+ "loss": 0.0,
804
+ "num_tokens": 82453699.0,
805
+ "reward": 5.5,
806
+ "reward_std": 0.0,
807
+ "rewards/accuracy_reward": 0.0,
808
+ "rewards/brier_reward": 1.0,
809
+ "rewards/confidence_one_or_zero": 1.0,
810
+ "rewards/format_reward": 1.0,
811
+ "rewards/log_2_reward": 10.0,
812
+ "rewards/mean_confidence_reward": 0.0,
813
+ "step": 135
814
+ },
815
+ {
816
+ "clip_ratio/high_max": 0.0,
817
+ "clip_ratio/high_mean": 0.0,
818
+ "clip_ratio/low_mean": 0.0,
819
+ "clip_ratio/low_min": 0.0,
820
+ "clip_ratio/region_mean": 0.0,
821
+ "completions/clipped_ratio": 0.0,
822
+ "completions/max_length": 56.6,
823
+ "completions/max_terminated_length": 56.6,
824
+ "completions/mean_length": 39.03369140625,
825
+ "completions/mean_terminated_length": 39.03369140625,
826
+ "completions/min_length": 24.8,
827
+ "completions/min_terminated_length": 24.8,
828
+ "epoch": 0.8533333333333334,
829
+ "grad_norm": 0.0,
830
+ "learning_rate": 1e-06,
831
+ "loss": 0.0,
832
+ "num_tokens": 85441020.0,
833
+ "reward": 5.5,
834
+ "reward_std": 0.0,
835
+ "rewards/accuracy_reward": 0.0,
836
+ "rewards/brier_reward": 1.0,
837
+ "rewards/confidence_one_or_zero": 1.0,
838
+ "rewards/format_reward": 1.0,
839
+ "rewards/log_2_reward": 10.0,
840
+ "rewards/mean_confidence_reward": 0.0,
841
+ "step": 140
842
+ },
843
+ {
844
+ "clip_ratio/high_max": 0.0,
845
+ "clip_ratio/high_mean": 0.0,
846
+ "clip_ratio/low_mean": 0.0,
847
+ "clip_ratio/low_min": 0.0,
848
+ "clip_ratio/region_mean": 0.0,
849
+ "completions/clipped_ratio": 0.0,
850
+ "completions/max_length": 57.4,
851
+ "completions/max_terminated_length": 57.4,
852
+ "completions/mean_length": 39.27880859375,
853
+ "completions/mean_terminated_length": 39.27880859375,
854
+ "completions/min_length": 25.8,
855
+ "completions/min_terminated_length": 25.8,
856
+ "epoch": 0.8838095238095238,
857
+ "grad_norm": 0.0,
858
+ "learning_rate": 1e-06,
859
+ "loss": -0.0,
860
+ "num_tokens": 88437123.0,
861
+ "reward": 5.499462890625,
862
+ "reward_std": 0.003038349375128746,
863
+ "rewards/accuracy_reward": 0.0,
864
+ "rewards/brier_reward": 0.99990234375,
865
+ "rewards/confidence_one_or_zero": 1.0,
866
+ "rewards/format_reward": 0.99990234375,
867
+ "rewards/log_2_reward": 9.9990234375,
868
+ "rewards/mean_confidence_reward": 0.0,
869
+ "step": 145
870
+ },
871
+ {
872
+ "clip_ratio/high_max": 0.0,
873
+ "clip_ratio/high_mean": 0.0,
874
+ "clip_ratio/low_mean": 0.0,
875
+ "clip_ratio/low_min": 0.0,
876
+ "clip_ratio/region_mean": 0.0,
877
+ "completions/clipped_ratio": 0.0,
878
+ "completions/max_length": 56.4,
879
+ "completions/max_terminated_length": 56.4,
880
+ "completions/mean_length": 38.880078125,
881
+ "completions/mean_terminated_length": 38.880078125,
882
+ "completions/min_length": 25.4,
883
+ "completions/min_terminated_length": 25.4,
884
+ "epoch": 0.9142857142857143,
885
+ "grad_norm": 0.0,
886
+ "learning_rate": 1e-06,
887
+ "loss": 0.0,
888
+ "num_tokens": 91421015.0,
889
+ "reward": 5.5,
890
+ "reward_std": 0.0,
891
+ "rewards/accuracy_reward": 0.0,
892
+ "rewards/brier_reward": 1.0,
893
+ "rewards/confidence_one_or_zero": 1.0,
894
+ "rewards/format_reward": 1.0,
895
+ "rewards/log_2_reward": 10.0,
896
+ "rewards/mean_confidence_reward": 0.0,
897
+ "step": 150
898
+ },
899
+ {
900
+ "epoch": 0.9142857142857143,
901
+ "eval_completions/clipped_ratio": 0.0,
902
+ "eval_completions/max_length": 52.5,
903
+ "eval_completions/max_terminated_length": 52.5,
904
+ "eval_completions/mean_length": 38.77289867401123,
905
+ "eval_completions/mean_terminated_length": 38.77289867401123,
906
+ "eval_completions/min_length": 28.5,
907
+ "eval_completions/min_terminated_length": 28.5,
908
+ "eval_loss": 0.0,
909
+ "eval_num_tokens": 91421015.0,
910
+ "eval_reward": 5.5,
911
+ "eval_reward_std": 0.0,
912
+ "eval_rewards/accuracy_reward": 0.0,
913
+ "eval_rewards/brier_reward": 1.0,
914
+ "eval_rewards/confidence_one_or_zero": 1.0,
915
+ "eval_rewards/format_reward": 1.0,
916
+ "eval_rewards/log_2_reward": 10.0,
917
+ "eval_rewards/mean_confidence_reward": 0.0,
918
+ "eval_runtime": 9.1652,
919
+ "eval_samples_per_second": 54.554,
920
+ "eval_steps_per_second": 0.436,
921
+ "step": 150
922
+ },
923
+ {
924
+ "clip_ratio/high_max": 0.0,
925
+ "clip_ratio/high_mean": 0.0,
926
+ "clip_ratio/low_mean": 0.0,
927
+ "clip_ratio/low_min": 0.0,
928
+ "clip_ratio/region_mean": 0.0,
929
+ "completions/clipped_ratio": 0.0,
930
+ "completions/max_length": 57.8,
931
+ "completions/max_terminated_length": 57.8,
932
+ "completions/mean_length": 38.95888671875,
933
+ "completions/mean_terminated_length": 38.95888671875,
934
+ "completions/min_length": 25.6,
935
+ "completions/min_terminated_length": 25.6,
936
+ "epoch": 0.9447619047619048,
937
+ "grad_norm": 0.0,
938
+ "learning_rate": 1e-06,
939
+ "loss": 0.0,
940
+ "num_tokens": 94407698.0,
941
+ "reward": 5.5,
942
+ "reward_std": 0.0,
943
+ "rewards/accuracy_reward": 0.0,
944
+ "rewards/brier_reward": 1.0,
945
+ "rewards/confidence_one_or_zero": 1.0,
946
+ "rewards/format_reward": 1.0,
947
+ "rewards/log_2_reward": 10.0,
948
+ "rewards/mean_confidence_reward": 0.0,
949
+ "step": 155
950
+ },
951
+ {
952
+ "clip_ratio/high_max": 0.0,
953
+ "clip_ratio/high_mean": 0.0,
954
+ "clip_ratio/low_mean": 0.0,
955
+ "clip_ratio/low_min": 0.0,
956
+ "clip_ratio/region_mean": 0.0,
957
+ "completions/clipped_ratio": 0.0,
958
+ "completions/max_length": 56.8,
959
+ "completions/max_terminated_length": 56.8,
960
+ "completions/mean_length": 39.01162109375,
961
+ "completions/mean_terminated_length": 39.01162109375,
962
+ "completions/min_length": 25.8,
963
+ "completions/min_terminated_length": 25.8,
964
+ "epoch": 0.9752380952380952,
965
+ "grad_norm": 0.0,
966
+ "learning_rate": 1e-06,
967
+ "loss": 0.0,
968
+ "num_tokens": 97395881.0,
969
+ "reward": 5.5,
970
+ "reward_std": 0.0,
971
+ "rewards/accuracy_reward": 0.0,
972
+ "rewards/brier_reward": 1.0,
973
+ "rewards/confidence_one_or_zero": 1.0,
974
+ "rewards/format_reward": 1.0,
975
+ "rewards/log_2_reward": 10.0,
976
+ "rewards/mean_confidence_reward": 0.0,
977
+ "step": 160
978
+ },
979
+ {
980
+ "clip_ratio/high_max": 0.0,
981
+ "clip_ratio/high_mean": 0.0,
982
+ "clip_ratio/low_mean": 0.0,
983
+ "clip_ratio/low_min": 0.0,
984
+ "clip_ratio/region_mean": 0.0,
985
+ "completions/clipped_ratio": 0.0,
986
+ "completions/max_length": 56.75,
987
+ "completions/max_terminated_length": 56.75,
988
+ "completions/mean_length": 38.78663635253906,
989
+ "completions/mean_terminated_length": 38.78663635253906,
990
+ "completions/min_length": 25.75,
991
+ "completions/min_terminated_length": 25.75,
992
+ "epoch": 0.9996190476190476,
993
+ "num_tokens": 99785845.0,
994
+ "reward": 5.49932861328125,
995
+ "reward_std": 0.0037979367189109325,
996
+ "rewards/accuracy_reward": 0.0,
997
+ "rewards/brier_reward": 0.9998779296875,
998
+ "rewards/confidence_one_or_zero": 1.0,
999
+ "rewards/format_reward": 0.9998779296875,
1000
+ "rewards/log_2_reward": 9.998779296875,
1001
+ "rewards/mean_confidence_reward": 0.0,
1002
+ "step": 164,
1003
+ "total_flos": 0.0,
1004
+ "train_loss": 0.021034386144844753,
1005
+ "train_runtime": 15577.6776,
1006
+ "train_samples_per_second": 0.674,
1007
+ "train_steps_per_second": 0.011
1008
+ }
1009
+ ],
1010
+ "logging_steps": 5,
1011
+ "max_steps": 164,
1012
+ "num_input_tokens_seen": 99785845,
1013
+ "num_train_epochs": 1,
1014
+ "save_steps": 60,
1015
+ "stateful_callbacks": {
1016
+ "TrainerControl": {
1017
+ "args": {
1018
+ "should_epoch_stop": false,
1019
+ "should_evaluate": false,
1020
+ "should_log": false,
1021
+ "should_save": true,
1022
+ "should_training_stop": true
1023
+ },
1024
+ "attributes": {}
1025
+ }
1026
+ },
1027
+ "total_flos": 0.0,
1028
+ "train_batch_size": 8,
1029
+ "trial_name": null,
1030
+ "trial_params": null
1031
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7c1eeebff5c930fb2e1c88d2bc316d87c59a0a2d7d3550799841187f0726f65
3
+ size 8056
vocab.json ADDED
The diff for this file is too large to render. See raw diff