iamPi commited on
Commit
50f3f75
·
verified ·
1 Parent(s): 243b55f

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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
+ checkpoint-60/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ model_name: game-v1.0.0
4
+ tags:
5
+ - generated_from_trainer
6
+ - axolotl
7
+ - grpo
8
+ - trl
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for game-v1.0.0
13
+
14
+ This model is a fine-tuned version of [None](https://huggingface.co/None).
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="None", 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/iamPi-0519/Gradients-Rollout/runs/17y82dqg)
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.27.0.dev0
38
+ - Transformers: 4.57.6
39
+ - Pytorch: 2.9.0
40
+ - Datasets: 4.5.0
41
+ - Tokenizers: 0.22.2
42
+
43
+ ## Citations
44
+
45
+ Cite GRPO as:
46
+
47
+ ```bibtex
48
+ @article{shao2024deepseekmath,
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{\'e}dec},
63
+ year = 2020,
64
+ journal = {GitHub repository},
65
+ publisher = {GitHub},
66
+ howpublished = {\url{https://github.com/huggingface/trl}}
67
+ }
68
+ ```
adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "/cache/models/unsloth--Llama-3.2-3B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": null,
13
+ "inference_mode": false,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "down_proj",
33
+ "k_proj",
34
+ "gate_proj",
35
+ "v_proj",
36
+ "o_proj",
37
+ "q_proj",
38
+ "up_proj"
39
+ ],
40
+ "target_parameters": [],
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
chat_template.jinja ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>
2
+
3
+ '+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>
4
+
5
+ ' }}{% endif %}
checkpoint-60/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: /cache/models/unsloth--Llama-3.2-3B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - axolotl
7
+ - base_model:adapter:/cache/models/unsloth--Llama-3.2-3B-Instruct
8
+ - grpo
9
+ - lora
10
+ - transformers
11
+ - trl
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.18.1
checkpoint-60/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "/cache/models/unsloth--Llama-3.2-3B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": null,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "down_proj",
33
+ "k_proj",
34
+ "gate_proj",
35
+ "v_proj",
36
+ "o_proj",
37
+ "q_proj",
38
+ "up_proj"
39
+ ],
40
+ "target_parameters": [],
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-60/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c22e7522dad261125e0e30d818858e614080316207b59114493a43ac4ebcbd7
3
+ size 389074464
checkpoint-60/chat_template.jinja ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set loop_messages = messages %}{% for message in loop_messages %}{% set content = '<|start_header_id|>' + message['role'] + '<|end_header_id|>
2
+
3
+ '+ message['content'] | trim + '<|eot_id|>' %}{% if loop.index0 == 0 %}{% set content = bos_token + content %}{% endif %}{{ content }}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>
4
+
5
+ ' }}{% endif %}
checkpoint-60/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e05386cb738eb07aa2ed0b05e63f316ead47f70388a2aac1b82a8c978333f93
3
+ size 198011717
checkpoint-60/ref/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "/cache/models/unsloth--Llama-3.2-3B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": null,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.0,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 64,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "down_proj",
33
+ "k_proj",
34
+ "gate_proj",
35
+ "v_proj",
36
+ "o_proj",
37
+ "q_proj",
38
+ "up_proj"
39
+ ],
40
+ "target_parameters": [],
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-60/ref/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c77cfa6deea52e6521550f03fe69dd0f7c782e640465ad4ea208830c0faf018f
3
+ size 194563792
checkpoint-60/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5aeceee7e1b5d6c25db83a627765796eeff09695372863d72b5e9a8a02705616
3
+ size 14981
checkpoint-60/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d42d3df7347229b34768f5e912e757409e2c5bfa16bec85f203fc49fa007330
3
+ size 14981
checkpoint-60/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d52340d9eb87a0c174f0ef99b0b6c9e14c4f93299a069501f0103f4e89360601
3
+ size 1465
checkpoint-60/special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|finetune_right_pad_id|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
checkpoint-60/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
checkpoint-60/tokenizer_config.json ADDED
@@ -0,0 +1,2066 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "added_tokens_decoder": {
4
+ "128000": {
5
+ "content": "<|begin_of_text|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "128001": {
13
+ "content": "<|end_of_text|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "128002": {
21
+ "content": "<|reserved_special_token_0|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "128003": {
29
+ "content": "<|reserved_special_token_1|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "128004": {
37
+ "content": "<|finetune_right_pad_id|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "128005": {
45
+ "content": "<|reserved_special_token_2|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "128006": {
53
+ "content": "<|start_header_id|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "128007": {
61
+ "content": "<|end_header_id|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "128008": {
69
+ "content": "<|eom_id|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "128009": {
77
+ "content": "<|eot_id|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "128010": {
85
+ "content": "<|python_tag|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "128011": {
93
+ "content": "<|reserved_special_token_3|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "128012": {
101
+ "content": "<|reserved_special_token_4|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "128013": {
109
+ "content": "<|reserved_special_token_5|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ },
116
+ "128014": {
117
+ "content": "<|reserved_special_token_6|>",
118
+ "lstrip": false,
119
+ "normalized": false,
120
+ "rstrip": false,
121
+ "single_word": false,
122
+ "special": true
123
+ },
124
+ "128015": {
125
+ "content": "<|reserved_special_token_7|>",
126
+ "lstrip": false,
127
+ "normalized": false,
128
+ "rstrip": false,
129
+ "single_word": false,
130
+ "special": true
131
+ },
132
+ "128016": {
133
+ "content": "<|reserved_special_token_8|>",
134
+ "lstrip": false,
135
+ "normalized": false,
136
+ "rstrip": false,
137
+ "single_word": false,
138
+ "special": true
139
+ },
140
+ "128017": {
141
+ "content": "<|reserved_special_token_9|>",
142
+ "lstrip": false,
143
+ "normalized": false,
144
+ "rstrip": false,
145
+ "single_word": false,
146
+ "special": true
147
+ },
148
+ "128018": {
149
+ "content": "<|reserved_special_token_10|>",
150
+ "lstrip": false,
151
+ "normalized": false,
152
+ "rstrip": false,
153
+ "single_word": false,
154
+ "special": true
155
+ },
156
+ "128019": {
157
+ "content": "<|reserved_special_token_11|>",
158
+ "lstrip": false,
159
+ "normalized": false,
160
+ "rstrip": false,
161
+ "single_word": false,
162
+ "special": true
163
+ },
164
+ "128020": {
165
+ "content": "<|reserved_special_token_12|>",
166
+ "lstrip": false,
167
+ "normalized": false,
168
+ "rstrip": false,
169
+ "single_word": false,
170
+ "special": true
171
+ },
172
+ "128021": {
173
+ "content": "<|reserved_special_token_13|>",
174
+ "lstrip": false,
175
+ "normalized": false,
176
+ "rstrip": false,
177
+ "single_word": false,
178
+ "special": true
179
+ },
180
+ "128022": {
181
+ "content": "<|reserved_special_token_14|>",
182
+ "lstrip": false,
183
+ "normalized": false,
184
+ "rstrip": false,
185
+ "single_word": false,
186
+ "special": true
187
+ },
188
+ "128023": {
189
+ "content": "<|reserved_special_token_15|>",
190
+ "lstrip": false,
191
+ "normalized": false,
192
+ "rstrip": false,
193
+ "single_word": false,
194
+ "special": true
195
+ },
196
+ "128024": {
197
+ "content": "<|reserved_special_token_16|>",
198
+ "lstrip": false,
199
+ "normalized": false,
200
+ "rstrip": false,
201
+ "single_word": false,
202
+ "special": true
203
+ },
204
+ "128025": {
205
+ "content": "<|reserved_special_token_17|>",
206
+ "lstrip": false,
207
+ "normalized": false,
208
+ "rstrip": false,
209
+ "single_word": false,
210
+ "special": true
211
+ },
212
+ "128026": {
213
+ "content": "<|reserved_special_token_18|>",
214
+ "lstrip": false,
215
+ "normalized": false,
216
+ "rstrip": false,
217
+ "single_word": false,
218
+ "special": true
219
+ },
220
+ "128027": {
221
+ "content": "<|reserved_special_token_19|>",
222
+ "lstrip": false,
223
+ "normalized": false,
224
+ "rstrip": false,
225
+ "single_word": false,
226
+ "special": true
227
+ },
228
+ "128028": {
229
+ "content": "<|reserved_special_token_20|>",
230
+ "lstrip": false,
231
+ "normalized": false,
232
+ "rstrip": false,
233
+ "single_word": false,
234
+ "special": true
235
+ },
236
+ "128029": {
237
+ "content": "<|reserved_special_token_21|>",
238
+ "lstrip": false,
239
+ "normalized": false,
240
+ "rstrip": false,
241
+ "single_word": false,
242
+ "special": true
243
+ },
244
+ "128030": {
245
+ "content": "<|reserved_special_token_22|>",
246
+ "lstrip": false,
247
+ "normalized": false,
248
+ "rstrip": false,
249
+ "single_word": false,
250
+ "special": true
251
+ },
252
+ "128031": {
253
+ "content": "<|reserved_special_token_23|>",
254
+ "lstrip": false,
255
+ "normalized": false,
256
+ "rstrip": false,
257
+ "single_word": false,
258
+ "special": true
259
+ },
260
+ "128032": {
261
+ "content": "<|reserved_special_token_24|>",
262
+ "lstrip": false,
263
+ "normalized": false,
264
+ "rstrip": false,
265
+ "single_word": false,
266
+ "special": true
267
+ },
268
+ "128033": {
269
+ "content": "<|reserved_special_token_25|>",
270
+ "lstrip": false,
271
+ "normalized": false,
272
+ "rstrip": false,
273
+ "single_word": false,
274
+ "special": true
275
+ },
276
+ "128034": {
277
+ "content": "<|reserved_special_token_26|>",
278
+ "lstrip": false,
279
+ "normalized": false,
280
+ "rstrip": false,
281
+ "single_word": false,
282
+ "special": true
283
+ },
284
+ "128035": {
285
+ "content": "<|reserved_special_token_27|>",
286
+ "lstrip": false,
287
+ "normalized": false,
288
+ "rstrip": false,
289
+ "single_word": false,
290
+ "special": true
291
+ },
292
+ "128036": {
293
+ "content": "<|reserved_special_token_28|>",
294
+ "lstrip": false,
295
+ "normalized": false,
296
+ "rstrip": false,
297
+ "single_word": false,
298
+ "special": true
299
+ },
300
+ "128037": {
301
+ "content": "<|reserved_special_token_29|>",
302
+ "lstrip": false,
303
+ "normalized": false,
304
+ "rstrip": false,
305
+ "single_word": false,
306
+ "special": true
307
+ },
308
+ "128038": {
309
+ "content": "<|reserved_special_token_30|>",
310
+ "lstrip": false,
311
+ "normalized": false,
312
+ "rstrip": false,
313
+ "single_word": false,
314
+ "special": true
315
+ },
316
+ "128039": {
317
+ "content": "<|reserved_special_token_31|>",
318
+ "lstrip": false,
319
+ "normalized": false,
320
+ "rstrip": false,
321
+ "single_word": false,
322
+ "special": true
323
+ },
324
+ "128040": {
325
+ "content": "<|reserved_special_token_32|>",
326
+ "lstrip": false,
327
+ "normalized": false,
328
+ "rstrip": false,
329
+ "single_word": false,
330
+ "special": true
331
+ },
332
+ "128041": {
333
+ "content": "<|reserved_special_token_33|>",
334
+ "lstrip": false,
335
+ "normalized": false,
336
+ "rstrip": false,
337
+ "single_word": false,
338
+ "special": true
339
+ },
340
+ "128042": {
341
+ "content": "<|reserved_special_token_34|>",
342
+ "lstrip": false,
343
+ "normalized": false,
344
+ "rstrip": false,
345
+ "single_word": false,
346
+ "special": true
347
+ },
348
+ "128043": {
349
+ "content": "<|reserved_special_token_35|>",
350
+ "lstrip": false,
351
+ "normalized": false,
352
+ "rstrip": false,
353
+ "single_word": false,
354
+ "special": true
355
+ },
356
+ "128044": {
357
+ "content": "<|reserved_special_token_36|>",
358
+ "lstrip": false,
359
+ "normalized": false,
360
+ "rstrip": false,
361
+ "single_word": false,
362
+ "special": true
363
+ },
364
+ "128045": {
365
+ "content": "<|reserved_special_token_37|>",
366
+ "lstrip": false,
367
+ "normalized": false,
368
+ "rstrip": false,
369
+ "single_word": false,
370
+ "special": true
371
+ },
372
+ "128046": {
373
+ "content": "<|reserved_special_token_38|>",
374
+ "lstrip": false,
375
+ "normalized": false,
376
+ "rstrip": false,
377
+ "single_word": false,
378
+ "special": true
379
+ },
380
+ "128047": {
381
+ "content": "<|reserved_special_token_39|>",
382
+ "lstrip": false,
383
+ "normalized": false,
384
+ "rstrip": false,
385
+ "single_word": false,
386
+ "special": true
387
+ },
388
+ "128048": {
389
+ "content": "<|reserved_special_token_40|>",
390
+ "lstrip": false,
391
+ "normalized": false,
392
+ "rstrip": false,
393
+ "single_word": false,
394
+ "special": true
395
+ },
396
+ "128049": {
397
+ "content": "<|reserved_special_token_41|>",
398
+ "lstrip": false,
399
+ "normalized": false,
400
+ "rstrip": false,
401
+ "single_word": false,
402
+ "special": true
403
+ },
404
+ "128050": {
405
+ "content": "<|reserved_special_token_42|>",
406
+ "lstrip": false,
407
+ "normalized": false,
408
+ "rstrip": false,
409
+ "single_word": false,
410
+ "special": true
411
+ },
412
+ "128051": {
413
+ "content": "<|reserved_special_token_43|>",
414
+ "lstrip": false,
415
+ "normalized": false,
416
+ "rstrip": false,
417
+ "single_word": false,
418
+ "special": true
419
+ },
420
+ "128052": {
421
+ "content": "<|reserved_special_token_44|>",
422
+ "lstrip": false,
423
+ "normalized": false,
424
+ "rstrip": false,
425
+ "single_word": false,
426
+ "special": true
427
+ },
428
+ "128053": {
429
+ "content": "<|reserved_special_token_45|>",
430
+ "lstrip": false,
431
+ "normalized": false,
432
+ "rstrip": false,
433
+ "single_word": false,
434
+ "special": true
435
+ },
436
+ "128054": {
437
+ "content": "<|reserved_special_token_46|>",
438
+ "lstrip": false,
439
+ "normalized": false,
440
+ "rstrip": false,
441
+ "single_word": false,
442
+ "special": true
443
+ },
444
+ "128055": {
445
+ "content": "<|reserved_special_token_47|>",
446
+ "lstrip": false,
447
+ "normalized": false,
448
+ "rstrip": false,
449
+ "single_word": false,
450
+ "special": true
451
+ },
452
+ "128056": {
453
+ "content": "<|reserved_special_token_48|>",
454
+ "lstrip": false,
455
+ "normalized": false,
456
+ "rstrip": false,
457
+ "single_word": false,
458
+ "special": true
459
+ },
460
+ "128057": {
461
+ "content": "<|reserved_special_token_49|>",
462
+ "lstrip": false,
463
+ "normalized": false,
464
+ "rstrip": false,
465
+ "single_word": false,
466
+ "special": true
467
+ },
468
+ "128058": {
469
+ "content": "<|reserved_special_token_50|>",
470
+ "lstrip": false,
471
+ "normalized": false,
472
+ "rstrip": false,
473
+ "single_word": false,
474
+ "special": true
475
+ },
476
+ "128059": {
477
+ "content": "<|reserved_special_token_51|>",
478
+ "lstrip": false,
479
+ "normalized": false,
480
+ "rstrip": false,
481
+ "single_word": false,
482
+ "special": true
483
+ },
484
+ "128060": {
485
+ "content": "<|reserved_special_token_52|>",
486
+ "lstrip": false,
487
+ "normalized": false,
488
+ "rstrip": false,
489
+ "single_word": false,
490
+ "special": true
491
+ },
492
+ "128061": {
493
+ "content": "<|reserved_special_token_53|>",
494
+ "lstrip": false,
495
+ "normalized": false,
496
+ "rstrip": false,
497
+ "single_word": false,
498
+ "special": true
499
+ },
500
+ "128062": {
501
+ "content": "<|reserved_special_token_54|>",
502
+ "lstrip": false,
503
+ "normalized": false,
504
+ "rstrip": false,
505
+ "single_word": false,
506
+ "special": true
507
+ },
508
+ "128063": {
509
+ "content": "<|reserved_special_token_55|>",
510
+ "lstrip": false,
511
+ "normalized": false,
512
+ "rstrip": false,
513
+ "single_word": false,
514
+ "special": true
515
+ },
516
+ "128064": {
517
+ "content": "<|reserved_special_token_56|>",
518
+ "lstrip": false,
519
+ "normalized": false,
520
+ "rstrip": false,
521
+ "single_word": false,
522
+ "special": true
523
+ },
524
+ "128065": {
525
+ "content": "<|reserved_special_token_57|>",
526
+ "lstrip": false,
527
+ "normalized": false,
528
+ "rstrip": false,
529
+ "single_word": false,
530
+ "special": true
531
+ },
532
+ "128066": {
533
+ "content": "<|reserved_special_token_58|>",
534
+ "lstrip": false,
535
+ "normalized": false,
536
+ "rstrip": false,
537
+ "single_word": false,
538
+ "special": true
539
+ },
540
+ "128067": {
541
+ "content": "<|reserved_special_token_59|>",
542
+ "lstrip": false,
543
+ "normalized": false,
544
+ "rstrip": false,
545
+ "single_word": false,
546
+ "special": true
547
+ },
548
+ "128068": {
549
+ "content": "<|reserved_special_token_60|>",
550
+ "lstrip": false,
551
+ "normalized": false,
552
+ "rstrip": false,
553
+ "single_word": false,
554
+ "special": true
555
+ },
556
+ "128069": {
557
+ "content": "<|reserved_special_token_61|>",
558
+ "lstrip": false,
559
+ "normalized": false,
560
+ "rstrip": false,
561
+ "single_word": false,
562
+ "special": true
563
+ },
564
+ "128070": {
565
+ "content": "<|reserved_special_token_62|>",
566
+ "lstrip": false,
567
+ "normalized": false,
568
+ "rstrip": false,
569
+ "single_word": false,
570
+ "special": true
571
+ },
572
+ "128071": {
573
+ "content": "<|reserved_special_token_63|>",
574
+ "lstrip": false,
575
+ "normalized": false,
576
+ "rstrip": false,
577
+ "single_word": false,
578
+ "special": true
579
+ },
580
+ "128072": {
581
+ "content": "<|reserved_special_token_64|>",
582
+ "lstrip": false,
583
+ "normalized": false,
584
+ "rstrip": false,
585
+ "single_word": false,
586
+ "special": true
587
+ },
588
+ "128073": {
589
+ "content": "<|reserved_special_token_65|>",
590
+ "lstrip": false,
591
+ "normalized": false,
592
+ "rstrip": false,
593
+ "single_word": false,
594
+ "special": true
595
+ },
596
+ "128074": {
597
+ "content": "<|reserved_special_token_66|>",
598
+ "lstrip": false,
599
+ "normalized": false,
600
+ "rstrip": false,
601
+ "single_word": false,
602
+ "special": true
603
+ },
604
+ "128075": {
605
+ "content": "<|reserved_special_token_67|>",
606
+ "lstrip": false,
607
+ "normalized": false,
608
+ "rstrip": false,
609
+ "single_word": false,
610
+ "special": true
611
+ },
612
+ "128076": {
613
+ "content": "<|reserved_special_token_68|>",
614
+ "lstrip": false,
615
+ "normalized": false,
616
+ "rstrip": false,
617
+ "single_word": false,
618
+ "special": true
619
+ },
620
+ "128077": {
621
+ "content": "<|reserved_special_token_69|>",
622
+ "lstrip": false,
623
+ "normalized": false,
624
+ "rstrip": false,
625
+ "single_word": false,
626
+ "special": true
627
+ },
628
+ "128078": {
629
+ "content": "<|reserved_special_token_70|>",
630
+ "lstrip": false,
631
+ "normalized": false,
632
+ "rstrip": false,
633
+ "single_word": false,
634
+ "special": true
635
+ },
636
+ "128079": {
637
+ "content": "<|reserved_special_token_71|>",
638
+ "lstrip": false,
639
+ "normalized": false,
640
+ "rstrip": false,
641
+ "single_word": false,
642
+ "special": true
643
+ },
644
+ "128080": {
645
+ "content": "<|reserved_special_token_72|>",
646
+ "lstrip": false,
647
+ "normalized": false,
648
+ "rstrip": false,
649
+ "single_word": false,
650
+ "special": true
651
+ },
652
+ "128081": {
653
+ "content": "<|reserved_special_token_73|>",
654
+ "lstrip": false,
655
+ "normalized": false,
656
+ "rstrip": false,
657
+ "single_word": false,
658
+ "special": true
659
+ },
660
+ "128082": {
661
+ "content": "<|reserved_special_token_74|>",
662
+ "lstrip": false,
663
+ "normalized": false,
664
+ "rstrip": false,
665
+ "single_word": false,
666
+ "special": true
667
+ },
668
+ "128083": {
669
+ "content": "<|reserved_special_token_75|>",
670
+ "lstrip": false,
671
+ "normalized": false,
672
+ "rstrip": false,
673
+ "single_word": false,
674
+ "special": true
675
+ },
676
+ "128084": {
677
+ "content": "<|reserved_special_token_76|>",
678
+ "lstrip": false,
679
+ "normalized": false,
680
+ "rstrip": false,
681
+ "single_word": false,
682
+ "special": true
683
+ },
684
+ "128085": {
685
+ "content": "<|reserved_special_token_77|>",
686
+ "lstrip": false,
687
+ "normalized": false,
688
+ "rstrip": false,
689
+ "single_word": false,
690
+ "special": true
691
+ },
692
+ "128086": {
693
+ "content": "<|reserved_special_token_78|>",
694
+ "lstrip": false,
695
+ "normalized": false,
696
+ "rstrip": false,
697
+ "single_word": false,
698
+ "special": true
699
+ },
700
+ "128087": {
701
+ "content": "<|reserved_special_token_79|>",
702
+ "lstrip": false,
703
+ "normalized": false,
704
+ "rstrip": false,
705
+ "single_word": false,
706
+ "special": true
707
+ },
708
+ "128088": {
709
+ "content": "<|reserved_special_token_80|>",
710
+ "lstrip": false,
711
+ "normalized": false,
712
+ "rstrip": false,
713
+ "single_word": false,
714
+ "special": true
715
+ },
716
+ "128089": {
717
+ "content": "<|reserved_special_token_81|>",
718
+ "lstrip": false,
719
+ "normalized": false,
720
+ "rstrip": false,
721
+ "single_word": false,
722
+ "special": true
723
+ },
724
+ "128090": {
725
+ "content": "<|reserved_special_token_82|>",
726
+ "lstrip": false,
727
+ "normalized": false,
728
+ "rstrip": false,
729
+ "single_word": false,
730
+ "special": true
731
+ },
732
+ "128091": {
733
+ "content": "<|reserved_special_token_83|>",
734
+ "lstrip": false,
735
+ "normalized": false,
736
+ "rstrip": false,
737
+ "single_word": false,
738
+ "special": true
739
+ },
740
+ "128092": {
741
+ "content": "<|reserved_special_token_84|>",
742
+ "lstrip": false,
743
+ "normalized": false,
744
+ "rstrip": false,
745
+ "single_word": false,
746
+ "special": true
747
+ },
748
+ "128093": {
749
+ "content": "<|reserved_special_token_85|>",
750
+ "lstrip": false,
751
+ "normalized": false,
752
+ "rstrip": false,
753
+ "single_word": false,
754
+ "special": true
755
+ },
756
+ "128094": {
757
+ "content": "<|reserved_special_token_86|>",
758
+ "lstrip": false,
759
+ "normalized": false,
760
+ "rstrip": false,
761
+ "single_word": false,
762
+ "special": true
763
+ },
764
+ "128095": {
765
+ "content": "<|reserved_special_token_87|>",
766
+ "lstrip": false,
767
+ "normalized": false,
768
+ "rstrip": false,
769
+ "single_word": false,
770
+ "special": true
771
+ },
772
+ "128096": {
773
+ "content": "<|reserved_special_token_88|>",
774
+ "lstrip": false,
775
+ "normalized": false,
776
+ "rstrip": false,
777
+ "single_word": false,
778
+ "special": true
779
+ },
780
+ "128097": {
781
+ "content": "<|reserved_special_token_89|>",
782
+ "lstrip": false,
783
+ "normalized": false,
784
+ "rstrip": false,
785
+ "single_word": false,
786
+ "special": true
787
+ },
788
+ "128098": {
789
+ "content": "<|reserved_special_token_90|>",
790
+ "lstrip": false,
791
+ "normalized": false,
792
+ "rstrip": false,
793
+ "single_word": false,
794
+ "special": true
795
+ },
796
+ "128099": {
797
+ "content": "<|reserved_special_token_91|>",
798
+ "lstrip": false,
799
+ "normalized": false,
800
+ "rstrip": false,
801
+ "single_word": false,
802
+ "special": true
803
+ },
804
+ "128100": {
805
+ "content": "<|reserved_special_token_92|>",
806
+ "lstrip": false,
807
+ "normalized": false,
808
+ "rstrip": false,
809
+ "single_word": false,
810
+ "special": true
811
+ },
812
+ "128101": {
813
+ "content": "<|reserved_special_token_93|>",
814
+ "lstrip": false,
815
+ "normalized": false,
816
+ "rstrip": false,
817
+ "single_word": false,
818
+ "special": true
819
+ },
820
+ "128102": {
821
+ "content": "<|reserved_special_token_94|>",
822
+ "lstrip": false,
823
+ "normalized": false,
824
+ "rstrip": false,
825
+ "single_word": false,
826
+ "special": true
827
+ },
828
+ "128103": {
829
+ "content": "<|reserved_special_token_95|>",
830
+ "lstrip": false,
831
+ "normalized": false,
832
+ "rstrip": false,
833
+ "single_word": false,
834
+ "special": true
835
+ },
836
+ "128104": {
837
+ "content": "<|reserved_special_token_96|>",
838
+ "lstrip": false,
839
+ "normalized": false,
840
+ "rstrip": false,
841
+ "single_word": false,
842
+ "special": true
843
+ },
844
+ "128105": {
845
+ "content": "<|reserved_special_token_97|>",
846
+ "lstrip": false,
847
+ "normalized": false,
848
+ "rstrip": false,
849
+ "single_word": false,
850
+ "special": true
851
+ },
852
+ "128106": {
853
+ "content": "<|reserved_special_token_98|>",
854
+ "lstrip": false,
855
+ "normalized": false,
856
+ "rstrip": false,
857
+ "single_word": false,
858
+ "special": true
859
+ },
860
+ "128107": {
861
+ "content": "<|reserved_special_token_99|>",
862
+ "lstrip": false,
863
+ "normalized": false,
864
+ "rstrip": false,
865
+ "single_word": false,
866
+ "special": true
867
+ },
868
+ "128108": {
869
+ "content": "<|reserved_special_token_100|>",
870
+ "lstrip": false,
871
+ "normalized": false,
872
+ "rstrip": false,
873
+ "single_word": false,
874
+ "special": true
875
+ },
876
+ "128109": {
877
+ "content": "<|reserved_special_token_101|>",
878
+ "lstrip": false,
879
+ "normalized": false,
880
+ "rstrip": false,
881
+ "single_word": false,
882
+ "special": true
883
+ },
884
+ "128110": {
885
+ "content": "<|reserved_special_token_102|>",
886
+ "lstrip": false,
887
+ "normalized": false,
888
+ "rstrip": false,
889
+ "single_word": false,
890
+ "special": true
891
+ },
892
+ "128111": {
893
+ "content": "<|reserved_special_token_103|>",
894
+ "lstrip": false,
895
+ "normalized": false,
896
+ "rstrip": false,
897
+ "single_word": false,
898
+ "special": true
899
+ },
900
+ "128112": {
901
+ "content": "<|reserved_special_token_104|>",
902
+ "lstrip": false,
903
+ "normalized": false,
904
+ "rstrip": false,
905
+ "single_word": false,
906
+ "special": true
907
+ },
908
+ "128113": {
909
+ "content": "<|reserved_special_token_105|>",
910
+ "lstrip": false,
911
+ "normalized": false,
912
+ "rstrip": false,
913
+ "single_word": false,
914
+ "special": true
915
+ },
916
+ "128114": {
917
+ "content": "<|reserved_special_token_106|>",
918
+ "lstrip": false,
919
+ "normalized": false,
920
+ "rstrip": false,
921
+ "single_word": false,
922
+ "special": true
923
+ },
924
+ "128115": {
925
+ "content": "<|reserved_special_token_107|>",
926
+ "lstrip": false,
927
+ "normalized": false,
928
+ "rstrip": false,
929
+ "single_word": false,
930
+ "special": true
931
+ },
932
+ "128116": {
933
+ "content": "<|reserved_special_token_108|>",
934
+ "lstrip": false,
935
+ "normalized": false,
936
+ "rstrip": false,
937
+ "single_word": false,
938
+ "special": true
939
+ },
940
+ "128117": {
941
+ "content": "<|reserved_special_token_109|>",
942
+ "lstrip": false,
943
+ "normalized": false,
944
+ "rstrip": false,
945
+ "single_word": false,
946
+ "special": true
947
+ },
948
+ "128118": {
949
+ "content": "<|reserved_special_token_110|>",
950
+ "lstrip": false,
951
+ "normalized": false,
952
+ "rstrip": false,
953
+ "single_word": false,
954
+ "special": true
955
+ },
956
+ "128119": {
957
+ "content": "<|reserved_special_token_111|>",
958
+ "lstrip": false,
959
+ "normalized": false,
960
+ "rstrip": false,
961
+ "single_word": false,
962
+ "special": true
963
+ },
964
+ "128120": {
965
+ "content": "<|reserved_special_token_112|>",
966
+ "lstrip": false,
967
+ "normalized": false,
968
+ "rstrip": false,
969
+ "single_word": false,
970
+ "special": true
971
+ },
972
+ "128121": {
973
+ "content": "<|reserved_special_token_113|>",
974
+ "lstrip": false,
975
+ "normalized": false,
976
+ "rstrip": false,
977
+ "single_word": false,
978
+ "special": true
979
+ },
980
+ "128122": {
981
+ "content": "<|reserved_special_token_114|>",
982
+ "lstrip": false,
983
+ "normalized": false,
984
+ "rstrip": false,
985
+ "single_word": false,
986
+ "special": true
987
+ },
988
+ "128123": {
989
+ "content": "<|reserved_special_token_115|>",
990
+ "lstrip": false,
991
+ "normalized": false,
992
+ "rstrip": false,
993
+ "single_word": false,
994
+ "special": true
995
+ },
996
+ "128124": {
997
+ "content": "<|reserved_special_token_116|>",
998
+ "lstrip": false,
999
+ "normalized": false,
1000
+ "rstrip": false,
1001
+ "single_word": false,
1002
+ "special": true
1003
+ },
1004
+ "128125": {
1005
+ "content": "<|reserved_special_token_117|>",
1006
+ "lstrip": false,
1007
+ "normalized": false,
1008
+ "rstrip": false,
1009
+ "single_word": false,
1010
+ "special": true
1011
+ },
1012
+ "128126": {
1013
+ "content": "<|reserved_special_token_118|>",
1014
+ "lstrip": false,
1015
+ "normalized": false,
1016
+ "rstrip": false,
1017
+ "single_word": false,
1018
+ "special": true
1019
+ },
1020
+ "128127": {
1021
+ "content": "<|reserved_special_token_119|>",
1022
+ "lstrip": false,
1023
+ "normalized": false,
1024
+ "rstrip": false,
1025
+ "single_word": false,
1026
+ "special": true
1027
+ },
1028
+ "128128": {
1029
+ "content": "<|reserved_special_token_120|>",
1030
+ "lstrip": false,
1031
+ "normalized": false,
1032
+ "rstrip": false,
1033
+ "single_word": false,
1034
+ "special": true
1035
+ },
1036
+ "128129": {
1037
+ "content": "<|reserved_special_token_121|>",
1038
+ "lstrip": false,
1039
+ "normalized": false,
1040
+ "rstrip": false,
1041
+ "single_word": false,
1042
+ "special": true
1043
+ },
1044
+ "128130": {
1045
+ "content": "<|reserved_special_token_122|>",
1046
+ "lstrip": false,
1047
+ "normalized": false,
1048
+ "rstrip": false,
1049
+ "single_word": false,
1050
+ "special": true
1051
+ },
1052
+ "128131": {
1053
+ "content": "<|reserved_special_token_123|>",
1054
+ "lstrip": false,
1055
+ "normalized": false,
1056
+ "rstrip": false,
1057
+ "single_word": false,
1058
+ "special": true
1059
+ },
1060
+ "128132": {
1061
+ "content": "<|reserved_special_token_124|>",
1062
+ "lstrip": false,
1063
+ "normalized": false,
1064
+ "rstrip": false,
1065
+ "single_word": false,
1066
+ "special": true
1067
+ },
1068
+ "128133": {
1069
+ "content": "<|reserved_special_token_125|>",
1070
+ "lstrip": false,
1071
+ "normalized": false,
1072
+ "rstrip": false,
1073
+ "single_word": false,
1074
+ "special": true
1075
+ },
1076
+ "128134": {
1077
+ "content": "<|reserved_special_token_126|>",
1078
+ "lstrip": false,
1079
+ "normalized": false,
1080
+ "rstrip": false,
1081
+ "single_word": false,
1082
+ "special": true
1083
+ },
1084
+ "128135": {
1085
+ "content": "<|reserved_special_token_127|>",
1086
+ "lstrip": false,
1087
+ "normalized": false,
1088
+ "rstrip": false,
1089
+ "single_word": false,
1090
+ "special": true
1091
+ },
1092
+ "128136": {
1093
+ "content": "<|reserved_special_token_128|>",
1094
+ "lstrip": false,
1095
+ "normalized": false,
1096
+ "rstrip": false,
1097
+ "single_word": false,
1098
+ "special": true
1099
+ },
1100
+ "128137": {
1101
+ "content": "<|reserved_special_token_129|>",
1102
+ "lstrip": false,
1103
+ "normalized": false,
1104
+ "rstrip": false,
1105
+ "single_word": false,
1106
+ "special": true
1107
+ },
1108
+ "128138": {
1109
+ "content": "<|reserved_special_token_130|>",
1110
+ "lstrip": false,
1111
+ "normalized": false,
1112
+ "rstrip": false,
1113
+ "single_word": false,
1114
+ "special": true
1115
+ },
1116
+ "128139": {
1117
+ "content": "<|reserved_special_token_131|>",
1118
+ "lstrip": false,
1119
+ "normalized": false,
1120
+ "rstrip": false,
1121
+ "single_word": false,
1122
+ "special": true
1123
+ },
1124
+ "128140": {
1125
+ "content": "<|reserved_special_token_132|>",
1126
+ "lstrip": false,
1127
+ "normalized": false,
1128
+ "rstrip": false,
1129
+ "single_word": false,
1130
+ "special": true
1131
+ },
1132
+ "128141": {
1133
+ "content": "<|reserved_special_token_133|>",
1134
+ "lstrip": false,
1135
+ "normalized": false,
1136
+ "rstrip": false,
1137
+ "single_word": false,
1138
+ "special": true
1139
+ },
1140
+ "128142": {
1141
+ "content": "<|reserved_special_token_134|>",
1142
+ "lstrip": false,
1143
+ "normalized": false,
1144
+ "rstrip": false,
1145
+ "single_word": false,
1146
+ "special": true
1147
+ },
1148
+ "128143": {
1149
+ "content": "<|reserved_special_token_135|>",
1150
+ "lstrip": false,
1151
+ "normalized": false,
1152
+ "rstrip": false,
1153
+ "single_word": false,
1154
+ "special": true
1155
+ },
1156
+ "128144": {
1157
+ "content": "<|reserved_special_token_136|>",
1158
+ "lstrip": false,
1159
+ "normalized": false,
1160
+ "rstrip": false,
1161
+ "single_word": false,
1162
+ "special": true
1163
+ },
1164
+ "128145": {
1165
+ "content": "<|reserved_special_token_137|>",
1166
+ "lstrip": false,
1167
+ "normalized": false,
1168
+ "rstrip": false,
1169
+ "single_word": false,
1170
+ "special": true
1171
+ },
1172
+ "128146": {
1173
+ "content": "<|reserved_special_token_138|>",
1174
+ "lstrip": false,
1175
+ "normalized": false,
1176
+ "rstrip": false,
1177
+ "single_word": false,
1178
+ "special": true
1179
+ },
1180
+ "128147": {
1181
+ "content": "<|reserved_special_token_139|>",
1182
+ "lstrip": false,
1183
+ "normalized": false,
1184
+ "rstrip": false,
1185
+ "single_word": false,
1186
+ "special": true
1187
+ },
1188
+ "128148": {
1189
+ "content": "<|reserved_special_token_140|>",
1190
+ "lstrip": false,
1191
+ "normalized": false,
1192
+ "rstrip": false,
1193
+ "single_word": false,
1194
+ "special": true
1195
+ },
1196
+ "128149": {
1197
+ "content": "<|reserved_special_token_141|>",
1198
+ "lstrip": false,
1199
+ "normalized": false,
1200
+ "rstrip": false,
1201
+ "single_word": false,
1202
+ "special": true
1203
+ },
1204
+ "128150": {
1205
+ "content": "<|reserved_special_token_142|>",
1206
+ "lstrip": false,
1207
+ "normalized": false,
1208
+ "rstrip": false,
1209
+ "single_word": false,
1210
+ "special": true
1211
+ },
1212
+ "128151": {
1213
+ "content": "<|reserved_special_token_143|>",
1214
+ "lstrip": false,
1215
+ "normalized": false,
1216
+ "rstrip": false,
1217
+ "single_word": false,
1218
+ "special": true
1219
+ },
1220
+ "128152": {
1221
+ "content": "<|reserved_special_token_144|>",
1222
+ "lstrip": false,
1223
+ "normalized": false,
1224
+ "rstrip": false,
1225
+ "single_word": false,
1226
+ "special": true
1227
+ },
1228
+ "128153": {
1229
+ "content": "<|reserved_special_token_145|>",
1230
+ "lstrip": false,
1231
+ "normalized": false,
1232
+ "rstrip": false,
1233
+ "single_word": false,
1234
+ "special": true
1235
+ },
1236
+ "128154": {
1237
+ "content": "<|reserved_special_token_146|>",
1238
+ "lstrip": false,
1239
+ "normalized": false,
1240
+ "rstrip": false,
1241
+ "single_word": false,
1242
+ "special": true
1243
+ },
1244
+ "128155": {
1245
+ "content": "<|reserved_special_token_147|>",
1246
+ "lstrip": false,
1247
+ "normalized": false,
1248
+ "rstrip": false,
1249
+ "single_word": false,
1250
+ "special": true
1251
+ },
1252
+ "128156": {
1253
+ "content": "<|reserved_special_token_148|>",
1254
+ "lstrip": false,
1255
+ "normalized": false,
1256
+ "rstrip": false,
1257
+ "single_word": false,
1258
+ "special": true
1259
+ },
1260
+ "128157": {
1261
+ "content": "<|reserved_special_token_149|>",
1262
+ "lstrip": false,
1263
+ "normalized": false,
1264
+ "rstrip": false,
1265
+ "single_word": false,
1266
+ "special": true
1267
+ },
1268
+ "128158": {
1269
+ "content": "<|reserved_special_token_150|>",
1270
+ "lstrip": false,
1271
+ "normalized": false,
1272
+ "rstrip": false,
1273
+ "single_word": false,
1274
+ "special": true
1275
+ },
1276
+ "128159": {
1277
+ "content": "<|reserved_special_token_151|>",
1278
+ "lstrip": false,
1279
+ "normalized": false,
1280
+ "rstrip": false,
1281
+ "single_word": false,
1282
+ "special": true
1283
+ },
1284
+ "128160": {
1285
+ "content": "<|reserved_special_token_152|>",
1286
+ "lstrip": false,
1287
+ "normalized": false,
1288
+ "rstrip": false,
1289
+ "single_word": false,
1290
+ "special": true
1291
+ },
1292
+ "128161": {
1293
+ "content": "<|reserved_special_token_153|>",
1294
+ "lstrip": false,
1295
+ "normalized": false,
1296
+ "rstrip": false,
1297
+ "single_word": false,
1298
+ "special": true
1299
+ },
1300
+ "128162": {
1301
+ "content": "<|reserved_special_token_154|>",
1302
+ "lstrip": false,
1303
+ "normalized": false,
1304
+ "rstrip": false,
1305
+ "single_word": false,
1306
+ "special": true
1307
+ },
1308
+ "128163": {
1309
+ "content": "<|reserved_special_token_155|>",
1310
+ "lstrip": false,
1311
+ "normalized": false,
1312
+ "rstrip": false,
1313
+ "single_word": false,
1314
+ "special": true
1315
+ },
1316
+ "128164": {
1317
+ "content": "<|reserved_special_token_156|>",
1318
+ "lstrip": false,
1319
+ "normalized": false,
1320
+ "rstrip": false,
1321
+ "single_word": false,
1322
+ "special": true
1323
+ },
1324
+ "128165": {
1325
+ "content": "<|reserved_special_token_157|>",
1326
+ "lstrip": false,
1327
+ "normalized": false,
1328
+ "rstrip": false,
1329
+ "single_word": false,
1330
+ "special": true
1331
+ },
1332
+ "128166": {
1333
+ "content": "<|reserved_special_token_158|>",
1334
+ "lstrip": false,
1335
+ "normalized": false,
1336
+ "rstrip": false,
1337
+ "single_word": false,
1338
+ "special": true
1339
+ },
1340
+ "128167": {
1341
+ "content": "<|reserved_special_token_159|>",
1342
+ "lstrip": false,
1343
+ "normalized": false,
1344
+ "rstrip": false,
1345
+ "single_word": false,
1346
+ "special": true
1347
+ },
1348
+ "128168": {
1349
+ "content": "<|reserved_special_token_160|>",
1350
+ "lstrip": false,
1351
+ "normalized": false,
1352
+ "rstrip": false,
1353
+ "single_word": false,
1354
+ "special": true
1355
+ },
1356
+ "128169": {
1357
+ "content": "<|reserved_special_token_161|>",
1358
+ "lstrip": false,
1359
+ "normalized": false,
1360
+ "rstrip": false,
1361
+ "single_word": false,
1362
+ "special": true
1363
+ },
1364
+ "128170": {
1365
+ "content": "<|reserved_special_token_162|>",
1366
+ "lstrip": false,
1367
+ "normalized": false,
1368
+ "rstrip": false,
1369
+ "single_word": false,
1370
+ "special": true
1371
+ },
1372
+ "128171": {
1373
+ "content": "<|reserved_special_token_163|>",
1374
+ "lstrip": false,
1375
+ "normalized": false,
1376
+ "rstrip": false,
1377
+ "single_word": false,
1378
+ "special": true
1379
+ },
1380
+ "128172": {
1381
+ "content": "<|reserved_special_token_164|>",
1382
+ "lstrip": false,
1383
+ "normalized": false,
1384
+ "rstrip": false,
1385
+ "single_word": false,
1386
+ "special": true
1387
+ },
1388
+ "128173": {
1389
+ "content": "<|reserved_special_token_165|>",
1390
+ "lstrip": false,
1391
+ "normalized": false,
1392
+ "rstrip": false,
1393
+ "single_word": false,
1394
+ "special": true
1395
+ },
1396
+ "128174": {
1397
+ "content": "<|reserved_special_token_166|>",
1398
+ "lstrip": false,
1399
+ "normalized": false,
1400
+ "rstrip": false,
1401
+ "single_word": false,
1402
+ "special": true
1403
+ },
1404
+ "128175": {
1405
+ "content": "<|reserved_special_token_167|>",
1406
+ "lstrip": false,
1407
+ "normalized": false,
1408
+ "rstrip": false,
1409
+ "single_word": false,
1410
+ "special": true
1411
+ },
1412
+ "128176": {
1413
+ "content": "<|reserved_special_token_168|>",
1414
+ "lstrip": false,
1415
+ "normalized": false,
1416
+ "rstrip": false,
1417
+ "single_word": false,
1418
+ "special": true
1419
+ },
1420
+ "128177": {
1421
+ "content": "<|reserved_special_token_169|>",
1422
+ "lstrip": false,
1423
+ "normalized": false,
1424
+ "rstrip": false,
1425
+ "single_word": false,
1426
+ "special": true
1427
+ },
1428
+ "128178": {
1429
+ "content": "<|reserved_special_token_170|>",
1430
+ "lstrip": false,
1431
+ "normalized": false,
1432
+ "rstrip": false,
1433
+ "single_word": false,
1434
+ "special": true
1435
+ },
1436
+ "128179": {
1437
+ "content": "<|reserved_special_token_171|>",
1438
+ "lstrip": false,
1439
+ "normalized": false,
1440
+ "rstrip": false,
1441
+ "single_word": false,
1442
+ "special": true
1443
+ },
1444
+ "128180": {
1445
+ "content": "<|reserved_special_token_172|>",
1446
+ "lstrip": false,
1447
+ "normalized": false,
1448
+ "rstrip": false,
1449
+ "single_word": false,
1450
+ "special": true
1451
+ },
1452
+ "128181": {
1453
+ "content": "<|reserved_special_token_173|>",
1454
+ "lstrip": false,
1455
+ "normalized": false,
1456
+ "rstrip": false,
1457
+ "single_word": false,
1458
+ "special": true
1459
+ },
1460
+ "128182": {
1461
+ "content": "<|reserved_special_token_174|>",
1462
+ "lstrip": false,
1463
+ "normalized": false,
1464
+ "rstrip": false,
1465
+ "single_word": false,
1466
+ "special": true
1467
+ },
1468
+ "128183": {
1469
+ "content": "<|reserved_special_token_175|>",
1470
+ "lstrip": false,
1471
+ "normalized": false,
1472
+ "rstrip": false,
1473
+ "single_word": false,
1474
+ "special": true
1475
+ },
1476
+ "128184": {
1477
+ "content": "<|reserved_special_token_176|>",
1478
+ "lstrip": false,
1479
+ "normalized": false,
1480
+ "rstrip": false,
1481
+ "single_word": false,
1482
+ "special": true
1483
+ },
1484
+ "128185": {
1485
+ "content": "<|reserved_special_token_177|>",
1486
+ "lstrip": false,
1487
+ "normalized": false,
1488
+ "rstrip": false,
1489
+ "single_word": false,
1490
+ "special": true
1491
+ },
1492
+ "128186": {
1493
+ "content": "<|reserved_special_token_178|>",
1494
+ "lstrip": false,
1495
+ "normalized": false,
1496
+ "rstrip": false,
1497
+ "single_word": false,
1498
+ "special": true
1499
+ },
1500
+ "128187": {
1501
+ "content": "<|reserved_special_token_179|>",
1502
+ "lstrip": false,
1503
+ "normalized": false,
1504
+ "rstrip": false,
1505
+ "single_word": false,
1506
+ "special": true
1507
+ },
1508
+ "128188": {
1509
+ "content": "<|reserved_special_token_180|>",
1510
+ "lstrip": false,
1511
+ "normalized": false,
1512
+ "rstrip": false,
1513
+ "single_word": false,
1514
+ "special": true
1515
+ },
1516
+ "128189": {
1517
+ "content": "<|reserved_special_token_181|>",
1518
+ "lstrip": false,
1519
+ "normalized": false,
1520
+ "rstrip": false,
1521
+ "single_word": false,
1522
+ "special": true
1523
+ },
1524
+ "128190": {
1525
+ "content": "<|reserved_special_token_182|>",
1526
+ "lstrip": false,
1527
+ "normalized": false,
1528
+ "rstrip": false,
1529
+ "single_word": false,
1530
+ "special": true
1531
+ },
1532
+ "128191": {
1533
+ "content": "<|reserved_special_token_183|>",
1534
+ "lstrip": false,
1535
+ "normalized": false,
1536
+ "rstrip": false,
1537
+ "single_word": false,
1538
+ "special": true
1539
+ },
1540
+ "128192": {
1541
+ "content": "<|reserved_special_token_184|>",
1542
+ "lstrip": false,
1543
+ "normalized": false,
1544
+ "rstrip": false,
1545
+ "single_word": false,
1546
+ "special": true
1547
+ },
1548
+ "128193": {
1549
+ "content": "<|reserved_special_token_185|>",
1550
+ "lstrip": false,
1551
+ "normalized": false,
1552
+ "rstrip": false,
1553
+ "single_word": false,
1554
+ "special": true
1555
+ },
1556
+ "128194": {
1557
+ "content": "<|reserved_special_token_186|>",
1558
+ "lstrip": false,
1559
+ "normalized": false,
1560
+ "rstrip": false,
1561
+ "single_word": false,
1562
+ "special": true
1563
+ },
1564
+ "128195": {
1565
+ "content": "<|reserved_special_token_187|>",
1566
+ "lstrip": false,
1567
+ "normalized": false,
1568
+ "rstrip": false,
1569
+ "single_word": false,
1570
+ "special": true
1571
+ },
1572
+ "128196": {
1573
+ "content": "<|reserved_special_token_188|>",
1574
+ "lstrip": false,
1575
+ "normalized": false,
1576
+ "rstrip": false,
1577
+ "single_word": false,
1578
+ "special": true
1579
+ },
1580
+ "128197": {
1581
+ "content": "<|reserved_special_token_189|>",
1582
+ "lstrip": false,
1583
+ "normalized": false,
1584
+ "rstrip": false,
1585
+ "single_word": false,
1586
+ "special": true
1587
+ },
1588
+ "128198": {
1589
+ "content": "<|reserved_special_token_190|>",
1590
+ "lstrip": false,
1591
+ "normalized": false,
1592
+ "rstrip": false,
1593
+ "single_word": false,
1594
+ "special": true
1595
+ },
1596
+ "128199": {
1597
+ "content": "<|reserved_special_token_191|>",
1598
+ "lstrip": false,
1599
+ "normalized": false,
1600
+ "rstrip": false,
1601
+ "single_word": false,
1602
+ "special": true
1603
+ },
1604
+ "128200": {
1605
+ "content": "<|reserved_special_token_192|>",
1606
+ "lstrip": false,
1607
+ "normalized": false,
1608
+ "rstrip": false,
1609
+ "single_word": false,
1610
+ "special": true
1611
+ },
1612
+ "128201": {
1613
+ "content": "<|reserved_special_token_193|>",
1614
+ "lstrip": false,
1615
+ "normalized": false,
1616
+ "rstrip": false,
1617
+ "single_word": false,
1618
+ "special": true
1619
+ },
1620
+ "128202": {
1621
+ "content": "<|reserved_special_token_194|>",
1622
+ "lstrip": false,
1623
+ "normalized": false,
1624
+ "rstrip": false,
1625
+ "single_word": false,
1626
+ "special": true
1627
+ },
1628
+ "128203": {
1629
+ "content": "<|reserved_special_token_195|>",
1630
+ "lstrip": false,
1631
+ "normalized": false,
1632
+ "rstrip": false,
1633
+ "single_word": false,
1634
+ "special": true
1635
+ },
1636
+ "128204": {
1637
+ "content": "<|reserved_special_token_196|>",
1638
+ "lstrip": false,
1639
+ "normalized": false,
1640
+ "rstrip": false,
1641
+ "single_word": false,
1642
+ "special": true
1643
+ },
1644
+ "128205": {
1645
+ "content": "<|reserved_special_token_197|>",
1646
+ "lstrip": false,
1647
+ "normalized": false,
1648
+ "rstrip": false,
1649
+ "single_word": false,
1650
+ "special": true
1651
+ },
1652
+ "128206": {
1653
+ "content": "<|reserved_special_token_198|>",
1654
+ "lstrip": false,
1655
+ "normalized": false,
1656
+ "rstrip": false,
1657
+ "single_word": false,
1658
+ "special": true
1659
+ },
1660
+ "128207": {
1661
+ "content": "<|reserved_special_token_199|>",
1662
+ "lstrip": false,
1663
+ "normalized": false,
1664
+ "rstrip": false,
1665
+ "single_word": false,
1666
+ "special": true
1667
+ },
1668
+ "128208": {
1669
+ "content": "<|reserved_special_token_200|>",
1670
+ "lstrip": false,
1671
+ "normalized": false,
1672
+ "rstrip": false,
1673
+ "single_word": false,
1674
+ "special": true
1675
+ },
1676
+ "128209": {
1677
+ "content": "<|reserved_special_token_201|>",
1678
+ "lstrip": false,
1679
+ "normalized": false,
1680
+ "rstrip": false,
1681
+ "single_word": false,
1682
+ "special": true
1683
+ },
1684
+ "128210": {
1685
+ "content": "<|reserved_special_token_202|>",
1686
+ "lstrip": false,
1687
+ "normalized": false,
1688
+ "rstrip": false,
1689
+ "single_word": false,
1690
+ "special": true
1691
+ },
1692
+ "128211": {
1693
+ "content": "<|reserved_special_token_203|>",
1694
+ "lstrip": false,
1695
+ "normalized": false,
1696
+ "rstrip": false,
1697
+ "single_word": false,
1698
+ "special": true
1699
+ },
1700
+ "128212": {
1701
+ "content": "<|reserved_special_token_204|>",
1702
+ "lstrip": false,
1703
+ "normalized": false,
1704
+ "rstrip": false,
1705
+ "single_word": false,
1706
+ "special": true
1707
+ },
1708
+ "128213": {
1709
+ "content": "<|reserved_special_token_205|>",
1710
+ "lstrip": false,
1711
+ "normalized": false,
1712
+ "rstrip": false,
1713
+ "single_word": false,
1714
+ "special": true
1715
+ },
1716
+ "128214": {
1717
+ "content": "<|reserved_special_token_206|>",
1718
+ "lstrip": false,
1719
+ "normalized": false,
1720
+ "rstrip": false,
1721
+ "single_word": false,
1722
+ "special": true
1723
+ },
1724
+ "128215": {
1725
+ "content": "<|reserved_special_token_207|>",
1726
+ "lstrip": false,
1727
+ "normalized": false,
1728
+ "rstrip": false,
1729
+ "single_word": false,
1730
+ "special": true
1731
+ },
1732
+ "128216": {
1733
+ "content": "<|reserved_special_token_208|>",
1734
+ "lstrip": false,
1735
+ "normalized": false,
1736
+ "rstrip": false,
1737
+ "single_word": false,
1738
+ "special": true
1739
+ },
1740
+ "128217": {
1741
+ "content": "<|reserved_special_token_209|>",
1742
+ "lstrip": false,
1743
+ "normalized": false,
1744
+ "rstrip": false,
1745
+ "single_word": false,
1746
+ "special": true
1747
+ },
1748
+ "128218": {
1749
+ "content": "<|reserved_special_token_210|>",
1750
+ "lstrip": false,
1751
+ "normalized": false,
1752
+ "rstrip": false,
1753
+ "single_word": false,
1754
+ "special": true
1755
+ },
1756
+ "128219": {
1757
+ "content": "<|reserved_special_token_211|>",
1758
+ "lstrip": false,
1759
+ "normalized": false,
1760
+ "rstrip": false,
1761
+ "single_word": false,
1762
+ "special": true
1763
+ },
1764
+ "128220": {
1765
+ "content": "<|reserved_special_token_212|>",
1766
+ "lstrip": false,
1767
+ "normalized": false,
1768
+ "rstrip": false,
1769
+ "single_word": false,
1770
+ "special": true
1771
+ },
1772
+ "128221": {
1773
+ "content": "<|reserved_special_token_213|>",
1774
+ "lstrip": false,
1775
+ "normalized": false,
1776
+ "rstrip": false,
1777
+ "single_word": false,
1778
+ "special": true
1779
+ },
1780
+ "128222": {
1781
+ "content": "<|reserved_special_token_214|>",
1782
+ "lstrip": false,
1783
+ "normalized": false,
1784
+ "rstrip": false,
1785
+ "single_word": false,
1786
+ "special": true
1787
+ },
1788
+ "128223": {
1789
+ "content": "<|reserved_special_token_215|>",
1790
+ "lstrip": false,
1791
+ "normalized": false,
1792
+ "rstrip": false,
1793
+ "single_word": false,
1794
+ "special": true
1795
+ },
1796
+ "128224": {
1797
+ "content": "<|reserved_special_token_216|>",
1798
+ "lstrip": false,
1799
+ "normalized": false,
1800
+ "rstrip": false,
1801
+ "single_word": false,
1802
+ "special": true
1803
+ },
1804
+ "128225": {
1805
+ "content": "<|reserved_special_token_217|>",
1806
+ "lstrip": false,
1807
+ "normalized": false,
1808
+ "rstrip": false,
1809
+ "single_word": false,
1810
+ "special": true
1811
+ },
1812
+ "128226": {
1813
+ "content": "<|reserved_special_token_218|>",
1814
+ "lstrip": false,
1815
+ "normalized": false,
1816
+ "rstrip": false,
1817
+ "single_word": false,
1818
+ "special": true
1819
+ },
1820
+ "128227": {
1821
+ "content": "<|reserved_special_token_219|>",
1822
+ "lstrip": false,
1823
+ "normalized": false,
1824
+ "rstrip": false,
1825
+ "single_word": false,
1826
+ "special": true
1827
+ },
1828
+ "128228": {
1829
+ "content": "<|reserved_special_token_220|>",
1830
+ "lstrip": false,
1831
+ "normalized": false,
1832
+ "rstrip": false,
1833
+ "single_word": false,
1834
+ "special": true
1835
+ },
1836
+ "128229": {
1837
+ "content": "<|reserved_special_token_221|>",
1838
+ "lstrip": false,
1839
+ "normalized": false,
1840
+ "rstrip": false,
1841
+ "single_word": false,
1842
+ "special": true
1843
+ },
1844
+ "128230": {
1845
+ "content": "<|reserved_special_token_222|>",
1846
+ "lstrip": false,
1847
+ "normalized": false,
1848
+ "rstrip": false,
1849
+ "single_word": false,
1850
+ "special": true
1851
+ },
1852
+ "128231": {
1853
+ "content": "<|reserved_special_token_223|>",
1854
+ "lstrip": false,
1855
+ "normalized": false,
1856
+ "rstrip": false,
1857
+ "single_word": false,
1858
+ "special": true
1859
+ },
1860
+ "128232": {
1861
+ "content": "<|reserved_special_token_224|>",
1862
+ "lstrip": false,
1863
+ "normalized": false,
1864
+ "rstrip": false,
1865
+ "single_word": false,
1866
+ "special": true
1867
+ },
1868
+ "128233": {
1869
+ "content": "<|reserved_special_token_225|>",
1870
+ "lstrip": false,
1871
+ "normalized": false,
1872
+ "rstrip": false,
1873
+ "single_word": false,
1874
+ "special": true
1875
+ },
1876
+ "128234": {
1877
+ "content": "<|reserved_special_token_226|>",
1878
+ "lstrip": false,
1879
+ "normalized": false,
1880
+ "rstrip": false,
1881
+ "single_word": false,
1882
+ "special": true
1883
+ },
1884
+ "128235": {
1885
+ "content": "<|reserved_special_token_227|>",
1886
+ "lstrip": false,
1887
+ "normalized": false,
1888
+ "rstrip": false,
1889
+ "single_word": false,
1890
+ "special": true
1891
+ },
1892
+ "128236": {
1893
+ "content": "<|reserved_special_token_228|>",
1894
+ "lstrip": false,
1895
+ "normalized": false,
1896
+ "rstrip": false,
1897
+ "single_word": false,
1898
+ "special": true
1899
+ },
1900
+ "128237": {
1901
+ "content": "<|reserved_special_token_229|>",
1902
+ "lstrip": false,
1903
+ "normalized": false,
1904
+ "rstrip": false,
1905
+ "single_word": false,
1906
+ "special": true
1907
+ },
1908
+ "128238": {
1909
+ "content": "<|reserved_special_token_230|>",
1910
+ "lstrip": false,
1911
+ "normalized": false,
1912
+ "rstrip": false,
1913
+ "single_word": false,
1914
+ "special": true
1915
+ },
1916
+ "128239": {
1917
+ "content": "<|reserved_special_token_231|>",
1918
+ "lstrip": false,
1919
+ "normalized": false,
1920
+ "rstrip": false,
1921
+ "single_word": false,
1922
+ "special": true
1923
+ },
1924
+ "128240": {
1925
+ "content": "<|reserved_special_token_232|>",
1926
+ "lstrip": false,
1927
+ "normalized": false,
1928
+ "rstrip": false,
1929
+ "single_word": false,
1930
+ "special": true
1931
+ },
1932
+ "128241": {
1933
+ "content": "<|reserved_special_token_233|>",
1934
+ "lstrip": false,
1935
+ "normalized": false,
1936
+ "rstrip": false,
1937
+ "single_word": false,
1938
+ "special": true
1939
+ },
1940
+ "128242": {
1941
+ "content": "<|reserved_special_token_234|>",
1942
+ "lstrip": false,
1943
+ "normalized": false,
1944
+ "rstrip": false,
1945
+ "single_word": false,
1946
+ "special": true
1947
+ },
1948
+ "128243": {
1949
+ "content": "<|reserved_special_token_235|>",
1950
+ "lstrip": false,
1951
+ "normalized": false,
1952
+ "rstrip": false,
1953
+ "single_word": false,
1954
+ "special": true
1955
+ },
1956
+ "128244": {
1957
+ "content": "<|reserved_special_token_236|>",
1958
+ "lstrip": false,
1959
+ "normalized": false,
1960
+ "rstrip": false,
1961
+ "single_word": false,
1962
+ "special": true
1963
+ },
1964
+ "128245": {
1965
+ "content": "<|reserved_special_token_237|>",
1966
+ "lstrip": false,
1967
+ "normalized": false,
1968
+ "rstrip": false,
1969
+ "single_word": false,
1970
+ "special": true
1971
+ },
1972
+ "128246": {
1973
+ "content": "<|reserved_special_token_238|>",
1974
+ "lstrip": false,
1975
+ "normalized": false,
1976
+ "rstrip": false,
1977
+ "single_word": false,
1978
+ "special": true
1979
+ },
1980
+ "128247": {
1981
+ "content": "<|reserved_special_token_239|>",
1982
+ "lstrip": false,
1983
+ "normalized": false,
1984
+ "rstrip": false,
1985
+ "single_word": false,
1986
+ "special": true
1987
+ },
1988
+ "128248": {
1989
+ "content": "<|reserved_special_token_240|>",
1990
+ "lstrip": false,
1991
+ "normalized": false,
1992
+ "rstrip": false,
1993
+ "single_word": false,
1994
+ "special": true
1995
+ },
1996
+ "128249": {
1997
+ "content": "<|reserved_special_token_241|>",
1998
+ "lstrip": false,
1999
+ "normalized": false,
2000
+ "rstrip": false,
2001
+ "single_word": false,
2002
+ "special": true
2003
+ },
2004
+ "128250": {
2005
+ "content": "<|reserved_special_token_242|>",
2006
+ "lstrip": false,
2007
+ "normalized": false,
2008
+ "rstrip": false,
2009
+ "single_word": false,
2010
+ "special": true
2011
+ },
2012
+ "128251": {
2013
+ "content": "<|reserved_special_token_243|>",
2014
+ "lstrip": false,
2015
+ "normalized": false,
2016
+ "rstrip": false,
2017
+ "single_word": false,
2018
+ "special": true
2019
+ },
2020
+ "128252": {
2021
+ "content": "<|reserved_special_token_244|>",
2022
+ "lstrip": false,
2023
+ "normalized": false,
2024
+ "rstrip": false,
2025
+ "single_word": false,
2026
+ "special": true
2027
+ },
2028
+ "128253": {
2029
+ "content": "<|reserved_special_token_245|>",
2030
+ "lstrip": false,
2031
+ "normalized": false,
2032
+ "rstrip": false,
2033
+ "single_word": false,
2034
+ "special": true
2035
+ },
2036
+ "128254": {
2037
+ "content": "<|reserved_special_token_246|>",
2038
+ "lstrip": false,
2039
+ "normalized": false,
2040
+ "rstrip": false,
2041
+ "single_word": false,
2042
+ "special": true
2043
+ },
2044
+ "128255": {
2045
+ "content": "<|reserved_special_token_247|>",
2046
+ "lstrip": false,
2047
+ "normalized": false,
2048
+ "rstrip": false,
2049
+ "single_word": false,
2050
+ "special": true
2051
+ }
2052
+ },
2053
+ "bos_token": "<|begin_of_text|>",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|eot_id|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "pad_token": "<|finetune_right_pad_id|>",
2063
+ "padding_side": "left",
2064
+ "tokenizer_class": "PreTrainedTokenizerFast",
2065
+ "unk_token": null
2066
+ }
checkpoint-60/trainer_state.json ADDED
@@ -0,0 +1,2074 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.48,
6
+ "eval_steps": 500,
7
+ "global_step": 60,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "clip_ratio/high_max": 0.0,
14
+ "clip_ratio/high_mean": 0.0,
15
+ "clip_ratio/low_mean": 0.0,
16
+ "clip_ratio/low_min": 0.0,
17
+ "clip_ratio/region_mean": 0.0,
18
+ "completions/clipped_ratio": 0.0,
19
+ "completions/max_length": 13438.0,
20
+ "completions/max_terminated_length": 13438.0,
21
+ "completions/mean_length": 10571.34375,
22
+ "completions/mean_terminated_length": 10571.34375,
23
+ "completions/min_length": 309.0,
24
+ "completions/min_terminated_length": 309.0,
25
+ "entropy": 0.22744695050641894,
26
+ "entropy_coef": 0.0,
27
+ "epoch": 0.008,
28
+ "frac_reward_zero_std": 0.0,
29
+ "grad_norm": 0.004470339976251125,
30
+ "kl": 0.0,
31
+ "learning_rate": 0.0,
32
+ "loss": 0.0011,
33
+ "num_tokens": 764735.0,
34
+ "reward": 0.2038871943950653,
35
+ "reward_std": 0.22972431778907776,
36
+ "rewards/rollout_reward_func/mean": 0.2038871943950653,
37
+ "rewards/rollout_reward_func/std": 0.24821141362190247,
38
+ "sampling/importance_sampling_ratio/max": 2.152143716812134,
39
+ "sampling/importance_sampling_ratio/mean": 0.9715487957000732,
40
+ "sampling/importance_sampling_ratio/min": 0.49959778785705566,
41
+ "sampling/sampling_logp_difference/max": 0.40252935886383057,
42
+ "sampling/sampling_logp_difference/mean": 0.011269282549619675,
43
+ "step": 1,
44
+ "step_time": 438.56001993300197
45
+ },
46
+ {
47
+ "clip_ratio/high_max": 0.0,
48
+ "clip_ratio/high_mean": 0.0,
49
+ "clip_ratio/low_mean": 0.0,
50
+ "clip_ratio/low_min": 0.0,
51
+ "clip_ratio/region_mean": 0.0,
52
+ "completions/clipped_ratio": 0.0,
53
+ "completions/max_length": 13519.0,
54
+ "completions/max_terminated_length": 13519.0,
55
+ "completions/mean_length": 9874.9375,
56
+ "completions/mean_terminated_length": 9874.9375,
57
+ "completions/min_length": 285.0,
58
+ "completions/min_terminated_length": 285.0,
59
+ "entropy": 0.23457892192527652,
60
+ "entropy_coef": 0.0,
61
+ "epoch": 0.016,
62
+ "frac_reward_zero_std": 0.0,
63
+ "grad_norm": 0.0030966601334512234,
64
+ "kl": 0.0,
65
+ "learning_rate": 5e-06,
66
+ "loss": 0.0021,
67
+ "num_tokens": 1484887.0,
68
+ "reward": 0.1749872863292694,
69
+ "reward_std": 0.22534532845020294,
70
+ "rewards/rollout_reward_func/mean": 0.1749873012304306,
71
+ "rewards/rollout_reward_func/std": 0.23116210103034973,
72
+ "sampling/importance_sampling_ratio/max": 2.381140947341919,
73
+ "sampling/importance_sampling_ratio/mean": 1.0497865676879883,
74
+ "sampling/importance_sampling_ratio/min": 0.3961425721645355,
75
+ "sampling/sampling_logp_difference/max": 0.5215206146240234,
76
+ "sampling/sampling_logp_difference/mean": 0.011670360341668129,
77
+ "step": 2,
78
+ "step_time": 420.1092050239931
79
+ },
80
+ {
81
+ "clip_ratio/high_max": 0.0,
82
+ "clip_ratio/high_mean": 0.0,
83
+ "clip_ratio/low_mean": 0.0,
84
+ "clip_ratio/low_min": 0.0,
85
+ "clip_ratio/region_mean": 0.0,
86
+ "completions/clipped_ratio": 0.0,
87
+ "completions/max_length": 13572.0,
88
+ "completions/max_terminated_length": 13572.0,
89
+ "completions/mean_length": 10628.796875,
90
+ "completions/mean_terminated_length": 10628.796875,
91
+ "completions/min_length": 273.0,
92
+ "completions/min_terminated_length": 273.0,
93
+ "entropy": 0.2320095533505082,
94
+ "entropy_coef": 0.0,
95
+ "epoch": 0.024,
96
+ "frac_reward_zero_std": 0.0,
97
+ "grad_norm": 0.0023555040825158358,
98
+ "kl": 0.0005503470579242276,
99
+ "learning_rate": 1e-05,
100
+ "loss": 0.0016,
101
+ "num_tokens": 2253277.0,
102
+ "reward": 0.16793698072433472,
103
+ "reward_std": 0.2469094842672348,
104
+ "rewards/rollout_reward_func/mean": 0.1679369956254959,
105
+ "rewards/rollout_reward_func/std": 0.2534759044647217,
106
+ "sampling/importance_sampling_ratio/max": 1.8028935194015503,
107
+ "sampling/importance_sampling_ratio/mean": 0.9887319207191467,
108
+ "sampling/importance_sampling_ratio/min": 0.39488279819488525,
109
+ "sampling/sampling_logp_difference/max": 0.4582967758178711,
110
+ "sampling/sampling_logp_difference/mean": 0.011204799637198448,
111
+ "step": 3,
112
+ "step_time": 435.1281385660059
113
+ },
114
+ {
115
+ "clip_ratio/high_max": 0.0,
116
+ "clip_ratio/high_mean": 0.0,
117
+ "clip_ratio/low_mean": 0.0,
118
+ "clip_ratio/low_min": 0.0,
119
+ "clip_ratio/region_mean": 0.0,
120
+ "completions/clipped_ratio": 0.0,
121
+ "completions/max_length": 13318.0,
122
+ "completions/max_terminated_length": 13318.0,
123
+ "completions/mean_length": 10694.171875,
124
+ "completions/mean_terminated_length": 10694.171875,
125
+ "completions/min_length": 285.0,
126
+ "completions/min_terminated_length": 285.0,
127
+ "entropy": 0.2247253875248134,
128
+ "entropy_coef": 0.0,
129
+ "epoch": 0.032,
130
+ "frac_reward_zero_std": 0.0,
131
+ "grad_norm": 0.0037305341102182865,
132
+ "kl": 0.001023812047606043,
133
+ "learning_rate": 1.5e-05,
134
+ "loss": 0.0016,
135
+ "num_tokens": 3025882.0,
136
+ "reward": 0.18146595358848572,
137
+ "reward_std": 0.23726379871368408,
138
+ "rewards/rollout_reward_func/mean": 0.18146595358848572,
139
+ "rewards/rollout_reward_func/std": 0.23709514737129211,
140
+ "sampling/importance_sampling_ratio/max": 2.8950412273406982,
141
+ "sampling/importance_sampling_ratio/mean": 0.9783786535263062,
142
+ "sampling/importance_sampling_ratio/min": 0.36984026432037354,
143
+ "sampling/sampling_logp_difference/max": 0.3555731773376465,
144
+ "sampling/sampling_logp_difference/mean": 0.01122740563005209,
145
+ "step": 4,
146
+ "step_time": 431.9777152579918
147
+ },
148
+ {
149
+ "clip_ratio/high_max": 0.0,
150
+ "clip_ratio/high_mean": 0.0,
151
+ "clip_ratio/low_mean": 0.0,
152
+ "clip_ratio/low_min": 0.0,
153
+ "clip_ratio/region_mean": 0.0,
154
+ "completions/clipped_ratio": 0.0,
155
+ "completions/max_length": 13473.0,
156
+ "completions/max_terminated_length": 13473.0,
157
+ "completions/mean_length": 11267.625,
158
+ "completions/mean_terminated_length": 11267.625,
159
+ "completions/min_length": 285.0,
160
+ "completions/min_terminated_length": 285.0,
161
+ "entropy": 0.2198889283463359,
162
+ "entropy_coef": 0.0,
163
+ "epoch": 0.04,
164
+ "frac_reward_zero_std": 0.125,
165
+ "grad_norm": 0.0032498568762093782,
166
+ "kl": 0.005640709860017523,
167
+ "learning_rate": 2e-05,
168
+ "loss": 0.0008,
169
+ "num_tokens": 3835134.0,
170
+ "reward": 0.1586000919342041,
171
+ "reward_std": 0.22193920612335205,
172
+ "rewards/rollout_reward_func/mean": 0.1586000919342041,
173
+ "rewards/rollout_reward_func/std": 0.24015434086322784,
174
+ "sampling/importance_sampling_ratio/max": 2.5873546600341797,
175
+ "sampling/importance_sampling_ratio/mean": 1.0571657419204712,
176
+ "sampling/importance_sampling_ratio/min": 0.4086976945400238,
177
+ "sampling/sampling_logp_difference/max": 0.6590452194213867,
178
+ "sampling/sampling_logp_difference/mean": 0.018846016377210617,
179
+ "step": 5,
180
+ "step_time": 458.6976785380102
181
+ },
182
+ {
183
+ "clip_ratio/high_max": 0.0,
184
+ "clip_ratio/high_mean": 0.0,
185
+ "clip_ratio/low_mean": 0.0,
186
+ "clip_ratio/low_min": 0.0,
187
+ "clip_ratio/region_mean": 0.0,
188
+ "completions/clipped_ratio": 0.0,
189
+ "completions/max_length": 13527.0,
190
+ "completions/max_terminated_length": 13527.0,
191
+ "completions/mean_length": 10437.375,
192
+ "completions/mean_terminated_length": 10437.375,
193
+ "completions/min_length": 756.0,
194
+ "completions/min_terminated_length": 756.0,
195
+ "entropy": 0.20432376209646463,
196
+ "entropy_coef": 0.0,
197
+ "epoch": 0.048,
198
+ "frac_reward_zero_std": 0.0,
199
+ "grad_norm": 0.004959817975759506,
200
+ "kl": 0.03556106987525709,
201
+ "learning_rate": 2.5e-05,
202
+ "loss": -0.0017,
203
+ "num_tokens": 4591309.0,
204
+ "reward": 0.269817054271698,
205
+ "reward_std": 0.23435133695602417,
206
+ "rewards/rollout_reward_func/mean": 0.269817054271698,
207
+ "rewards/rollout_reward_func/std": 0.23994563519954681,
208
+ "sampling/importance_sampling_ratio/max": 2.9228434562683105,
209
+ "sampling/importance_sampling_ratio/mean": 0.9227339625358582,
210
+ "sampling/importance_sampling_ratio/min": 0.0,
211
+ "sampling/sampling_logp_difference/max": 0.9442570209503174,
212
+ "sampling/sampling_logp_difference/mean": 0.038448479026556015,
213
+ "step": 6,
214
+ "step_time": 449.31237200499527
215
+ },
216
+ {
217
+ "clip_ratio/high_max": 0.0,
218
+ "clip_ratio/high_mean": 0.0,
219
+ "clip_ratio/low_mean": 0.0,
220
+ "clip_ratio/low_min": 0.0,
221
+ "clip_ratio/region_mean": 0.0,
222
+ "completions/clipped_ratio": 0.0,
223
+ "completions/max_length": 13435.0,
224
+ "completions/max_terminated_length": 13435.0,
225
+ "completions/mean_length": 10070.109375,
226
+ "completions/mean_terminated_length": 10070.109375,
227
+ "completions/min_length": 719.0,
228
+ "completions/min_terminated_length": 719.0,
229
+ "entropy": 0.13861274044029415,
230
+ "entropy_coef": 0.0,
231
+ "epoch": 0.056,
232
+ "frac_reward_zero_std": 0.0,
233
+ "grad_norm": 0.001184853375889361,
234
+ "kl": 0.20673101507418323,
235
+ "learning_rate": 3e-05,
236
+ "loss": -0.0014,
237
+ "num_tokens": 5323961.0,
238
+ "reward": 0.41577744483947754,
239
+ "reward_std": 0.1720798909664154,
240
+ "rewards/rollout_reward_func/mean": 0.41577744483947754,
241
+ "rewards/rollout_reward_func/std": 0.19247935712337494,
242
+ "sampling/importance_sampling_ratio/max": 2.4079363346099854,
243
+ "sampling/importance_sampling_ratio/mean": 0.6285330653190613,
244
+ "sampling/importance_sampling_ratio/min": 0.0,
245
+ "sampling/sampling_logp_difference/max": 2.1184098720550537,
246
+ "sampling/sampling_logp_difference/mean": 0.048691026866436005,
247
+ "step": 7,
248
+ "step_time": 379.3420491740144
249
+ },
250
+ {
251
+ "clip_ratio/high_max": 0.0,
252
+ "clip_ratio/high_mean": 0.0,
253
+ "clip_ratio/low_mean": 0.0,
254
+ "clip_ratio/low_min": 0.0,
255
+ "clip_ratio/region_mean": 0.0,
256
+ "completions/clipped_ratio": 0.0,
257
+ "completions/max_length": 13668.0,
258
+ "completions/max_terminated_length": 13668.0,
259
+ "completions/mean_length": 10895.234375,
260
+ "completions/mean_terminated_length": 10895.234375,
261
+ "completions/min_length": 309.0,
262
+ "completions/min_terminated_length": 309.0,
263
+ "entropy": 0.0905449929414317,
264
+ "entropy_coef": 0.0,
265
+ "epoch": 0.064,
266
+ "frac_reward_zero_std": 0.125,
267
+ "grad_norm": 0.00253101228736341,
268
+ "kl": 0.9240666848781984,
269
+ "learning_rate": 3.5e-05,
270
+ "loss": 0.0006,
271
+ "num_tokens": 6109429.0,
272
+ "reward": 0.4539507329463959,
273
+ "reward_std": 0.13961876928806305,
274
+ "rewards/rollout_reward_func/mean": 0.4539507031440735,
275
+ "rewards/rollout_reward_func/std": 0.15812666714191437,
276
+ "sampling/importance_sampling_ratio/max": 2.68774676322937,
277
+ "sampling/importance_sampling_ratio/mean": 1.1274149417877197,
278
+ "sampling/importance_sampling_ratio/min": 0.0,
279
+ "sampling/sampling_logp_difference/max": 3.7444963455200195,
280
+ "sampling/sampling_logp_difference/mean": 0.02036558836698532,
281
+ "step": 8,
282
+ "step_time": 427.7526500180102
283
+ },
284
+ {
285
+ "clip_ratio/high_max": 0.0,
286
+ "clip_ratio/high_mean": 0.0,
287
+ "clip_ratio/low_mean": 0.0,
288
+ "clip_ratio/low_min": 0.0,
289
+ "clip_ratio/region_mean": 0.0,
290
+ "completions/clipped_ratio": 0.0,
291
+ "completions/max_length": 12936.0,
292
+ "completions/max_terminated_length": 12936.0,
293
+ "completions/mean_length": 10576.625,
294
+ "completions/mean_terminated_length": 10576.625,
295
+ "completions/min_length": 719.0,
296
+ "completions/min_terminated_length": 719.0,
297
+ "entropy": 0.10208258079364896,
298
+ "entropy_coef": 0.0,
299
+ "epoch": 0.072,
300
+ "frac_reward_zero_std": 0.125,
301
+ "grad_norm": 0.0017614348325878382,
302
+ "kl": 1.5391254381393082,
303
+ "learning_rate": 4e-05,
304
+ "loss": -0.0007,
305
+ "num_tokens": 6874506.0,
306
+ "reward": 0.467670202255249,
307
+ "reward_std": 0.1305323839187622,
308
+ "rewards/rollout_reward_func/mean": 0.467670202255249,
309
+ "rewards/rollout_reward_func/std": 0.14243291318416595,
310
+ "sampling/importance_sampling_ratio/max": 1.8500258922576904,
311
+ "sampling/importance_sampling_ratio/mean": 0.7892546653747559,
312
+ "sampling/importance_sampling_ratio/min": 0.0,
313
+ "sampling/sampling_logp_difference/max": 5.291014194488525,
314
+ "sampling/sampling_logp_difference/mean": 0.016439227387309074,
315
+ "step": 9,
316
+ "step_time": 396.4401999490001
317
+ },
318
+ {
319
+ "clip_ratio/high_max": 0.0,
320
+ "clip_ratio/high_mean": 0.0,
321
+ "clip_ratio/low_mean": 0.0,
322
+ "clip_ratio/low_min": 0.0,
323
+ "clip_ratio/region_mean": 0.0,
324
+ "completions/clipped_ratio": 0.0,
325
+ "completions/max_length": 13402.0,
326
+ "completions/max_terminated_length": 13402.0,
327
+ "completions/mean_length": 10361.9375,
328
+ "completions/mean_terminated_length": 10361.9375,
329
+ "completions/min_length": 2717.0,
330
+ "completions/min_terminated_length": 2717.0,
331
+ "entropy": 0.09993607294745743,
332
+ "entropy_coef": 0.0,
333
+ "epoch": 0.08,
334
+ "frac_reward_zero_std": 0.0,
335
+ "grad_norm": 0.0016886306693777442,
336
+ "kl": 0.04154293556348421,
337
+ "learning_rate": 4.5e-05,
338
+ "loss": -0.0006,
339
+ "num_tokens": 7625854.0,
340
+ "reward": 0.45166414976119995,
341
+ "reward_std": 0.11566393077373505,
342
+ "rewards/rollout_reward_func/mean": 0.45166411995887756,
343
+ "rewards/rollout_reward_func/std": 0.12983329594135284,
344
+ "sampling/importance_sampling_ratio/max": 2.91072940826416,
345
+ "sampling/importance_sampling_ratio/mean": 0.8330634832382202,
346
+ "sampling/importance_sampling_ratio/min": 0.0,
347
+ "sampling/sampling_logp_difference/max": 1.207571268081665,
348
+ "sampling/sampling_logp_difference/mean": 0.01727946475148201,
349
+ "step": 10,
350
+ "step_time": 402.00677868500134
351
+ },
352
+ {
353
+ "clip_ratio/high_max": 0.0,
354
+ "clip_ratio/high_mean": 0.0,
355
+ "clip_ratio/low_mean": 0.0,
356
+ "clip_ratio/low_min": 0.0,
357
+ "clip_ratio/region_mean": 0.0,
358
+ "completions/clipped_ratio": 0.0,
359
+ "completions/max_length": 13051.0,
360
+ "completions/max_terminated_length": 13051.0,
361
+ "completions/mean_length": 9549.5625,
362
+ "completions/mean_terminated_length": 9549.5625,
363
+ "completions/min_length": 719.0,
364
+ "completions/min_terminated_length": 719.0,
365
+ "entropy": 0.12875660229474306,
366
+ "entropy_coef": 0.0,
367
+ "epoch": 0.088,
368
+ "frac_reward_zero_std": 0.0,
369
+ "grad_norm": 0.0024786307476460934,
370
+ "kl": 0.6567568961181678,
371
+ "learning_rate": 5e-05,
372
+ "loss": -0.0003,
373
+ "num_tokens": 8325218.0,
374
+ "reward": 0.484375,
375
+ "reward_std": 0.15472686290740967,
376
+ "rewards/rollout_reward_func/mean": 0.484375,
377
+ "rewards/rollout_reward_func/std": 0.17398563027381897,
378
+ "sampling/importance_sampling_ratio/max": 2.590374708175659,
379
+ "sampling/importance_sampling_ratio/mean": 0.7271651029586792,
380
+ "sampling/importance_sampling_ratio/min": 0.04650254547595978,
381
+ "sampling/sampling_logp_difference/max": 4.09588098526001,
382
+ "sampling/sampling_logp_difference/mean": 0.027423247694969177,
383
+ "step": 11,
384
+ "step_time": 353.5220473289992
385
+ },
386
+ {
387
+ "clip_ratio/high_max": 0.0,
388
+ "clip_ratio/high_mean": 0.0,
389
+ "clip_ratio/low_mean": 0.0,
390
+ "clip_ratio/low_min": 0.0,
391
+ "clip_ratio/region_mean": 0.0,
392
+ "completions/clipped_ratio": 0.0,
393
+ "completions/max_length": 13703.0,
394
+ "completions/max_terminated_length": 13703.0,
395
+ "completions/mean_length": 10270.046875,
396
+ "completions/mean_terminated_length": 10270.046875,
397
+ "completions/min_length": 719.0,
398
+ "completions/min_terminated_length": 719.0,
399
+ "entropy": 0.11281374213285744,
400
+ "entropy_coef": 0.0,
401
+ "epoch": 0.096,
402
+ "frac_reward_zero_std": 0.0,
403
+ "grad_norm": 0.0019613243639469147,
404
+ "kl": 0.1668396448949352,
405
+ "learning_rate": 4.9993705873562665e-05,
406
+ "loss": -0.0002,
407
+ "num_tokens": 9070689.0,
408
+ "reward": 0.4565548598766327,
409
+ "reward_std": 0.15928751230239868,
410
+ "rewards/rollout_reward_func/mean": 0.4565548598766327,
411
+ "rewards/rollout_reward_func/std": 0.16662633419036865,
412
+ "sampling/importance_sampling_ratio/max": 2.328862428665161,
413
+ "sampling/importance_sampling_ratio/mean": 0.613674521446228,
414
+ "sampling/importance_sampling_ratio/min": 0.0,
415
+ "sampling/sampling_logp_difference/max": 2.092186450958252,
416
+ "sampling/sampling_logp_difference/mean": 0.03719352185726166,
417
+ "step": 12,
418
+ "step_time": 398.0889785930194
419
+ },
420
+ {
421
+ "clip_ratio/high_max": 0.0,
422
+ "clip_ratio/high_mean": 0.0,
423
+ "clip_ratio/low_mean": 0.0,
424
+ "clip_ratio/low_min": 0.0,
425
+ "clip_ratio/region_mean": 0.0,
426
+ "completions/clipped_ratio": 0.0,
427
+ "completions/max_length": 13055.0,
428
+ "completions/max_terminated_length": 13055.0,
429
+ "completions/mean_length": 9641.75,
430
+ "completions/mean_terminated_length": 9641.75,
431
+ "completions/min_length": 719.0,
432
+ "completions/min_terminated_length": 719.0,
433
+ "entropy": 0.11640310334041715,
434
+ "entropy_coef": 0.0,
435
+ "epoch": 0.104,
436
+ "frac_reward_zero_std": 0.0,
437
+ "grad_norm": 0.002055495511740446,
438
+ "kl": 0.21504574117716402,
439
+ "learning_rate": 4.997482666353287e-05,
440
+ "loss": -0.0003,
441
+ "num_tokens": 9775910.0,
442
+ "reward": 0.5212779641151428,
443
+ "reward_std": 0.11651739478111267,
444
+ "rewards/rollout_reward_func/mean": 0.521277904510498,
445
+ "rewards/rollout_reward_func/std": 0.12308106571435928,
446
+ "sampling/importance_sampling_ratio/max": 2.7862865924835205,
447
+ "sampling/importance_sampling_ratio/mean": 0.6013989448547363,
448
+ "sampling/importance_sampling_ratio/min": 0.0,
449
+ "sampling/sampling_logp_difference/max": 2.3904099464416504,
450
+ "sampling/sampling_logp_difference/mean": 0.04289533942937851,
451
+ "step": 13,
452
+ "step_time": 355.11357253499955
453
+ },
454
+ {
455
+ "clip_ratio/high_max": 0.0,
456
+ "clip_ratio/high_mean": 0.0,
457
+ "clip_ratio/low_mean": 0.0,
458
+ "clip_ratio/low_min": 0.0,
459
+ "clip_ratio/region_mean": 0.0,
460
+ "completions/clipped_ratio": 0.0,
461
+ "completions/max_length": 12874.0,
462
+ "completions/max_terminated_length": 12874.0,
463
+ "completions/mean_length": 9287.765625,
464
+ "completions/mean_terminated_length": 9287.765625,
465
+ "completions/min_length": 2078.0,
466
+ "completions/min_terminated_length": 2078.0,
467
+ "entropy": 0.09354806621558964,
468
+ "entropy_coef": 0.0,
469
+ "epoch": 0.112,
470
+ "frac_reward_zero_std": 0.0,
471
+ "grad_norm": 0.002059920458123088,
472
+ "kl": 0.3928783996962011,
473
+ "learning_rate": 4.99433718761614e-05,
474
+ "loss": 0.0008,
475
+ "num_tokens": 10458479.0,
476
+ "reward": 0.4749746024608612,
477
+ "reward_std": 0.14928770065307617,
478
+ "rewards/rollout_reward_func/mean": 0.4749745726585388,
479
+ "rewards/rollout_reward_func/std": 0.1577482968568802,
480
+ "sampling/importance_sampling_ratio/max": 2.910019636154175,
481
+ "sampling/importance_sampling_ratio/mean": 0.5856822729110718,
482
+ "sampling/importance_sampling_ratio/min": 0.0,
483
+ "sampling/sampling_logp_difference/max": 2.615520477294922,
484
+ "sampling/sampling_logp_difference/mean": 0.0484314039349556,
485
+ "step": 14,
486
+ "step_time": 342.2777720679951
487
+ },
488
+ {
489
+ "clip_ratio/high_max": 0.0,
490
+ "clip_ratio/high_mean": 0.0,
491
+ "clip_ratio/low_mean": 0.0,
492
+ "clip_ratio/low_min": 0.0,
493
+ "clip_ratio/region_mean": 0.0,
494
+ "completions/clipped_ratio": 0.0,
495
+ "completions/max_length": 12873.0,
496
+ "completions/max_terminated_length": 12873.0,
497
+ "completions/mean_length": 9192.765625,
498
+ "completions/mean_terminated_length": 9192.765625,
499
+ "completions/min_length": 2511.0,
500
+ "completions/min_terminated_length": 2511.0,
501
+ "entropy": 0.10234270629007369,
502
+ "entropy_coef": 0.0,
503
+ "epoch": 0.12,
504
+ "frac_reward_zero_std": 0.0,
505
+ "grad_norm": 0.001562145072966814,
506
+ "kl": 0.46884868759661913,
507
+ "learning_rate": 4.989935734988098e-05,
508
+ "loss": -0.001,
509
+ "num_tokens": 11134968.0,
510
+ "reward": 0.47834092378616333,
511
+ "reward_std": 0.20473650097846985,
512
+ "rewards/rollout_reward_func/mean": 0.4783409535884857,
513
+ "rewards/rollout_reward_func/std": 0.21613216400146484,
514
+ "sampling/importance_sampling_ratio/max": 2.6594529151916504,
515
+ "sampling/importance_sampling_ratio/mean": 0.41310715675354004,
516
+ "sampling/importance_sampling_ratio/min": 0.0,
517
+ "sampling/sampling_logp_difference/max": 3.219956874847412,
518
+ "sampling/sampling_logp_difference/mean": 0.048287905752658844,
519
+ "step": 15,
520
+ "step_time": 343.14073388700854
521
+ },
522
+ {
523
+ "clip_ratio/high_max": 0.0,
524
+ "clip_ratio/high_mean": 0.0,
525
+ "clip_ratio/low_mean": 0.0,
526
+ "clip_ratio/low_min": 0.0,
527
+ "clip_ratio/region_mean": 0.0,
528
+ "completions/clipped_ratio": 0.0,
529
+ "completions/max_length": 13587.0,
530
+ "completions/max_terminated_length": 13587.0,
531
+ "completions/mean_length": 9820.171875,
532
+ "completions/mean_terminated_length": 9820.171875,
533
+ "completions/min_length": 1610.0,
534
+ "completions/min_terminated_length": 1610.0,
535
+ "entropy": 0.07637563062598929,
536
+ "entropy_coef": 0.0,
537
+ "epoch": 0.128,
538
+ "frac_reward_zero_std": 0.0,
539
+ "grad_norm": 0.0014081181725487113,
540
+ "kl": 0.5253973896615207,
541
+ "learning_rate": 4.984280524733107e-05,
542
+ "loss": 0.0009,
543
+ "num_tokens": 11851606.0,
544
+ "reward": 0.4669080376625061,
545
+ "reward_std": 0.16970327496528625,
546
+ "rewards/rollout_reward_func/mean": 0.4669080376625061,
547
+ "rewards/rollout_reward_func/std": 0.18203474581241608,
548
+ "sampling/importance_sampling_ratio/max": 2.6464877128601074,
549
+ "sampling/importance_sampling_ratio/mean": 0.42757683992385864,
550
+ "sampling/importance_sampling_ratio/min": 0.0,
551
+ "sampling/sampling_logp_difference/max": 3.4184396266937256,
552
+ "sampling/sampling_logp_difference/mean": 0.05157862976193428,
553
+ "step": 16,
554
+ "step_time": 396.9229961370147
555
+ },
556
+ {
557
+ "clip_ratio/high_max": 0.0,
558
+ "clip_ratio/high_mean": 0.0,
559
+ "clip_ratio/low_mean": 0.0,
560
+ "clip_ratio/low_min": 0.0,
561
+ "clip_ratio/region_mean": 0.0,
562
+ "completions/clipped_ratio": 0.0,
563
+ "completions/max_length": 13344.0,
564
+ "completions/max_terminated_length": 13344.0,
565
+ "completions/mean_length": 9705.078125,
566
+ "completions/mean_terminated_length": 9705.078125,
567
+ "completions/min_length": 1775.0,
568
+ "completions/min_terminated_length": 1775.0,
569
+ "entropy": 0.0787596819573082,
570
+ "entropy_coef": 0.0,
571
+ "epoch": 0.136,
572
+ "frac_reward_zero_std": 0.0,
573
+ "grad_norm": 0.002201282186433673,
574
+ "kl": 1.0770335551351309,
575
+ "learning_rate": 4.977374404419837e-05,
576
+ "loss": 0.0005,
577
+ "num_tokens": 12560950.0,
578
+ "reward": 0.45121949911117554,
579
+ "reward_std": 0.1931411623954773,
580
+ "rewards/rollout_reward_func/mean": 0.45121949911117554,
581
+ "rewards/rollout_reward_func/std": 0.20218977332115173,
582
+ "sampling/importance_sampling_ratio/max": 2.4217517375946045,
583
+ "sampling/importance_sampling_ratio/mean": 0.323289692401886,
584
+ "sampling/importance_sampling_ratio/min": 0.0,
585
+ "sampling/sampling_logp_difference/max": 4.4853291511535645,
586
+ "sampling/sampling_logp_difference/mean": 0.05606035888195038,
587
+ "step": 17,
588
+ "step_time": 353.7365334869828
589
+ },
590
+ {
591
+ "clip_ratio/high_max": 0.0,
592
+ "clip_ratio/high_mean": 0.0,
593
+ "clip_ratio/low_mean": 0.0,
594
+ "clip_ratio/low_min": 0.0,
595
+ "clip_ratio/region_mean": 0.0,
596
+ "completions/clipped_ratio": 0.0,
597
+ "completions/max_length": 13080.0,
598
+ "completions/max_terminated_length": 13080.0,
599
+ "completions/mean_length": 9940.984375,
600
+ "completions/mean_terminated_length": 9940.984375,
601
+ "completions/min_length": 1573.0,
602
+ "completions/min_terminated_length": 1573.0,
603
+ "entropy": 0.0706537936348468,
604
+ "entropy_coef": 0.0,
605
+ "epoch": 0.144,
606
+ "frac_reward_zero_std": 0.125,
607
+ "grad_norm": 0.00127311609685421,
608
+ "kl": 1.074245144147426,
609
+ "learning_rate": 4.9692208514878444e-05,
610
+ "loss": 0.0003,
611
+ "num_tokens": 13285361.0,
612
+ "reward": 0.5094004273414612,
613
+ "reward_std": 0.1258074939250946,
614
+ "rewards/rollout_reward_func/mean": 0.5094004273414612,
615
+ "rewards/rollout_reward_func/std": 0.14773620665073395,
616
+ "sampling/importance_sampling_ratio/max": 2.550330877304077,
617
+ "sampling/importance_sampling_ratio/mean": 0.3870943784713745,
618
+ "sampling/importance_sampling_ratio/min": 0.0,
619
+ "sampling/sampling_logp_difference/max": 4.773349285125732,
620
+ "sampling/sampling_logp_difference/mean": 0.04682622849941254,
621
+ "step": 18,
622
+ "step_time": 394.8992864859938
623
+ },
624
+ {
625
+ "clip_ratio/high_max": 0.0,
626
+ "clip_ratio/high_mean": 0.0,
627
+ "clip_ratio/low_mean": 0.0,
628
+ "clip_ratio/low_min": 0.0,
629
+ "clip_ratio/region_mean": 0.0,
630
+ "completions/clipped_ratio": 0.0,
631
+ "completions/max_length": 13099.0,
632
+ "completions/max_terminated_length": 13099.0,
633
+ "completions/mean_length": 10172.84375,
634
+ "completions/mean_terminated_length": 10172.84375,
635
+ "completions/min_length": 2883.0,
636
+ "completions/min_terminated_length": 2883.0,
637
+ "entropy": 0.05523581040324643,
638
+ "entropy_coef": 0.0,
639
+ "epoch": 0.152,
640
+ "frac_reward_zero_std": 0.0,
641
+ "grad_norm": 0.0009980269242078066,
642
+ "kl": 1.556106400792487,
643
+ "learning_rate": 4.959823971496574e-05,
644
+ "loss": 0.0002,
645
+ "num_tokens": 14024557.0,
646
+ "reward": 0.490091472864151,
647
+ "reward_std": 0.1906004250049591,
648
+ "rewards/rollout_reward_func/mean": 0.490091472864151,
649
+ "rewards/rollout_reward_func/std": 0.19537031650543213,
650
+ "sampling/importance_sampling_ratio/max": 2.7010316848754883,
651
+ "sampling/importance_sampling_ratio/mean": 0.8369039297103882,
652
+ "sampling/importance_sampling_ratio/min": 0.0,
653
+ "sampling/sampling_logp_difference/max": 5.100252151489258,
654
+ "sampling/sampling_logp_difference/mean": 0.03002854995429516,
655
+ "step": 19,
656
+ "step_time": 374.29255387701414
657
+ },
658
+ {
659
+ "clip_ratio/high_max": 0.0,
660
+ "clip_ratio/high_mean": 0.0,
661
+ "clip_ratio/low_mean": 0.0,
662
+ "clip_ratio/low_min": 0.0,
663
+ "clip_ratio/region_mean": 0.0,
664
+ "completions/clipped_ratio": 0.0,
665
+ "completions/max_length": 13004.0,
666
+ "completions/max_terminated_length": 13004.0,
667
+ "completions/mean_length": 9749.40625,
668
+ "completions/mean_terminated_length": 9749.40625,
669
+ "completions/min_length": 1111.0,
670
+ "completions/min_terminated_length": 1111.0,
671
+ "entropy": 0.05911207411554642,
672
+ "entropy_coef": 0.0,
673
+ "epoch": 0.16,
674
+ "frac_reward_zero_std": 0.0,
675
+ "grad_norm": 0.0012529586674645543,
676
+ "kl": 0.8538767922436818,
677
+ "learning_rate": 4.9491884960580894e-05,
678
+ "loss": -0.0001,
679
+ "num_tokens": 14736670.0,
680
+ "reward": 0.47643545269966125,
681
+ "reward_std": 0.16854754090309143,
682
+ "rewards/rollout_reward_func/mean": 0.47643545269966125,
683
+ "rewards/rollout_reward_func/std": 0.18441015481948853,
684
+ "sampling/importance_sampling_ratio/max": 2.759192705154419,
685
+ "sampling/importance_sampling_ratio/mean": 0.7963642477989197,
686
+ "sampling/importance_sampling_ratio/min": 0.0,
687
+ "sampling/sampling_logp_difference/max": 4.355607986450195,
688
+ "sampling/sampling_logp_difference/mean": 0.03068174235522747,
689
+ "step": 20,
690
+ "step_time": 381.4224391760108
691
+ },
692
+ {
693
+ "clip_ratio/high_max": 0.0,
694
+ "clip_ratio/high_mean": 0.0,
695
+ "clip_ratio/low_mean": 0.0,
696
+ "clip_ratio/low_min": 0.0,
697
+ "clip_ratio/region_mean": 0.0,
698
+ "completions/clipped_ratio": 0.0,
699
+ "completions/max_length": 13127.0,
700
+ "completions/max_terminated_length": 13127.0,
701
+ "completions/mean_length": 9777.75,
702
+ "completions/mean_terminated_length": 9777.75,
703
+ "completions/min_length": 1896.0,
704
+ "completions/min_terminated_length": 1896.0,
705
+ "entropy": 0.07468510980834253,
706
+ "entropy_coef": 0.0,
707
+ "epoch": 0.168,
708
+ "frac_reward_zero_std": 0.0,
709
+ "grad_norm": 0.0012013373197987676,
710
+ "kl": 1.242337423376739,
711
+ "learning_rate": 4.937319780454559e-05,
712
+ "loss": 0.0004,
713
+ "num_tokens": 15450642.0,
714
+ "reward": 0.4403582215309143,
715
+ "reward_std": 0.19803065061569214,
716
+ "rewards/rollout_reward_func/mean": 0.4403582215309143,
717
+ "rewards/rollout_reward_func/std": 0.20917685329914093,
718
+ "sampling/importance_sampling_ratio/max": 2.555361747741699,
719
+ "sampling/importance_sampling_ratio/mean": 0.7290381193161011,
720
+ "sampling/importance_sampling_ratio/min": 0.0,
721
+ "sampling/sampling_logp_difference/max": 4.490377426147461,
722
+ "sampling/sampling_logp_difference/mean": 0.03049963340163231,
723
+ "step": 21,
724
+ "step_time": 389.80932728299376
725
+ },
726
+ {
727
+ "clip_ratio/high_max": 0.0,
728
+ "clip_ratio/high_mean": 0.0,
729
+ "clip_ratio/low_mean": 0.0,
730
+ "clip_ratio/low_min": 0.0,
731
+ "clip_ratio/region_mean": 0.0,
732
+ "completions/clipped_ratio": 0.0,
733
+ "completions/max_length": 12796.0,
734
+ "completions/max_terminated_length": 12796.0,
735
+ "completions/mean_length": 9893.03125,
736
+ "completions/mean_terminated_length": 9893.03125,
737
+ "completions/min_length": 1111.0,
738
+ "completions/min_terminated_length": 1111.0,
739
+ "entropy": 0.07140124530997127,
740
+ "entropy_coef": 0.0,
741
+ "epoch": 0.176,
742
+ "frac_reward_zero_std": 0.0,
743
+ "grad_norm": 0.002332257106900215,
744
+ "kl": 2.2182735349051654,
745
+ "learning_rate": 4.9242238009417175e-05,
746
+ "loss": 0.0007,
747
+ "num_tokens": 16171940.0,
748
+ "reward": 0.496379554271698,
749
+ "reward_std": 0.15965868532657623,
750
+ "rewards/rollout_reward_func/mean": 0.496379554271698,
751
+ "rewards/rollout_reward_func/std": 0.16256633400917053,
752
+ "sampling/importance_sampling_ratio/max": 2.545015573501587,
753
+ "sampling/importance_sampling_ratio/mean": 0.9110596179962158,
754
+ "sampling/importance_sampling_ratio/min": 0.0,
755
+ "sampling/sampling_logp_difference/max": 3.9573910236358643,
756
+ "sampling/sampling_logp_difference/mean": 0.027391597628593445,
757
+ "step": 22,
758
+ "step_time": 364.39670047000254
759
+ },
760
+ {
761
+ "clip_ratio/high_max": 0.0,
762
+ "clip_ratio/high_mean": 0.0,
763
+ "clip_ratio/low_mean": 0.0,
764
+ "clip_ratio/low_min": 0.0,
765
+ "clip_ratio/region_mean": 0.0,
766
+ "completions/clipped_ratio": 0.0,
767
+ "completions/max_length": 13039.0,
768
+ "completions/max_terminated_length": 13039.0,
769
+ "completions/mean_length": 10120.546875,
770
+ "completions/mean_terminated_length": 10120.546875,
771
+ "completions/min_length": 1647.0,
772
+ "completions/min_terminated_length": 1647.0,
773
+ "entropy": 0.06486033202963881,
774
+ "entropy_coef": 0.0,
775
+ "epoch": 0.184,
776
+ "frac_reward_zero_std": 0.0,
777
+ "grad_norm": 0.0010999701917171478,
778
+ "kl": 1.394440031144768,
779
+ "learning_rate": 4.909907151739633e-05,
780
+ "loss": 0.0015,
781
+ "num_tokens": 16907787.0,
782
+ "reward": 0.505652904510498,
783
+ "reward_std": 0.14424599707126617,
784
+ "rewards/rollout_reward_func/mean": 0.505652904510498,
785
+ "rewards/rollout_reward_func/std": 0.1649918258190155,
786
+ "sampling/importance_sampling_ratio/max": 2.807440996170044,
787
+ "sampling/importance_sampling_ratio/mean": 0.7269971370697021,
788
+ "sampling/importance_sampling_ratio/min": 0.0,
789
+ "sampling/sampling_logp_difference/max": 3.6960678100585938,
790
+ "sampling/sampling_logp_difference/mean": 0.02602636069059372,
791
+ "step": 23,
792
+ "step_time": 374.75749211900256
793
+ },
794
+ {
795
+ "clip_ratio/high_max": 0.0,
796
+ "clip_ratio/high_mean": 0.0,
797
+ "clip_ratio/low_mean": 0.0,
798
+ "clip_ratio/low_min": 0.0,
799
+ "clip_ratio/region_mean": 0.0,
800
+ "completions/clipped_ratio": 0.0,
801
+ "completions/max_length": 13002.0,
802
+ "completions/max_terminated_length": 13002.0,
803
+ "completions/mean_length": 9910.671875,
804
+ "completions/mean_terminated_length": 9910.671875,
805
+ "completions/min_length": 1610.0,
806
+ "completions/min_terminated_length": 1610.0,
807
+ "entropy": 0.06275119003839791,
808
+ "entropy_coef": 0.0,
809
+ "epoch": 0.192,
810
+ "frac_reward_zero_std": 0.0,
811
+ "grad_norm": 0.001278650714084506,
812
+ "kl": 0.7546773445792496,
813
+ "learning_rate": 4.894377041712326e-05,
814
+ "loss": -0.0008,
815
+ "num_tokens": 17630238.0,
816
+ "reward": 0.48246949911117554,
817
+ "reward_std": 0.1592307835817337,
818
+ "rewards/rollout_reward_func/mean": 0.48246949911117554,
819
+ "rewards/rollout_reward_func/std": 0.17301152646541595,
820
+ "sampling/importance_sampling_ratio/max": 2.8622214794158936,
821
+ "sampling/importance_sampling_ratio/mean": 0.8591904640197754,
822
+ "sampling/importance_sampling_ratio/min": 0.0,
823
+ "sampling/sampling_logp_difference/max": 3.1841201782226562,
824
+ "sampling/sampling_logp_difference/mean": 0.022091040387749672,
825
+ "step": 24,
826
+ "step_time": 372.8908872009961
827
+ },
828
+ {
829
+ "clip_ratio/high_max": 0.0,
830
+ "clip_ratio/high_mean": 0.0,
831
+ "clip_ratio/low_mean": 0.0,
832
+ "clip_ratio/low_min": 0.0,
833
+ "clip_ratio/region_mean": 0.0,
834
+ "completions/clipped_ratio": 0.0,
835
+ "completions/max_length": 12834.0,
836
+ "completions/max_terminated_length": 12834.0,
837
+ "completions/mean_length": 10173.203125,
838
+ "completions/mean_terminated_length": 10173.203125,
839
+ "completions/min_length": 1608.0,
840
+ "completions/min_terminated_length": 1608.0,
841
+ "entropy": 0.07686922722496092,
842
+ "entropy_coef": 0.0,
843
+ "epoch": 0.2,
844
+ "frac_reward_zero_std": 0.0,
845
+ "grad_norm": 0.0015223976224660873,
846
+ "kl": 0.877128595719114,
847
+ "learning_rate": 4.877641290737884e-05,
848
+ "loss": 0.0002,
849
+ "num_tokens": 18369512.0,
850
+ "reward": 0.4945376217365265,
851
+ "reward_std": 0.16356924176216125,
852
+ "rewards/rollout_reward_func/mean": 0.4945376217365265,
853
+ "rewards/rollout_reward_func/std": 0.18861785531044006,
854
+ "sampling/importance_sampling_ratio/max": 2.6804065704345703,
855
+ "sampling/importance_sampling_ratio/mean": 0.7985608577728271,
856
+ "sampling/importance_sampling_ratio/min": 0.0,
857
+ "sampling/sampling_logp_difference/max": 3.0979413986206055,
858
+ "sampling/sampling_logp_difference/mean": 0.026707641780376434,
859
+ "step": 25,
860
+ "step_time": 364.42946227099674
861
+ },
862
+ {
863
+ "clip_ratio/high_max": 0.0,
864
+ "clip_ratio/high_mean": 0.0,
865
+ "clip_ratio/low_mean": 0.0,
866
+ "clip_ratio/low_min": 0.0,
867
+ "clip_ratio/region_mean": 0.0,
868
+ "completions/clipped_ratio": 0.0,
869
+ "completions/max_length": 13181.0,
870
+ "completions/max_terminated_length": 13181.0,
871
+ "completions/mean_length": 9749.40625,
872
+ "completions/mean_terminated_length": 9749.40625,
873
+ "completions/min_length": 853.0,
874
+ "completions/min_terminated_length": 853.0,
875
+ "entropy": 0.06832661264343187,
876
+ "entropy_coef": 0.0,
877
+ "epoch": 0.208,
878
+ "frac_reward_zero_std": 0.0,
879
+ "grad_norm": 0.0015322708059102297,
880
+ "kl": 0.46509682456962764,
881
+ "learning_rate": 4.8597083257709194e-05,
882
+ "loss": -0.0002,
883
+ "num_tokens": 19081648.0,
884
+ "reward": 0.49441057443618774,
885
+ "reward_std": 0.18179240822792053,
886
+ "rewards/rollout_reward_func/mean": 0.49441057443618774,
887
+ "rewards/rollout_reward_func/std": 0.18232794106006622,
888
+ "sampling/importance_sampling_ratio/max": 2.881192922592163,
889
+ "sampling/importance_sampling_ratio/mean": 1.0163828134536743,
890
+ "sampling/importance_sampling_ratio/min": 0.00665374007076025,
891
+ "sampling/sampling_logp_difference/max": 2.764418125152588,
892
+ "sampling/sampling_logp_difference/mean": 0.023010242730379105,
893
+ "step": 26,
894
+ "step_time": 358.2818147809994
895
+ },
896
+ {
897
+ "clip_ratio/high_max": 0.0,
898
+ "clip_ratio/high_mean": 0.0,
899
+ "clip_ratio/low_mean": 0.0,
900
+ "clip_ratio/low_min": 0.0,
901
+ "clip_ratio/region_mean": 0.0,
902
+ "completions/clipped_ratio": 0.0,
903
+ "completions/max_length": 12754.0,
904
+ "completions/max_terminated_length": 12754.0,
905
+ "completions/mean_length": 9205.0625,
906
+ "completions/mean_terminated_length": 9205.0625,
907
+ "completions/min_length": 1610.0,
908
+ "completions/min_terminated_length": 1610.0,
909
+ "entropy": 0.06990361056523398,
910
+ "entropy_coef": 0.0,
911
+ "epoch": 0.216,
912
+ "frac_reward_zero_std": 0.0,
913
+ "grad_norm": 0.0027826179284602404,
914
+ "kl": 1.5194457024335861,
915
+ "learning_rate": 4.8405871765993433e-05,
916
+ "loss": 0.0018,
917
+ "num_tokens": 19758922.0,
918
+ "reward": 0.46189022064208984,
919
+ "reward_std": 0.19141118228435516,
920
+ "rewards/rollout_reward_func/mean": 0.46189022064208984,
921
+ "rewards/rollout_reward_func/std": 0.1960212141275406,
922
+ "sampling/importance_sampling_ratio/max": 2.8206145763397217,
923
+ "sampling/importance_sampling_ratio/mean": 0.9819065928459167,
924
+ "sampling/importance_sampling_ratio/min": 0.0,
925
+ "sampling/sampling_logp_difference/max": 3.034514904022217,
926
+ "sampling/sampling_logp_difference/mean": 0.02407623454928398,
927
+ "step": 27,
928
+ "step_time": 306.413788476988
929
+ },
930
+ {
931
+ "clip_ratio/high_max": 0.0,
932
+ "clip_ratio/high_mean": 0.0,
933
+ "clip_ratio/low_mean": 0.0,
934
+ "clip_ratio/low_min": 0.0,
935
+ "clip_ratio/region_mean": 0.0,
936
+ "completions/clipped_ratio": 0.0,
937
+ "completions/max_length": 13168.0,
938
+ "completions/max_terminated_length": 13168.0,
939
+ "completions/mean_length": 9999.71875,
940
+ "completions/mean_terminated_length": 9999.71875,
941
+ "completions/min_length": 1762.0,
942
+ "completions/min_terminated_length": 1762.0,
943
+ "entropy": 0.05708059179596603,
944
+ "entropy_coef": 0.0,
945
+ "epoch": 0.224,
946
+ "frac_reward_zero_std": 0.0,
947
+ "grad_norm": 0.0010685404995456338,
948
+ "kl": 0.282889605499804,
949
+ "learning_rate": 4.820287471297598e-05,
950
+ "loss": 0.0007,
951
+ "num_tokens": 20487054.0,
952
+ "reward": 0.5020325183868408,
953
+ "reward_std": 0.1437004655599594,
954
+ "rewards/rollout_reward_func/mean": 0.5020325183868408,
955
+ "rewards/rollout_reward_func/std": 0.17266875505447388,
956
+ "sampling/importance_sampling_ratio/max": 2.0492498874664307,
957
+ "sampling/importance_sampling_ratio/mean": 0.9320096373558044,
958
+ "sampling/importance_sampling_ratio/min": 0.0,
959
+ "sampling/sampling_logp_difference/max": 2.222120523452759,
960
+ "sampling/sampling_logp_difference/mean": 0.018346276134252548,
961
+ "step": 28,
962
+ "step_time": 398.52673317801236
963
+ },
964
+ {
965
+ "clip_ratio/high_max": 0.0,
966
+ "clip_ratio/high_mean": 0.0,
967
+ "clip_ratio/low_mean": 0.0,
968
+ "clip_ratio/low_min": 0.0,
969
+ "clip_ratio/region_mean": 0.0,
970
+ "completions/clipped_ratio": 0.0,
971
+ "completions/max_length": 13135.0,
972
+ "completions/max_terminated_length": 13135.0,
973
+ "completions/mean_length": 9761.328125,
974
+ "completions/mean_terminated_length": 9761.328125,
975
+ "completions/min_length": 2883.0,
976
+ "completions/min_terminated_length": 2883.0,
977
+ "entropy": 0.05939400102943182,
978
+ "entropy_coef": 0.0,
979
+ "epoch": 0.232,
980
+ "frac_reward_zero_std": 0.0,
981
+ "grad_norm": 0.0010447653476148844,
982
+ "kl": 0.31791376252658665,
983
+ "learning_rate": 4.7988194313786275e-05,
984
+ "loss": 0.001,
985
+ "num_tokens": 21199933.0,
986
+ "reward": 0.5152438879013062,
987
+ "reward_std": 0.14230889081954956,
988
+ "rewards/rollout_reward_func/mean": 0.5152438879013062,
989
+ "rewards/rollout_reward_func/std": 0.15077663958072662,
990
+ "sampling/importance_sampling_ratio/max": 2.9392683506011963,
991
+ "sampling/importance_sampling_ratio/mean": 1.0338009595870972,
992
+ "sampling/importance_sampling_ratio/min": 0.0,
993
+ "sampling/sampling_logp_difference/max": 2.0166945457458496,
994
+ "sampling/sampling_logp_difference/mean": 0.021359127014875412,
995
+ "step": 29,
996
+ "step_time": 391.01258862700706
997
+ },
998
+ {
999
+ "clip_ratio/high_max": 0.0,
1000
+ "clip_ratio/high_mean": 0.0,
1001
+ "clip_ratio/low_mean": 0.0,
1002
+ "clip_ratio/low_min": 0.0,
1003
+ "clip_ratio/region_mean": 0.0,
1004
+ "completions/clipped_ratio": 0.0,
1005
+ "completions/max_length": 13102.0,
1006
+ "completions/max_terminated_length": 13102.0,
1007
+ "completions/mean_length": 9552.609375,
1008
+ "completions/mean_terminated_length": 9552.609375,
1009
+ "completions/min_length": 1309.0,
1010
+ "completions/min_terminated_length": 1309.0,
1011
+ "entropy": 0.0811827052384615,
1012
+ "entropy_coef": 0.0,
1013
+ "epoch": 0.24,
1014
+ "frac_reward_zero_std": 0.0,
1015
+ "grad_norm": 0.001120033790357411,
1016
+ "kl": 0.31419833935797215,
1017
+ "learning_rate": 4.7761938666470403e-05,
1018
+ "loss": -0.0003,
1019
+ "num_tokens": 21899437.0,
1020
+ "reward": 0.48704272508621216,
1021
+ "reward_std": 0.18918150663375854,
1022
+ "rewards/rollout_reward_func/mean": 0.48704269528388977,
1023
+ "rewards/rollout_reward_func/std": 0.21580280363559723,
1024
+ "sampling/importance_sampling_ratio/max": 2.623403787612915,
1025
+ "sampling/importance_sampling_ratio/mean": 0.9664048552513123,
1026
+ "sampling/importance_sampling_ratio/min": 0.0,
1027
+ "sampling/sampling_logp_difference/max": 1.711261510848999,
1028
+ "sampling/sampling_logp_difference/mean": 0.023390088230371475,
1029
+ "step": 30,
1030
+ "step_time": 364.23525506400256
1031
+ },
1032
+ {
1033
+ "clip_ratio/high_max": 0.0,
1034
+ "clip_ratio/high_mean": 0.0,
1035
+ "clip_ratio/low_mean": 0.0,
1036
+ "clip_ratio/low_min": 0.0,
1037
+ "clip_ratio/region_mean": 0.0,
1038
+ "completions/clipped_ratio": 0.0,
1039
+ "completions/max_length": 13239.0,
1040
+ "completions/max_terminated_length": 13239.0,
1041
+ "completions/mean_length": 9518.046875,
1042
+ "completions/mean_terminated_length": 9518.046875,
1043
+ "completions/min_length": 1715.0,
1044
+ "completions/min_terminated_length": 1715.0,
1045
+ "entropy": 0.07795467146206647,
1046
+ "entropy_coef": 0.0,
1047
+ "epoch": 0.248,
1048
+ "frac_reward_zero_std": 0.0,
1049
+ "grad_norm": 0.0009348656749352813,
1050
+ "kl": 0.2934442877303809,
1051
+ "learning_rate": 4.752422169756048e-05,
1052
+ "loss": -0.0003,
1053
+ "num_tokens": 22596767.0,
1054
+ "reward": 0.486915647983551,
1055
+ "reward_std": 0.17420141398906708,
1056
+ "rewards/rollout_reward_func/mean": 0.486915647983551,
1057
+ "rewards/rollout_reward_func/std": 0.18192607164382935,
1058
+ "sampling/importance_sampling_ratio/max": 2.9778666496276855,
1059
+ "sampling/importance_sampling_ratio/mean": 0.7831465005874634,
1060
+ "sampling/importance_sampling_ratio/min": 0.0,
1061
+ "sampling/sampling_logp_difference/max": 1.716047763824463,
1062
+ "sampling/sampling_logp_difference/mean": 0.02212054654955864,
1063
+ "step": 31,
1064
+ "step_time": 324.7874896839894
1065
+ },
1066
+ {
1067
+ "clip_ratio/high_max": 0.0,
1068
+ "clip_ratio/high_mean": 0.0,
1069
+ "clip_ratio/low_mean": 0.0,
1070
+ "clip_ratio/low_min": 0.0,
1071
+ "clip_ratio/region_mean": 0.0,
1072
+ "completions/clipped_ratio": 0.0,
1073
+ "completions/max_length": 13100.0,
1074
+ "completions/max_terminated_length": 13100.0,
1075
+ "completions/mean_length": 8842.296875,
1076
+ "completions/mean_terminated_length": 8842.296875,
1077
+ "completions/min_length": 923.0,
1078
+ "completions/min_terminated_length": 923.0,
1079
+ "entropy": 0.09451934858225286,
1080
+ "entropy_coef": 0.0,
1081
+ "epoch": 0.256,
1082
+ "frac_reward_zero_std": 0.0,
1083
+ "grad_norm": 0.0020839308854192495,
1084
+ "kl": 0.2741965055465698,
1085
+ "learning_rate": 4.72751631047092e-05,
1086
+ "loss": 0.0006,
1087
+ "num_tokens": 23250819.0,
1088
+ "reward": 0.4713541865348816,
1089
+ "reward_std": 0.19919437170028687,
1090
+ "rewards/rollout_reward_func/mean": 0.4713541865348816,
1091
+ "rewards/rollout_reward_func/std": 0.20816797018051147,
1092
+ "sampling/importance_sampling_ratio/max": 2.971712589263916,
1093
+ "sampling/importance_sampling_ratio/mean": 0.8163076639175415,
1094
+ "sampling/importance_sampling_ratio/min": 0.0,
1095
+ "sampling/sampling_logp_difference/max": 1.463460922241211,
1096
+ "sampling/sampling_logp_difference/mean": 0.02428533136844635,
1097
+ "step": 32,
1098
+ "step_time": 301.32959323699833
1099
+ },
1100
+ {
1101
+ "clip_ratio/high_max": 0.0,
1102
+ "clip_ratio/high_mean": 0.0,
1103
+ "clip_ratio/low_mean": 0.0,
1104
+ "clip_ratio/low_min": 0.0,
1105
+ "clip_ratio/region_mean": 0.0,
1106
+ "completions/clipped_ratio": 0.0,
1107
+ "completions/max_length": 13018.0,
1108
+ "completions/max_terminated_length": 13018.0,
1109
+ "completions/mean_length": 9688.046875,
1110
+ "completions/mean_terminated_length": 9688.046875,
1111
+ "completions/min_length": 1610.0,
1112
+ "completions/min_terminated_length": 1610.0,
1113
+ "entropy": 0.06784819718450308,
1114
+ "entropy_coef": 0.0,
1115
+ "epoch": 0.264,
1116
+ "frac_reward_zero_std": 0.0,
1117
+ "grad_norm": 0.0010160692036151886,
1118
+ "kl": 0.22403878858312964,
1119
+ "learning_rate": 4.701488829641845e-05,
1120
+ "loss": 0.0005,
1121
+ "num_tokens": 23959024.0,
1122
+ "reward": 0.45814278721809387,
1123
+ "reward_std": 0.1860758662223816,
1124
+ "rewards/rollout_reward_func/mean": 0.4581427574157715,
1125
+ "rewards/rollout_reward_func/std": 0.18770824372768402,
1126
+ "sampling/importance_sampling_ratio/max": 2.892193078994751,
1127
+ "sampling/importance_sampling_ratio/mean": 0.9090664386749268,
1128
+ "sampling/importance_sampling_ratio/min": 0.0,
1129
+ "sampling/sampling_logp_difference/max": 1.1175458431243896,
1130
+ "sampling/sampling_logp_difference/mean": 0.017248015850782394,
1131
+ "step": 33,
1132
+ "step_time": 363.6446917479989
1133
+ },
1134
+ {
1135
+ "clip_ratio/high_max": 0.0,
1136
+ "clip_ratio/high_mean": 0.0,
1137
+ "clip_ratio/low_mean": 0.0,
1138
+ "clip_ratio/low_min": 0.0,
1139
+ "clip_ratio/region_mean": 0.0,
1140
+ "completions/clipped_ratio": 0.0,
1141
+ "completions/max_length": 12912.0,
1142
+ "completions/max_terminated_length": 12912.0,
1143
+ "completions/mean_length": 9307.515625,
1144
+ "completions/mean_terminated_length": 9307.515625,
1145
+ "completions/min_length": 1573.0,
1146
+ "completions/min_terminated_length": 1573.0,
1147
+ "entropy": 0.07968539680587128,
1148
+ "entropy_coef": 0.0,
1149
+ "epoch": 0.272,
1150
+ "frac_reward_zero_std": 0.0,
1151
+ "grad_norm": 0.001094277249649167,
1152
+ "kl": 0.20466217724606395,
1153
+ "learning_rate": 4.674352832889239e-05,
1154
+ "loss": -0.0001,
1155
+ "num_tokens": 24642866.0,
1156
+ "reward": 0.4825965464115143,
1157
+ "reward_std": 0.15372183918952942,
1158
+ "rewards/rollout_reward_func/mean": 0.4825965464115143,
1159
+ "rewards/rollout_reward_func/std": 0.1764485388994217,
1160
+ "sampling/importance_sampling_ratio/max": 2.803072929382324,
1161
+ "sampling/importance_sampling_ratio/mean": 0.8060023784637451,
1162
+ "sampling/importance_sampling_ratio/min": 0.0,
1163
+ "sampling/sampling_logp_difference/max": 1.3913843631744385,
1164
+ "sampling/sampling_logp_difference/mean": 0.01805885136127472,
1165
+ "step": 34,
1166
+ "step_time": 384.2737193219873
1167
+ },
1168
+ {
1169
+ "clip_ratio/high_max": 0.0,
1170
+ "clip_ratio/high_mean": 0.0,
1171
+ "clip_ratio/low_mean": 0.0,
1172
+ "clip_ratio/low_min": 0.0,
1173
+ "clip_ratio/region_mean": 0.0,
1174
+ "completions/clipped_ratio": 0.0,
1175
+ "completions/max_length": 12742.0,
1176
+ "completions/max_terminated_length": 12742.0,
1177
+ "completions/mean_length": 9164.046875,
1178
+ "completions/mean_terminated_length": 9164.046875,
1179
+ "completions/min_length": 1573.0,
1180
+ "completions/min_terminated_length": 1573.0,
1181
+ "entropy": 0.07392796745989472,
1182
+ "entropy_coef": 0.0,
1183
+ "epoch": 0.28,
1184
+ "frac_reward_zero_std": 0.0,
1185
+ "grad_norm": 0.001785751897841692,
1186
+ "kl": 0.2342710008379072,
1187
+ "learning_rate": 4.6461219840046654e-05,
1188
+ "loss": 0.0012,
1189
+ "num_tokens": 25317564.0,
1190
+ "reward": 0.4979674816131592,
1191
+ "reward_std": 0.14169251918792725,
1192
+ "rewards/rollout_reward_func/mean": 0.49796751141548157,
1193
+ "rewards/rollout_reward_func/std": 0.1516612470149994,
1194
+ "sampling/importance_sampling_ratio/max": 2.45219087600708,
1195
+ "sampling/importance_sampling_ratio/mean": 0.8428689241409302,
1196
+ "sampling/importance_sampling_ratio/min": 0.0,
1197
+ "sampling/sampling_logp_difference/max": 1.2448334693908691,
1198
+ "sampling/sampling_logp_difference/mean": 0.018710093572735786,
1199
+ "step": 35,
1200
+ "step_time": 340.3060604020102
1201
+ },
1202
+ {
1203
+ "clip_ratio/high_max": 0.0,
1204
+ "clip_ratio/high_mean": 0.0,
1205
+ "clip_ratio/low_mean": 0.0,
1206
+ "clip_ratio/low_min": 0.0,
1207
+ "clip_ratio/region_mean": 0.0,
1208
+ "completions/clipped_ratio": 0.0,
1209
+ "completions/max_length": 13199.0,
1210
+ "completions/max_terminated_length": 13199.0,
1211
+ "completions/mean_length": 9731.828125,
1212
+ "completions/mean_terminated_length": 9731.828125,
1213
+ "completions/min_length": 1568.0,
1214
+ "completions/min_terminated_length": 1568.0,
1215
+ "entropy": 0.07938047614879906,
1216
+ "entropy_coef": 0.0,
1217
+ "epoch": 0.288,
1218
+ "frac_reward_zero_std": 0.0,
1219
+ "grad_norm": 0.0012413846561685205,
1220
+ "kl": 0.22455687308683991,
1221
+ "learning_rate": 4.6168104980707107e-05,
1222
+ "loss": -0.0002,
1223
+ "num_tokens": 26028572.0,
1224
+ "reward": 0.5096545219421387,
1225
+ "reward_std": 0.15929606556892395,
1226
+ "rewards/rollout_reward_func/mean": 0.5096545219421387,
1227
+ "rewards/rollout_reward_func/std": 0.1680973917245865,
1228
+ "sampling/importance_sampling_ratio/max": 2.904928207397461,
1229
+ "sampling/importance_sampling_ratio/mean": 0.8137651085853577,
1230
+ "sampling/importance_sampling_ratio/min": 0.0,
1231
+ "sampling/sampling_logp_difference/max": 1.7040085792541504,
1232
+ "sampling/sampling_logp_difference/mean": 0.019618798047304153,
1233
+ "step": 36,
1234
+ "step_time": 359.65800347901313
1235
+ },
1236
+ {
1237
+ "clip_ratio/high_max": 0.0,
1238
+ "clip_ratio/high_mean": 0.0,
1239
+ "clip_ratio/low_mean": 0.0,
1240
+ "clip_ratio/low_min": 0.0,
1241
+ "clip_ratio/region_mean": 0.0,
1242
+ "completions/clipped_ratio": 0.0,
1243
+ "completions/max_length": 13435.0,
1244
+ "completions/max_terminated_length": 13435.0,
1245
+ "completions/mean_length": 9510.390625,
1246
+ "completions/mean_terminated_length": 9510.390625,
1247
+ "completions/min_length": 1871.0,
1248
+ "completions/min_terminated_length": 1871.0,
1249
+ "entropy": 0.06718584499321878,
1250
+ "entropy_coef": 0.0,
1251
+ "epoch": 0.296,
1252
+ "frac_reward_zero_std": 0.0,
1253
+ "grad_norm": 0.001623046468012035,
1254
+ "kl": 0.17631925933528692,
1255
+ "learning_rate": 4.586433134303257e-05,
1256
+ "loss": -0.0,
1257
+ "num_tokens": 26725431.0,
1258
+ "reward": 0.4575711190700531,
1259
+ "reward_std": 0.16151607036590576,
1260
+ "rewards/rollout_reward_func/mean": 0.4575710892677307,
1261
+ "rewards/rollout_reward_func/std": 0.17541147768497467,
1262
+ "sampling/importance_sampling_ratio/max": 2.95579195022583,
1263
+ "sampling/importance_sampling_ratio/mean": 0.8782341480255127,
1264
+ "sampling/importance_sampling_ratio/min": 0.09163157641887665,
1265
+ "sampling/sampling_logp_difference/max": 1.2240049839019775,
1266
+ "sampling/sampling_logp_difference/mean": 0.016245806589722633,
1267
+ "step": 37,
1268
+ "step_time": 346.3082054720071
1269
+ },
1270
+ {
1271
+ "clip_ratio/high_max": 0.0,
1272
+ "clip_ratio/high_mean": 0.0,
1273
+ "clip_ratio/low_mean": 0.0,
1274
+ "clip_ratio/low_min": 0.0,
1275
+ "clip_ratio/region_mean": 0.0,
1276
+ "completions/clipped_ratio": 0.0,
1277
+ "completions/max_length": 13317.0,
1278
+ "completions/max_terminated_length": 13317.0,
1279
+ "completions/mean_length": 9323.03125,
1280
+ "completions/mean_terminated_length": 9323.03125,
1281
+ "completions/min_length": 1585.0,
1282
+ "completions/min_terminated_length": 1585.0,
1283
+ "entropy": 0.08643257257062942,
1284
+ "entropy_coef": 0.0,
1285
+ "epoch": 0.304,
1286
+ "frac_reward_zero_std": 0.0,
1287
+ "grad_norm": 0.0014138888800516725,
1288
+ "kl": 1.6542759895091876,
1289
+ "learning_rate": 4.5550051886197754e-05,
1290
+ "loss": 0.0,
1291
+ "num_tokens": 27410267.0,
1292
+ "reward": 0.5043190717697144,
1293
+ "reward_std": 0.18030071258544922,
1294
+ "rewards/rollout_reward_func/mean": 0.5043190717697144,
1295
+ "rewards/rollout_reward_func/std": 0.18206645548343658,
1296
+ "sampling/importance_sampling_ratio/max": 2.4554200172424316,
1297
+ "sampling/importance_sampling_ratio/mean": 0.8837829828262329,
1298
+ "sampling/importance_sampling_ratio/min": 0.0,
1299
+ "sampling/sampling_logp_difference/max": 1.4282722473144531,
1300
+ "sampling/sampling_logp_difference/mean": 0.014789644628763199,
1301
+ "step": 38,
1302
+ "step_time": 312.4482031110092
1303
+ },
1304
+ {
1305
+ "clip_ratio/high_max": 0.0,
1306
+ "clip_ratio/high_mean": 0.0,
1307
+ "clip_ratio/low_mean": 0.0,
1308
+ "clip_ratio/low_min": 0.0,
1309
+ "clip_ratio/region_mean": 0.0,
1310
+ "completions/clipped_ratio": 0.0,
1311
+ "completions/max_length": 13285.0,
1312
+ "completions/max_terminated_length": 13285.0,
1313
+ "completions/mean_length": 9392.359375,
1314
+ "completions/mean_terminated_length": 9392.359375,
1315
+ "completions/min_length": 1573.0,
1316
+ "completions/min_terminated_length": 1573.0,
1317
+ "entropy": 0.08134234859608114,
1318
+ "entropy_coef": 0.0,
1319
+ "epoch": 0.312,
1320
+ "frac_reward_zero_std": 0.0,
1321
+ "grad_norm": 0.0010062410729005933,
1322
+ "kl": 0.16848780505824834,
1323
+ "learning_rate": 4.522542485937369e-05,
1324
+ "loss": 0.0001,
1325
+ "num_tokens": 28099511.0,
1326
+ "reward": 0.45922255516052246,
1327
+ "reward_std": 0.18523773550987244,
1328
+ "rewards/rollout_reward_func/mean": 0.45922255516052246,
1329
+ "rewards/rollout_reward_func/std": 0.19185490906238556,
1330
+ "sampling/importance_sampling_ratio/max": 2.626757860183716,
1331
+ "sampling/importance_sampling_ratio/mean": 0.9128367900848389,
1332
+ "sampling/importance_sampling_ratio/min": 0.10853445529937744,
1333
+ "sampling/sampling_logp_difference/max": 1.026942253112793,
1334
+ "sampling/sampling_logp_difference/mean": 0.011691207997500896,
1335
+ "step": 39,
1336
+ "step_time": 364.69385680200867
1337
+ },
1338
+ {
1339
+ "clip_ratio/high_max": 0.0,
1340
+ "clip_ratio/high_mean": 0.0,
1341
+ "clip_ratio/low_mean": 0.0,
1342
+ "clip_ratio/low_min": 0.0,
1343
+ "clip_ratio/region_mean": 0.0,
1344
+ "completions/clipped_ratio": 0.0,
1345
+ "completions/max_length": 13100.0,
1346
+ "completions/max_terminated_length": 13100.0,
1347
+ "completions/mean_length": 9492.828125,
1348
+ "completions/mean_terminated_length": 9492.828125,
1349
+ "completions/min_length": 2463.0,
1350
+ "completions/min_terminated_length": 2463.0,
1351
+ "entropy": 0.06404159555677325,
1352
+ "entropy_coef": 0.0,
1353
+ "epoch": 0.32,
1354
+ "frac_reward_zero_std": 0.0,
1355
+ "grad_norm": 0.0011103099677711725,
1356
+ "kl": 0.19491628441028297,
1357
+ "learning_rate": 4.489061372204453e-05,
1358
+ "loss": -0.0001,
1359
+ "num_tokens": 28795194.0,
1360
+ "reward": 0.502540647983551,
1361
+ "reward_std": 0.13011972606182098,
1362
+ "rewards/rollout_reward_func/mean": 0.502540647983551,
1363
+ "rewards/rollout_reward_func/std": 0.13680462539196014,
1364
+ "sampling/importance_sampling_ratio/max": 2.2442708015441895,
1365
+ "sampling/importance_sampling_ratio/mean": 1.0401991605758667,
1366
+ "sampling/importance_sampling_ratio/min": 0.0,
1367
+ "sampling/sampling_logp_difference/max": 1.0611882209777832,
1368
+ "sampling/sampling_logp_difference/mean": 0.009191242977976799,
1369
+ "step": 40,
1370
+ "step_time": 319.9884387789898
1371
+ },
1372
+ {
1373
+ "clip_ratio/high_max": 0.0,
1374
+ "clip_ratio/high_mean": 0.0,
1375
+ "clip_ratio/low_mean": 0.0,
1376
+ "clip_ratio/low_min": 0.0,
1377
+ "clip_ratio/region_mean": 0.0,
1378
+ "completions/clipped_ratio": 0.0,
1379
+ "completions/max_length": 12989.0,
1380
+ "completions/max_terminated_length": 12989.0,
1381
+ "completions/mean_length": 10385.203125,
1382
+ "completions/mean_terminated_length": 10385.203125,
1383
+ "completions/min_length": 1585.0,
1384
+ "completions/min_terminated_length": 1585.0,
1385
+ "entropy": 0.06588105659466237,
1386
+ "entropy_coef": 0.0,
1387
+ "epoch": 0.328,
1388
+ "frac_reward_zero_std": 0.0,
1389
+ "grad_norm": 0.0010510468855500221,
1390
+ "kl": 0.14879871532320976,
1391
+ "learning_rate": 4.454578706170075e-05,
1392
+ "loss": -0.0005,
1393
+ "num_tokens": 29548011.0,
1394
+ "reward": 0.4731326103210449,
1395
+ "reward_std": 0.15433314442634583,
1396
+ "rewards/rollout_reward_func/mean": 0.4731326401233673,
1397
+ "rewards/rollout_reward_func/std": 0.15910819172859192,
1398
+ "sampling/importance_sampling_ratio/max": 2.14011549949646,
1399
+ "sampling/importance_sampling_ratio/mean": 0.9163148999214172,
1400
+ "sampling/importance_sampling_ratio/min": 0.15502336621284485,
1401
+ "sampling/sampling_logp_difference/max": 1.5714077949523926,
1402
+ "sampling/sampling_logp_difference/mean": 0.010027511045336723,
1403
+ "step": 41,
1404
+ "step_time": 387.281023139989
1405
+ },
1406
+ {
1407
+ "clip_ratio/high_max": 0.0,
1408
+ "clip_ratio/high_mean": 0.0,
1409
+ "clip_ratio/low_mean": 0.0,
1410
+ "clip_ratio/low_min": 0.0,
1411
+ "clip_ratio/region_mean": 0.0,
1412
+ "completions/clipped_ratio": 0.0,
1413
+ "completions/max_length": 13102.0,
1414
+ "completions/max_terminated_length": 13102.0,
1415
+ "completions/mean_length": 9824.234375,
1416
+ "completions/mean_terminated_length": 9824.234375,
1417
+ "completions/min_length": 2758.0,
1418
+ "completions/min_terminated_length": 2758.0,
1419
+ "entropy": 0.06455459049902856,
1420
+ "entropy_coef": 0.0,
1421
+ "epoch": 0.336,
1422
+ "frac_reward_zero_std": 0.0,
1423
+ "grad_norm": 0.001499584293924272,
1424
+ "kl": 0.24045639648102224,
1425
+ "learning_rate": 4.419111850895028e-05,
1426
+ "loss": 0.0002,
1427
+ "num_tokens": 30264940.0,
1428
+ "reward": 0.5022231340408325,
1429
+ "reward_std": 0.17838025093078613,
1430
+ "rewards/rollout_reward_func/mean": 0.5022230744361877,
1431
+ "rewards/rollout_reward_func/std": 0.18700861930847168,
1432
+ "sampling/importance_sampling_ratio/max": 2.237030267715454,
1433
+ "sampling/importance_sampling_ratio/mean": 1.0402405261993408,
1434
+ "sampling/importance_sampling_ratio/min": 0.13398416340351105,
1435
+ "sampling/sampling_logp_difference/max": 1.4097251892089844,
1436
+ "sampling/sampling_logp_difference/mean": 0.009423084557056427,
1437
+ "step": 42,
1438
+ "step_time": 366.96860560299683
1439
+ },
1440
+ {
1441
+ "clip_ratio/high_max": 0.0,
1442
+ "clip_ratio/high_mean": 0.0,
1443
+ "clip_ratio/low_mean": 0.0,
1444
+ "clip_ratio/low_min": 0.0,
1445
+ "clip_ratio/region_mean": 0.0,
1446
+ "completions/clipped_ratio": 0.0,
1447
+ "completions/max_length": 13189.0,
1448
+ "completions/max_terminated_length": 13189.0,
1449
+ "completions/mean_length": 9452.078125,
1450
+ "completions/mean_terminated_length": 9452.078125,
1451
+ "completions/min_length": 2021.0,
1452
+ "completions/min_terminated_length": 2021.0,
1453
+ "entropy": 0.05752336164005101,
1454
+ "entropy_coef": 0.0,
1455
+ "epoch": 0.344,
1456
+ "frac_reward_zero_std": 0.0,
1457
+ "grad_norm": 0.0007535020122304559,
1458
+ "kl": 0.20199793518986553,
1459
+ "learning_rate": 4.382678665009028e-05,
1460
+ "loss": -0.0005,
1461
+ "num_tokens": 30958043.0,
1462
+ "reward": 0.4890751838684082,
1463
+ "reward_std": 0.13210362195968628,
1464
+ "rewards/rollout_reward_func/mean": 0.4890752136707306,
1465
+ "rewards/rollout_reward_func/std": 0.12995396554470062,
1466
+ "sampling/importance_sampling_ratio/max": 2.0654714107513428,
1467
+ "sampling/importance_sampling_ratio/mean": 0.9784522652626038,
1468
+ "sampling/importance_sampling_ratio/min": 0.19718143343925476,
1469
+ "sampling/sampling_logp_difference/max": 1.0663046836853027,
1470
+ "sampling/sampling_logp_difference/mean": 0.009443823248147964,
1471
+ "step": 43,
1472
+ "step_time": 348.6768746880007
1473
+ },
1474
+ {
1475
+ "clip_ratio/high_max": 0.0,
1476
+ "clip_ratio/high_mean": 0.0,
1477
+ "clip_ratio/low_mean": 0.0,
1478
+ "clip_ratio/low_min": 0.0,
1479
+ "clip_ratio/region_mean": 0.0,
1480
+ "completions/clipped_ratio": 0.0,
1481
+ "completions/max_length": 12969.0,
1482
+ "completions/max_terminated_length": 12969.0,
1483
+ "completions/mean_length": 8690.15625,
1484
+ "completions/mean_terminated_length": 8690.15625,
1485
+ "completions/min_length": 2021.0,
1486
+ "completions/min_terminated_length": 2021.0,
1487
+ "entropy": 0.06392844475340098,
1488
+ "entropy_coef": 0.0,
1489
+ "epoch": 0.352,
1490
+ "frac_reward_zero_std": 0.0,
1491
+ "grad_norm": 0.000939807272516191,
1492
+ "kl": 0.20811709202826023,
1493
+ "learning_rate": 4.345297493718352e-05,
1494
+ "loss": 0.0007,
1495
+ "num_tokens": 31602355.0,
1496
+ "reward": 0.5078759789466858,
1497
+ "reward_std": 0.14484748244285583,
1498
+ "rewards/rollout_reward_func/mean": 0.5078760385513306,
1499
+ "rewards/rollout_reward_func/std": 0.15699100494384766,
1500
+ "sampling/importance_sampling_ratio/max": 1.8808362483978271,
1501
+ "sampling/importance_sampling_ratio/mean": 0.958338737487793,
1502
+ "sampling/importance_sampling_ratio/min": 0.24530132114887238,
1503
+ "sampling/sampling_logp_difference/max": 1.172243356704712,
1504
+ "sampling/sampling_logp_difference/mean": 0.010118678212165833,
1505
+ "step": 44,
1506
+ "step_time": 294.45925343699855
1507
+ },
1508
+ {
1509
+ "clip_ratio/high_max": 0.0,
1510
+ "clip_ratio/high_mean": 0.0,
1511
+ "clip_ratio/low_mean": 0.0,
1512
+ "clip_ratio/low_min": 0.0,
1513
+ "clip_ratio/region_mean": 0.0,
1514
+ "completions/clipped_ratio": 0.0,
1515
+ "completions/max_length": 13480.0,
1516
+ "completions/max_terminated_length": 13480.0,
1517
+ "completions/mean_length": 9463.8125,
1518
+ "completions/mean_terminated_length": 9463.8125,
1519
+ "completions/min_length": 1105.0,
1520
+ "completions/min_terminated_length": 1105.0,
1521
+ "entropy": 0.06546791677828878,
1522
+ "entropy_coef": 0.0,
1523
+ "epoch": 0.36,
1524
+ "frac_reward_zero_std": 0.0,
1525
+ "grad_norm": 0.0015216919127851725,
1526
+ "kl": 0.21549670724198222,
1527
+ "learning_rate": 4.306987159568479e-05,
1528
+ "loss": -0.0005,
1529
+ "num_tokens": 32296199.0,
1530
+ "reward": 0.5153074264526367,
1531
+ "reward_std": 0.1443723887205124,
1532
+ "rewards/rollout_reward_func/mean": 0.5153074264526367,
1533
+ "rewards/rollout_reward_func/std": 0.15605571866035461,
1534
+ "sampling/importance_sampling_ratio/max": 2.6757376194000244,
1535
+ "sampling/importance_sampling_ratio/mean": 0.9628036618232727,
1536
+ "sampling/importance_sampling_ratio/min": 0.0,
1537
+ "sampling/sampling_logp_difference/max": 1.513486385345459,
1538
+ "sampling/sampling_logp_difference/mean": 0.010737458243966103,
1539
+ "step": 45,
1540
+ "step_time": 368.9834904680065
1541
+ },
1542
+ {
1543
+ "clip_ratio/high_max": 0.0,
1544
+ "clip_ratio/high_mean": 0.0,
1545
+ "clip_ratio/low_mean": 0.0,
1546
+ "clip_ratio/low_min": 0.0,
1547
+ "clip_ratio/region_mean": 0.0,
1548
+ "completions/clipped_ratio": 0.0,
1549
+ "completions/max_length": 12785.0,
1550
+ "completions/max_terminated_length": 12785.0,
1551
+ "completions/mean_length": 9688.34375,
1552
+ "completions/mean_terminated_length": 9688.34375,
1553
+ "completions/min_length": 2439.0,
1554
+ "completions/min_terminated_length": 2439.0,
1555
+ "entropy": 0.059927691356278956,
1556
+ "entropy_coef": 0.0,
1557
+ "epoch": 0.368,
1558
+ "frac_reward_zero_std": 0.0,
1559
+ "grad_norm": 0.0016255854861810803,
1560
+ "kl": 0.2826152049237862,
1561
+ "learning_rate": 4.267766952966369e-05,
1562
+ "loss": 0.0004,
1563
+ "num_tokens": 33004380.0,
1564
+ "reward": 0.45795223116874695,
1565
+ "reward_std": 0.1743166744709015,
1566
+ "rewards/rollout_reward_func/mean": 0.45795223116874695,
1567
+ "rewards/rollout_reward_func/std": 0.17364610731601715,
1568
+ "sampling/importance_sampling_ratio/max": 2.451289653778076,
1569
+ "sampling/importance_sampling_ratio/mean": 0.9403718113899231,
1570
+ "sampling/importance_sampling_ratio/min": 0.17600557208061218,
1571
+ "sampling/sampling_logp_difference/max": 1.354806900024414,
1572
+ "sampling/sampling_logp_difference/mean": 0.011254062876105309,
1573
+ "step": 46,
1574
+ "step_time": 342.62512065299234
1575
+ },
1576
+ {
1577
+ "clip_ratio/high_max": 0.0,
1578
+ "clip_ratio/high_mean": 0.0,
1579
+ "clip_ratio/low_mean": 0.0,
1580
+ "clip_ratio/low_min": 0.0,
1581
+ "clip_ratio/region_mean": 0.0,
1582
+ "completions/clipped_ratio": 0.0,
1583
+ "completions/max_length": 12885.0,
1584
+ "completions/max_terminated_length": 12885.0,
1585
+ "completions/mean_length": 9178.0625,
1586
+ "completions/mean_terminated_length": 9178.0625,
1587
+ "completions/min_length": 306.0,
1588
+ "completions/min_terminated_length": 306.0,
1589
+ "entropy": 0.06221808784175664,
1590
+ "entropy_coef": 0.0,
1591
+ "epoch": 0.376,
1592
+ "frac_reward_zero_std": 0.0,
1593
+ "grad_norm": 0.0006049554795026779,
1594
+ "kl": 0.20735215093009174,
1595
+ "learning_rate": 4.227656622467162e-05,
1596
+ "loss": -0.0003,
1597
+ "num_tokens": 33679920.0,
1598
+ "reward": 0.5219765901565552,
1599
+ "reward_std": 0.15798217058181763,
1600
+ "rewards/rollout_reward_func/mean": 0.5219766497612,
1601
+ "rewards/rollout_reward_func/std": 0.1681242436170578,
1602
+ "sampling/importance_sampling_ratio/max": 1.9897156953811646,
1603
+ "sampling/importance_sampling_ratio/mean": 0.9427515268325806,
1604
+ "sampling/importance_sampling_ratio/min": 0.2052016258239746,
1605
+ "sampling/sampling_logp_difference/max": 1.0771188735961914,
1606
+ "sampling/sampling_logp_difference/mean": 0.010804351419210434,
1607
+ "step": 47,
1608
+ "step_time": 337.7149812740099
1609
+ },
1610
+ {
1611
+ "clip_ratio/high_max": 0.0,
1612
+ "clip_ratio/high_mean": 0.0,
1613
+ "clip_ratio/low_mean": 0.0,
1614
+ "clip_ratio/low_min": 0.0,
1615
+ "clip_ratio/region_mean": 0.0,
1616
+ "completions/clipped_ratio": 0.0,
1617
+ "completions/max_length": 12834.0,
1618
+ "completions/max_terminated_length": 12834.0,
1619
+ "completions/mean_length": 9277.25,
1620
+ "completions/mean_terminated_length": 9277.25,
1621
+ "completions/min_length": 1498.0,
1622
+ "completions/min_terminated_length": 1498.0,
1623
+ "entropy": 0.06880870723398402,
1624
+ "entropy_coef": 0.0,
1625
+ "epoch": 0.384,
1626
+ "frac_reward_zero_std": 0.0,
1627
+ "grad_norm": 0.0007106233388185501,
1628
+ "kl": 0.20563492691144347,
1629
+ "learning_rate": 4.186676364830186e-05,
1630
+ "loss": 0.0011,
1631
+ "num_tokens": 34361788.0,
1632
+ "reward": 0.5094003677368164,
1633
+ "reward_std": 0.17123670876026154,
1634
+ "rewards/rollout_reward_func/mean": 0.5094004273414612,
1635
+ "rewards/rollout_reward_func/std": 0.1822291761636734,
1636
+ "sampling/importance_sampling_ratio/max": 2.17402720451355,
1637
+ "sampling/importance_sampling_ratio/mean": 1.002522587776184,
1638
+ "sampling/importance_sampling_ratio/min": 0.0,
1639
+ "sampling/sampling_logp_difference/max": 1.1423289775848389,
1640
+ "sampling/sampling_logp_difference/mean": 0.010569632053375244,
1641
+ "step": 48,
1642
+ "step_time": 295.78348959597497
1643
+ },
1644
+ {
1645
+ "clip_ratio/high_max": 0.0,
1646
+ "clip_ratio/high_mean": 0.0,
1647
+ "clip_ratio/low_mean": 0.0,
1648
+ "clip_ratio/low_min": 0.0,
1649
+ "clip_ratio/region_mean": 0.0,
1650
+ "completions/clipped_ratio": 0.0,
1651
+ "completions/max_length": 13204.0,
1652
+ "completions/max_terminated_length": 13204.0,
1653
+ "completions/mean_length": 9267.015625,
1654
+ "completions/mean_terminated_length": 9267.015625,
1655
+ "completions/min_length": 1573.0,
1656
+ "completions/min_terminated_length": 1573.0,
1657
+ "entropy": 0.08863532962277532,
1658
+ "entropy_coef": 0.0,
1659
+ "epoch": 0.392,
1660
+ "frac_reward_zero_std": 0.0,
1661
+ "grad_norm": 0.0011216063285246491,
1662
+ "kl": 0.2617902564816177,
1663
+ "learning_rate": 4.144846814849282e-05,
1664
+ "loss": 0.0009,
1665
+ "num_tokens": 35043030.0,
1666
+ "reward": 0.5275025367736816,
1667
+ "reward_std": 0.15338239073753357,
1668
+ "rewards/rollout_reward_func/mean": 0.5275025367736816,
1669
+ "rewards/rollout_reward_func/std": 0.1678541600704193,
1670
+ "sampling/importance_sampling_ratio/max": 1.9162968397140503,
1671
+ "sampling/importance_sampling_ratio/mean": 0.9410059452056885,
1672
+ "sampling/importance_sampling_ratio/min": 0.0,
1673
+ "sampling/sampling_logp_difference/max": 1.1749658584594727,
1674
+ "sampling/sampling_logp_difference/mean": 0.011495769023895264,
1675
+ "step": 49,
1676
+ "step_time": 314.68975055102055
1677
+ },
1678
+ {
1679
+ "clip_ratio/high_max": 0.0,
1680
+ "clip_ratio/high_mean": 0.0,
1681
+ "clip_ratio/low_mean": 0.0,
1682
+ "clip_ratio/low_min": 0.0,
1683
+ "clip_ratio/region_mean": 0.0,
1684
+ "completions/clipped_ratio": 0.0,
1685
+ "completions/max_length": 12790.0,
1686
+ "completions/max_terminated_length": 12790.0,
1687
+ "completions/mean_length": 9326.78125,
1688
+ "completions/mean_terminated_length": 9326.78125,
1689
+ "completions/min_length": 2141.0,
1690
+ "completions/min_terminated_length": 2141.0,
1691
+ "entropy": 0.08310486213304102,
1692
+ "entropy_coef": 0.0,
1693
+ "epoch": 0.4,
1694
+ "frac_reward_zero_std": 0.0,
1695
+ "grad_norm": 0.0012504459591582417,
1696
+ "kl": 0.18439068458974361,
1697
+ "learning_rate": 4.10218903496256e-05,
1698
+ "loss": -0.0005,
1699
+ "num_tokens": 35728095.0,
1700
+ "reward": 0.5076219439506531,
1701
+ "reward_std": 0.1705845296382904,
1702
+ "rewards/rollout_reward_func/mean": 0.5076220035552979,
1703
+ "rewards/rollout_reward_func/std": 0.17205928266048431,
1704
+ "sampling/importance_sampling_ratio/max": 1.9467663764953613,
1705
+ "sampling/importance_sampling_ratio/mean": 0.9654483795166016,
1706
+ "sampling/importance_sampling_ratio/min": 0.18473142385482788,
1707
+ "sampling/sampling_logp_difference/max": 1.0265986919403076,
1708
+ "sampling/sampling_logp_difference/mean": 0.012021557427942753,
1709
+ "step": 50,
1710
+ "step_time": 359.9811480909775
1711
+ },
1712
+ {
1713
+ "clip_ratio/high_max": 0.0,
1714
+ "clip_ratio/high_mean": 0.0,
1715
+ "clip_ratio/low_mean": 0.0,
1716
+ "clip_ratio/low_min": 0.0,
1717
+ "clip_ratio/region_mean": 0.0,
1718
+ "completions/clipped_ratio": 0.0,
1719
+ "completions/max_length": 12609.0,
1720
+ "completions/max_terminated_length": 12609.0,
1721
+ "completions/mean_length": 9806.09375,
1722
+ "completions/mean_terminated_length": 9806.09375,
1723
+ "completions/min_length": 2141.0,
1724
+ "completions/min_terminated_length": 2141.0,
1725
+ "entropy": 0.0783551181666553,
1726
+ "entropy_coef": 0.0,
1727
+ "epoch": 0.408,
1728
+ "frac_reward_zero_std": 0.0,
1729
+ "grad_norm": 0.0010997356148436666,
1730
+ "kl": 0.14432456018403172,
1731
+ "learning_rate": 4.058724504646834e-05,
1732
+ "loss": -0.0011,
1733
+ "num_tokens": 36443832.0,
1734
+ "reward": 0.4958079159259796,
1735
+ "reward_std": 0.12477710843086243,
1736
+ "rewards/rollout_reward_func/mean": 0.4958079159259796,
1737
+ "rewards/rollout_reward_func/std": 0.12903861701488495,
1738
+ "sampling/importance_sampling_ratio/max": 1.9395922422409058,
1739
+ "sampling/importance_sampling_ratio/mean": 1.0526149272918701,
1740
+ "sampling/importance_sampling_ratio/min": 0.38704976439476013,
1741
+ "sampling/sampling_logp_difference/max": 0.9537684917449951,
1742
+ "sampling/sampling_logp_difference/mean": 0.009659216739237309,
1743
+ "step": 51,
1744
+ "step_time": 364.3214793770021
1745
+ },
1746
+ {
1747
+ "clip_ratio/high_max": 0.0,
1748
+ "clip_ratio/high_mean": 0.0,
1749
+ "clip_ratio/low_mean": 0.0,
1750
+ "clip_ratio/low_min": 0.0,
1751
+ "clip_ratio/region_mean": 0.0,
1752
+ "completions/clipped_ratio": 0.0,
1753
+ "completions/max_length": 13413.0,
1754
+ "completions/max_terminated_length": 13413.0,
1755
+ "completions/mean_length": 8580.640625,
1756
+ "completions/mean_terminated_length": 8580.640625,
1757
+ "completions/min_length": 728.0,
1758
+ "completions/min_terminated_length": 728.0,
1759
+ "entropy": 0.09180304763140157,
1760
+ "entropy_coef": 0.0,
1761
+ "epoch": 0.416,
1762
+ "frac_reward_zero_std": 0.0,
1763
+ "grad_norm": 0.0011521201813593507,
1764
+ "kl": 0.22726342151872814,
1765
+ "learning_rate": 4.01447510960205e-05,
1766
+ "loss": -0.0001,
1767
+ "num_tokens": 37081117.0,
1768
+ "reward": 0.4731961190700531,
1769
+ "reward_std": 0.18435156345367432,
1770
+ "rewards/rollout_reward_func/mean": 0.4731961190700531,
1771
+ "rewards/rollout_reward_func/std": 0.1957349330186844,
1772
+ "sampling/importance_sampling_ratio/max": 1.932464838027954,
1773
+ "sampling/importance_sampling_ratio/mean": 0.9893564581871033,
1774
+ "sampling/importance_sampling_ratio/min": 0.18718263506889343,
1775
+ "sampling/sampling_logp_difference/max": 0.9927011728286743,
1776
+ "sampling/sampling_logp_difference/mean": 0.012837492860853672,
1777
+ "step": 52,
1778
+ "step_time": 305.2378104659947
1779
+ },
1780
+ {
1781
+ "clip_ratio/high_max": 0.0,
1782
+ "clip_ratio/high_mean": 0.0,
1783
+ "clip_ratio/low_mean": 0.0,
1784
+ "clip_ratio/low_min": 0.0,
1785
+ "clip_ratio/region_mean": 0.0,
1786
+ "completions/clipped_ratio": 0.0,
1787
+ "completions/max_length": 13492.0,
1788
+ "completions/max_terminated_length": 13492.0,
1789
+ "completions/mean_length": 9280.75,
1790
+ "completions/mean_terminated_length": 9280.75,
1791
+ "completions/min_length": 1651.0,
1792
+ "completions/min_terminated_length": 1651.0,
1793
+ "entropy": 0.11061126762069762,
1794
+ "entropy_coef": 0.0,
1795
+ "epoch": 0.424,
1796
+ "frac_reward_zero_std": 0.0,
1797
+ "grad_norm": 0.0014194570248946548,
1798
+ "kl": 0.2736190042924136,
1799
+ "learning_rate": 3.969463130731183e-05,
1800
+ "loss": -0.0005,
1801
+ "num_tokens": 37763258.0,
1802
+ "reward": 0.48869407176971436,
1803
+ "reward_std": 0.15919733047485352,
1804
+ "rewards/rollout_reward_func/mean": 0.48869410157203674,
1805
+ "rewards/rollout_reward_func/std": 0.19291085004806519,
1806
+ "sampling/importance_sampling_ratio/max": 2.2761080265045166,
1807
+ "sampling/importance_sampling_ratio/mean": 1.068854570388794,
1808
+ "sampling/importance_sampling_ratio/min": 0.11977846920490265,
1809
+ "sampling/sampling_logp_difference/max": 1.1120142936706543,
1810
+ "sampling/sampling_logp_difference/mean": 0.012942749075591564,
1811
+ "step": 53,
1812
+ "step_time": 322.34603228802007
1813
+ },
1814
+ {
1815
+ "clip_ratio/high_max": 0.0,
1816
+ "clip_ratio/high_mean": 0.0,
1817
+ "clip_ratio/low_mean": 0.0,
1818
+ "clip_ratio/low_min": 0.0,
1819
+ "clip_ratio/region_mean": 0.0,
1820
+ "completions/clipped_ratio": 0.0,
1821
+ "completions/max_length": 13111.0,
1822
+ "completions/max_terminated_length": 13111.0,
1823
+ "completions/mean_length": 9352.34375,
1824
+ "completions/mean_terminated_length": 9352.34375,
1825
+ "completions/min_length": 306.0,
1826
+ "completions/min_terminated_length": 306.0,
1827
+ "entropy": 0.09432909020688385,
1828
+ "entropy_coef": 0.0,
1829
+ "epoch": 0.432,
1830
+ "frac_reward_zero_std": 0.0,
1831
+ "grad_norm": 0.0008349179406650364,
1832
+ "kl": 0.2430505771189928,
1833
+ "learning_rate": 3.92371123292113e-05,
1834
+ "loss": -0.0003,
1835
+ "num_tokens": 38449978.0,
1836
+ "reward": 0.49676069617271423,
1837
+ "reward_std": 0.1296190619468689,
1838
+ "rewards/rollout_reward_func/mean": 0.49676066637039185,
1839
+ "rewards/rollout_reward_func/std": 0.13542425632476807,
1840
+ "sampling/importance_sampling_ratio/max": 2.3788201808929443,
1841
+ "sampling/importance_sampling_ratio/mean": 0.8584070205688477,
1842
+ "sampling/importance_sampling_ratio/min": 0.0,
1843
+ "sampling/sampling_logp_difference/max": 1.0483372211456299,
1844
+ "sampling/sampling_logp_difference/mean": 0.015330970287322998,
1845
+ "step": 54,
1846
+ "step_time": 329.33361730699835
1847
+ },
1848
+ {
1849
+ "clip_ratio/high_max": 0.0,
1850
+ "clip_ratio/high_mean": 0.0,
1851
+ "clip_ratio/low_mean": 0.0,
1852
+ "clip_ratio/low_min": 0.0,
1853
+ "clip_ratio/region_mean": 0.0,
1854
+ "completions/clipped_ratio": 0.0,
1855
+ "completions/max_length": 12944.0,
1856
+ "completions/max_terminated_length": 12944.0,
1857
+ "completions/mean_length": 9580.21875,
1858
+ "completions/mean_terminated_length": 9580.21875,
1859
+ "completions/min_length": 719.0,
1860
+ "completions/min_terminated_length": 719.0,
1861
+ "entropy": 0.11015003768261522,
1862
+ "entropy_coef": 0.0,
1863
+ "epoch": 0.44,
1864
+ "frac_reward_zero_std": 0.0,
1865
+ "grad_norm": 0.0010889483382925391,
1866
+ "kl": 0.3175457550678402,
1867
+ "learning_rate": 3.8772424536302564e-05,
1868
+ "loss": -0.0,
1869
+ "num_tokens": 39151254.0,
1870
+ "reward": 0.4882494807243347,
1871
+ "reward_std": 0.19031837582588196,
1872
+ "rewards/rollout_reward_func/mean": 0.4882494807243347,
1873
+ "rewards/rollout_reward_func/std": 0.18893173336982727,
1874
+ "sampling/importance_sampling_ratio/max": 2.0930283069610596,
1875
+ "sampling/importance_sampling_ratio/mean": 1.0038511753082275,
1876
+ "sampling/importance_sampling_ratio/min": 0.20675157010555267,
1877
+ "sampling/sampling_logp_difference/max": 1.0524508953094482,
1878
+ "sampling/sampling_logp_difference/mean": 0.014180178754031658,
1879
+ "step": 55,
1880
+ "step_time": 363.4041825799868
1881
+ },
1882
+ {
1883
+ "clip_ratio/high_max": 0.0,
1884
+ "clip_ratio/high_mean": 0.0,
1885
+ "clip_ratio/low_mean": 0.0,
1886
+ "clip_ratio/low_min": 0.0,
1887
+ "clip_ratio/region_mean": 0.0,
1888
+ "completions/clipped_ratio": 0.0,
1889
+ "completions/max_length": 13257.0,
1890
+ "completions/max_terminated_length": 13257.0,
1891
+ "completions/mean_length": 8713.34375,
1892
+ "completions/mean_terminated_length": 8713.34375,
1893
+ "completions/min_length": 306.0,
1894
+ "completions/min_terminated_length": 306.0,
1895
+ "entropy": 0.14483273343648762,
1896
+ "entropy_coef": 0.0,
1897
+ "epoch": 0.448,
1898
+ "frac_reward_zero_std": 0.0,
1899
+ "grad_norm": 0.0016724272863939404,
1900
+ "kl": 0.2775061142165214,
1901
+ "learning_rate": 3.830080191288342e-05,
1902
+ "loss": -0.0022,
1903
+ "num_tokens": 39797054.0,
1904
+ "reward": 0.5112423896789551,
1905
+ "reward_std": 0.16938301920890808,
1906
+ "rewards/rollout_reward_func/mean": 0.5112423896789551,
1907
+ "rewards/rollout_reward_func/std": 0.17667771875858307,
1908
+ "sampling/importance_sampling_ratio/max": 2.4970474243164062,
1909
+ "sampling/importance_sampling_ratio/mean": 1.0126562118530273,
1910
+ "sampling/importance_sampling_ratio/min": 0.0,
1911
+ "sampling/sampling_logp_difference/max": 1.2881124019622803,
1912
+ "sampling/sampling_logp_difference/mean": 0.015006227418780327,
1913
+ "step": 56,
1914
+ "step_time": 332.22490889398614
1915
+ },
1916
+ {
1917
+ "clip_ratio/high_max": 0.0,
1918
+ "clip_ratio/high_mean": 0.0,
1919
+ "clip_ratio/low_mean": 0.0,
1920
+ "clip_ratio/low_min": 0.0,
1921
+ "clip_ratio/region_mean": 0.0,
1922
+ "completions/clipped_ratio": 0.015625,
1923
+ "completions/max_length": 13579.0,
1924
+ "completions/max_terminated_length": 13579.0,
1925
+ "completions/mean_length": 9209.4375,
1926
+ "completions/mean_terminated_length": 9146.953125,
1927
+ "completions/min_length": 306.0,
1928
+ "completions/min_terminated_length": 306.0,
1929
+ "entropy": 0.13708793162368238,
1930
+ "entropy_coef": 0.0,
1931
+ "epoch": 0.456,
1932
+ "frac_reward_zero_std": 0.0,
1933
+ "grad_norm": 0.0023118634708225727,
1934
+ "kl": 0.2916691026184708,
1935
+ "learning_rate": 3.782248193514766e-05,
1936
+ "loss": 0.0006,
1937
+ "num_tokens": 40474621.0,
1938
+ "reward": 0.4426448345184326,
1939
+ "reward_std": 0.20235168933868408,
1940
+ "rewards/rollout_reward_func/mean": 0.44264480471611023,
1941
+ "rewards/rollout_reward_func/std": 0.22787505388259888,
1942
+ "sampling/importance_sampling_ratio/max": 2.6545114517211914,
1943
+ "sampling/importance_sampling_ratio/mean": 1.083296537399292,
1944
+ "sampling/importance_sampling_ratio/min": 0.0,
1945
+ "sampling/sampling_logp_difference/max": 1.0855486392974854,
1946
+ "sampling/sampling_logp_difference/mean": 0.013539792038500309,
1947
+ "step": 57,
1948
+ "step_time": 352.2692671560071
1949
+ },
1950
+ {
1951
+ "clip_ratio/high_max": 0.0,
1952
+ "clip_ratio/high_mean": 0.0,
1953
+ "clip_ratio/low_mean": 0.0,
1954
+ "clip_ratio/low_min": 0.0,
1955
+ "clip_ratio/region_mean": 0.0,
1956
+ "completions/clipped_ratio": 0.0,
1957
+ "completions/max_length": 12791.0,
1958
+ "completions/max_terminated_length": 12791.0,
1959
+ "completions/mean_length": 9328.59375,
1960
+ "completions/mean_terminated_length": 9328.59375,
1961
+ "completions/min_length": 1250.0,
1962
+ "completions/min_terminated_length": 1250.0,
1963
+ "entropy": 0.16310755698941648,
1964
+ "entropy_coef": 0.0,
1965
+ "epoch": 0.464,
1966
+ "frac_reward_zero_std": 0.0,
1967
+ "grad_norm": 0.0014628854114562273,
1968
+ "kl": 0.20596252335235476,
1969
+ "learning_rate": 3.7337705451608674e-05,
1970
+ "loss": 0.0001,
1971
+ "num_tokens": 41159806.0,
1972
+ "reward": 0.4742124080657959,
1973
+ "reward_std": 0.1859491765499115,
1974
+ "rewards/rollout_reward_func/mean": 0.4742124080657959,
1975
+ "rewards/rollout_reward_func/std": 0.2007213979959488,
1976
+ "sampling/importance_sampling_ratio/max": 2.422708511352539,
1977
+ "sampling/importance_sampling_ratio/mean": 0.8557560443878174,
1978
+ "sampling/importance_sampling_ratio/min": 0.0,
1979
+ "sampling/sampling_logp_difference/max": 1.0786240100860596,
1980
+ "sampling/sampling_logp_difference/mean": 0.017366046085953712,
1981
+ "step": 58,
1982
+ "step_time": 381.76401994801563
1983
+ },
1984
+ {
1985
+ "clip_ratio/high_max": 0.0,
1986
+ "clip_ratio/high_mean": 0.0,
1987
+ "clip_ratio/low_mean": 0.0,
1988
+ "clip_ratio/low_min": 0.0,
1989
+ "clip_ratio/region_mean": 0.0,
1990
+ "completions/clipped_ratio": 0.0,
1991
+ "completions/max_length": 13183.0,
1992
+ "completions/max_terminated_length": 13183.0,
1993
+ "completions/mean_length": 9281.296875,
1994
+ "completions/mean_terminated_length": 9281.296875,
1995
+ "completions/min_length": 306.0,
1996
+ "completions/min_terminated_length": 306.0,
1997
+ "entropy": 0.18712764885276556,
1998
+ "entropy_coef": 0.0,
1999
+ "epoch": 0.472,
2000
+ "frac_reward_zero_std": 0.0,
2001
+ "grad_norm": 0.004142520483583212,
2002
+ "kl": 0.18753919610753655,
2003
+ "learning_rate": 3.6846716561824965e-05,
2004
+ "loss": -0.0006,
2005
+ "num_tokens": 41841964.0,
2006
+ "reward": 0.47097307443618774,
2007
+ "reward_std": 0.19676819443702698,
2008
+ "rewards/rollout_reward_func/mean": 0.47097304463386536,
2009
+ "rewards/rollout_reward_func/std": 0.2025810033082962,
2010
+ "sampling/importance_sampling_ratio/max": 2.934316873550415,
2011
+ "sampling/importance_sampling_ratio/mean": 0.979157567024231,
2012
+ "sampling/importance_sampling_ratio/min": 0.0,
2013
+ "sampling/sampling_logp_difference/max": 1.1858997344970703,
2014
+ "sampling/sampling_logp_difference/mean": 0.0186949223279953,
2015
+ "step": 59,
2016
+ "step_time": 367.37044076902384
2017
+ },
2018
+ {
2019
+ "clip_ratio/high_max": 0.0,
2020
+ "clip_ratio/high_mean": 0.0,
2021
+ "clip_ratio/low_mean": 0.0,
2022
+ "clip_ratio/low_min": 0.0,
2023
+ "clip_ratio/region_mean": 0.0,
2024
+ "completions/clipped_ratio": 0.0,
2025
+ "completions/max_length": 12904.0,
2026
+ "completions/max_terminated_length": 12904.0,
2027
+ "completions/mean_length": 8822.5625,
2028
+ "completions/mean_terminated_length": 8822.5625,
2029
+ "completions/min_length": 306.0,
2030
+ "completions/min_terminated_length": 306.0,
2031
+ "entropy": 0.20238446700386703,
2032
+ "entropy_coef": 0.0,
2033
+ "epoch": 0.48,
2034
+ "frac_reward_zero_std": 0.0,
2035
+ "grad_norm": 0.0035080048255622387,
2036
+ "kl": 0.23028845060616732,
2037
+ "learning_rate": 3.634976249348867e-05,
2038
+ "loss": -0.0014,
2039
+ "num_tokens": 42494752.0,
2040
+ "reward": 0.4599212408065796,
2041
+ "reward_std": 0.18481022119522095,
2042
+ "rewards/rollout_reward_func/mean": 0.4599212408065796,
2043
+ "rewards/rollout_reward_func/std": 0.1994335651397705,
2044
+ "sampling/importance_sampling_ratio/max": 2.28369140625,
2045
+ "sampling/importance_sampling_ratio/mean": 0.9824178814888,
2046
+ "sampling/importance_sampling_ratio/min": 0.0,
2047
+ "sampling/sampling_logp_difference/max": 1.8787758350372314,
2048
+ "sampling/sampling_logp_difference/mean": 0.020322099328041077,
2049
+ "step": 60,
2050
+ "step_time": 372.32657384897175
2051
+ }
2052
+ ],
2053
+ "logging_steps": 1,
2054
+ "max_steps": 150,
2055
+ "num_input_tokens_seen": 42494752,
2056
+ "num_train_epochs": 2,
2057
+ "save_steps": 20,
2058
+ "stateful_callbacks": {
2059
+ "TrainerControl": {
2060
+ "args": {
2061
+ "should_epoch_stop": false,
2062
+ "should_evaluate": false,
2063
+ "should_log": false,
2064
+ "should_save": true,
2065
+ "should_training_stop": false
2066
+ },
2067
+ "attributes": {}
2068
+ }
2069
+ },
2070
+ "total_flos": 0.0,
2071
+ "train_batch_size": 1,
2072
+ "trial_name": null,
2073
+ "trial_params": null
2074
+ }
checkpoint-60/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bb3281510d551cad92f80552260adc08a6f39583eb63a1fcf02f6df74820306
3
+ size 9361
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 128000,
8
+ "dtype": "bfloat16",
9
+ "eos_token_id": 128009,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 3072,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 8192,
15
+ "max_position_embeddings": 131072,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 24,
19
+ "num_hidden_layers": 28,
20
+ "num_key_value_heads": 8,
21
+ "pad_token_id": 128004,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-05,
24
+ "rope_scaling": {
25
+ "factor": 32.0,
26
+ "high_freq_factor": 4.0,
27
+ "low_freq_factor": 1.0,
28
+ "original_max_position_embeddings": 8192,
29
+ "rope_type": "llama3"
30
+ },
31
+ "rope_theta": 500000.0,
32
+ "tie_word_embeddings": true,
33
+ "transformers_version": "4.57.6",
34
+ "unsloth_fixed": true,
35
+ "use_cache": false,
36
+ "vocab_size": 128256
37
+ }
debug.log ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [2026-02-20 06:54:16,825] [WARNING] [py.warnings._showwarnmsg:110] [PID:284] /root/miniconda3/envs/py3.11/lib/python3.11/site-packages/torch/backends/__init__.py:46: UserWarning: Please use the new API settings to control TF32 behavior, such as torch.backends.cudnn.conv.fp32_precision = 'tf32' or torch.backends.cuda.matmul.fp32_precision = 'ieee'. Old settings, e.g, torch.backends.cuda.matmul.allow_tf32 = True, torch.backends.cudnn.allow_tf32 = True, allowTF32CuDNN() and allowTF32CuBLAS() will be deprecated after Pytorch 2.9. Please see https://pytorch.org/docs/main/notes/cuda.html#tensorfloat-32-tf32-on-ampere-and-later-devices (Triggered internally at /pytorch/aten/src/ATen/Context.cpp:80.)
2
+ self.setter(val)
3
+
4
+
5
+
6
+ [2026-02-20 06:54:39,046] [WARNING] [py.warnings._showwarnmsg:110] [PID:284] <string>:246: FutureWarning: The `max_prompt_length` argument is deprecated and will be removed in version 0.28.0. You should instead filter your dataset before training to ensure that prompts do not exceed your desired length.
7
+
8
+ [2026-02-20 06:54:40,128] [WARNING] [py.warnings._showwarnmsg:110] [PID:284] /workspace/axolotl/src/axolotl/core/trainers/mixins/optimizer.py:209: UserWarning: You are importing from 'rollout_func', which is an experimental feature. This API may change or be removed at any time without prior notice. Silence this warning by setting environment variable TRL_EXPERIMENTAL_SILENCE=1.
9
+ super().__init__(*args, **kwargs)
10
+
11
+ 2026-02-20 06:55:21,445 - INFO - autotuner.py:256 - flashinfer.jit: [Autotuner]: Autotuning process starts ...
12
+ 2026-02-20 06:55:21,455 - INFO - autotuner.py:262 - flashinfer.jit: [Autotuner]: Autotuning process ends
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|eot_id|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|finetune_right_pad_id|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
tokenizer_config.json ADDED
@@ -0,0 +1,2066 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "added_tokens_decoder": {
4
+ "128000": {
5
+ "content": "<|begin_of_text|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "128001": {
13
+ "content": "<|end_of_text|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "128002": {
21
+ "content": "<|reserved_special_token_0|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "128003": {
29
+ "content": "<|reserved_special_token_1|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "128004": {
37
+ "content": "<|finetune_right_pad_id|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "128005": {
45
+ "content": "<|reserved_special_token_2|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "128006": {
53
+ "content": "<|start_header_id|>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "128007": {
61
+ "content": "<|end_header_id|>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "128008": {
69
+ "content": "<|eom_id|>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "128009": {
77
+ "content": "<|eot_id|>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "128010": {
85
+ "content": "<|python_tag|>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "128011": {
93
+ "content": "<|reserved_special_token_3|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "128012": {
101
+ "content": "<|reserved_special_token_4|>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "128013": {
109
+ "content": "<|reserved_special_token_5|>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ },
116
+ "128014": {
117
+ "content": "<|reserved_special_token_6|>",
118
+ "lstrip": false,
119
+ "normalized": false,
120
+ "rstrip": false,
121
+ "single_word": false,
122
+ "special": true
123
+ },
124
+ "128015": {
125
+ "content": "<|reserved_special_token_7|>",
126
+ "lstrip": false,
127
+ "normalized": false,
128
+ "rstrip": false,
129
+ "single_word": false,
130
+ "special": true
131
+ },
132
+ "128016": {
133
+ "content": "<|reserved_special_token_8|>",
134
+ "lstrip": false,
135
+ "normalized": false,
136
+ "rstrip": false,
137
+ "single_word": false,
138
+ "special": true
139
+ },
140
+ "128017": {
141
+ "content": "<|reserved_special_token_9|>",
142
+ "lstrip": false,
143
+ "normalized": false,
144
+ "rstrip": false,
145
+ "single_word": false,
146
+ "special": true
147
+ },
148
+ "128018": {
149
+ "content": "<|reserved_special_token_10|>",
150
+ "lstrip": false,
151
+ "normalized": false,
152
+ "rstrip": false,
153
+ "single_word": false,
154
+ "special": true
155
+ },
156
+ "128019": {
157
+ "content": "<|reserved_special_token_11|>",
158
+ "lstrip": false,
159
+ "normalized": false,
160
+ "rstrip": false,
161
+ "single_word": false,
162
+ "special": true
163
+ },
164
+ "128020": {
165
+ "content": "<|reserved_special_token_12|>",
166
+ "lstrip": false,
167
+ "normalized": false,
168
+ "rstrip": false,
169
+ "single_word": false,
170
+ "special": true
171
+ },
172
+ "128021": {
173
+ "content": "<|reserved_special_token_13|>",
174
+ "lstrip": false,
175
+ "normalized": false,
176
+ "rstrip": false,
177
+ "single_word": false,
178
+ "special": true
179
+ },
180
+ "128022": {
181
+ "content": "<|reserved_special_token_14|>",
182
+ "lstrip": false,
183
+ "normalized": false,
184
+ "rstrip": false,
185
+ "single_word": false,
186
+ "special": true
187
+ },
188
+ "128023": {
189
+ "content": "<|reserved_special_token_15|>",
190
+ "lstrip": false,
191
+ "normalized": false,
192
+ "rstrip": false,
193
+ "single_word": false,
194
+ "special": true
195
+ },
196
+ "128024": {
197
+ "content": "<|reserved_special_token_16|>",
198
+ "lstrip": false,
199
+ "normalized": false,
200
+ "rstrip": false,
201
+ "single_word": false,
202
+ "special": true
203
+ },
204
+ "128025": {
205
+ "content": "<|reserved_special_token_17|>",
206
+ "lstrip": false,
207
+ "normalized": false,
208
+ "rstrip": false,
209
+ "single_word": false,
210
+ "special": true
211
+ },
212
+ "128026": {
213
+ "content": "<|reserved_special_token_18|>",
214
+ "lstrip": false,
215
+ "normalized": false,
216
+ "rstrip": false,
217
+ "single_word": false,
218
+ "special": true
219
+ },
220
+ "128027": {
221
+ "content": "<|reserved_special_token_19|>",
222
+ "lstrip": false,
223
+ "normalized": false,
224
+ "rstrip": false,
225
+ "single_word": false,
226
+ "special": true
227
+ },
228
+ "128028": {
229
+ "content": "<|reserved_special_token_20|>",
230
+ "lstrip": false,
231
+ "normalized": false,
232
+ "rstrip": false,
233
+ "single_word": false,
234
+ "special": true
235
+ },
236
+ "128029": {
237
+ "content": "<|reserved_special_token_21|>",
238
+ "lstrip": false,
239
+ "normalized": false,
240
+ "rstrip": false,
241
+ "single_word": false,
242
+ "special": true
243
+ },
244
+ "128030": {
245
+ "content": "<|reserved_special_token_22|>",
246
+ "lstrip": false,
247
+ "normalized": false,
248
+ "rstrip": false,
249
+ "single_word": false,
250
+ "special": true
251
+ },
252
+ "128031": {
253
+ "content": "<|reserved_special_token_23|>",
254
+ "lstrip": false,
255
+ "normalized": false,
256
+ "rstrip": false,
257
+ "single_word": false,
258
+ "special": true
259
+ },
260
+ "128032": {
261
+ "content": "<|reserved_special_token_24|>",
262
+ "lstrip": false,
263
+ "normalized": false,
264
+ "rstrip": false,
265
+ "single_word": false,
266
+ "special": true
267
+ },
268
+ "128033": {
269
+ "content": "<|reserved_special_token_25|>",
270
+ "lstrip": false,
271
+ "normalized": false,
272
+ "rstrip": false,
273
+ "single_word": false,
274
+ "special": true
275
+ },
276
+ "128034": {
277
+ "content": "<|reserved_special_token_26|>",
278
+ "lstrip": false,
279
+ "normalized": false,
280
+ "rstrip": false,
281
+ "single_word": false,
282
+ "special": true
283
+ },
284
+ "128035": {
285
+ "content": "<|reserved_special_token_27|>",
286
+ "lstrip": false,
287
+ "normalized": false,
288
+ "rstrip": false,
289
+ "single_word": false,
290
+ "special": true
291
+ },
292
+ "128036": {
293
+ "content": "<|reserved_special_token_28|>",
294
+ "lstrip": false,
295
+ "normalized": false,
296
+ "rstrip": false,
297
+ "single_word": false,
298
+ "special": true
299
+ },
300
+ "128037": {
301
+ "content": "<|reserved_special_token_29|>",
302
+ "lstrip": false,
303
+ "normalized": false,
304
+ "rstrip": false,
305
+ "single_word": false,
306
+ "special": true
307
+ },
308
+ "128038": {
309
+ "content": "<|reserved_special_token_30|>",
310
+ "lstrip": false,
311
+ "normalized": false,
312
+ "rstrip": false,
313
+ "single_word": false,
314
+ "special": true
315
+ },
316
+ "128039": {
317
+ "content": "<|reserved_special_token_31|>",
318
+ "lstrip": false,
319
+ "normalized": false,
320
+ "rstrip": false,
321
+ "single_word": false,
322
+ "special": true
323
+ },
324
+ "128040": {
325
+ "content": "<|reserved_special_token_32|>",
326
+ "lstrip": false,
327
+ "normalized": false,
328
+ "rstrip": false,
329
+ "single_word": false,
330
+ "special": true
331
+ },
332
+ "128041": {
333
+ "content": "<|reserved_special_token_33|>",
334
+ "lstrip": false,
335
+ "normalized": false,
336
+ "rstrip": false,
337
+ "single_word": false,
338
+ "special": true
339
+ },
340
+ "128042": {
341
+ "content": "<|reserved_special_token_34|>",
342
+ "lstrip": false,
343
+ "normalized": false,
344
+ "rstrip": false,
345
+ "single_word": false,
346
+ "special": true
347
+ },
348
+ "128043": {
349
+ "content": "<|reserved_special_token_35|>",
350
+ "lstrip": false,
351
+ "normalized": false,
352
+ "rstrip": false,
353
+ "single_word": false,
354
+ "special": true
355
+ },
356
+ "128044": {
357
+ "content": "<|reserved_special_token_36|>",
358
+ "lstrip": false,
359
+ "normalized": false,
360
+ "rstrip": false,
361
+ "single_word": false,
362
+ "special": true
363
+ },
364
+ "128045": {
365
+ "content": "<|reserved_special_token_37|>",
366
+ "lstrip": false,
367
+ "normalized": false,
368
+ "rstrip": false,
369
+ "single_word": false,
370
+ "special": true
371
+ },
372
+ "128046": {
373
+ "content": "<|reserved_special_token_38|>",
374
+ "lstrip": false,
375
+ "normalized": false,
376
+ "rstrip": false,
377
+ "single_word": false,
378
+ "special": true
379
+ },
380
+ "128047": {
381
+ "content": "<|reserved_special_token_39|>",
382
+ "lstrip": false,
383
+ "normalized": false,
384
+ "rstrip": false,
385
+ "single_word": false,
386
+ "special": true
387
+ },
388
+ "128048": {
389
+ "content": "<|reserved_special_token_40|>",
390
+ "lstrip": false,
391
+ "normalized": false,
392
+ "rstrip": false,
393
+ "single_word": false,
394
+ "special": true
395
+ },
396
+ "128049": {
397
+ "content": "<|reserved_special_token_41|>",
398
+ "lstrip": false,
399
+ "normalized": false,
400
+ "rstrip": false,
401
+ "single_word": false,
402
+ "special": true
403
+ },
404
+ "128050": {
405
+ "content": "<|reserved_special_token_42|>",
406
+ "lstrip": false,
407
+ "normalized": false,
408
+ "rstrip": false,
409
+ "single_word": false,
410
+ "special": true
411
+ },
412
+ "128051": {
413
+ "content": "<|reserved_special_token_43|>",
414
+ "lstrip": false,
415
+ "normalized": false,
416
+ "rstrip": false,
417
+ "single_word": false,
418
+ "special": true
419
+ },
420
+ "128052": {
421
+ "content": "<|reserved_special_token_44|>",
422
+ "lstrip": false,
423
+ "normalized": false,
424
+ "rstrip": false,
425
+ "single_word": false,
426
+ "special": true
427
+ },
428
+ "128053": {
429
+ "content": "<|reserved_special_token_45|>",
430
+ "lstrip": false,
431
+ "normalized": false,
432
+ "rstrip": false,
433
+ "single_word": false,
434
+ "special": true
435
+ },
436
+ "128054": {
437
+ "content": "<|reserved_special_token_46|>",
438
+ "lstrip": false,
439
+ "normalized": false,
440
+ "rstrip": false,
441
+ "single_word": false,
442
+ "special": true
443
+ },
444
+ "128055": {
445
+ "content": "<|reserved_special_token_47|>",
446
+ "lstrip": false,
447
+ "normalized": false,
448
+ "rstrip": false,
449
+ "single_word": false,
450
+ "special": true
451
+ },
452
+ "128056": {
453
+ "content": "<|reserved_special_token_48|>",
454
+ "lstrip": false,
455
+ "normalized": false,
456
+ "rstrip": false,
457
+ "single_word": false,
458
+ "special": true
459
+ },
460
+ "128057": {
461
+ "content": "<|reserved_special_token_49|>",
462
+ "lstrip": false,
463
+ "normalized": false,
464
+ "rstrip": false,
465
+ "single_word": false,
466
+ "special": true
467
+ },
468
+ "128058": {
469
+ "content": "<|reserved_special_token_50|>",
470
+ "lstrip": false,
471
+ "normalized": false,
472
+ "rstrip": false,
473
+ "single_word": false,
474
+ "special": true
475
+ },
476
+ "128059": {
477
+ "content": "<|reserved_special_token_51|>",
478
+ "lstrip": false,
479
+ "normalized": false,
480
+ "rstrip": false,
481
+ "single_word": false,
482
+ "special": true
483
+ },
484
+ "128060": {
485
+ "content": "<|reserved_special_token_52|>",
486
+ "lstrip": false,
487
+ "normalized": false,
488
+ "rstrip": false,
489
+ "single_word": false,
490
+ "special": true
491
+ },
492
+ "128061": {
493
+ "content": "<|reserved_special_token_53|>",
494
+ "lstrip": false,
495
+ "normalized": false,
496
+ "rstrip": false,
497
+ "single_word": false,
498
+ "special": true
499
+ },
500
+ "128062": {
501
+ "content": "<|reserved_special_token_54|>",
502
+ "lstrip": false,
503
+ "normalized": false,
504
+ "rstrip": false,
505
+ "single_word": false,
506
+ "special": true
507
+ },
508
+ "128063": {
509
+ "content": "<|reserved_special_token_55|>",
510
+ "lstrip": false,
511
+ "normalized": false,
512
+ "rstrip": false,
513
+ "single_word": false,
514
+ "special": true
515
+ },
516
+ "128064": {
517
+ "content": "<|reserved_special_token_56|>",
518
+ "lstrip": false,
519
+ "normalized": false,
520
+ "rstrip": false,
521
+ "single_word": false,
522
+ "special": true
523
+ },
524
+ "128065": {
525
+ "content": "<|reserved_special_token_57|>",
526
+ "lstrip": false,
527
+ "normalized": false,
528
+ "rstrip": false,
529
+ "single_word": false,
530
+ "special": true
531
+ },
532
+ "128066": {
533
+ "content": "<|reserved_special_token_58|>",
534
+ "lstrip": false,
535
+ "normalized": false,
536
+ "rstrip": false,
537
+ "single_word": false,
538
+ "special": true
539
+ },
540
+ "128067": {
541
+ "content": "<|reserved_special_token_59|>",
542
+ "lstrip": false,
543
+ "normalized": false,
544
+ "rstrip": false,
545
+ "single_word": false,
546
+ "special": true
547
+ },
548
+ "128068": {
549
+ "content": "<|reserved_special_token_60|>",
550
+ "lstrip": false,
551
+ "normalized": false,
552
+ "rstrip": false,
553
+ "single_word": false,
554
+ "special": true
555
+ },
556
+ "128069": {
557
+ "content": "<|reserved_special_token_61|>",
558
+ "lstrip": false,
559
+ "normalized": false,
560
+ "rstrip": false,
561
+ "single_word": false,
562
+ "special": true
563
+ },
564
+ "128070": {
565
+ "content": "<|reserved_special_token_62|>",
566
+ "lstrip": false,
567
+ "normalized": false,
568
+ "rstrip": false,
569
+ "single_word": false,
570
+ "special": true
571
+ },
572
+ "128071": {
573
+ "content": "<|reserved_special_token_63|>",
574
+ "lstrip": false,
575
+ "normalized": false,
576
+ "rstrip": false,
577
+ "single_word": false,
578
+ "special": true
579
+ },
580
+ "128072": {
581
+ "content": "<|reserved_special_token_64|>",
582
+ "lstrip": false,
583
+ "normalized": false,
584
+ "rstrip": false,
585
+ "single_word": false,
586
+ "special": true
587
+ },
588
+ "128073": {
589
+ "content": "<|reserved_special_token_65|>",
590
+ "lstrip": false,
591
+ "normalized": false,
592
+ "rstrip": false,
593
+ "single_word": false,
594
+ "special": true
595
+ },
596
+ "128074": {
597
+ "content": "<|reserved_special_token_66|>",
598
+ "lstrip": false,
599
+ "normalized": false,
600
+ "rstrip": false,
601
+ "single_word": false,
602
+ "special": true
603
+ },
604
+ "128075": {
605
+ "content": "<|reserved_special_token_67|>",
606
+ "lstrip": false,
607
+ "normalized": false,
608
+ "rstrip": false,
609
+ "single_word": false,
610
+ "special": true
611
+ },
612
+ "128076": {
613
+ "content": "<|reserved_special_token_68|>",
614
+ "lstrip": false,
615
+ "normalized": false,
616
+ "rstrip": false,
617
+ "single_word": false,
618
+ "special": true
619
+ },
620
+ "128077": {
621
+ "content": "<|reserved_special_token_69|>",
622
+ "lstrip": false,
623
+ "normalized": false,
624
+ "rstrip": false,
625
+ "single_word": false,
626
+ "special": true
627
+ },
628
+ "128078": {
629
+ "content": "<|reserved_special_token_70|>",
630
+ "lstrip": false,
631
+ "normalized": false,
632
+ "rstrip": false,
633
+ "single_word": false,
634
+ "special": true
635
+ },
636
+ "128079": {
637
+ "content": "<|reserved_special_token_71|>",
638
+ "lstrip": false,
639
+ "normalized": false,
640
+ "rstrip": false,
641
+ "single_word": false,
642
+ "special": true
643
+ },
644
+ "128080": {
645
+ "content": "<|reserved_special_token_72|>",
646
+ "lstrip": false,
647
+ "normalized": false,
648
+ "rstrip": false,
649
+ "single_word": false,
650
+ "special": true
651
+ },
652
+ "128081": {
653
+ "content": "<|reserved_special_token_73|>",
654
+ "lstrip": false,
655
+ "normalized": false,
656
+ "rstrip": false,
657
+ "single_word": false,
658
+ "special": true
659
+ },
660
+ "128082": {
661
+ "content": "<|reserved_special_token_74|>",
662
+ "lstrip": false,
663
+ "normalized": false,
664
+ "rstrip": false,
665
+ "single_word": false,
666
+ "special": true
667
+ },
668
+ "128083": {
669
+ "content": "<|reserved_special_token_75|>",
670
+ "lstrip": false,
671
+ "normalized": false,
672
+ "rstrip": false,
673
+ "single_word": false,
674
+ "special": true
675
+ },
676
+ "128084": {
677
+ "content": "<|reserved_special_token_76|>",
678
+ "lstrip": false,
679
+ "normalized": false,
680
+ "rstrip": false,
681
+ "single_word": false,
682
+ "special": true
683
+ },
684
+ "128085": {
685
+ "content": "<|reserved_special_token_77|>",
686
+ "lstrip": false,
687
+ "normalized": false,
688
+ "rstrip": false,
689
+ "single_word": false,
690
+ "special": true
691
+ },
692
+ "128086": {
693
+ "content": "<|reserved_special_token_78|>",
694
+ "lstrip": false,
695
+ "normalized": false,
696
+ "rstrip": false,
697
+ "single_word": false,
698
+ "special": true
699
+ },
700
+ "128087": {
701
+ "content": "<|reserved_special_token_79|>",
702
+ "lstrip": false,
703
+ "normalized": false,
704
+ "rstrip": false,
705
+ "single_word": false,
706
+ "special": true
707
+ },
708
+ "128088": {
709
+ "content": "<|reserved_special_token_80|>",
710
+ "lstrip": false,
711
+ "normalized": false,
712
+ "rstrip": false,
713
+ "single_word": false,
714
+ "special": true
715
+ },
716
+ "128089": {
717
+ "content": "<|reserved_special_token_81|>",
718
+ "lstrip": false,
719
+ "normalized": false,
720
+ "rstrip": false,
721
+ "single_word": false,
722
+ "special": true
723
+ },
724
+ "128090": {
725
+ "content": "<|reserved_special_token_82|>",
726
+ "lstrip": false,
727
+ "normalized": false,
728
+ "rstrip": false,
729
+ "single_word": false,
730
+ "special": true
731
+ },
732
+ "128091": {
733
+ "content": "<|reserved_special_token_83|>",
734
+ "lstrip": false,
735
+ "normalized": false,
736
+ "rstrip": false,
737
+ "single_word": false,
738
+ "special": true
739
+ },
740
+ "128092": {
741
+ "content": "<|reserved_special_token_84|>",
742
+ "lstrip": false,
743
+ "normalized": false,
744
+ "rstrip": false,
745
+ "single_word": false,
746
+ "special": true
747
+ },
748
+ "128093": {
749
+ "content": "<|reserved_special_token_85|>",
750
+ "lstrip": false,
751
+ "normalized": false,
752
+ "rstrip": false,
753
+ "single_word": false,
754
+ "special": true
755
+ },
756
+ "128094": {
757
+ "content": "<|reserved_special_token_86|>",
758
+ "lstrip": false,
759
+ "normalized": false,
760
+ "rstrip": false,
761
+ "single_word": false,
762
+ "special": true
763
+ },
764
+ "128095": {
765
+ "content": "<|reserved_special_token_87|>",
766
+ "lstrip": false,
767
+ "normalized": false,
768
+ "rstrip": false,
769
+ "single_word": false,
770
+ "special": true
771
+ },
772
+ "128096": {
773
+ "content": "<|reserved_special_token_88|>",
774
+ "lstrip": false,
775
+ "normalized": false,
776
+ "rstrip": false,
777
+ "single_word": false,
778
+ "special": true
779
+ },
780
+ "128097": {
781
+ "content": "<|reserved_special_token_89|>",
782
+ "lstrip": false,
783
+ "normalized": false,
784
+ "rstrip": false,
785
+ "single_word": false,
786
+ "special": true
787
+ },
788
+ "128098": {
789
+ "content": "<|reserved_special_token_90|>",
790
+ "lstrip": false,
791
+ "normalized": false,
792
+ "rstrip": false,
793
+ "single_word": false,
794
+ "special": true
795
+ },
796
+ "128099": {
797
+ "content": "<|reserved_special_token_91|>",
798
+ "lstrip": false,
799
+ "normalized": false,
800
+ "rstrip": false,
801
+ "single_word": false,
802
+ "special": true
803
+ },
804
+ "128100": {
805
+ "content": "<|reserved_special_token_92|>",
806
+ "lstrip": false,
807
+ "normalized": false,
808
+ "rstrip": false,
809
+ "single_word": false,
810
+ "special": true
811
+ },
812
+ "128101": {
813
+ "content": "<|reserved_special_token_93|>",
814
+ "lstrip": false,
815
+ "normalized": false,
816
+ "rstrip": false,
817
+ "single_word": false,
818
+ "special": true
819
+ },
820
+ "128102": {
821
+ "content": "<|reserved_special_token_94|>",
822
+ "lstrip": false,
823
+ "normalized": false,
824
+ "rstrip": false,
825
+ "single_word": false,
826
+ "special": true
827
+ },
828
+ "128103": {
829
+ "content": "<|reserved_special_token_95|>",
830
+ "lstrip": false,
831
+ "normalized": false,
832
+ "rstrip": false,
833
+ "single_word": false,
834
+ "special": true
835
+ },
836
+ "128104": {
837
+ "content": "<|reserved_special_token_96|>",
838
+ "lstrip": false,
839
+ "normalized": false,
840
+ "rstrip": false,
841
+ "single_word": false,
842
+ "special": true
843
+ },
844
+ "128105": {
845
+ "content": "<|reserved_special_token_97|>",
846
+ "lstrip": false,
847
+ "normalized": false,
848
+ "rstrip": false,
849
+ "single_word": false,
850
+ "special": true
851
+ },
852
+ "128106": {
853
+ "content": "<|reserved_special_token_98|>",
854
+ "lstrip": false,
855
+ "normalized": false,
856
+ "rstrip": false,
857
+ "single_word": false,
858
+ "special": true
859
+ },
860
+ "128107": {
861
+ "content": "<|reserved_special_token_99|>",
862
+ "lstrip": false,
863
+ "normalized": false,
864
+ "rstrip": false,
865
+ "single_word": false,
866
+ "special": true
867
+ },
868
+ "128108": {
869
+ "content": "<|reserved_special_token_100|>",
870
+ "lstrip": false,
871
+ "normalized": false,
872
+ "rstrip": false,
873
+ "single_word": false,
874
+ "special": true
875
+ },
876
+ "128109": {
877
+ "content": "<|reserved_special_token_101|>",
878
+ "lstrip": false,
879
+ "normalized": false,
880
+ "rstrip": false,
881
+ "single_word": false,
882
+ "special": true
883
+ },
884
+ "128110": {
885
+ "content": "<|reserved_special_token_102|>",
886
+ "lstrip": false,
887
+ "normalized": false,
888
+ "rstrip": false,
889
+ "single_word": false,
890
+ "special": true
891
+ },
892
+ "128111": {
893
+ "content": "<|reserved_special_token_103|>",
894
+ "lstrip": false,
895
+ "normalized": false,
896
+ "rstrip": false,
897
+ "single_word": false,
898
+ "special": true
899
+ },
900
+ "128112": {
901
+ "content": "<|reserved_special_token_104|>",
902
+ "lstrip": false,
903
+ "normalized": false,
904
+ "rstrip": false,
905
+ "single_word": false,
906
+ "special": true
907
+ },
908
+ "128113": {
909
+ "content": "<|reserved_special_token_105|>",
910
+ "lstrip": false,
911
+ "normalized": false,
912
+ "rstrip": false,
913
+ "single_word": false,
914
+ "special": true
915
+ },
916
+ "128114": {
917
+ "content": "<|reserved_special_token_106|>",
918
+ "lstrip": false,
919
+ "normalized": false,
920
+ "rstrip": false,
921
+ "single_word": false,
922
+ "special": true
923
+ },
924
+ "128115": {
925
+ "content": "<|reserved_special_token_107|>",
926
+ "lstrip": false,
927
+ "normalized": false,
928
+ "rstrip": false,
929
+ "single_word": false,
930
+ "special": true
931
+ },
932
+ "128116": {
933
+ "content": "<|reserved_special_token_108|>",
934
+ "lstrip": false,
935
+ "normalized": false,
936
+ "rstrip": false,
937
+ "single_word": false,
938
+ "special": true
939
+ },
940
+ "128117": {
941
+ "content": "<|reserved_special_token_109|>",
942
+ "lstrip": false,
943
+ "normalized": false,
944
+ "rstrip": false,
945
+ "single_word": false,
946
+ "special": true
947
+ },
948
+ "128118": {
949
+ "content": "<|reserved_special_token_110|>",
950
+ "lstrip": false,
951
+ "normalized": false,
952
+ "rstrip": false,
953
+ "single_word": false,
954
+ "special": true
955
+ },
956
+ "128119": {
957
+ "content": "<|reserved_special_token_111|>",
958
+ "lstrip": false,
959
+ "normalized": false,
960
+ "rstrip": false,
961
+ "single_word": false,
962
+ "special": true
963
+ },
964
+ "128120": {
965
+ "content": "<|reserved_special_token_112|>",
966
+ "lstrip": false,
967
+ "normalized": false,
968
+ "rstrip": false,
969
+ "single_word": false,
970
+ "special": true
971
+ },
972
+ "128121": {
973
+ "content": "<|reserved_special_token_113|>",
974
+ "lstrip": false,
975
+ "normalized": false,
976
+ "rstrip": false,
977
+ "single_word": false,
978
+ "special": true
979
+ },
980
+ "128122": {
981
+ "content": "<|reserved_special_token_114|>",
982
+ "lstrip": false,
983
+ "normalized": false,
984
+ "rstrip": false,
985
+ "single_word": false,
986
+ "special": true
987
+ },
988
+ "128123": {
989
+ "content": "<|reserved_special_token_115|>",
990
+ "lstrip": false,
991
+ "normalized": false,
992
+ "rstrip": false,
993
+ "single_word": false,
994
+ "special": true
995
+ },
996
+ "128124": {
997
+ "content": "<|reserved_special_token_116|>",
998
+ "lstrip": false,
999
+ "normalized": false,
1000
+ "rstrip": false,
1001
+ "single_word": false,
1002
+ "special": true
1003
+ },
1004
+ "128125": {
1005
+ "content": "<|reserved_special_token_117|>",
1006
+ "lstrip": false,
1007
+ "normalized": false,
1008
+ "rstrip": false,
1009
+ "single_word": false,
1010
+ "special": true
1011
+ },
1012
+ "128126": {
1013
+ "content": "<|reserved_special_token_118|>",
1014
+ "lstrip": false,
1015
+ "normalized": false,
1016
+ "rstrip": false,
1017
+ "single_word": false,
1018
+ "special": true
1019
+ },
1020
+ "128127": {
1021
+ "content": "<|reserved_special_token_119|>",
1022
+ "lstrip": false,
1023
+ "normalized": false,
1024
+ "rstrip": false,
1025
+ "single_word": false,
1026
+ "special": true
1027
+ },
1028
+ "128128": {
1029
+ "content": "<|reserved_special_token_120|>",
1030
+ "lstrip": false,
1031
+ "normalized": false,
1032
+ "rstrip": false,
1033
+ "single_word": false,
1034
+ "special": true
1035
+ },
1036
+ "128129": {
1037
+ "content": "<|reserved_special_token_121|>",
1038
+ "lstrip": false,
1039
+ "normalized": false,
1040
+ "rstrip": false,
1041
+ "single_word": false,
1042
+ "special": true
1043
+ },
1044
+ "128130": {
1045
+ "content": "<|reserved_special_token_122|>",
1046
+ "lstrip": false,
1047
+ "normalized": false,
1048
+ "rstrip": false,
1049
+ "single_word": false,
1050
+ "special": true
1051
+ },
1052
+ "128131": {
1053
+ "content": "<|reserved_special_token_123|>",
1054
+ "lstrip": false,
1055
+ "normalized": false,
1056
+ "rstrip": false,
1057
+ "single_word": false,
1058
+ "special": true
1059
+ },
1060
+ "128132": {
1061
+ "content": "<|reserved_special_token_124|>",
1062
+ "lstrip": false,
1063
+ "normalized": false,
1064
+ "rstrip": false,
1065
+ "single_word": false,
1066
+ "special": true
1067
+ },
1068
+ "128133": {
1069
+ "content": "<|reserved_special_token_125|>",
1070
+ "lstrip": false,
1071
+ "normalized": false,
1072
+ "rstrip": false,
1073
+ "single_word": false,
1074
+ "special": true
1075
+ },
1076
+ "128134": {
1077
+ "content": "<|reserved_special_token_126|>",
1078
+ "lstrip": false,
1079
+ "normalized": false,
1080
+ "rstrip": false,
1081
+ "single_word": false,
1082
+ "special": true
1083
+ },
1084
+ "128135": {
1085
+ "content": "<|reserved_special_token_127|>",
1086
+ "lstrip": false,
1087
+ "normalized": false,
1088
+ "rstrip": false,
1089
+ "single_word": false,
1090
+ "special": true
1091
+ },
1092
+ "128136": {
1093
+ "content": "<|reserved_special_token_128|>",
1094
+ "lstrip": false,
1095
+ "normalized": false,
1096
+ "rstrip": false,
1097
+ "single_word": false,
1098
+ "special": true
1099
+ },
1100
+ "128137": {
1101
+ "content": "<|reserved_special_token_129|>",
1102
+ "lstrip": false,
1103
+ "normalized": false,
1104
+ "rstrip": false,
1105
+ "single_word": false,
1106
+ "special": true
1107
+ },
1108
+ "128138": {
1109
+ "content": "<|reserved_special_token_130|>",
1110
+ "lstrip": false,
1111
+ "normalized": false,
1112
+ "rstrip": false,
1113
+ "single_word": false,
1114
+ "special": true
1115
+ },
1116
+ "128139": {
1117
+ "content": "<|reserved_special_token_131|>",
1118
+ "lstrip": false,
1119
+ "normalized": false,
1120
+ "rstrip": false,
1121
+ "single_word": false,
1122
+ "special": true
1123
+ },
1124
+ "128140": {
1125
+ "content": "<|reserved_special_token_132|>",
1126
+ "lstrip": false,
1127
+ "normalized": false,
1128
+ "rstrip": false,
1129
+ "single_word": false,
1130
+ "special": true
1131
+ },
1132
+ "128141": {
1133
+ "content": "<|reserved_special_token_133|>",
1134
+ "lstrip": false,
1135
+ "normalized": false,
1136
+ "rstrip": false,
1137
+ "single_word": false,
1138
+ "special": true
1139
+ },
1140
+ "128142": {
1141
+ "content": "<|reserved_special_token_134|>",
1142
+ "lstrip": false,
1143
+ "normalized": false,
1144
+ "rstrip": false,
1145
+ "single_word": false,
1146
+ "special": true
1147
+ },
1148
+ "128143": {
1149
+ "content": "<|reserved_special_token_135|>",
1150
+ "lstrip": false,
1151
+ "normalized": false,
1152
+ "rstrip": false,
1153
+ "single_word": false,
1154
+ "special": true
1155
+ },
1156
+ "128144": {
1157
+ "content": "<|reserved_special_token_136|>",
1158
+ "lstrip": false,
1159
+ "normalized": false,
1160
+ "rstrip": false,
1161
+ "single_word": false,
1162
+ "special": true
1163
+ },
1164
+ "128145": {
1165
+ "content": "<|reserved_special_token_137|>",
1166
+ "lstrip": false,
1167
+ "normalized": false,
1168
+ "rstrip": false,
1169
+ "single_word": false,
1170
+ "special": true
1171
+ },
1172
+ "128146": {
1173
+ "content": "<|reserved_special_token_138|>",
1174
+ "lstrip": false,
1175
+ "normalized": false,
1176
+ "rstrip": false,
1177
+ "single_word": false,
1178
+ "special": true
1179
+ },
1180
+ "128147": {
1181
+ "content": "<|reserved_special_token_139|>",
1182
+ "lstrip": false,
1183
+ "normalized": false,
1184
+ "rstrip": false,
1185
+ "single_word": false,
1186
+ "special": true
1187
+ },
1188
+ "128148": {
1189
+ "content": "<|reserved_special_token_140|>",
1190
+ "lstrip": false,
1191
+ "normalized": false,
1192
+ "rstrip": false,
1193
+ "single_word": false,
1194
+ "special": true
1195
+ },
1196
+ "128149": {
1197
+ "content": "<|reserved_special_token_141|>",
1198
+ "lstrip": false,
1199
+ "normalized": false,
1200
+ "rstrip": false,
1201
+ "single_word": false,
1202
+ "special": true
1203
+ },
1204
+ "128150": {
1205
+ "content": "<|reserved_special_token_142|>",
1206
+ "lstrip": false,
1207
+ "normalized": false,
1208
+ "rstrip": false,
1209
+ "single_word": false,
1210
+ "special": true
1211
+ },
1212
+ "128151": {
1213
+ "content": "<|reserved_special_token_143|>",
1214
+ "lstrip": false,
1215
+ "normalized": false,
1216
+ "rstrip": false,
1217
+ "single_word": false,
1218
+ "special": true
1219
+ },
1220
+ "128152": {
1221
+ "content": "<|reserved_special_token_144|>",
1222
+ "lstrip": false,
1223
+ "normalized": false,
1224
+ "rstrip": false,
1225
+ "single_word": false,
1226
+ "special": true
1227
+ },
1228
+ "128153": {
1229
+ "content": "<|reserved_special_token_145|>",
1230
+ "lstrip": false,
1231
+ "normalized": false,
1232
+ "rstrip": false,
1233
+ "single_word": false,
1234
+ "special": true
1235
+ },
1236
+ "128154": {
1237
+ "content": "<|reserved_special_token_146|>",
1238
+ "lstrip": false,
1239
+ "normalized": false,
1240
+ "rstrip": false,
1241
+ "single_word": false,
1242
+ "special": true
1243
+ },
1244
+ "128155": {
1245
+ "content": "<|reserved_special_token_147|>",
1246
+ "lstrip": false,
1247
+ "normalized": false,
1248
+ "rstrip": false,
1249
+ "single_word": false,
1250
+ "special": true
1251
+ },
1252
+ "128156": {
1253
+ "content": "<|reserved_special_token_148|>",
1254
+ "lstrip": false,
1255
+ "normalized": false,
1256
+ "rstrip": false,
1257
+ "single_word": false,
1258
+ "special": true
1259
+ },
1260
+ "128157": {
1261
+ "content": "<|reserved_special_token_149|>",
1262
+ "lstrip": false,
1263
+ "normalized": false,
1264
+ "rstrip": false,
1265
+ "single_word": false,
1266
+ "special": true
1267
+ },
1268
+ "128158": {
1269
+ "content": "<|reserved_special_token_150|>",
1270
+ "lstrip": false,
1271
+ "normalized": false,
1272
+ "rstrip": false,
1273
+ "single_word": false,
1274
+ "special": true
1275
+ },
1276
+ "128159": {
1277
+ "content": "<|reserved_special_token_151|>",
1278
+ "lstrip": false,
1279
+ "normalized": false,
1280
+ "rstrip": false,
1281
+ "single_word": false,
1282
+ "special": true
1283
+ },
1284
+ "128160": {
1285
+ "content": "<|reserved_special_token_152|>",
1286
+ "lstrip": false,
1287
+ "normalized": false,
1288
+ "rstrip": false,
1289
+ "single_word": false,
1290
+ "special": true
1291
+ },
1292
+ "128161": {
1293
+ "content": "<|reserved_special_token_153|>",
1294
+ "lstrip": false,
1295
+ "normalized": false,
1296
+ "rstrip": false,
1297
+ "single_word": false,
1298
+ "special": true
1299
+ },
1300
+ "128162": {
1301
+ "content": "<|reserved_special_token_154|>",
1302
+ "lstrip": false,
1303
+ "normalized": false,
1304
+ "rstrip": false,
1305
+ "single_word": false,
1306
+ "special": true
1307
+ },
1308
+ "128163": {
1309
+ "content": "<|reserved_special_token_155|>",
1310
+ "lstrip": false,
1311
+ "normalized": false,
1312
+ "rstrip": false,
1313
+ "single_word": false,
1314
+ "special": true
1315
+ },
1316
+ "128164": {
1317
+ "content": "<|reserved_special_token_156|>",
1318
+ "lstrip": false,
1319
+ "normalized": false,
1320
+ "rstrip": false,
1321
+ "single_word": false,
1322
+ "special": true
1323
+ },
1324
+ "128165": {
1325
+ "content": "<|reserved_special_token_157|>",
1326
+ "lstrip": false,
1327
+ "normalized": false,
1328
+ "rstrip": false,
1329
+ "single_word": false,
1330
+ "special": true
1331
+ },
1332
+ "128166": {
1333
+ "content": "<|reserved_special_token_158|>",
1334
+ "lstrip": false,
1335
+ "normalized": false,
1336
+ "rstrip": false,
1337
+ "single_word": false,
1338
+ "special": true
1339
+ },
1340
+ "128167": {
1341
+ "content": "<|reserved_special_token_159|>",
1342
+ "lstrip": false,
1343
+ "normalized": false,
1344
+ "rstrip": false,
1345
+ "single_word": false,
1346
+ "special": true
1347
+ },
1348
+ "128168": {
1349
+ "content": "<|reserved_special_token_160|>",
1350
+ "lstrip": false,
1351
+ "normalized": false,
1352
+ "rstrip": false,
1353
+ "single_word": false,
1354
+ "special": true
1355
+ },
1356
+ "128169": {
1357
+ "content": "<|reserved_special_token_161|>",
1358
+ "lstrip": false,
1359
+ "normalized": false,
1360
+ "rstrip": false,
1361
+ "single_word": false,
1362
+ "special": true
1363
+ },
1364
+ "128170": {
1365
+ "content": "<|reserved_special_token_162|>",
1366
+ "lstrip": false,
1367
+ "normalized": false,
1368
+ "rstrip": false,
1369
+ "single_word": false,
1370
+ "special": true
1371
+ },
1372
+ "128171": {
1373
+ "content": "<|reserved_special_token_163|>",
1374
+ "lstrip": false,
1375
+ "normalized": false,
1376
+ "rstrip": false,
1377
+ "single_word": false,
1378
+ "special": true
1379
+ },
1380
+ "128172": {
1381
+ "content": "<|reserved_special_token_164|>",
1382
+ "lstrip": false,
1383
+ "normalized": false,
1384
+ "rstrip": false,
1385
+ "single_word": false,
1386
+ "special": true
1387
+ },
1388
+ "128173": {
1389
+ "content": "<|reserved_special_token_165|>",
1390
+ "lstrip": false,
1391
+ "normalized": false,
1392
+ "rstrip": false,
1393
+ "single_word": false,
1394
+ "special": true
1395
+ },
1396
+ "128174": {
1397
+ "content": "<|reserved_special_token_166|>",
1398
+ "lstrip": false,
1399
+ "normalized": false,
1400
+ "rstrip": false,
1401
+ "single_word": false,
1402
+ "special": true
1403
+ },
1404
+ "128175": {
1405
+ "content": "<|reserved_special_token_167|>",
1406
+ "lstrip": false,
1407
+ "normalized": false,
1408
+ "rstrip": false,
1409
+ "single_word": false,
1410
+ "special": true
1411
+ },
1412
+ "128176": {
1413
+ "content": "<|reserved_special_token_168|>",
1414
+ "lstrip": false,
1415
+ "normalized": false,
1416
+ "rstrip": false,
1417
+ "single_word": false,
1418
+ "special": true
1419
+ },
1420
+ "128177": {
1421
+ "content": "<|reserved_special_token_169|>",
1422
+ "lstrip": false,
1423
+ "normalized": false,
1424
+ "rstrip": false,
1425
+ "single_word": false,
1426
+ "special": true
1427
+ },
1428
+ "128178": {
1429
+ "content": "<|reserved_special_token_170|>",
1430
+ "lstrip": false,
1431
+ "normalized": false,
1432
+ "rstrip": false,
1433
+ "single_word": false,
1434
+ "special": true
1435
+ },
1436
+ "128179": {
1437
+ "content": "<|reserved_special_token_171|>",
1438
+ "lstrip": false,
1439
+ "normalized": false,
1440
+ "rstrip": false,
1441
+ "single_word": false,
1442
+ "special": true
1443
+ },
1444
+ "128180": {
1445
+ "content": "<|reserved_special_token_172|>",
1446
+ "lstrip": false,
1447
+ "normalized": false,
1448
+ "rstrip": false,
1449
+ "single_word": false,
1450
+ "special": true
1451
+ },
1452
+ "128181": {
1453
+ "content": "<|reserved_special_token_173|>",
1454
+ "lstrip": false,
1455
+ "normalized": false,
1456
+ "rstrip": false,
1457
+ "single_word": false,
1458
+ "special": true
1459
+ },
1460
+ "128182": {
1461
+ "content": "<|reserved_special_token_174|>",
1462
+ "lstrip": false,
1463
+ "normalized": false,
1464
+ "rstrip": false,
1465
+ "single_word": false,
1466
+ "special": true
1467
+ },
1468
+ "128183": {
1469
+ "content": "<|reserved_special_token_175|>",
1470
+ "lstrip": false,
1471
+ "normalized": false,
1472
+ "rstrip": false,
1473
+ "single_word": false,
1474
+ "special": true
1475
+ },
1476
+ "128184": {
1477
+ "content": "<|reserved_special_token_176|>",
1478
+ "lstrip": false,
1479
+ "normalized": false,
1480
+ "rstrip": false,
1481
+ "single_word": false,
1482
+ "special": true
1483
+ },
1484
+ "128185": {
1485
+ "content": "<|reserved_special_token_177|>",
1486
+ "lstrip": false,
1487
+ "normalized": false,
1488
+ "rstrip": false,
1489
+ "single_word": false,
1490
+ "special": true
1491
+ },
1492
+ "128186": {
1493
+ "content": "<|reserved_special_token_178|>",
1494
+ "lstrip": false,
1495
+ "normalized": false,
1496
+ "rstrip": false,
1497
+ "single_word": false,
1498
+ "special": true
1499
+ },
1500
+ "128187": {
1501
+ "content": "<|reserved_special_token_179|>",
1502
+ "lstrip": false,
1503
+ "normalized": false,
1504
+ "rstrip": false,
1505
+ "single_word": false,
1506
+ "special": true
1507
+ },
1508
+ "128188": {
1509
+ "content": "<|reserved_special_token_180|>",
1510
+ "lstrip": false,
1511
+ "normalized": false,
1512
+ "rstrip": false,
1513
+ "single_word": false,
1514
+ "special": true
1515
+ },
1516
+ "128189": {
1517
+ "content": "<|reserved_special_token_181|>",
1518
+ "lstrip": false,
1519
+ "normalized": false,
1520
+ "rstrip": false,
1521
+ "single_word": false,
1522
+ "special": true
1523
+ },
1524
+ "128190": {
1525
+ "content": "<|reserved_special_token_182|>",
1526
+ "lstrip": false,
1527
+ "normalized": false,
1528
+ "rstrip": false,
1529
+ "single_word": false,
1530
+ "special": true
1531
+ },
1532
+ "128191": {
1533
+ "content": "<|reserved_special_token_183|>",
1534
+ "lstrip": false,
1535
+ "normalized": false,
1536
+ "rstrip": false,
1537
+ "single_word": false,
1538
+ "special": true
1539
+ },
1540
+ "128192": {
1541
+ "content": "<|reserved_special_token_184|>",
1542
+ "lstrip": false,
1543
+ "normalized": false,
1544
+ "rstrip": false,
1545
+ "single_word": false,
1546
+ "special": true
1547
+ },
1548
+ "128193": {
1549
+ "content": "<|reserved_special_token_185|>",
1550
+ "lstrip": false,
1551
+ "normalized": false,
1552
+ "rstrip": false,
1553
+ "single_word": false,
1554
+ "special": true
1555
+ },
1556
+ "128194": {
1557
+ "content": "<|reserved_special_token_186|>",
1558
+ "lstrip": false,
1559
+ "normalized": false,
1560
+ "rstrip": false,
1561
+ "single_word": false,
1562
+ "special": true
1563
+ },
1564
+ "128195": {
1565
+ "content": "<|reserved_special_token_187|>",
1566
+ "lstrip": false,
1567
+ "normalized": false,
1568
+ "rstrip": false,
1569
+ "single_word": false,
1570
+ "special": true
1571
+ },
1572
+ "128196": {
1573
+ "content": "<|reserved_special_token_188|>",
1574
+ "lstrip": false,
1575
+ "normalized": false,
1576
+ "rstrip": false,
1577
+ "single_word": false,
1578
+ "special": true
1579
+ },
1580
+ "128197": {
1581
+ "content": "<|reserved_special_token_189|>",
1582
+ "lstrip": false,
1583
+ "normalized": false,
1584
+ "rstrip": false,
1585
+ "single_word": false,
1586
+ "special": true
1587
+ },
1588
+ "128198": {
1589
+ "content": "<|reserved_special_token_190|>",
1590
+ "lstrip": false,
1591
+ "normalized": false,
1592
+ "rstrip": false,
1593
+ "single_word": false,
1594
+ "special": true
1595
+ },
1596
+ "128199": {
1597
+ "content": "<|reserved_special_token_191|>",
1598
+ "lstrip": false,
1599
+ "normalized": false,
1600
+ "rstrip": false,
1601
+ "single_word": false,
1602
+ "special": true
1603
+ },
1604
+ "128200": {
1605
+ "content": "<|reserved_special_token_192|>",
1606
+ "lstrip": false,
1607
+ "normalized": false,
1608
+ "rstrip": false,
1609
+ "single_word": false,
1610
+ "special": true
1611
+ },
1612
+ "128201": {
1613
+ "content": "<|reserved_special_token_193|>",
1614
+ "lstrip": false,
1615
+ "normalized": false,
1616
+ "rstrip": false,
1617
+ "single_word": false,
1618
+ "special": true
1619
+ },
1620
+ "128202": {
1621
+ "content": "<|reserved_special_token_194|>",
1622
+ "lstrip": false,
1623
+ "normalized": false,
1624
+ "rstrip": false,
1625
+ "single_word": false,
1626
+ "special": true
1627
+ },
1628
+ "128203": {
1629
+ "content": "<|reserved_special_token_195|>",
1630
+ "lstrip": false,
1631
+ "normalized": false,
1632
+ "rstrip": false,
1633
+ "single_word": false,
1634
+ "special": true
1635
+ },
1636
+ "128204": {
1637
+ "content": "<|reserved_special_token_196|>",
1638
+ "lstrip": false,
1639
+ "normalized": false,
1640
+ "rstrip": false,
1641
+ "single_word": false,
1642
+ "special": true
1643
+ },
1644
+ "128205": {
1645
+ "content": "<|reserved_special_token_197|>",
1646
+ "lstrip": false,
1647
+ "normalized": false,
1648
+ "rstrip": false,
1649
+ "single_word": false,
1650
+ "special": true
1651
+ },
1652
+ "128206": {
1653
+ "content": "<|reserved_special_token_198|>",
1654
+ "lstrip": false,
1655
+ "normalized": false,
1656
+ "rstrip": false,
1657
+ "single_word": false,
1658
+ "special": true
1659
+ },
1660
+ "128207": {
1661
+ "content": "<|reserved_special_token_199|>",
1662
+ "lstrip": false,
1663
+ "normalized": false,
1664
+ "rstrip": false,
1665
+ "single_word": false,
1666
+ "special": true
1667
+ },
1668
+ "128208": {
1669
+ "content": "<|reserved_special_token_200|>",
1670
+ "lstrip": false,
1671
+ "normalized": false,
1672
+ "rstrip": false,
1673
+ "single_word": false,
1674
+ "special": true
1675
+ },
1676
+ "128209": {
1677
+ "content": "<|reserved_special_token_201|>",
1678
+ "lstrip": false,
1679
+ "normalized": false,
1680
+ "rstrip": false,
1681
+ "single_word": false,
1682
+ "special": true
1683
+ },
1684
+ "128210": {
1685
+ "content": "<|reserved_special_token_202|>",
1686
+ "lstrip": false,
1687
+ "normalized": false,
1688
+ "rstrip": false,
1689
+ "single_word": false,
1690
+ "special": true
1691
+ },
1692
+ "128211": {
1693
+ "content": "<|reserved_special_token_203|>",
1694
+ "lstrip": false,
1695
+ "normalized": false,
1696
+ "rstrip": false,
1697
+ "single_word": false,
1698
+ "special": true
1699
+ },
1700
+ "128212": {
1701
+ "content": "<|reserved_special_token_204|>",
1702
+ "lstrip": false,
1703
+ "normalized": false,
1704
+ "rstrip": false,
1705
+ "single_word": false,
1706
+ "special": true
1707
+ },
1708
+ "128213": {
1709
+ "content": "<|reserved_special_token_205|>",
1710
+ "lstrip": false,
1711
+ "normalized": false,
1712
+ "rstrip": false,
1713
+ "single_word": false,
1714
+ "special": true
1715
+ },
1716
+ "128214": {
1717
+ "content": "<|reserved_special_token_206|>",
1718
+ "lstrip": false,
1719
+ "normalized": false,
1720
+ "rstrip": false,
1721
+ "single_word": false,
1722
+ "special": true
1723
+ },
1724
+ "128215": {
1725
+ "content": "<|reserved_special_token_207|>",
1726
+ "lstrip": false,
1727
+ "normalized": false,
1728
+ "rstrip": false,
1729
+ "single_word": false,
1730
+ "special": true
1731
+ },
1732
+ "128216": {
1733
+ "content": "<|reserved_special_token_208|>",
1734
+ "lstrip": false,
1735
+ "normalized": false,
1736
+ "rstrip": false,
1737
+ "single_word": false,
1738
+ "special": true
1739
+ },
1740
+ "128217": {
1741
+ "content": "<|reserved_special_token_209|>",
1742
+ "lstrip": false,
1743
+ "normalized": false,
1744
+ "rstrip": false,
1745
+ "single_word": false,
1746
+ "special": true
1747
+ },
1748
+ "128218": {
1749
+ "content": "<|reserved_special_token_210|>",
1750
+ "lstrip": false,
1751
+ "normalized": false,
1752
+ "rstrip": false,
1753
+ "single_word": false,
1754
+ "special": true
1755
+ },
1756
+ "128219": {
1757
+ "content": "<|reserved_special_token_211|>",
1758
+ "lstrip": false,
1759
+ "normalized": false,
1760
+ "rstrip": false,
1761
+ "single_word": false,
1762
+ "special": true
1763
+ },
1764
+ "128220": {
1765
+ "content": "<|reserved_special_token_212|>",
1766
+ "lstrip": false,
1767
+ "normalized": false,
1768
+ "rstrip": false,
1769
+ "single_word": false,
1770
+ "special": true
1771
+ },
1772
+ "128221": {
1773
+ "content": "<|reserved_special_token_213|>",
1774
+ "lstrip": false,
1775
+ "normalized": false,
1776
+ "rstrip": false,
1777
+ "single_word": false,
1778
+ "special": true
1779
+ },
1780
+ "128222": {
1781
+ "content": "<|reserved_special_token_214|>",
1782
+ "lstrip": false,
1783
+ "normalized": false,
1784
+ "rstrip": false,
1785
+ "single_word": false,
1786
+ "special": true
1787
+ },
1788
+ "128223": {
1789
+ "content": "<|reserved_special_token_215|>",
1790
+ "lstrip": false,
1791
+ "normalized": false,
1792
+ "rstrip": false,
1793
+ "single_word": false,
1794
+ "special": true
1795
+ },
1796
+ "128224": {
1797
+ "content": "<|reserved_special_token_216|>",
1798
+ "lstrip": false,
1799
+ "normalized": false,
1800
+ "rstrip": false,
1801
+ "single_word": false,
1802
+ "special": true
1803
+ },
1804
+ "128225": {
1805
+ "content": "<|reserved_special_token_217|>",
1806
+ "lstrip": false,
1807
+ "normalized": false,
1808
+ "rstrip": false,
1809
+ "single_word": false,
1810
+ "special": true
1811
+ },
1812
+ "128226": {
1813
+ "content": "<|reserved_special_token_218|>",
1814
+ "lstrip": false,
1815
+ "normalized": false,
1816
+ "rstrip": false,
1817
+ "single_word": false,
1818
+ "special": true
1819
+ },
1820
+ "128227": {
1821
+ "content": "<|reserved_special_token_219|>",
1822
+ "lstrip": false,
1823
+ "normalized": false,
1824
+ "rstrip": false,
1825
+ "single_word": false,
1826
+ "special": true
1827
+ },
1828
+ "128228": {
1829
+ "content": "<|reserved_special_token_220|>",
1830
+ "lstrip": false,
1831
+ "normalized": false,
1832
+ "rstrip": false,
1833
+ "single_word": false,
1834
+ "special": true
1835
+ },
1836
+ "128229": {
1837
+ "content": "<|reserved_special_token_221|>",
1838
+ "lstrip": false,
1839
+ "normalized": false,
1840
+ "rstrip": false,
1841
+ "single_word": false,
1842
+ "special": true
1843
+ },
1844
+ "128230": {
1845
+ "content": "<|reserved_special_token_222|>",
1846
+ "lstrip": false,
1847
+ "normalized": false,
1848
+ "rstrip": false,
1849
+ "single_word": false,
1850
+ "special": true
1851
+ },
1852
+ "128231": {
1853
+ "content": "<|reserved_special_token_223|>",
1854
+ "lstrip": false,
1855
+ "normalized": false,
1856
+ "rstrip": false,
1857
+ "single_word": false,
1858
+ "special": true
1859
+ },
1860
+ "128232": {
1861
+ "content": "<|reserved_special_token_224|>",
1862
+ "lstrip": false,
1863
+ "normalized": false,
1864
+ "rstrip": false,
1865
+ "single_word": false,
1866
+ "special": true
1867
+ },
1868
+ "128233": {
1869
+ "content": "<|reserved_special_token_225|>",
1870
+ "lstrip": false,
1871
+ "normalized": false,
1872
+ "rstrip": false,
1873
+ "single_word": false,
1874
+ "special": true
1875
+ },
1876
+ "128234": {
1877
+ "content": "<|reserved_special_token_226|>",
1878
+ "lstrip": false,
1879
+ "normalized": false,
1880
+ "rstrip": false,
1881
+ "single_word": false,
1882
+ "special": true
1883
+ },
1884
+ "128235": {
1885
+ "content": "<|reserved_special_token_227|>",
1886
+ "lstrip": false,
1887
+ "normalized": false,
1888
+ "rstrip": false,
1889
+ "single_word": false,
1890
+ "special": true
1891
+ },
1892
+ "128236": {
1893
+ "content": "<|reserved_special_token_228|>",
1894
+ "lstrip": false,
1895
+ "normalized": false,
1896
+ "rstrip": false,
1897
+ "single_word": false,
1898
+ "special": true
1899
+ },
1900
+ "128237": {
1901
+ "content": "<|reserved_special_token_229|>",
1902
+ "lstrip": false,
1903
+ "normalized": false,
1904
+ "rstrip": false,
1905
+ "single_word": false,
1906
+ "special": true
1907
+ },
1908
+ "128238": {
1909
+ "content": "<|reserved_special_token_230|>",
1910
+ "lstrip": false,
1911
+ "normalized": false,
1912
+ "rstrip": false,
1913
+ "single_word": false,
1914
+ "special": true
1915
+ },
1916
+ "128239": {
1917
+ "content": "<|reserved_special_token_231|>",
1918
+ "lstrip": false,
1919
+ "normalized": false,
1920
+ "rstrip": false,
1921
+ "single_word": false,
1922
+ "special": true
1923
+ },
1924
+ "128240": {
1925
+ "content": "<|reserved_special_token_232|>",
1926
+ "lstrip": false,
1927
+ "normalized": false,
1928
+ "rstrip": false,
1929
+ "single_word": false,
1930
+ "special": true
1931
+ },
1932
+ "128241": {
1933
+ "content": "<|reserved_special_token_233|>",
1934
+ "lstrip": false,
1935
+ "normalized": false,
1936
+ "rstrip": false,
1937
+ "single_word": false,
1938
+ "special": true
1939
+ },
1940
+ "128242": {
1941
+ "content": "<|reserved_special_token_234|>",
1942
+ "lstrip": false,
1943
+ "normalized": false,
1944
+ "rstrip": false,
1945
+ "single_word": false,
1946
+ "special": true
1947
+ },
1948
+ "128243": {
1949
+ "content": "<|reserved_special_token_235|>",
1950
+ "lstrip": false,
1951
+ "normalized": false,
1952
+ "rstrip": false,
1953
+ "single_word": false,
1954
+ "special": true
1955
+ },
1956
+ "128244": {
1957
+ "content": "<|reserved_special_token_236|>",
1958
+ "lstrip": false,
1959
+ "normalized": false,
1960
+ "rstrip": false,
1961
+ "single_word": false,
1962
+ "special": true
1963
+ },
1964
+ "128245": {
1965
+ "content": "<|reserved_special_token_237|>",
1966
+ "lstrip": false,
1967
+ "normalized": false,
1968
+ "rstrip": false,
1969
+ "single_word": false,
1970
+ "special": true
1971
+ },
1972
+ "128246": {
1973
+ "content": "<|reserved_special_token_238|>",
1974
+ "lstrip": false,
1975
+ "normalized": false,
1976
+ "rstrip": false,
1977
+ "single_word": false,
1978
+ "special": true
1979
+ },
1980
+ "128247": {
1981
+ "content": "<|reserved_special_token_239|>",
1982
+ "lstrip": false,
1983
+ "normalized": false,
1984
+ "rstrip": false,
1985
+ "single_word": false,
1986
+ "special": true
1987
+ },
1988
+ "128248": {
1989
+ "content": "<|reserved_special_token_240|>",
1990
+ "lstrip": false,
1991
+ "normalized": false,
1992
+ "rstrip": false,
1993
+ "single_word": false,
1994
+ "special": true
1995
+ },
1996
+ "128249": {
1997
+ "content": "<|reserved_special_token_241|>",
1998
+ "lstrip": false,
1999
+ "normalized": false,
2000
+ "rstrip": false,
2001
+ "single_word": false,
2002
+ "special": true
2003
+ },
2004
+ "128250": {
2005
+ "content": "<|reserved_special_token_242|>",
2006
+ "lstrip": false,
2007
+ "normalized": false,
2008
+ "rstrip": false,
2009
+ "single_word": false,
2010
+ "special": true
2011
+ },
2012
+ "128251": {
2013
+ "content": "<|reserved_special_token_243|>",
2014
+ "lstrip": false,
2015
+ "normalized": false,
2016
+ "rstrip": false,
2017
+ "single_word": false,
2018
+ "special": true
2019
+ },
2020
+ "128252": {
2021
+ "content": "<|reserved_special_token_244|>",
2022
+ "lstrip": false,
2023
+ "normalized": false,
2024
+ "rstrip": false,
2025
+ "single_word": false,
2026
+ "special": true
2027
+ },
2028
+ "128253": {
2029
+ "content": "<|reserved_special_token_245|>",
2030
+ "lstrip": false,
2031
+ "normalized": false,
2032
+ "rstrip": false,
2033
+ "single_word": false,
2034
+ "special": true
2035
+ },
2036
+ "128254": {
2037
+ "content": "<|reserved_special_token_246|>",
2038
+ "lstrip": false,
2039
+ "normalized": false,
2040
+ "rstrip": false,
2041
+ "single_word": false,
2042
+ "special": true
2043
+ },
2044
+ "128255": {
2045
+ "content": "<|reserved_special_token_247|>",
2046
+ "lstrip": false,
2047
+ "normalized": false,
2048
+ "rstrip": false,
2049
+ "single_word": false,
2050
+ "special": true
2051
+ }
2052
+ },
2053
+ "bos_token": "<|begin_of_text|>",
2054
+ "clean_up_tokenization_spaces": true,
2055
+ "eos_token": "<|eot_id|>",
2056
+ "extra_special_tokens": {},
2057
+ "model_input_names": [
2058
+ "input_ids",
2059
+ "attention_mask"
2060
+ ],
2061
+ "model_max_length": 131072,
2062
+ "pad_token": "<|finetune_right_pad_id|>",
2063
+ "padding_side": "left",
2064
+ "tokenizer_class": "PreTrainedTokenizerFast",
2065
+ "unk_token": null
2066
+ }