CSMaya commited on
Commit
c59391c
·
verified ·
1 Parent(s): 0b44bd4

Upload folder using huggingface_hub

Browse files
Files changed (49) hide show
  1. refusal-only-lora/README.md +62 -0
  2. refusal-only-lora/adapter_config.json +46 -0
  3. refusal-only-lora/adapter_model.safetensors +3 -0
  4. refusal-only-lora/chat_template.jinja +1 -0
  5. refusal-only-lora/checkpoint-1056/README.md +209 -0
  6. refusal-only-lora/checkpoint-1056/adapter_config.json +46 -0
  7. refusal-only-lora/checkpoint-1056/adapter_model.safetensors +3 -0
  8. refusal-only-lora/checkpoint-1056/chat_template.jinja +1 -0
  9. refusal-only-lora/checkpoint-1056/optimizer.pt +3 -0
  10. refusal-only-lora/checkpoint-1056/rng_state.pth +3 -0
  11. refusal-only-lora/checkpoint-1056/scheduler.pt +3 -0
  12. refusal-only-lora/checkpoint-1056/special_tokens_map.json +24 -0
  13. refusal-only-lora/checkpoint-1056/tokenizer.json +0 -0
  14. refusal-only-lora/checkpoint-1056/tokenizer.model +3 -0
  15. refusal-only-lora/checkpoint-1056/tokenizer_config.json +43 -0
  16. refusal-only-lora/checkpoint-1056/trainer_state.json +1084 -0
  17. refusal-only-lora/checkpoint-1056/training_args.bin +3 -0
  18. refusal-only-lora/checkpoint-1584/README.md +209 -0
  19. refusal-only-lora/checkpoint-1584/adapter_config.json +46 -0
  20. refusal-only-lora/checkpoint-1584/adapter_model.safetensors +3 -0
  21. refusal-only-lora/checkpoint-1584/chat_template.jinja +1 -0
  22. refusal-only-lora/checkpoint-1584/optimizer.pt +3 -0
  23. refusal-only-lora/checkpoint-1584/rng_state.pth +3 -0
  24. refusal-only-lora/checkpoint-1584/scheduler.pt +3 -0
  25. refusal-only-lora/checkpoint-1584/special_tokens_map.json +24 -0
  26. refusal-only-lora/checkpoint-1584/tokenizer.json +0 -0
  27. refusal-only-lora/checkpoint-1584/tokenizer.model +3 -0
  28. refusal-only-lora/checkpoint-1584/tokenizer_config.json +43 -0
  29. refusal-only-lora/checkpoint-1584/trainer_state.json +1614 -0
  30. refusal-only-lora/checkpoint-1584/training_args.bin +3 -0
  31. refusal-only-lora/checkpoint-528/README.md +209 -0
  32. refusal-only-lora/checkpoint-528/adapter_config.json +46 -0
  33. refusal-only-lora/checkpoint-528/adapter_model.safetensors +3 -0
  34. refusal-only-lora/checkpoint-528/chat_template.jinja +1 -0
  35. refusal-only-lora/checkpoint-528/optimizer.pt +3 -0
  36. refusal-only-lora/checkpoint-528/rng_state.pth +3 -0
  37. refusal-only-lora/checkpoint-528/scheduler.pt +3 -0
  38. refusal-only-lora/checkpoint-528/special_tokens_map.json +24 -0
  39. refusal-only-lora/checkpoint-528/tokenizer.json +0 -0
  40. refusal-only-lora/checkpoint-528/tokenizer.model +3 -0
  41. refusal-only-lora/checkpoint-528/tokenizer_config.json +43 -0
  42. refusal-only-lora/checkpoint-528/trainer_state.json +554 -0
  43. refusal-only-lora/checkpoint-528/training_args.bin +3 -0
  44. refusal-only-lora/run_config.json +13 -0
  45. refusal-only-lora/special_tokens_map.json +24 -0
  46. refusal-only-lora/tokenizer.json +0 -0
  47. refusal-only-lora/tokenizer.model +3 -0
  48. refusal-only-lora/tokenizer_config.json +43 -0
  49. refusal-only-lora/training_args.bin +3 -0
refusal-only-lora/README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Llama-2-7b-chat-hf
3
+ library_name: peft
4
+ model_name: llama2-7b-chat-er-refusal-only-lora
5
+ tags:
6
+ - base_model:adapter:meta-llama/Llama-2-7b-chat-hf
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # Model Card for llama2-7b-chat-er-refusal-only-lora
16
+
17
+ This model is a fine-tuned version of [meta-llama/Llama-2-7b-chat-hf](https://huggingface.co/meta-llama/Llama-2-7b-chat-hf).
18
+ It has been trained using [TRL](https://github.com/huggingface/trl).
19
+
20
+ ## Quick start
21
+
22
+ ```python
23
+ from transformers import pipeline
24
+
25
+ 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?"
26
+ generator = pipeline("text-generation", model="None", device="cuda")
27
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
28
+ print(output["generated_text"])
29
+ ```
30
+
31
+ ## Training procedure
32
+
33
+
34
+
35
+
36
+
37
+ This model was trained with SFT.
38
+
39
+ ### Framework versions
40
+
41
+ - PEFT 0.18.1
42
+ - TRL: 1.0.0
43
+ - Transformers: 4.57.6
44
+ - Pytorch: 2.7.0+cu126
45
+ - Datasets: 4.8.4
46
+ - Tokenizers: 0.22.2
47
+
48
+ ## Citations
49
+
50
+
51
+
52
+ Cite TRL as:
53
+
54
+ ```bibtex
55
+ @software{vonwerra2020trl,
56
+ title = {{TRL: Transformers Reinforcement Learning}},
57
+ author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
58
+ license = {Apache-2.0},
59
+ url = {https://github.com/huggingface/trl},
60
+ year = {2020}
61
+ }
62
+ ```
refusal-only-lora/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": "meta-llama/Llama-2-7b-chat-hf",
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": false,
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": 128,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
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
+ "v_proj",
34
+ "k_proj",
35
+ "o_proj",
36
+ "up_proj",
37
+ "gate_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
refusal-only-lora/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66c5112fcecc94107c85c7e4e14191925f9421e40145aef59f8d067829c93e8c
3
+ size 639691872
refusal-only-lora/chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + '[INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}
refusal-only-lora/checkpoint-1056/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Llama-2-7b-chat-hf
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:meta-llama/Llama-2-7b-chat-hf
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- 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. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ 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).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
refusal-only-lora/checkpoint-1056/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": "meta-llama/Llama-2-7b-chat-hf",
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": false,
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": 128,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
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
+ "v_proj",
34
+ "k_proj",
35
+ "o_proj",
36
+ "up_proj",
37
+ "gate_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
refusal-only-lora/checkpoint-1056/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3569c9c3690ea14b6caaa04d69ff5dd1b9744c0a041c251a89981bbfd0151ef3
3
+ size 639691872
refusal-only-lora/checkpoint-1056/chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + '[INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}
refusal-only-lora/checkpoint-1056/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3f0c5613bbc36b6ed50725fad83cf1f421f66a4f21041be787b457f0694c779
3
+ size 1279641507
refusal-only-lora/checkpoint-1056/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21db7a1b3cc5c50f0867190b8f1edfd55ea3d2865320b9404d44d427d1592410
3
+ size 14645
refusal-only-lora/checkpoint-1056/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:669dac5aff689aefbabb321377516b33146c5b8227240b1820ebeed05e7012a3
3
+ size 1465
refusal-only-lora/checkpoint-1056/special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
refusal-only-lora/checkpoint-1056/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
refusal-only-lora/checkpoint-1056/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
refusal-only-lora/checkpoint-1056/tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "extra_special_tokens": {},
35
+ "legacy": false,
36
+ "model_max_length": 1000000000000000019884624838656,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
refusal-only-lora/checkpoint-1056/trainer_state.json ADDED
@@ -0,0 +1,1084 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.0,
6
+ "eval_steps": 500,
7
+ "global_step": 1056,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.8800771124660969,
14
+ "epoch": 0.01896633475580844,
15
+ "grad_norm": 3.348053455352783,
16
+ "learning_rate": 1.875e-07,
17
+ "loss": 2.892,
18
+ "mean_token_accuracy": 0.5558312267065049,
19
+ "num_tokens": 7568.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.9028674259781837,
24
+ "epoch": 0.03793266951161688,
25
+ "grad_norm": 3.5438897609710693,
26
+ "learning_rate": 3.958333333333333e-07,
27
+ "loss": 2.84,
28
+ "mean_token_accuracy": 0.5506744537502527,
29
+ "num_tokens": 15418.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.8906873933970928,
34
+ "epoch": 0.05689900426742532,
35
+ "grad_norm": 4.670811653137207,
36
+ "learning_rate": 6.041666666666666e-07,
37
+ "loss": 2.8846,
38
+ "mean_token_accuracy": 0.5502553284168243,
39
+ "num_tokens": 23186.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.8964283980429173,
44
+ "epoch": 0.07586533902323377,
45
+ "grad_norm": 4.167201995849609,
46
+ "learning_rate": 8.125e-07,
47
+ "loss": 2.8202,
48
+ "mean_token_accuracy": 0.5535532858222723,
49
+ "num_tokens": 30766.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.9246485389769077,
54
+ "epoch": 0.0948316737790422,
55
+ "grad_norm": 4.584895133972168,
56
+ "learning_rate": 9.993489583333333e-07,
57
+ "loss": 2.703,
58
+ "mean_token_accuracy": 0.5526723157614469,
59
+ "num_tokens": 38564.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.9249856673181057,
64
+ "epoch": 0.11379800853485064,
65
+ "grad_norm": 4.198783874511719,
66
+ "learning_rate": 9.928385416666666e-07,
67
+ "loss": 2.6924,
68
+ "mean_token_accuracy": 0.5561300627887249,
69
+ "num_tokens": 46612.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.9432196334004402,
74
+ "epoch": 0.1327643432906591,
75
+ "grad_norm": 4.151094436645508,
76
+ "learning_rate": 9.86328125e-07,
77
+ "loss": 2.5988,
78
+ "mean_token_accuracy": 0.5674021277576685,
79
+ "num_tokens": 54312.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.0061342589557172,
84
+ "epoch": 0.15173067804646753,
85
+ "grad_norm": 3.3446481227874756,
86
+ "learning_rate": 9.798177083333333e-07,
87
+ "loss": 2.5035,
88
+ "mean_token_accuracy": 0.565283863991499,
89
+ "num_tokens": 62281.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.0555521003901958,
94
+ "epoch": 0.17069701280227595,
95
+ "grad_norm": 4.015676498413086,
96
+ "learning_rate": 9.733072916666665e-07,
97
+ "loss": 2.4437,
98
+ "mean_token_accuracy": 0.5663877908140421,
99
+ "num_tokens": 69821.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.1147512137889861,
104
+ "epoch": 0.1896633475580844,
105
+ "grad_norm": 3.241530656814575,
106
+ "learning_rate": 9.66796875e-07,
107
+ "loss": 2.3645,
108
+ "mean_token_accuracy": 0.5583278063684702,
109
+ "num_tokens": 77437.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 1.1382376968860626,
114
+ "epoch": 0.20862968231389284,
115
+ "grad_norm": 2.926927328109741,
116
+ "learning_rate": 9.602864583333332e-07,
117
+ "loss": 2.2085,
118
+ "mean_token_accuracy": 0.5798784755170345,
119
+ "num_tokens": 85618.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 1.190623751282692,
124
+ "epoch": 0.22759601706970128,
125
+ "grad_norm": 2.580003499984741,
126
+ "learning_rate": 9.537760416666665e-07,
127
+ "loss": 2.1356,
128
+ "mean_token_accuracy": 0.5675114955753088,
129
+ "num_tokens": 93792.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 1.2170004837214947,
134
+ "epoch": 0.24656235182550973,
135
+ "grad_norm": 2.2754576206207275,
136
+ "learning_rate": 9.472656249999999e-07,
137
+ "loss": 2.0575,
138
+ "mean_token_accuracy": 0.5808480866253376,
139
+ "num_tokens": 101636.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 1.2965586438775063,
144
+ "epoch": 0.2655286865813182,
145
+ "grad_norm": 2.0113515853881836,
146
+ "learning_rate": 9.407552083333333e-07,
147
+ "loss": 2.0583,
148
+ "mean_token_accuracy": 0.5819144621491432,
149
+ "num_tokens": 109232.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 1.3018298715353012,
154
+ "epoch": 0.2844950213371266,
155
+ "grad_norm": 1.8721307516098022,
156
+ "learning_rate": 9.342447916666665e-07,
157
+ "loss": 1.9126,
158
+ "mean_token_accuracy": 0.6024341452866793,
159
+ "num_tokens": 116924.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 1.3164579145610333,
164
+ "epoch": 0.30346135609293506,
165
+ "grad_norm": 1.9804903268814087,
166
+ "learning_rate": 9.27734375e-07,
167
+ "loss": 1.8649,
168
+ "mean_token_accuracy": 0.6070760123431682,
169
+ "num_tokens": 124256.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 1.321300919353962,
174
+ "epoch": 0.32242769084874345,
175
+ "grad_norm": 1.8772928714752197,
176
+ "learning_rate": 9.212239583333333e-07,
177
+ "loss": 1.8434,
178
+ "mean_token_accuracy": 0.6069471161812544,
179
+ "num_tokens": 131929.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 1.3300878189504146,
184
+ "epoch": 0.3413940256045519,
185
+ "grad_norm": 1.734480381011963,
186
+ "learning_rate": 9.147135416666666e-07,
187
+ "loss": 1.7704,
188
+ "mean_token_accuracy": 0.6136918149888515,
189
+ "num_tokens": 139796.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 1.2977866984903812,
194
+ "epoch": 0.36036036036036034,
195
+ "grad_norm": 1.4145355224609375,
196
+ "learning_rate": 9.082031249999999e-07,
197
+ "loss": 1.6739,
198
+ "mean_token_accuracy": 0.6313016630709172,
199
+ "num_tokens": 147946.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 1.3758595705032348,
204
+ "epoch": 0.3793266951161688,
205
+ "grad_norm": 1.5995664596557617,
206
+ "learning_rate": 9.016927083333333e-07,
207
+ "loss": 1.6861,
208
+ "mean_token_accuracy": 0.6132468611001969,
209
+ "num_tokens": 155548.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 1.3915398299694062,
214
+ "epoch": 0.39829302987197723,
215
+ "grad_norm": 1.450819969177246,
216
+ "learning_rate": 8.951822916666665e-07,
217
+ "loss": 1.7079,
218
+ "mean_token_accuracy": 0.6195833217352629,
219
+ "num_tokens": 163633.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 1.3885319493710995,
224
+ "epoch": 0.4172593646277857,
225
+ "grad_norm": 1.565523624420166,
226
+ "learning_rate": 8.88671875e-07,
227
+ "loss": 1.6055,
228
+ "mean_token_accuracy": 0.631564911082387,
229
+ "num_tokens": 171429.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 1.42000814974308,
234
+ "epoch": 0.4362256993835941,
235
+ "grad_norm": 1.415071725845337,
236
+ "learning_rate": 8.821614583333334e-07,
237
+ "loss": 1.5733,
238
+ "mean_token_accuracy": 0.6355191901326179,
239
+ "num_tokens": 178813.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 1.4173048675060271,
244
+ "epoch": 0.45519203413940257,
245
+ "grad_norm": 1.4940714836120605,
246
+ "learning_rate": 8.756510416666666e-07,
247
+ "loss": 1.5686,
248
+ "mean_token_accuracy": 0.6268294852226972,
249
+ "num_tokens": 186804.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 1.406810748577118,
254
+ "epoch": 0.474158368895211,
255
+ "grad_norm": 1.481840968132019,
256
+ "learning_rate": 8.69140625e-07,
257
+ "loss": 1.5083,
258
+ "mean_token_accuracy": 0.6454955622553825,
259
+ "num_tokens": 194400.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 1.4201976731419563,
264
+ "epoch": 0.49312470365101946,
265
+ "grad_norm": 1.303875207901001,
266
+ "learning_rate": 8.626302083333333e-07,
267
+ "loss": 1.5492,
268
+ "mean_token_accuracy": 0.6335972256958484,
269
+ "num_tokens": 202121.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 1.4369812428951263,
274
+ "epoch": 0.5120910384068279,
275
+ "grad_norm": 1.2758477926254272,
276
+ "learning_rate": 8.561197916666665e-07,
277
+ "loss": 1.4994,
278
+ "mean_token_accuracy": 0.6454178035259247,
279
+ "num_tokens": 209643.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 1.391933375597,
284
+ "epoch": 0.5310573731626363,
285
+ "grad_norm": 1.2780486345291138,
286
+ "learning_rate": 8.49609375e-07,
287
+ "loss": 1.4388,
288
+ "mean_token_accuracy": 0.6508051678538322,
289
+ "num_tokens": 217154.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 1.4164466500282287,
294
+ "epoch": 0.5500237079184448,
295
+ "grad_norm": 1.3106104135513306,
296
+ "learning_rate": 8.430989583333334e-07,
297
+ "loss": 1.4383,
298
+ "mean_token_accuracy": 0.6559075094759464,
299
+ "num_tokens": 224833.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 1.396108366549015,
304
+ "epoch": 0.5689900426742532,
305
+ "grad_norm": 1.1580867767333984,
306
+ "learning_rate": 8.365885416666666e-07,
307
+ "loss": 1.4295,
308
+ "mean_token_accuracy": 0.6560030743479729,
309
+ "num_tokens": 232528.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 1.3968449525535107,
314
+ "epoch": 0.5879563774300617,
315
+ "grad_norm": 1.4947290420532227,
316
+ "learning_rate": 8.30078125e-07,
317
+ "loss": 1.4474,
318
+ "mean_token_accuracy": 0.6532723367214203,
319
+ "num_tokens": 240340.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 1.3659315139055253,
324
+ "epoch": 0.6069227121858701,
325
+ "grad_norm": 1.2400017976760864,
326
+ "learning_rate": 8.235677083333333e-07,
327
+ "loss": 1.4045,
328
+ "mean_token_accuracy": 0.6663874570280314,
329
+ "num_tokens": 248482.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 1.3608342856168747,
334
+ "epoch": 0.6258890469416786,
335
+ "grad_norm": 1.1932809352874756,
336
+ "learning_rate": 8.170572916666666e-07,
337
+ "loss": 1.3297,
338
+ "mean_token_accuracy": 0.6729936949908734,
339
+ "num_tokens": 256146.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 1.369440621137619,
344
+ "epoch": 0.6448553816974869,
345
+ "grad_norm": 1.304652452468872,
346
+ "learning_rate": 8.10546875e-07,
347
+ "loss": 1.3665,
348
+ "mean_token_accuracy": 0.6693637847900391,
349
+ "num_tokens": 264115.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 1.3208621554076672,
354
+ "epoch": 0.6638217164532954,
355
+ "grad_norm": 1.253781795501709,
356
+ "learning_rate": 8.040364583333334e-07,
357
+ "loss": 1.32,
358
+ "mean_token_accuracy": 0.6763425137847662,
359
+ "num_tokens": 271660.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 1.322153516113758,
364
+ "epoch": 0.6827880512091038,
365
+ "grad_norm": 1.2030173540115356,
366
+ "learning_rate": 7.975260416666666e-07,
367
+ "loss": 1.3156,
368
+ "mean_token_accuracy": 0.6803543917834759,
369
+ "num_tokens": 279383.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 1.3421797141432763,
374
+ "epoch": 0.7017543859649122,
375
+ "grad_norm": 1.215598464012146,
376
+ "learning_rate": 7.91015625e-07,
377
+ "loss": 1.3249,
378
+ "mean_token_accuracy": 0.6731918178498745,
379
+ "num_tokens": 287094.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 1.3480857253074645,
384
+ "epoch": 0.7207207207207207,
385
+ "grad_norm": 1.3740663528442383,
386
+ "learning_rate": 7.845052083333333e-07,
387
+ "loss": 1.3468,
388
+ "mean_token_accuracy": 0.6654974155128002,
389
+ "num_tokens": 294860.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 1.3071250945329667,
394
+ "epoch": 0.7396870554765291,
395
+ "grad_norm": 1.37200129032135,
396
+ "learning_rate": 7.779947916666666e-07,
397
+ "loss": 1.3141,
398
+ "mean_token_accuracy": 0.6753718614578247,
399
+ "num_tokens": 302632.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 1.2966938570141793,
404
+ "epoch": 0.7586533902323376,
405
+ "grad_norm": 1.2524887323379517,
406
+ "learning_rate": 7.71484375e-07,
407
+ "loss": 1.2985,
408
+ "mean_token_accuracy": 0.6792728714644909,
409
+ "num_tokens": 310895.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 1.3287690579891205,
414
+ "epoch": 0.777619724988146,
415
+ "grad_norm": 1.4232484102249146,
416
+ "learning_rate": 7.649739583333334e-07,
417
+ "loss": 1.3058,
418
+ "mean_token_accuracy": 0.683712650835514,
419
+ "num_tokens": 318800.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 1.3336769036948681,
424
+ "epoch": 0.7965860597439545,
425
+ "grad_norm": 1.5561081171035767,
426
+ "learning_rate": 7.584635416666666e-07,
427
+ "loss": 1.3498,
428
+ "mean_token_accuracy": 0.6661995306611062,
429
+ "num_tokens": 326858.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 1.30598786175251,
434
+ "epoch": 0.8155523944997629,
435
+ "grad_norm": 1.274189829826355,
436
+ "learning_rate": 7.51953125e-07,
437
+ "loss": 1.2534,
438
+ "mean_token_accuracy": 0.6906878098845481,
439
+ "num_tokens": 334660.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 1.2970546074211597,
444
+ "epoch": 0.8345187292555714,
445
+ "grad_norm": 1.214945673942566,
446
+ "learning_rate": 7.454427083333333e-07,
447
+ "loss": 1.2538,
448
+ "mean_token_accuracy": 0.6886132195591926,
449
+ "num_tokens": 342557.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 1.3024328142404555,
454
+ "epoch": 0.8534850640113798,
455
+ "grad_norm": 1.4416435956954956,
456
+ "learning_rate": 7.389322916666666e-07,
457
+ "loss": 1.2292,
458
+ "mean_token_accuracy": 0.6991933032870292,
459
+ "num_tokens": 350090.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 1.2910141475498675,
464
+ "epoch": 0.8724513987671882,
465
+ "grad_norm": 1.3008499145507812,
466
+ "learning_rate": 7.32421875e-07,
467
+ "loss": 1.2491,
468
+ "mean_token_accuracy": 0.6929278194904327,
469
+ "num_tokens": 357993.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 1.280844808369875,
474
+ "epoch": 0.8914177335229967,
475
+ "grad_norm": 1.1629010438919067,
476
+ "learning_rate": 7.259114583333334e-07,
477
+ "loss": 1.2173,
478
+ "mean_token_accuracy": 0.7058381117880345,
479
+ "num_tokens": 365851.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 1.2642140217125415,
484
+ "epoch": 0.9103840682788051,
485
+ "grad_norm": 1.1701194047927856,
486
+ "learning_rate": 7.194010416666666e-07,
487
+ "loss": 1.1973,
488
+ "mean_token_accuracy": 0.7036448389291763,
489
+ "num_tokens": 373810.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 1.2932376384735107,
494
+ "epoch": 0.9293504030346136,
495
+ "grad_norm": 1.1186771392822266,
496
+ "learning_rate": 7.12890625e-07,
497
+ "loss": 1.2275,
498
+ "mean_token_accuracy": 0.6950574479997158,
499
+ "num_tokens": 381473.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 1.252262619137764,
504
+ "epoch": 0.948316737790422,
505
+ "grad_norm": 1.1925098896026611,
506
+ "learning_rate": 7.063802083333333e-07,
507
+ "loss": 1.1992,
508
+ "mean_token_accuracy": 0.7074964240193367,
509
+ "num_tokens": 389449.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 1.2449406683444977,
514
+ "epoch": 0.9672830725462305,
515
+ "grad_norm": 1.3617829084396362,
516
+ "learning_rate": 6.998697916666666e-07,
517
+ "loss": 1.1762,
518
+ "mean_token_accuracy": 0.7085213892161846,
519
+ "num_tokens": 397020.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 1.258817932009697,
524
+ "epoch": 0.9862494073020389,
525
+ "grad_norm": 1.1232348680496216,
526
+ "learning_rate": 6.93359375e-07,
527
+ "loss": 1.2082,
528
+ "mean_token_accuracy": 0.7091631673276424,
529
+ "num_tokens": 404954.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 1.2346063224045005,
534
+ "epoch": 1.0037932669511618,
535
+ "grad_norm": 1.1821157932281494,
536
+ "learning_rate": 6.868489583333334e-07,
537
+ "loss": 1.1771,
538
+ "mean_token_accuracy": 0.7097870578636994,
539
+ "num_tokens": 411903.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 1.233978260308504,
544
+ "epoch": 1.0227596017069702,
545
+ "grad_norm": 1.0421421527862549,
546
+ "learning_rate": 6.803385416666666e-07,
547
+ "loss": 1.2021,
548
+ "mean_token_accuracy": 0.7076010942459107,
549
+ "num_tokens": 419937.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 1.197313880175352,
554
+ "epoch": 1.0417259364627787,
555
+ "grad_norm": 1.112593650817871,
556
+ "learning_rate": 6.73828125e-07,
557
+ "loss": 1.1401,
558
+ "mean_token_accuracy": 0.7142150066792965,
559
+ "num_tokens": 427521.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 1.20088602155447,
564
+ "epoch": 1.0606922712185871,
565
+ "grad_norm": 1.0684127807617188,
566
+ "learning_rate": 6.673177083333333e-07,
567
+ "loss": 1.144,
568
+ "mean_token_accuracy": 0.7204408749938012,
569
+ "num_tokens": 435531.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 1.2182291388511657,
574
+ "epoch": 1.0796586059743953,
575
+ "grad_norm": 1.0190104246139526,
576
+ "learning_rate": 6.608072916666666e-07,
577
+ "loss": 1.1465,
578
+ "mean_token_accuracy": 0.7094649709761143,
579
+ "num_tokens": 443298.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 1.2136165104806422,
584
+ "epoch": 1.098624940730204,
585
+ "grad_norm": 1.413822889328003,
586
+ "learning_rate": 6.54296875e-07,
587
+ "loss": 1.1673,
588
+ "mean_token_accuracy": 0.7108944803476334,
589
+ "num_tokens": 451072.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 1.2116065241396428,
594
+ "epoch": 1.1175912754860122,
595
+ "grad_norm": 1.0302143096923828,
596
+ "learning_rate": 6.477864583333334e-07,
597
+ "loss": 1.1624,
598
+ "mean_token_accuracy": 0.7103484153747559,
599
+ "num_tokens": 458701.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 1.1983465410768985,
604
+ "epoch": 1.136557610241821,
605
+ "grad_norm": 1.1263726949691772,
606
+ "learning_rate": 6.412760416666666e-07,
607
+ "loss": 1.1779,
608
+ "mean_token_accuracy": 0.7140828415751457,
609
+ "num_tokens": 466421.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 1.1892149433493615,
614
+ "epoch": 1.1555239449976291,
615
+ "grad_norm": 1.0706696510314941,
616
+ "learning_rate": 6.34765625e-07,
617
+ "loss": 1.1544,
618
+ "mean_token_accuracy": 0.7146961018443108,
619
+ "num_tokens": 474293.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 1.1959151603281497,
624
+ "epoch": 1.1744902797534376,
625
+ "grad_norm": 1.028617024421692,
626
+ "learning_rate": 6.282552083333333e-07,
627
+ "loss": 1.1715,
628
+ "mean_token_accuracy": 0.7075264886021614,
629
+ "num_tokens": 482060.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 1.186061894148588,
634
+ "epoch": 1.193456614509246,
635
+ "grad_norm": 0.8902014493942261,
636
+ "learning_rate": 6.217447916666666e-07,
637
+ "loss": 1.1364,
638
+ "mean_token_accuracy": 0.7179924137890339,
639
+ "num_tokens": 489638.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 1.1988991744816304,
644
+ "epoch": 1.2124229492650545,
645
+ "grad_norm": 1.1088058948516846,
646
+ "learning_rate": 6.152343749999999e-07,
647
+ "loss": 1.1778,
648
+ "mean_token_accuracy": 0.705387695133686,
649
+ "num_tokens": 497269.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 1.1572193197906018,
654
+ "epoch": 1.231389284020863,
655
+ "grad_norm": 1.0083446502685547,
656
+ "learning_rate": 6.087239583333334e-07,
657
+ "loss": 1.1343,
658
+ "mean_token_accuracy": 0.7159858278930187,
659
+ "num_tokens": 505048.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 1.1919703222811222,
664
+ "epoch": 1.2503556187766713,
665
+ "grad_norm": 1.1133224964141846,
666
+ "learning_rate": 6.022135416666666e-07,
667
+ "loss": 1.1955,
668
+ "mean_token_accuracy": 0.7046414032578469,
669
+ "num_tokens": 513066.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 1.1698683701455592,
674
+ "epoch": 1.2693219535324798,
675
+ "grad_norm": 1.1328527927398682,
676
+ "learning_rate": 5.95703125e-07,
677
+ "loss": 1.1461,
678
+ "mean_token_accuracy": 0.7104850746691227,
679
+ "num_tokens": 520866.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 1.1433877781033517,
684
+ "epoch": 1.2882882882882882,
685
+ "grad_norm": 1.1092615127563477,
686
+ "learning_rate": 5.891927083333333e-07,
687
+ "loss": 1.0744,
688
+ "mean_token_accuracy": 0.7238348044455052,
689
+ "num_tokens": 528797.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 1.1681585662066936,
694
+ "epoch": 1.3072546230440967,
695
+ "grad_norm": 0.9807539582252502,
696
+ "learning_rate": 5.826822916666666e-07,
697
+ "loss": 1.117,
698
+ "mean_token_accuracy": 0.7158304169774056,
699
+ "num_tokens": 536301.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 1.1547326557338238,
704
+ "epoch": 1.3262209577999051,
705
+ "grad_norm": 1.101926565170288,
706
+ "learning_rate": 5.761718749999999e-07,
707
+ "loss": 1.1062,
708
+ "mean_token_accuracy": 0.7163656286895275,
709
+ "num_tokens": 543840.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 1.1788968741893768,
714
+ "epoch": 1.3451872925557136,
715
+ "grad_norm": 1.1549991369247437,
716
+ "learning_rate": 5.696614583333334e-07,
717
+ "loss": 1.1142,
718
+ "mean_token_accuracy": 0.7148068331182003,
719
+ "num_tokens": 551411.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 1.1192301869392396,
724
+ "epoch": 1.364153627311522,
725
+ "grad_norm": 1.110608696937561,
726
+ "learning_rate": 5.631510416666666e-07,
727
+ "loss": 1.1069,
728
+ "mean_token_accuracy": 0.7199234012514353,
729
+ "num_tokens": 559281.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 1.150602648407221,
734
+ "epoch": 1.3831199620673305,
735
+ "grad_norm": 1.1103157997131348,
736
+ "learning_rate": 5.56640625e-07,
737
+ "loss": 1.1044,
738
+ "mean_token_accuracy": 0.7195970468223095,
739
+ "num_tokens": 566818.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 1.1309661015868187,
744
+ "epoch": 1.402086296823139,
745
+ "grad_norm": 1.1398253440856934,
746
+ "learning_rate": 5.501302083333333e-07,
747
+ "loss": 1.0886,
748
+ "mean_token_accuracy": 0.722535713762045,
749
+ "num_tokens": 574633.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 1.1047178946435452,
754
+ "epoch": 1.4210526315789473,
755
+ "grad_norm": 1.058017611503601,
756
+ "learning_rate": 5.436197916666666e-07,
757
+ "loss": 1.1284,
758
+ "mean_token_accuracy": 0.7201976045966149,
759
+ "num_tokens": 582679.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 1.1124145589768886,
764
+ "epoch": 1.4400189663347558,
765
+ "grad_norm": 0.9302801489830017,
766
+ "learning_rate": 5.371093749999999e-07,
767
+ "loss": 1.1147,
768
+ "mean_token_accuracy": 0.7166914887726307,
769
+ "num_tokens": 590557.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 1.1066633492708207,
774
+ "epoch": 1.4589853010905642,
775
+ "grad_norm": 1.0189460515975952,
776
+ "learning_rate": 5.305989583333334e-07,
777
+ "loss": 1.066,
778
+ "mean_token_accuracy": 0.7239819258451462,
779
+ "num_tokens": 598398.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 1.1011511944234371,
784
+ "epoch": 1.4779516358463727,
785
+ "grad_norm": 1.0235430002212524,
786
+ "learning_rate": 5.240885416666666e-07,
787
+ "loss": 1.0808,
788
+ "mean_token_accuracy": 0.7260910376906395,
789
+ "num_tokens": 606364.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 1.1028256572782993,
794
+ "epoch": 1.4969179706021811,
795
+ "grad_norm": 1.019422173500061,
796
+ "learning_rate": 5.17578125e-07,
797
+ "loss": 1.1052,
798
+ "mean_token_accuracy": 0.7217176735401154,
799
+ "num_tokens": 614105.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 1.1365131378173827,
804
+ "epoch": 1.5158843053579896,
805
+ "grad_norm": 1.0515458583831787,
806
+ "learning_rate": 5.110677083333333e-07,
807
+ "loss": 1.1337,
808
+ "mean_token_accuracy": 0.7029635466635227,
809
+ "num_tokens": 621854.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 1.1104629278182983,
814
+ "epoch": 1.534850640113798,
815
+ "grad_norm": 1.1318267583847046,
816
+ "learning_rate": 5.045572916666666e-07,
817
+ "loss": 1.0827,
818
+ "mean_token_accuracy": 0.7223107375204563,
819
+ "num_tokens": 629853.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 1.130864578485489,
824
+ "epoch": 1.5538169748696065,
825
+ "grad_norm": 0.9779661893844604,
826
+ "learning_rate": 4.980468749999999e-07,
827
+ "loss": 1.1363,
828
+ "mean_token_accuracy": 0.7188829615712166,
829
+ "num_tokens": 637423.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 1.0849515922367572,
834
+ "epoch": 1.572783309625415,
835
+ "grad_norm": 1.0097724199295044,
836
+ "learning_rate": 4.915364583333333e-07,
837
+ "loss": 1.0674,
838
+ "mean_token_accuracy": 0.7200270384550095,
839
+ "num_tokens": 645171.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 1.0869166798889638,
844
+ "epoch": 1.5917496443812233,
845
+ "grad_norm": 0.9466545581817627,
846
+ "learning_rate": 4.850260416666666e-07,
847
+ "loss": 1.0693,
848
+ "mean_token_accuracy": 0.7244003631174565,
849
+ "num_tokens": 653064.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 1.1223813638091087,
854
+ "epoch": 1.6107159791370318,
855
+ "grad_norm": 1.2643778324127197,
856
+ "learning_rate": 4.78515625e-07,
857
+ "loss": 1.1304,
858
+ "mean_token_accuracy": 0.7090435460209846,
859
+ "num_tokens": 661038.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 1.1304323747754097,
864
+ "epoch": 1.6296823138928402,
865
+ "grad_norm": 1.177894115447998,
866
+ "learning_rate": 4.720052083333333e-07,
867
+ "loss": 1.1429,
868
+ "mean_token_accuracy": 0.7115202896296978,
869
+ "num_tokens": 669002.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 1.1122850120067596,
874
+ "epoch": 1.6486486486486487,
875
+ "grad_norm": 1.061855673789978,
876
+ "learning_rate": 4.654947916666667e-07,
877
+ "loss": 1.0931,
878
+ "mean_token_accuracy": 0.7274209313094616,
879
+ "num_tokens": 676731.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 1.1170439019799232,
884
+ "epoch": 1.6676149834044571,
885
+ "grad_norm": 1.0852574110031128,
886
+ "learning_rate": 4.58984375e-07,
887
+ "loss": 1.1216,
888
+ "mean_token_accuracy": 0.7111018508672714,
889
+ "num_tokens": 684255.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 1.0897154599428176,
894
+ "epoch": 1.6865813181602656,
895
+ "grad_norm": 1.0128169059753418,
896
+ "learning_rate": 4.524739583333333e-07,
897
+ "loss": 1.067,
898
+ "mean_token_accuracy": 0.7212625838816166,
899
+ "num_tokens": 691876.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 1.1157985217869282,
904
+ "epoch": 1.705547652916074,
905
+ "grad_norm": 1.164413332939148,
906
+ "learning_rate": 4.459635416666667e-07,
907
+ "loss": 1.111,
908
+ "mean_token_accuracy": 0.7152813680469989,
909
+ "num_tokens": 699586.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 1.1163954354822636,
914
+ "epoch": 1.7245139876718825,
915
+ "grad_norm": 0.9794188737869263,
916
+ "learning_rate": 4.39453125e-07,
917
+ "loss": 1.1118,
918
+ "mean_token_accuracy": 0.7159987986087799,
919
+ "num_tokens": 707274.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 1.1300695367157458,
924
+ "epoch": 1.7434803224276907,
925
+ "grad_norm": 0.9664438962936401,
926
+ "learning_rate": 4.329427083333333e-07,
927
+ "loss": 1.1452,
928
+ "mean_token_accuracy": 0.7118972539901733,
929
+ "num_tokens": 715626.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 1.0764743611216545,
934
+ "epoch": 1.7624466571834994,
935
+ "grad_norm": 1.0159790515899658,
936
+ "learning_rate": 4.264322916666667e-07,
937
+ "loss": 1.0559,
938
+ "mean_token_accuracy": 0.7252737738192081,
939
+ "num_tokens": 723479.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 1.1230794332921505,
944
+ "epoch": 1.7814129919393076,
945
+ "grad_norm": 1.0365698337554932,
946
+ "learning_rate": 4.19921875e-07,
947
+ "loss": 1.0958,
948
+ "mean_token_accuracy": 0.7190353393554687,
949
+ "num_tokens": 731226.0,
950
+ "step": 940
951
+ },
952
+ {
953
+ "entropy": 1.0928282856941223,
954
+ "epoch": 1.8003793266951162,
955
+ "grad_norm": 1.0494407415390015,
956
+ "learning_rate": 4.134114583333333e-07,
957
+ "loss": 1.0641,
958
+ "mean_token_accuracy": 0.7250751972198486,
959
+ "num_tokens": 739000.0,
960
+ "step": 950
961
+ },
962
+ {
963
+ "entropy": 1.0845353059470653,
964
+ "epoch": 1.8193456614509245,
965
+ "grad_norm": 1.3278709650039673,
966
+ "learning_rate": 4.069010416666667e-07,
967
+ "loss": 1.0595,
968
+ "mean_token_accuracy": 0.726919911801815,
969
+ "num_tokens": 746602.0,
970
+ "step": 960
971
+ },
972
+ {
973
+ "entropy": 1.0676946647465229,
974
+ "epoch": 1.8383119962067331,
975
+ "grad_norm": 1.053330421447754,
976
+ "learning_rate": 4.00390625e-07,
977
+ "loss": 1.0855,
978
+ "mean_token_accuracy": 0.7161190271377563,
979
+ "num_tokens": 754587.0,
980
+ "step": 970
981
+ },
982
+ {
983
+ "entropy": 1.0771495133638382,
984
+ "epoch": 1.8572783309625414,
985
+ "grad_norm": 1.1275739669799805,
986
+ "learning_rate": 3.938802083333333e-07,
987
+ "loss": 1.0597,
988
+ "mean_token_accuracy": 0.7268183678388596,
989
+ "num_tokens": 762321.0,
990
+ "step": 980
991
+ },
992
+ {
993
+ "entropy": 1.0400340281426907,
994
+ "epoch": 1.87624466571835,
995
+ "grad_norm": 1.0730770826339722,
996
+ "learning_rate": 3.8736979166666664e-07,
997
+ "loss": 1.0414,
998
+ "mean_token_accuracy": 0.7288486234843731,
999
+ "num_tokens": 770289.0,
1000
+ "step": 990
1001
+ },
1002
+ {
1003
+ "entropy": 1.0911719463765621,
1004
+ "epoch": 1.8952110004741582,
1005
+ "grad_norm": 1.155945062637329,
1006
+ "learning_rate": 3.80859375e-07,
1007
+ "loss": 1.0702,
1008
+ "mean_token_accuracy": 0.7283292546868324,
1009
+ "num_tokens": 778159.0,
1010
+ "step": 1000
1011
+ },
1012
+ {
1013
+ "entropy": 1.0983494065701962,
1014
+ "epoch": 1.914177335229967,
1015
+ "grad_norm": 0.9654527306556702,
1016
+ "learning_rate": 3.743489583333333e-07,
1017
+ "loss": 1.0865,
1018
+ "mean_token_accuracy": 0.7174026511609555,
1019
+ "num_tokens": 785898.0,
1020
+ "step": 1010
1021
+ },
1022
+ {
1023
+ "entropy": 1.0861414946615695,
1024
+ "epoch": 1.9331436699857751,
1025
+ "grad_norm": 1.131127119064331,
1026
+ "learning_rate": 3.6783854166666664e-07,
1027
+ "loss": 1.0835,
1028
+ "mean_token_accuracy": 0.7165500566363334,
1029
+ "num_tokens": 793613.0,
1030
+ "step": 1020
1031
+ },
1032
+ {
1033
+ "entropy": 1.0503841049969196,
1034
+ "epoch": 1.9521100047415838,
1035
+ "grad_norm": 1.0080134868621826,
1036
+ "learning_rate": 3.61328125e-07,
1037
+ "loss": 1.0242,
1038
+ "mean_token_accuracy": 0.7282557636499405,
1039
+ "num_tokens": 801437.0,
1040
+ "step": 1030
1041
+ },
1042
+ {
1043
+ "entropy": 1.0859679393470287,
1044
+ "epoch": 1.971076339497392,
1045
+ "grad_norm": 0.9900001287460327,
1046
+ "learning_rate": 3.548177083333333e-07,
1047
+ "loss": 1.1092,
1048
+ "mean_token_accuracy": 0.7148670449852943,
1049
+ "num_tokens": 809245.0,
1050
+ "step": 1040
1051
+ },
1052
+ {
1053
+ "entropy": 1.0815912760794162,
1054
+ "epoch": 1.9900426742532007,
1055
+ "grad_norm": 0.9635700583457947,
1056
+ "learning_rate": 3.4830729166666664e-07,
1057
+ "loss": 1.0859,
1058
+ "mean_token_accuracy": 0.7190672904253006,
1059
+ "num_tokens": 816867.0,
1060
+ "step": 1050
1061
+ }
1062
+ ],
1063
+ "logging_steps": 10,
1064
+ "max_steps": 1584,
1065
+ "num_input_tokens_seen": 0,
1066
+ "num_train_epochs": 3,
1067
+ "save_steps": 500,
1068
+ "stateful_callbacks": {
1069
+ "TrainerControl": {
1070
+ "args": {
1071
+ "should_epoch_stop": false,
1072
+ "should_evaluate": false,
1073
+ "should_log": false,
1074
+ "should_save": true,
1075
+ "should_training_stop": false
1076
+ },
1077
+ "attributes": {}
1078
+ }
1079
+ },
1080
+ "total_flos": 3.333060825120768e+16,
1081
+ "train_batch_size": 1,
1082
+ "trial_name": null,
1083
+ "trial_params": null
1084
+ }
refusal-only-lora/checkpoint-1056/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36492051829b8ea0cb9bbd2945d49516e1af3ee03d355e12c6e414a818c5c5d5
3
+ size 6417
refusal-only-lora/checkpoint-1584/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Llama-2-7b-chat-hf
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:meta-llama/Llama-2-7b-chat-hf
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- 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. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ 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).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
refusal-only-lora/checkpoint-1584/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": "meta-llama/Llama-2-7b-chat-hf",
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": false,
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": 128,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
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
+ "v_proj",
34
+ "k_proj",
35
+ "o_proj",
36
+ "up_proj",
37
+ "gate_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
refusal-only-lora/checkpoint-1584/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66c5112fcecc94107c85c7e4e14191925f9421e40145aef59f8d067829c93e8c
3
+ size 639691872
refusal-only-lora/checkpoint-1584/chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + '[INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}
refusal-only-lora/checkpoint-1584/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:428d29101da339980849fee77e561e0bb397eb55584a116670a0edef469dd90a
3
+ size 1279641507
refusal-only-lora/checkpoint-1584/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:492a71575f08b421d9343c0b1e083664029df740bb082a24096bd693a7fe4ca6
3
+ size 14645
refusal-only-lora/checkpoint-1584/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ce5eabfbefcad8fc87daef51ddb407182743f6d98503ab710d7e3d6f2763c7d
3
+ size 1465
refusal-only-lora/checkpoint-1584/special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
refusal-only-lora/checkpoint-1584/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
refusal-only-lora/checkpoint-1584/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
refusal-only-lora/checkpoint-1584/tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "extra_special_tokens": {},
35
+ "legacy": false,
36
+ "model_max_length": 1000000000000000019884624838656,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
refusal-only-lora/checkpoint-1584/trainer_state.json ADDED
@@ -0,0 +1,1614 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 500,
7
+ "global_step": 1584,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.8800771124660969,
14
+ "epoch": 0.01896633475580844,
15
+ "grad_norm": 3.348053455352783,
16
+ "learning_rate": 1.875e-07,
17
+ "loss": 2.892,
18
+ "mean_token_accuracy": 0.5558312267065049,
19
+ "num_tokens": 7568.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.9028674259781837,
24
+ "epoch": 0.03793266951161688,
25
+ "grad_norm": 3.5438897609710693,
26
+ "learning_rate": 3.958333333333333e-07,
27
+ "loss": 2.84,
28
+ "mean_token_accuracy": 0.5506744537502527,
29
+ "num_tokens": 15418.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.8906873933970928,
34
+ "epoch": 0.05689900426742532,
35
+ "grad_norm": 4.670811653137207,
36
+ "learning_rate": 6.041666666666666e-07,
37
+ "loss": 2.8846,
38
+ "mean_token_accuracy": 0.5502553284168243,
39
+ "num_tokens": 23186.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.8964283980429173,
44
+ "epoch": 0.07586533902323377,
45
+ "grad_norm": 4.167201995849609,
46
+ "learning_rate": 8.125e-07,
47
+ "loss": 2.8202,
48
+ "mean_token_accuracy": 0.5535532858222723,
49
+ "num_tokens": 30766.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.9246485389769077,
54
+ "epoch": 0.0948316737790422,
55
+ "grad_norm": 4.584895133972168,
56
+ "learning_rate": 9.993489583333333e-07,
57
+ "loss": 2.703,
58
+ "mean_token_accuracy": 0.5526723157614469,
59
+ "num_tokens": 38564.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.9249856673181057,
64
+ "epoch": 0.11379800853485064,
65
+ "grad_norm": 4.198783874511719,
66
+ "learning_rate": 9.928385416666666e-07,
67
+ "loss": 2.6924,
68
+ "mean_token_accuracy": 0.5561300627887249,
69
+ "num_tokens": 46612.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.9432196334004402,
74
+ "epoch": 0.1327643432906591,
75
+ "grad_norm": 4.151094436645508,
76
+ "learning_rate": 9.86328125e-07,
77
+ "loss": 2.5988,
78
+ "mean_token_accuracy": 0.5674021277576685,
79
+ "num_tokens": 54312.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.0061342589557172,
84
+ "epoch": 0.15173067804646753,
85
+ "grad_norm": 3.3446481227874756,
86
+ "learning_rate": 9.798177083333333e-07,
87
+ "loss": 2.5035,
88
+ "mean_token_accuracy": 0.565283863991499,
89
+ "num_tokens": 62281.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.0555521003901958,
94
+ "epoch": 0.17069701280227595,
95
+ "grad_norm": 4.015676498413086,
96
+ "learning_rate": 9.733072916666665e-07,
97
+ "loss": 2.4437,
98
+ "mean_token_accuracy": 0.5663877908140421,
99
+ "num_tokens": 69821.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.1147512137889861,
104
+ "epoch": 0.1896633475580844,
105
+ "grad_norm": 3.241530656814575,
106
+ "learning_rate": 9.66796875e-07,
107
+ "loss": 2.3645,
108
+ "mean_token_accuracy": 0.5583278063684702,
109
+ "num_tokens": 77437.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 1.1382376968860626,
114
+ "epoch": 0.20862968231389284,
115
+ "grad_norm": 2.926927328109741,
116
+ "learning_rate": 9.602864583333332e-07,
117
+ "loss": 2.2085,
118
+ "mean_token_accuracy": 0.5798784755170345,
119
+ "num_tokens": 85618.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 1.190623751282692,
124
+ "epoch": 0.22759601706970128,
125
+ "grad_norm": 2.580003499984741,
126
+ "learning_rate": 9.537760416666665e-07,
127
+ "loss": 2.1356,
128
+ "mean_token_accuracy": 0.5675114955753088,
129
+ "num_tokens": 93792.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 1.2170004837214947,
134
+ "epoch": 0.24656235182550973,
135
+ "grad_norm": 2.2754576206207275,
136
+ "learning_rate": 9.472656249999999e-07,
137
+ "loss": 2.0575,
138
+ "mean_token_accuracy": 0.5808480866253376,
139
+ "num_tokens": 101636.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 1.2965586438775063,
144
+ "epoch": 0.2655286865813182,
145
+ "grad_norm": 2.0113515853881836,
146
+ "learning_rate": 9.407552083333333e-07,
147
+ "loss": 2.0583,
148
+ "mean_token_accuracy": 0.5819144621491432,
149
+ "num_tokens": 109232.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 1.3018298715353012,
154
+ "epoch": 0.2844950213371266,
155
+ "grad_norm": 1.8721307516098022,
156
+ "learning_rate": 9.342447916666665e-07,
157
+ "loss": 1.9126,
158
+ "mean_token_accuracy": 0.6024341452866793,
159
+ "num_tokens": 116924.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 1.3164579145610333,
164
+ "epoch": 0.30346135609293506,
165
+ "grad_norm": 1.9804903268814087,
166
+ "learning_rate": 9.27734375e-07,
167
+ "loss": 1.8649,
168
+ "mean_token_accuracy": 0.6070760123431682,
169
+ "num_tokens": 124256.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 1.321300919353962,
174
+ "epoch": 0.32242769084874345,
175
+ "grad_norm": 1.8772928714752197,
176
+ "learning_rate": 9.212239583333333e-07,
177
+ "loss": 1.8434,
178
+ "mean_token_accuracy": 0.6069471161812544,
179
+ "num_tokens": 131929.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 1.3300878189504146,
184
+ "epoch": 0.3413940256045519,
185
+ "grad_norm": 1.734480381011963,
186
+ "learning_rate": 9.147135416666666e-07,
187
+ "loss": 1.7704,
188
+ "mean_token_accuracy": 0.6136918149888515,
189
+ "num_tokens": 139796.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 1.2977866984903812,
194
+ "epoch": 0.36036036036036034,
195
+ "grad_norm": 1.4145355224609375,
196
+ "learning_rate": 9.082031249999999e-07,
197
+ "loss": 1.6739,
198
+ "mean_token_accuracy": 0.6313016630709172,
199
+ "num_tokens": 147946.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 1.3758595705032348,
204
+ "epoch": 0.3793266951161688,
205
+ "grad_norm": 1.5995664596557617,
206
+ "learning_rate": 9.016927083333333e-07,
207
+ "loss": 1.6861,
208
+ "mean_token_accuracy": 0.6132468611001969,
209
+ "num_tokens": 155548.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 1.3915398299694062,
214
+ "epoch": 0.39829302987197723,
215
+ "grad_norm": 1.450819969177246,
216
+ "learning_rate": 8.951822916666665e-07,
217
+ "loss": 1.7079,
218
+ "mean_token_accuracy": 0.6195833217352629,
219
+ "num_tokens": 163633.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 1.3885319493710995,
224
+ "epoch": 0.4172593646277857,
225
+ "grad_norm": 1.565523624420166,
226
+ "learning_rate": 8.88671875e-07,
227
+ "loss": 1.6055,
228
+ "mean_token_accuracy": 0.631564911082387,
229
+ "num_tokens": 171429.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 1.42000814974308,
234
+ "epoch": 0.4362256993835941,
235
+ "grad_norm": 1.415071725845337,
236
+ "learning_rate": 8.821614583333334e-07,
237
+ "loss": 1.5733,
238
+ "mean_token_accuracy": 0.6355191901326179,
239
+ "num_tokens": 178813.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 1.4173048675060271,
244
+ "epoch": 0.45519203413940257,
245
+ "grad_norm": 1.4940714836120605,
246
+ "learning_rate": 8.756510416666666e-07,
247
+ "loss": 1.5686,
248
+ "mean_token_accuracy": 0.6268294852226972,
249
+ "num_tokens": 186804.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 1.406810748577118,
254
+ "epoch": 0.474158368895211,
255
+ "grad_norm": 1.481840968132019,
256
+ "learning_rate": 8.69140625e-07,
257
+ "loss": 1.5083,
258
+ "mean_token_accuracy": 0.6454955622553825,
259
+ "num_tokens": 194400.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 1.4201976731419563,
264
+ "epoch": 0.49312470365101946,
265
+ "grad_norm": 1.303875207901001,
266
+ "learning_rate": 8.626302083333333e-07,
267
+ "loss": 1.5492,
268
+ "mean_token_accuracy": 0.6335972256958484,
269
+ "num_tokens": 202121.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 1.4369812428951263,
274
+ "epoch": 0.5120910384068279,
275
+ "grad_norm": 1.2758477926254272,
276
+ "learning_rate": 8.561197916666665e-07,
277
+ "loss": 1.4994,
278
+ "mean_token_accuracy": 0.6454178035259247,
279
+ "num_tokens": 209643.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 1.391933375597,
284
+ "epoch": 0.5310573731626363,
285
+ "grad_norm": 1.2780486345291138,
286
+ "learning_rate": 8.49609375e-07,
287
+ "loss": 1.4388,
288
+ "mean_token_accuracy": 0.6508051678538322,
289
+ "num_tokens": 217154.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 1.4164466500282287,
294
+ "epoch": 0.5500237079184448,
295
+ "grad_norm": 1.3106104135513306,
296
+ "learning_rate": 8.430989583333334e-07,
297
+ "loss": 1.4383,
298
+ "mean_token_accuracy": 0.6559075094759464,
299
+ "num_tokens": 224833.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 1.396108366549015,
304
+ "epoch": 0.5689900426742532,
305
+ "grad_norm": 1.1580867767333984,
306
+ "learning_rate": 8.365885416666666e-07,
307
+ "loss": 1.4295,
308
+ "mean_token_accuracy": 0.6560030743479729,
309
+ "num_tokens": 232528.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 1.3968449525535107,
314
+ "epoch": 0.5879563774300617,
315
+ "grad_norm": 1.4947290420532227,
316
+ "learning_rate": 8.30078125e-07,
317
+ "loss": 1.4474,
318
+ "mean_token_accuracy": 0.6532723367214203,
319
+ "num_tokens": 240340.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 1.3659315139055253,
324
+ "epoch": 0.6069227121858701,
325
+ "grad_norm": 1.2400017976760864,
326
+ "learning_rate": 8.235677083333333e-07,
327
+ "loss": 1.4045,
328
+ "mean_token_accuracy": 0.6663874570280314,
329
+ "num_tokens": 248482.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 1.3608342856168747,
334
+ "epoch": 0.6258890469416786,
335
+ "grad_norm": 1.1932809352874756,
336
+ "learning_rate": 8.170572916666666e-07,
337
+ "loss": 1.3297,
338
+ "mean_token_accuracy": 0.6729936949908734,
339
+ "num_tokens": 256146.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 1.369440621137619,
344
+ "epoch": 0.6448553816974869,
345
+ "grad_norm": 1.304652452468872,
346
+ "learning_rate": 8.10546875e-07,
347
+ "loss": 1.3665,
348
+ "mean_token_accuracy": 0.6693637847900391,
349
+ "num_tokens": 264115.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 1.3208621554076672,
354
+ "epoch": 0.6638217164532954,
355
+ "grad_norm": 1.253781795501709,
356
+ "learning_rate": 8.040364583333334e-07,
357
+ "loss": 1.32,
358
+ "mean_token_accuracy": 0.6763425137847662,
359
+ "num_tokens": 271660.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 1.322153516113758,
364
+ "epoch": 0.6827880512091038,
365
+ "grad_norm": 1.2030173540115356,
366
+ "learning_rate": 7.975260416666666e-07,
367
+ "loss": 1.3156,
368
+ "mean_token_accuracy": 0.6803543917834759,
369
+ "num_tokens": 279383.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 1.3421797141432763,
374
+ "epoch": 0.7017543859649122,
375
+ "grad_norm": 1.215598464012146,
376
+ "learning_rate": 7.91015625e-07,
377
+ "loss": 1.3249,
378
+ "mean_token_accuracy": 0.6731918178498745,
379
+ "num_tokens": 287094.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 1.3480857253074645,
384
+ "epoch": 0.7207207207207207,
385
+ "grad_norm": 1.3740663528442383,
386
+ "learning_rate": 7.845052083333333e-07,
387
+ "loss": 1.3468,
388
+ "mean_token_accuracy": 0.6654974155128002,
389
+ "num_tokens": 294860.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 1.3071250945329667,
394
+ "epoch": 0.7396870554765291,
395
+ "grad_norm": 1.37200129032135,
396
+ "learning_rate": 7.779947916666666e-07,
397
+ "loss": 1.3141,
398
+ "mean_token_accuracy": 0.6753718614578247,
399
+ "num_tokens": 302632.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 1.2966938570141793,
404
+ "epoch": 0.7586533902323376,
405
+ "grad_norm": 1.2524887323379517,
406
+ "learning_rate": 7.71484375e-07,
407
+ "loss": 1.2985,
408
+ "mean_token_accuracy": 0.6792728714644909,
409
+ "num_tokens": 310895.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 1.3287690579891205,
414
+ "epoch": 0.777619724988146,
415
+ "grad_norm": 1.4232484102249146,
416
+ "learning_rate": 7.649739583333334e-07,
417
+ "loss": 1.3058,
418
+ "mean_token_accuracy": 0.683712650835514,
419
+ "num_tokens": 318800.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 1.3336769036948681,
424
+ "epoch": 0.7965860597439545,
425
+ "grad_norm": 1.5561081171035767,
426
+ "learning_rate": 7.584635416666666e-07,
427
+ "loss": 1.3498,
428
+ "mean_token_accuracy": 0.6661995306611062,
429
+ "num_tokens": 326858.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 1.30598786175251,
434
+ "epoch": 0.8155523944997629,
435
+ "grad_norm": 1.274189829826355,
436
+ "learning_rate": 7.51953125e-07,
437
+ "loss": 1.2534,
438
+ "mean_token_accuracy": 0.6906878098845481,
439
+ "num_tokens": 334660.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 1.2970546074211597,
444
+ "epoch": 0.8345187292555714,
445
+ "grad_norm": 1.214945673942566,
446
+ "learning_rate": 7.454427083333333e-07,
447
+ "loss": 1.2538,
448
+ "mean_token_accuracy": 0.6886132195591926,
449
+ "num_tokens": 342557.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 1.3024328142404555,
454
+ "epoch": 0.8534850640113798,
455
+ "grad_norm": 1.4416435956954956,
456
+ "learning_rate": 7.389322916666666e-07,
457
+ "loss": 1.2292,
458
+ "mean_token_accuracy": 0.6991933032870292,
459
+ "num_tokens": 350090.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 1.2910141475498675,
464
+ "epoch": 0.8724513987671882,
465
+ "grad_norm": 1.3008499145507812,
466
+ "learning_rate": 7.32421875e-07,
467
+ "loss": 1.2491,
468
+ "mean_token_accuracy": 0.6929278194904327,
469
+ "num_tokens": 357993.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 1.280844808369875,
474
+ "epoch": 0.8914177335229967,
475
+ "grad_norm": 1.1629010438919067,
476
+ "learning_rate": 7.259114583333334e-07,
477
+ "loss": 1.2173,
478
+ "mean_token_accuracy": 0.7058381117880345,
479
+ "num_tokens": 365851.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 1.2642140217125415,
484
+ "epoch": 0.9103840682788051,
485
+ "grad_norm": 1.1701194047927856,
486
+ "learning_rate": 7.194010416666666e-07,
487
+ "loss": 1.1973,
488
+ "mean_token_accuracy": 0.7036448389291763,
489
+ "num_tokens": 373810.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 1.2932376384735107,
494
+ "epoch": 0.9293504030346136,
495
+ "grad_norm": 1.1186771392822266,
496
+ "learning_rate": 7.12890625e-07,
497
+ "loss": 1.2275,
498
+ "mean_token_accuracy": 0.6950574479997158,
499
+ "num_tokens": 381473.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 1.252262619137764,
504
+ "epoch": 0.948316737790422,
505
+ "grad_norm": 1.1925098896026611,
506
+ "learning_rate": 7.063802083333333e-07,
507
+ "loss": 1.1992,
508
+ "mean_token_accuracy": 0.7074964240193367,
509
+ "num_tokens": 389449.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 1.2449406683444977,
514
+ "epoch": 0.9672830725462305,
515
+ "grad_norm": 1.3617829084396362,
516
+ "learning_rate": 6.998697916666666e-07,
517
+ "loss": 1.1762,
518
+ "mean_token_accuracy": 0.7085213892161846,
519
+ "num_tokens": 397020.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 1.258817932009697,
524
+ "epoch": 0.9862494073020389,
525
+ "grad_norm": 1.1232348680496216,
526
+ "learning_rate": 6.93359375e-07,
527
+ "loss": 1.2082,
528
+ "mean_token_accuracy": 0.7091631673276424,
529
+ "num_tokens": 404954.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 1.2346063224045005,
534
+ "epoch": 1.0037932669511618,
535
+ "grad_norm": 1.1821157932281494,
536
+ "learning_rate": 6.868489583333334e-07,
537
+ "loss": 1.1771,
538
+ "mean_token_accuracy": 0.7097870578636994,
539
+ "num_tokens": 411903.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 1.233978260308504,
544
+ "epoch": 1.0227596017069702,
545
+ "grad_norm": 1.0421421527862549,
546
+ "learning_rate": 6.803385416666666e-07,
547
+ "loss": 1.2021,
548
+ "mean_token_accuracy": 0.7076010942459107,
549
+ "num_tokens": 419937.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 1.197313880175352,
554
+ "epoch": 1.0417259364627787,
555
+ "grad_norm": 1.112593650817871,
556
+ "learning_rate": 6.73828125e-07,
557
+ "loss": 1.1401,
558
+ "mean_token_accuracy": 0.7142150066792965,
559
+ "num_tokens": 427521.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 1.20088602155447,
564
+ "epoch": 1.0606922712185871,
565
+ "grad_norm": 1.0684127807617188,
566
+ "learning_rate": 6.673177083333333e-07,
567
+ "loss": 1.144,
568
+ "mean_token_accuracy": 0.7204408749938012,
569
+ "num_tokens": 435531.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 1.2182291388511657,
574
+ "epoch": 1.0796586059743953,
575
+ "grad_norm": 1.0190104246139526,
576
+ "learning_rate": 6.608072916666666e-07,
577
+ "loss": 1.1465,
578
+ "mean_token_accuracy": 0.7094649709761143,
579
+ "num_tokens": 443298.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 1.2136165104806422,
584
+ "epoch": 1.098624940730204,
585
+ "grad_norm": 1.413822889328003,
586
+ "learning_rate": 6.54296875e-07,
587
+ "loss": 1.1673,
588
+ "mean_token_accuracy": 0.7108944803476334,
589
+ "num_tokens": 451072.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 1.2116065241396428,
594
+ "epoch": 1.1175912754860122,
595
+ "grad_norm": 1.0302143096923828,
596
+ "learning_rate": 6.477864583333334e-07,
597
+ "loss": 1.1624,
598
+ "mean_token_accuracy": 0.7103484153747559,
599
+ "num_tokens": 458701.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 1.1983465410768985,
604
+ "epoch": 1.136557610241821,
605
+ "grad_norm": 1.1263726949691772,
606
+ "learning_rate": 6.412760416666666e-07,
607
+ "loss": 1.1779,
608
+ "mean_token_accuracy": 0.7140828415751457,
609
+ "num_tokens": 466421.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 1.1892149433493615,
614
+ "epoch": 1.1555239449976291,
615
+ "grad_norm": 1.0706696510314941,
616
+ "learning_rate": 6.34765625e-07,
617
+ "loss": 1.1544,
618
+ "mean_token_accuracy": 0.7146961018443108,
619
+ "num_tokens": 474293.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 1.1959151603281497,
624
+ "epoch": 1.1744902797534376,
625
+ "grad_norm": 1.028617024421692,
626
+ "learning_rate": 6.282552083333333e-07,
627
+ "loss": 1.1715,
628
+ "mean_token_accuracy": 0.7075264886021614,
629
+ "num_tokens": 482060.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 1.186061894148588,
634
+ "epoch": 1.193456614509246,
635
+ "grad_norm": 0.8902014493942261,
636
+ "learning_rate": 6.217447916666666e-07,
637
+ "loss": 1.1364,
638
+ "mean_token_accuracy": 0.7179924137890339,
639
+ "num_tokens": 489638.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 1.1988991744816304,
644
+ "epoch": 1.2124229492650545,
645
+ "grad_norm": 1.1088058948516846,
646
+ "learning_rate": 6.152343749999999e-07,
647
+ "loss": 1.1778,
648
+ "mean_token_accuracy": 0.705387695133686,
649
+ "num_tokens": 497269.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 1.1572193197906018,
654
+ "epoch": 1.231389284020863,
655
+ "grad_norm": 1.0083446502685547,
656
+ "learning_rate": 6.087239583333334e-07,
657
+ "loss": 1.1343,
658
+ "mean_token_accuracy": 0.7159858278930187,
659
+ "num_tokens": 505048.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 1.1919703222811222,
664
+ "epoch": 1.2503556187766713,
665
+ "grad_norm": 1.1133224964141846,
666
+ "learning_rate": 6.022135416666666e-07,
667
+ "loss": 1.1955,
668
+ "mean_token_accuracy": 0.7046414032578469,
669
+ "num_tokens": 513066.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 1.1698683701455592,
674
+ "epoch": 1.2693219535324798,
675
+ "grad_norm": 1.1328527927398682,
676
+ "learning_rate": 5.95703125e-07,
677
+ "loss": 1.1461,
678
+ "mean_token_accuracy": 0.7104850746691227,
679
+ "num_tokens": 520866.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 1.1433877781033517,
684
+ "epoch": 1.2882882882882882,
685
+ "grad_norm": 1.1092615127563477,
686
+ "learning_rate": 5.891927083333333e-07,
687
+ "loss": 1.0744,
688
+ "mean_token_accuracy": 0.7238348044455052,
689
+ "num_tokens": 528797.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 1.1681585662066936,
694
+ "epoch": 1.3072546230440967,
695
+ "grad_norm": 0.9807539582252502,
696
+ "learning_rate": 5.826822916666666e-07,
697
+ "loss": 1.117,
698
+ "mean_token_accuracy": 0.7158304169774056,
699
+ "num_tokens": 536301.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 1.1547326557338238,
704
+ "epoch": 1.3262209577999051,
705
+ "grad_norm": 1.101926565170288,
706
+ "learning_rate": 5.761718749999999e-07,
707
+ "loss": 1.1062,
708
+ "mean_token_accuracy": 0.7163656286895275,
709
+ "num_tokens": 543840.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 1.1788968741893768,
714
+ "epoch": 1.3451872925557136,
715
+ "grad_norm": 1.1549991369247437,
716
+ "learning_rate": 5.696614583333334e-07,
717
+ "loss": 1.1142,
718
+ "mean_token_accuracy": 0.7148068331182003,
719
+ "num_tokens": 551411.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 1.1192301869392396,
724
+ "epoch": 1.364153627311522,
725
+ "grad_norm": 1.110608696937561,
726
+ "learning_rate": 5.631510416666666e-07,
727
+ "loss": 1.1069,
728
+ "mean_token_accuracy": 0.7199234012514353,
729
+ "num_tokens": 559281.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 1.150602648407221,
734
+ "epoch": 1.3831199620673305,
735
+ "grad_norm": 1.1103157997131348,
736
+ "learning_rate": 5.56640625e-07,
737
+ "loss": 1.1044,
738
+ "mean_token_accuracy": 0.7195970468223095,
739
+ "num_tokens": 566818.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 1.1309661015868187,
744
+ "epoch": 1.402086296823139,
745
+ "grad_norm": 1.1398253440856934,
746
+ "learning_rate": 5.501302083333333e-07,
747
+ "loss": 1.0886,
748
+ "mean_token_accuracy": 0.722535713762045,
749
+ "num_tokens": 574633.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 1.1047178946435452,
754
+ "epoch": 1.4210526315789473,
755
+ "grad_norm": 1.058017611503601,
756
+ "learning_rate": 5.436197916666666e-07,
757
+ "loss": 1.1284,
758
+ "mean_token_accuracy": 0.7201976045966149,
759
+ "num_tokens": 582679.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 1.1124145589768886,
764
+ "epoch": 1.4400189663347558,
765
+ "grad_norm": 0.9302801489830017,
766
+ "learning_rate": 5.371093749999999e-07,
767
+ "loss": 1.1147,
768
+ "mean_token_accuracy": 0.7166914887726307,
769
+ "num_tokens": 590557.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 1.1066633492708207,
774
+ "epoch": 1.4589853010905642,
775
+ "grad_norm": 1.0189460515975952,
776
+ "learning_rate": 5.305989583333334e-07,
777
+ "loss": 1.066,
778
+ "mean_token_accuracy": 0.7239819258451462,
779
+ "num_tokens": 598398.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 1.1011511944234371,
784
+ "epoch": 1.4779516358463727,
785
+ "grad_norm": 1.0235430002212524,
786
+ "learning_rate": 5.240885416666666e-07,
787
+ "loss": 1.0808,
788
+ "mean_token_accuracy": 0.7260910376906395,
789
+ "num_tokens": 606364.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 1.1028256572782993,
794
+ "epoch": 1.4969179706021811,
795
+ "grad_norm": 1.019422173500061,
796
+ "learning_rate": 5.17578125e-07,
797
+ "loss": 1.1052,
798
+ "mean_token_accuracy": 0.7217176735401154,
799
+ "num_tokens": 614105.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 1.1365131378173827,
804
+ "epoch": 1.5158843053579896,
805
+ "grad_norm": 1.0515458583831787,
806
+ "learning_rate": 5.110677083333333e-07,
807
+ "loss": 1.1337,
808
+ "mean_token_accuracy": 0.7029635466635227,
809
+ "num_tokens": 621854.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 1.1104629278182983,
814
+ "epoch": 1.534850640113798,
815
+ "grad_norm": 1.1318267583847046,
816
+ "learning_rate": 5.045572916666666e-07,
817
+ "loss": 1.0827,
818
+ "mean_token_accuracy": 0.7223107375204563,
819
+ "num_tokens": 629853.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 1.130864578485489,
824
+ "epoch": 1.5538169748696065,
825
+ "grad_norm": 0.9779661893844604,
826
+ "learning_rate": 4.980468749999999e-07,
827
+ "loss": 1.1363,
828
+ "mean_token_accuracy": 0.7188829615712166,
829
+ "num_tokens": 637423.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 1.0849515922367572,
834
+ "epoch": 1.572783309625415,
835
+ "grad_norm": 1.0097724199295044,
836
+ "learning_rate": 4.915364583333333e-07,
837
+ "loss": 1.0674,
838
+ "mean_token_accuracy": 0.7200270384550095,
839
+ "num_tokens": 645171.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 1.0869166798889638,
844
+ "epoch": 1.5917496443812233,
845
+ "grad_norm": 0.9466545581817627,
846
+ "learning_rate": 4.850260416666666e-07,
847
+ "loss": 1.0693,
848
+ "mean_token_accuracy": 0.7244003631174565,
849
+ "num_tokens": 653064.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 1.1223813638091087,
854
+ "epoch": 1.6107159791370318,
855
+ "grad_norm": 1.2643778324127197,
856
+ "learning_rate": 4.78515625e-07,
857
+ "loss": 1.1304,
858
+ "mean_token_accuracy": 0.7090435460209846,
859
+ "num_tokens": 661038.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 1.1304323747754097,
864
+ "epoch": 1.6296823138928402,
865
+ "grad_norm": 1.177894115447998,
866
+ "learning_rate": 4.720052083333333e-07,
867
+ "loss": 1.1429,
868
+ "mean_token_accuracy": 0.7115202896296978,
869
+ "num_tokens": 669002.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 1.1122850120067596,
874
+ "epoch": 1.6486486486486487,
875
+ "grad_norm": 1.061855673789978,
876
+ "learning_rate": 4.654947916666667e-07,
877
+ "loss": 1.0931,
878
+ "mean_token_accuracy": 0.7274209313094616,
879
+ "num_tokens": 676731.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 1.1170439019799232,
884
+ "epoch": 1.6676149834044571,
885
+ "grad_norm": 1.0852574110031128,
886
+ "learning_rate": 4.58984375e-07,
887
+ "loss": 1.1216,
888
+ "mean_token_accuracy": 0.7111018508672714,
889
+ "num_tokens": 684255.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 1.0897154599428176,
894
+ "epoch": 1.6865813181602656,
895
+ "grad_norm": 1.0128169059753418,
896
+ "learning_rate": 4.524739583333333e-07,
897
+ "loss": 1.067,
898
+ "mean_token_accuracy": 0.7212625838816166,
899
+ "num_tokens": 691876.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 1.1157985217869282,
904
+ "epoch": 1.705547652916074,
905
+ "grad_norm": 1.164413332939148,
906
+ "learning_rate": 4.459635416666667e-07,
907
+ "loss": 1.111,
908
+ "mean_token_accuracy": 0.7152813680469989,
909
+ "num_tokens": 699586.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 1.1163954354822636,
914
+ "epoch": 1.7245139876718825,
915
+ "grad_norm": 0.9794188737869263,
916
+ "learning_rate": 4.39453125e-07,
917
+ "loss": 1.1118,
918
+ "mean_token_accuracy": 0.7159987986087799,
919
+ "num_tokens": 707274.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 1.1300695367157458,
924
+ "epoch": 1.7434803224276907,
925
+ "grad_norm": 0.9664438962936401,
926
+ "learning_rate": 4.329427083333333e-07,
927
+ "loss": 1.1452,
928
+ "mean_token_accuracy": 0.7118972539901733,
929
+ "num_tokens": 715626.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 1.0764743611216545,
934
+ "epoch": 1.7624466571834994,
935
+ "grad_norm": 1.0159790515899658,
936
+ "learning_rate": 4.264322916666667e-07,
937
+ "loss": 1.0559,
938
+ "mean_token_accuracy": 0.7252737738192081,
939
+ "num_tokens": 723479.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 1.1230794332921505,
944
+ "epoch": 1.7814129919393076,
945
+ "grad_norm": 1.0365698337554932,
946
+ "learning_rate": 4.19921875e-07,
947
+ "loss": 1.0958,
948
+ "mean_token_accuracy": 0.7190353393554687,
949
+ "num_tokens": 731226.0,
950
+ "step": 940
951
+ },
952
+ {
953
+ "entropy": 1.0928282856941223,
954
+ "epoch": 1.8003793266951162,
955
+ "grad_norm": 1.0494407415390015,
956
+ "learning_rate": 4.134114583333333e-07,
957
+ "loss": 1.0641,
958
+ "mean_token_accuracy": 0.7250751972198486,
959
+ "num_tokens": 739000.0,
960
+ "step": 950
961
+ },
962
+ {
963
+ "entropy": 1.0845353059470653,
964
+ "epoch": 1.8193456614509245,
965
+ "grad_norm": 1.3278709650039673,
966
+ "learning_rate": 4.069010416666667e-07,
967
+ "loss": 1.0595,
968
+ "mean_token_accuracy": 0.726919911801815,
969
+ "num_tokens": 746602.0,
970
+ "step": 960
971
+ },
972
+ {
973
+ "entropy": 1.0676946647465229,
974
+ "epoch": 1.8383119962067331,
975
+ "grad_norm": 1.053330421447754,
976
+ "learning_rate": 4.00390625e-07,
977
+ "loss": 1.0855,
978
+ "mean_token_accuracy": 0.7161190271377563,
979
+ "num_tokens": 754587.0,
980
+ "step": 970
981
+ },
982
+ {
983
+ "entropy": 1.0771495133638382,
984
+ "epoch": 1.8572783309625414,
985
+ "grad_norm": 1.1275739669799805,
986
+ "learning_rate": 3.938802083333333e-07,
987
+ "loss": 1.0597,
988
+ "mean_token_accuracy": 0.7268183678388596,
989
+ "num_tokens": 762321.0,
990
+ "step": 980
991
+ },
992
+ {
993
+ "entropy": 1.0400340281426907,
994
+ "epoch": 1.87624466571835,
995
+ "grad_norm": 1.0730770826339722,
996
+ "learning_rate": 3.8736979166666664e-07,
997
+ "loss": 1.0414,
998
+ "mean_token_accuracy": 0.7288486234843731,
999
+ "num_tokens": 770289.0,
1000
+ "step": 990
1001
+ },
1002
+ {
1003
+ "entropy": 1.0911719463765621,
1004
+ "epoch": 1.8952110004741582,
1005
+ "grad_norm": 1.155945062637329,
1006
+ "learning_rate": 3.80859375e-07,
1007
+ "loss": 1.0702,
1008
+ "mean_token_accuracy": 0.7283292546868324,
1009
+ "num_tokens": 778159.0,
1010
+ "step": 1000
1011
+ },
1012
+ {
1013
+ "entropy": 1.0983494065701962,
1014
+ "epoch": 1.914177335229967,
1015
+ "grad_norm": 0.9654527306556702,
1016
+ "learning_rate": 3.743489583333333e-07,
1017
+ "loss": 1.0865,
1018
+ "mean_token_accuracy": 0.7174026511609555,
1019
+ "num_tokens": 785898.0,
1020
+ "step": 1010
1021
+ },
1022
+ {
1023
+ "entropy": 1.0861414946615695,
1024
+ "epoch": 1.9331436699857751,
1025
+ "grad_norm": 1.131127119064331,
1026
+ "learning_rate": 3.6783854166666664e-07,
1027
+ "loss": 1.0835,
1028
+ "mean_token_accuracy": 0.7165500566363334,
1029
+ "num_tokens": 793613.0,
1030
+ "step": 1020
1031
+ },
1032
+ {
1033
+ "entropy": 1.0503841049969196,
1034
+ "epoch": 1.9521100047415838,
1035
+ "grad_norm": 1.0080134868621826,
1036
+ "learning_rate": 3.61328125e-07,
1037
+ "loss": 1.0242,
1038
+ "mean_token_accuracy": 0.7282557636499405,
1039
+ "num_tokens": 801437.0,
1040
+ "step": 1030
1041
+ },
1042
+ {
1043
+ "entropy": 1.0859679393470287,
1044
+ "epoch": 1.971076339497392,
1045
+ "grad_norm": 0.9900001287460327,
1046
+ "learning_rate": 3.548177083333333e-07,
1047
+ "loss": 1.1092,
1048
+ "mean_token_accuracy": 0.7148670449852943,
1049
+ "num_tokens": 809245.0,
1050
+ "step": 1040
1051
+ },
1052
+ {
1053
+ "entropy": 1.0815912760794162,
1054
+ "epoch": 1.9900426742532007,
1055
+ "grad_norm": 0.9635700583457947,
1056
+ "learning_rate": 3.4830729166666664e-07,
1057
+ "loss": 1.0859,
1058
+ "mean_token_accuracy": 0.7190672904253006,
1059
+ "num_tokens": 816867.0,
1060
+ "step": 1050
1061
+ },
1062
+ {
1063
+ "entropy": 1.0574141281682092,
1064
+ "epoch": 2.0075865339023236,
1065
+ "grad_norm": 1.097835898399353,
1066
+ "learning_rate": 3.41796875e-07,
1067
+ "loss": 1.0744,
1068
+ "mean_token_accuracy": 0.7219740095976237,
1069
+ "num_tokens": 823905.0,
1070
+ "step": 1060
1071
+ },
1072
+ {
1073
+ "entropy": 1.0721672594547271,
1074
+ "epoch": 2.026552868658132,
1075
+ "grad_norm": 0.985394299030304,
1076
+ "learning_rate": 3.352864583333333e-07,
1077
+ "loss": 1.0536,
1078
+ "mean_token_accuracy": 0.7218626335263252,
1079
+ "num_tokens": 831621.0,
1080
+ "step": 1070
1081
+ },
1082
+ {
1083
+ "entropy": 1.0695898160338402,
1084
+ "epoch": 2.0455192034139404,
1085
+ "grad_norm": 0.983224093914032,
1086
+ "learning_rate": 3.2877604166666665e-07,
1087
+ "loss": 1.0613,
1088
+ "mean_token_accuracy": 0.725620323419571,
1089
+ "num_tokens": 839561.0,
1090
+ "step": 1080
1091
+ },
1092
+ {
1093
+ "entropy": 1.054114455729723,
1094
+ "epoch": 2.0644855381697487,
1095
+ "grad_norm": 0.9491007328033447,
1096
+ "learning_rate": 3.22265625e-07,
1097
+ "loss": 1.0535,
1098
+ "mean_token_accuracy": 0.7279413707554341,
1099
+ "num_tokens": 847725.0,
1100
+ "step": 1090
1101
+ },
1102
+ {
1103
+ "entropy": 1.0666229009628296,
1104
+ "epoch": 2.0834518729255573,
1105
+ "grad_norm": 1.0753281116485596,
1106
+ "learning_rate": 3.157552083333333e-07,
1107
+ "loss": 1.0614,
1108
+ "mean_token_accuracy": 0.7245796263217926,
1109
+ "num_tokens": 855539.0,
1110
+ "step": 1100
1111
+ },
1112
+ {
1113
+ "entropy": 1.063340064138174,
1114
+ "epoch": 2.1024182076813656,
1115
+ "grad_norm": 1.0261895656585693,
1116
+ "learning_rate": 3.0924479166666665e-07,
1117
+ "loss": 1.0746,
1118
+ "mean_token_accuracy": 0.7316980011761188,
1119
+ "num_tokens": 863532.0,
1120
+ "step": 1110
1121
+ },
1122
+ {
1123
+ "entropy": 1.0661572083830833,
1124
+ "epoch": 2.1213845424371742,
1125
+ "grad_norm": 0.9890888333320618,
1126
+ "learning_rate": 3.02734375e-07,
1127
+ "loss": 1.0478,
1128
+ "mean_token_accuracy": 0.7212581146508455,
1129
+ "num_tokens": 871059.0,
1130
+ "step": 1120
1131
+ },
1132
+ {
1133
+ "entropy": 1.0444834858179093,
1134
+ "epoch": 2.1403508771929824,
1135
+ "grad_norm": 1.3268550634384155,
1136
+ "learning_rate": 2.962239583333333e-07,
1137
+ "loss": 1.0847,
1138
+ "mean_token_accuracy": 0.7196186900138855,
1139
+ "num_tokens": 878877.0,
1140
+ "step": 1130
1141
+ },
1142
+ {
1143
+ "entropy": 1.0576549746096133,
1144
+ "epoch": 2.1593172119487907,
1145
+ "grad_norm": 1.0555297136306763,
1146
+ "learning_rate": 2.8971354166666665e-07,
1147
+ "loss": 1.0529,
1148
+ "mean_token_accuracy": 0.7290172964334488,
1149
+ "num_tokens": 886515.0,
1150
+ "step": 1140
1151
+ },
1152
+ {
1153
+ "entropy": 1.0684065386652946,
1154
+ "epoch": 2.1782835467045993,
1155
+ "grad_norm": 1.1883318424224854,
1156
+ "learning_rate": 2.83203125e-07,
1157
+ "loss": 1.0726,
1158
+ "mean_token_accuracy": 0.7240883596241474,
1159
+ "num_tokens": 894300.0,
1160
+ "step": 1150
1161
+ },
1162
+ {
1163
+ "entropy": 1.057620432972908,
1164
+ "epoch": 2.197249881460408,
1165
+ "grad_norm": 1.0103634595870972,
1166
+ "learning_rate": 2.766927083333333e-07,
1167
+ "loss": 1.0704,
1168
+ "mean_token_accuracy": 0.7233097150921821,
1169
+ "num_tokens": 902075.0,
1170
+ "step": 1160
1171
+ },
1172
+ {
1173
+ "entropy": 1.0865561179816723,
1174
+ "epoch": 2.2162162162162162,
1175
+ "grad_norm": 1.123908519744873,
1176
+ "learning_rate": 2.7018229166666665e-07,
1177
+ "loss": 1.0793,
1178
+ "mean_token_accuracy": 0.7224407941102982,
1179
+ "num_tokens": 909708.0,
1180
+ "step": 1170
1181
+ },
1182
+ {
1183
+ "entropy": 1.075062484294176,
1184
+ "epoch": 2.2351825509720245,
1185
+ "grad_norm": 1.0090774297714233,
1186
+ "learning_rate": 2.63671875e-07,
1187
+ "loss": 1.0585,
1188
+ "mean_token_accuracy": 0.7275661155581474,
1189
+ "num_tokens": 917568.0,
1190
+ "step": 1180
1191
+ },
1192
+ {
1193
+ "entropy": 1.0581686094403266,
1194
+ "epoch": 2.254148885727833,
1195
+ "grad_norm": 1.0245497226715088,
1196
+ "learning_rate": 2.571614583333333e-07,
1197
+ "loss": 1.0439,
1198
+ "mean_token_accuracy": 0.7295683771371841,
1199
+ "num_tokens": 925359.0,
1200
+ "step": 1190
1201
+ },
1202
+ {
1203
+ "entropy": 1.0172349140048027,
1204
+ "epoch": 2.273115220483642,
1205
+ "grad_norm": 0.9528677463531494,
1206
+ "learning_rate": 2.5065104166666665e-07,
1207
+ "loss": 0.9964,
1208
+ "mean_token_accuracy": 0.7368530400097371,
1209
+ "num_tokens": 933085.0,
1210
+ "step": 1200
1211
+ },
1212
+ {
1213
+ "entropy": 1.0807716213166714,
1214
+ "epoch": 2.29208155523945,
1215
+ "grad_norm": 1.1366709470748901,
1216
+ "learning_rate": 2.44140625e-07,
1217
+ "loss": 1.0962,
1218
+ "mean_token_accuracy": 0.7181029960513114,
1219
+ "num_tokens": 941157.0,
1220
+ "step": 1210
1221
+ },
1222
+ {
1223
+ "entropy": 1.0512977451086045,
1224
+ "epoch": 2.3110478899952582,
1225
+ "grad_norm": 1.0394670963287354,
1226
+ "learning_rate": 2.3763020833333333e-07,
1227
+ "loss": 1.0311,
1228
+ "mean_token_accuracy": 0.7289207331836224,
1229
+ "num_tokens": 949006.0,
1230
+ "step": 1220
1231
+ },
1232
+ {
1233
+ "entropy": 1.0536490596830845,
1234
+ "epoch": 2.330014224751067,
1235
+ "grad_norm": 0.994644820690155,
1236
+ "learning_rate": 2.3111979166666666e-07,
1237
+ "loss": 1.0593,
1238
+ "mean_token_accuracy": 0.7222072064876557,
1239
+ "num_tokens": 956471.0,
1240
+ "step": 1230
1241
+ },
1242
+ {
1243
+ "entropy": 1.0701601654291153,
1244
+ "epoch": 2.348980559506875,
1245
+ "grad_norm": 1.160831332206726,
1246
+ "learning_rate": 2.2460937499999998e-07,
1247
+ "loss": 1.0706,
1248
+ "mean_token_accuracy": 0.7194343417882919,
1249
+ "num_tokens": 964391.0,
1250
+ "step": 1240
1251
+ },
1252
+ {
1253
+ "entropy": 1.059455419331789,
1254
+ "epoch": 2.367946894262684,
1255
+ "grad_norm": 0.9788382053375244,
1256
+ "learning_rate": 2.1809895833333333e-07,
1257
+ "loss": 1.0503,
1258
+ "mean_token_accuracy": 0.7340390369296074,
1259
+ "num_tokens": 972267.0,
1260
+ "step": 1250
1261
+ },
1262
+ {
1263
+ "entropy": 1.0449399091303349,
1264
+ "epoch": 2.386913229018492,
1265
+ "grad_norm": 1.0266343355178833,
1266
+ "learning_rate": 2.1158854166666666e-07,
1267
+ "loss": 1.0663,
1268
+ "mean_token_accuracy": 0.7310878671705723,
1269
+ "num_tokens": 980032.0,
1270
+ "step": 1260
1271
+ },
1272
+ {
1273
+ "entropy": 1.0491505213081838,
1274
+ "epoch": 2.4058795637743007,
1275
+ "grad_norm": 1.081602931022644,
1276
+ "learning_rate": 2.0507812499999998e-07,
1277
+ "loss": 1.0266,
1278
+ "mean_token_accuracy": 0.726220253109932,
1279
+ "num_tokens": 987459.0,
1280
+ "step": 1270
1281
+ },
1282
+ {
1283
+ "entropy": 1.04006467461586,
1284
+ "epoch": 2.424845898530109,
1285
+ "grad_norm": 1.0115092992782593,
1286
+ "learning_rate": 1.9856770833333333e-07,
1287
+ "loss": 1.0734,
1288
+ "mean_token_accuracy": 0.7200278639793396,
1289
+ "num_tokens": 995352.0,
1290
+ "step": 1280
1291
+ },
1292
+ {
1293
+ "entropy": 1.057293500751257,
1294
+ "epoch": 2.4438122332859176,
1295
+ "grad_norm": 1.0309503078460693,
1296
+ "learning_rate": 1.9205729166666666e-07,
1297
+ "loss": 1.0801,
1298
+ "mean_token_accuracy": 0.7221748150885106,
1299
+ "num_tokens": 1003216.0,
1300
+ "step": 1290
1301
+ },
1302
+ {
1303
+ "entropy": 1.0883753821253777,
1304
+ "epoch": 2.462778568041726,
1305
+ "grad_norm": 1.0229616165161133,
1306
+ "learning_rate": 1.8554687499999998e-07,
1307
+ "loss": 1.1076,
1308
+ "mean_token_accuracy": 0.7148709982633591,
1309
+ "num_tokens": 1011281.0,
1310
+ "step": 1300
1311
+ },
1312
+ {
1313
+ "entropy": 1.0345959886908531,
1314
+ "epoch": 2.4817449027975345,
1315
+ "grad_norm": 1.2275679111480713,
1316
+ "learning_rate": 1.7903645833333334e-07,
1317
+ "loss": 1.0265,
1318
+ "mean_token_accuracy": 0.7251479253172874,
1319
+ "num_tokens": 1019124.0,
1320
+ "step": 1310
1321
+ },
1322
+ {
1323
+ "entropy": 1.0503775343298911,
1324
+ "epoch": 2.5007112375533427,
1325
+ "grad_norm": 0.9931260943412781,
1326
+ "learning_rate": 1.7252604166666666e-07,
1327
+ "loss": 1.0592,
1328
+ "mean_token_accuracy": 0.7259611785411835,
1329
+ "num_tokens": 1027135.0,
1330
+ "step": 1320
1331
+ },
1332
+ {
1333
+ "entropy": 1.0528467200696467,
1334
+ "epoch": 2.5196775723091513,
1335
+ "grad_norm": 1.1964516639709473,
1336
+ "learning_rate": 1.6601562499999999e-07,
1337
+ "loss": 1.065,
1338
+ "mean_token_accuracy": 0.7194369584321976,
1339
+ "num_tokens": 1035098.0,
1340
+ "step": 1330
1341
+ },
1342
+ {
1343
+ "entropy": 1.0336830347776413,
1344
+ "epoch": 2.5386439070649596,
1345
+ "grad_norm": 1.0086219310760498,
1346
+ "learning_rate": 1.5950520833333334e-07,
1347
+ "loss": 1.0536,
1348
+ "mean_token_accuracy": 0.7238833822309971,
1349
+ "num_tokens": 1042919.0,
1350
+ "step": 1340
1351
+ },
1352
+ {
1353
+ "entropy": 1.0386064052581787,
1354
+ "epoch": 2.5576102418207682,
1355
+ "grad_norm": 1.0653084516525269,
1356
+ "learning_rate": 1.5299479166666666e-07,
1357
+ "loss": 1.027,
1358
+ "mean_token_accuracy": 0.724561757594347,
1359
+ "num_tokens": 1050649.0,
1360
+ "step": 1350
1361
+ },
1362
+ {
1363
+ "entropy": 1.065981125831604,
1364
+ "epoch": 2.5765765765765765,
1365
+ "grad_norm": 0.961837887763977,
1366
+ "learning_rate": 1.46484375e-07,
1367
+ "loss": 1.0915,
1368
+ "mean_token_accuracy": 0.719189016520977,
1369
+ "num_tokens": 1058569.0,
1370
+ "step": 1360
1371
+ },
1372
+ {
1373
+ "entropy": 1.0508228421211243,
1374
+ "epoch": 2.595542911332385,
1375
+ "grad_norm": 1.0830740928649902,
1376
+ "learning_rate": 1.3997395833333334e-07,
1377
+ "loss": 1.0482,
1378
+ "mean_token_accuracy": 0.7348687440156937,
1379
+ "num_tokens": 1066238.0,
1380
+ "step": 1370
1381
+ },
1382
+ {
1383
+ "entropy": 1.0544643633067607,
1384
+ "epoch": 2.6145092460881934,
1385
+ "grad_norm": 1.2174203395843506,
1386
+ "learning_rate": 1.3346354166666666e-07,
1387
+ "loss": 1.0435,
1388
+ "mean_token_accuracy": 0.7309793442487716,
1389
+ "num_tokens": 1074128.0,
1390
+ "step": 1380
1391
+ },
1392
+ {
1393
+ "entropy": 1.0388936534523965,
1394
+ "epoch": 2.633475580844002,
1395
+ "grad_norm": 1.0965008735656738,
1396
+ "learning_rate": 1.26953125e-07,
1397
+ "loss": 1.0296,
1398
+ "mean_token_accuracy": 0.7309447333216668,
1399
+ "num_tokens": 1082019.0,
1400
+ "step": 1390
1401
+ },
1402
+ {
1403
+ "entropy": 1.0290747590363025,
1404
+ "epoch": 2.6524419155998102,
1405
+ "grad_norm": 0.9872783422470093,
1406
+ "learning_rate": 1.2044270833333331e-07,
1407
+ "loss": 1.0335,
1408
+ "mean_token_accuracy": 0.7279187783598899,
1409
+ "num_tokens": 1089670.0,
1410
+ "step": 1400
1411
+ },
1412
+ {
1413
+ "entropy": 1.032333093881607,
1414
+ "epoch": 2.671408250355619,
1415
+ "grad_norm": 1.2452492713928223,
1416
+ "learning_rate": 1.1393229166666667e-07,
1417
+ "loss": 1.0232,
1418
+ "mean_token_accuracy": 0.7304965436458588,
1419
+ "num_tokens": 1097534.0,
1420
+ "step": 1410
1421
+ },
1422
+ {
1423
+ "entropy": 1.0229677349328994,
1424
+ "epoch": 2.690374585111427,
1425
+ "grad_norm": 1.234789490699768,
1426
+ "learning_rate": 1.0742187499999999e-07,
1427
+ "loss": 0.9894,
1428
+ "mean_token_accuracy": 0.7343516901135445,
1429
+ "num_tokens": 1104867.0,
1430
+ "step": 1420
1431
+ },
1432
+ {
1433
+ "entropy": 1.0563533768057822,
1434
+ "epoch": 2.709340919867236,
1435
+ "grad_norm": 0.9225372672080994,
1436
+ "learning_rate": 1.0091145833333333e-07,
1437
+ "loss": 1.0469,
1438
+ "mean_token_accuracy": 0.7215077750384807,
1439
+ "num_tokens": 1112409.0,
1440
+ "step": 1430
1441
+ },
1442
+ {
1443
+ "entropy": 1.0457329712808132,
1444
+ "epoch": 2.728307254623044,
1445
+ "grad_norm": 1.178075909614563,
1446
+ "learning_rate": 9.440104166666667e-08,
1447
+ "loss": 1.0233,
1448
+ "mean_token_accuracy": 0.7347801722586155,
1449
+ "num_tokens": 1119960.0,
1450
+ "step": 1440
1451
+ },
1452
+ {
1453
+ "entropy": 1.0247016452252864,
1454
+ "epoch": 2.7472735893788527,
1455
+ "grad_norm": 1.252854585647583,
1456
+ "learning_rate": 8.789062499999999e-08,
1457
+ "loss": 1.0095,
1458
+ "mean_token_accuracy": 0.7328019939363003,
1459
+ "num_tokens": 1127729.0,
1460
+ "step": 1450
1461
+ },
1462
+ {
1463
+ "entropy": 1.0175456829369067,
1464
+ "epoch": 2.766239924134661,
1465
+ "grad_norm": 1.0133498907089233,
1466
+ "learning_rate": 8.138020833333333e-08,
1467
+ "loss": 0.9892,
1468
+ "mean_token_accuracy": 0.7394115671515464,
1469
+ "num_tokens": 1135124.0,
1470
+ "step": 1460
1471
+ },
1472
+ {
1473
+ "entropy": 1.023030236363411,
1474
+ "epoch": 2.7852062588904696,
1475
+ "grad_norm": 1.1670140027999878,
1476
+ "learning_rate": 7.486979166666667e-08,
1477
+ "loss": 1.0009,
1478
+ "mean_token_accuracy": 0.736342516541481,
1479
+ "num_tokens": 1142969.0,
1480
+ "step": 1470
1481
+ },
1482
+ {
1483
+ "entropy": 1.0272307373583316,
1484
+ "epoch": 2.804172593646278,
1485
+ "grad_norm": 1.0572019815444946,
1486
+ "learning_rate": 6.8359375e-08,
1487
+ "loss": 1.0154,
1488
+ "mean_token_accuracy": 0.7248648099601269,
1489
+ "num_tokens": 1150592.0,
1490
+ "step": 1480
1491
+ },
1492
+ {
1493
+ "entropy": 1.0305047407746315,
1494
+ "epoch": 2.823138928402086,
1495
+ "grad_norm": 0.9308680295944214,
1496
+ "learning_rate": 6.184895833333333e-08,
1497
+ "loss": 1.0401,
1498
+ "mean_token_accuracy": 0.7297416269779206,
1499
+ "num_tokens": 1158674.0,
1500
+ "step": 1490
1501
+ },
1502
+ {
1503
+ "entropy": 1.069483907520771,
1504
+ "epoch": 2.8421052631578947,
1505
+ "grad_norm": 1.0559190511703491,
1506
+ "learning_rate": 5.5338541666666664e-08,
1507
+ "loss": 1.0788,
1508
+ "mean_token_accuracy": 0.7130757793784142,
1509
+ "num_tokens": 1166476.0,
1510
+ "step": 1500
1511
+ },
1512
+ {
1513
+ "entropy": 1.060176931321621,
1514
+ "epoch": 2.8610715979137034,
1515
+ "grad_norm": 1.2278039455413818,
1516
+ "learning_rate": 4.8828124999999996e-08,
1517
+ "loss": 1.1011,
1518
+ "mean_token_accuracy": 0.7208118259906768,
1519
+ "num_tokens": 1174300.0,
1520
+ "step": 1510
1521
+ },
1522
+ {
1523
+ "entropy": 1.0859525471925735,
1524
+ "epoch": 2.8800379326695116,
1525
+ "grad_norm": 1.0776472091674805,
1526
+ "learning_rate": 4.2317708333333334e-08,
1527
+ "loss": 1.1047,
1528
+ "mean_token_accuracy": 0.715139028429985,
1529
+ "num_tokens": 1182207.0,
1530
+ "step": 1520
1531
+ },
1532
+ {
1533
+ "entropy": 1.0568951837718488,
1534
+ "epoch": 2.89900426742532,
1535
+ "grad_norm": 1.1124858856201172,
1536
+ "learning_rate": 3.5807291666666666e-08,
1537
+ "loss": 1.0779,
1538
+ "mean_token_accuracy": 0.7272238045930862,
1539
+ "num_tokens": 1190118.0,
1540
+ "step": 1530
1541
+ },
1542
+ {
1543
+ "entropy": 1.0444737546145917,
1544
+ "epoch": 2.9179706021811285,
1545
+ "grad_norm": 1.2949162721633911,
1546
+ "learning_rate": 2.9296874999999997e-08,
1547
+ "loss": 1.0474,
1548
+ "mean_token_accuracy": 0.7282775707542897,
1549
+ "num_tokens": 1197864.0,
1550
+ "step": 1540
1551
+ },
1552
+ {
1553
+ "entropy": 1.0213447205722332,
1554
+ "epoch": 2.936936936936937,
1555
+ "grad_norm": 1.0395339727401733,
1556
+ "learning_rate": 2.2786458333333332e-08,
1557
+ "loss": 1.0082,
1558
+ "mean_token_accuracy": 0.7363046444952488,
1559
+ "num_tokens": 1205487.0,
1560
+ "step": 1550
1561
+ },
1562
+ {
1563
+ "entropy": 1.0271850168704986,
1564
+ "epoch": 2.9559032716927454,
1565
+ "grad_norm": 1.1394912004470825,
1566
+ "learning_rate": 1.6276041666666667e-08,
1567
+ "loss": 1.0238,
1568
+ "mean_token_accuracy": 0.7308688588440418,
1569
+ "num_tokens": 1213173.0,
1570
+ "step": 1560
1571
+ },
1572
+ {
1573
+ "entropy": 1.052078378200531,
1574
+ "epoch": 2.9748696064485536,
1575
+ "grad_norm": 1.111386775970459,
1576
+ "learning_rate": 9.765624999999999e-09,
1577
+ "loss": 1.0644,
1578
+ "mean_token_accuracy": 0.7222773849964141,
1579
+ "num_tokens": 1220993.0,
1580
+ "step": 1570
1581
+ },
1582
+ {
1583
+ "entropy": 1.070343980193138,
1584
+ "epoch": 2.9938359412043622,
1585
+ "grad_norm": 1.00790274143219,
1586
+ "learning_rate": 3.2552083333333333e-09,
1587
+ "loss": 1.0744,
1588
+ "mean_token_accuracy": 0.7226169481873512,
1589
+ "num_tokens": 1228824.0,
1590
+ "step": 1580
1591
+ }
1592
+ ],
1593
+ "logging_steps": 10,
1594
+ "max_steps": 1584,
1595
+ "num_input_tokens_seen": 0,
1596
+ "num_train_epochs": 3,
1597
+ "save_steps": 500,
1598
+ "stateful_callbacks": {
1599
+ "TrainerControl": {
1600
+ "args": {
1601
+ "should_epoch_stop": false,
1602
+ "should_evaluate": false,
1603
+ "should_log": false,
1604
+ "should_save": true,
1605
+ "should_training_stop": true
1606
+ },
1607
+ "attributes": {}
1608
+ }
1609
+ },
1610
+ "total_flos": 4.999591237681152e+16,
1611
+ "train_batch_size": 1,
1612
+ "trial_name": null,
1613
+ "trial_params": null
1614
+ }
refusal-only-lora/checkpoint-1584/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36492051829b8ea0cb9bbd2945d49516e1af3ee03d355e12c6e414a818c5c5d5
3
+ size 6417
refusal-only-lora/checkpoint-528/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Llama-2-7b-chat-hf
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:meta-llama/Llama-2-7b-chat-hf
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- 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. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ 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).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
refusal-only-lora/checkpoint-528/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": "meta-llama/Llama-2-7b-chat-hf",
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": false,
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": 128,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
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
+ "v_proj",
34
+ "k_proj",
35
+ "o_proj",
36
+ "up_proj",
37
+ "gate_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
refusal-only-lora/checkpoint-528/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8156962dd0cc1eb3cffb66decf7765a11d4ce72f2e6cb1f05ef3b3803a392cec
3
+ size 639691872
refusal-only-lora/checkpoint-528/chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = false %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 and system_message != false %}{% set content = '<<SYS>>\n' + system_message + '\n<</SYS>>\n\n' + message['content'] %}{% else %}{% set content = message['content'] %}{% endif %}{% if message['role'] == 'user' %}{{ bos_token + '[INST] ' + content.strip() + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + content.strip() + ' ' + eos_token }}{% endif %}{% endfor %}
refusal-only-lora/checkpoint-528/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dd58a1cb9c40c8757268c6dfc3644c2bc9d0c7126a2d4a2f4fb95f425425bcd
3
+ size 1279641507
refusal-only-lora/checkpoint-528/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab3db75b536cc459dc955e92af301958f46fb60600a2f9199c930a7b36d147a3
3
+ size 14645
refusal-only-lora/checkpoint-528/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bcecc4b41f0572663eed2af60cc028a078509b376b79de535f8eb23b3c72393
3
+ size 1465
refusal-only-lora/checkpoint-528/special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
refusal-only-lora/checkpoint-528/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
refusal-only-lora/checkpoint-528/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
refusal-only-lora/checkpoint-528/tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "extra_special_tokens": {},
35
+ "legacy": false,
36
+ "model_max_length": 1000000000000000019884624838656,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
refusal-only-lora/checkpoint-528/trainer_state.json ADDED
@@ -0,0 +1,554 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 528,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.8800771124660969,
14
+ "epoch": 0.01896633475580844,
15
+ "grad_norm": 3.348053455352783,
16
+ "learning_rate": 1.875e-07,
17
+ "loss": 2.892,
18
+ "mean_token_accuracy": 0.5558312267065049,
19
+ "num_tokens": 7568.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.9028674259781837,
24
+ "epoch": 0.03793266951161688,
25
+ "grad_norm": 3.5438897609710693,
26
+ "learning_rate": 3.958333333333333e-07,
27
+ "loss": 2.84,
28
+ "mean_token_accuracy": 0.5506744537502527,
29
+ "num_tokens": 15418.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.8906873933970928,
34
+ "epoch": 0.05689900426742532,
35
+ "grad_norm": 4.670811653137207,
36
+ "learning_rate": 6.041666666666666e-07,
37
+ "loss": 2.8846,
38
+ "mean_token_accuracy": 0.5502553284168243,
39
+ "num_tokens": 23186.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.8964283980429173,
44
+ "epoch": 0.07586533902323377,
45
+ "grad_norm": 4.167201995849609,
46
+ "learning_rate": 8.125e-07,
47
+ "loss": 2.8202,
48
+ "mean_token_accuracy": 0.5535532858222723,
49
+ "num_tokens": 30766.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.9246485389769077,
54
+ "epoch": 0.0948316737790422,
55
+ "grad_norm": 4.584895133972168,
56
+ "learning_rate": 9.993489583333333e-07,
57
+ "loss": 2.703,
58
+ "mean_token_accuracy": 0.5526723157614469,
59
+ "num_tokens": 38564.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.9249856673181057,
64
+ "epoch": 0.11379800853485064,
65
+ "grad_norm": 4.198783874511719,
66
+ "learning_rate": 9.928385416666666e-07,
67
+ "loss": 2.6924,
68
+ "mean_token_accuracy": 0.5561300627887249,
69
+ "num_tokens": 46612.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.9432196334004402,
74
+ "epoch": 0.1327643432906591,
75
+ "grad_norm": 4.151094436645508,
76
+ "learning_rate": 9.86328125e-07,
77
+ "loss": 2.5988,
78
+ "mean_token_accuracy": 0.5674021277576685,
79
+ "num_tokens": 54312.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 1.0061342589557172,
84
+ "epoch": 0.15173067804646753,
85
+ "grad_norm": 3.3446481227874756,
86
+ "learning_rate": 9.798177083333333e-07,
87
+ "loss": 2.5035,
88
+ "mean_token_accuracy": 0.565283863991499,
89
+ "num_tokens": 62281.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 1.0555521003901958,
94
+ "epoch": 0.17069701280227595,
95
+ "grad_norm": 4.015676498413086,
96
+ "learning_rate": 9.733072916666665e-07,
97
+ "loss": 2.4437,
98
+ "mean_token_accuracy": 0.5663877908140421,
99
+ "num_tokens": 69821.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 1.1147512137889861,
104
+ "epoch": 0.1896633475580844,
105
+ "grad_norm": 3.241530656814575,
106
+ "learning_rate": 9.66796875e-07,
107
+ "loss": 2.3645,
108
+ "mean_token_accuracy": 0.5583278063684702,
109
+ "num_tokens": 77437.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 1.1382376968860626,
114
+ "epoch": 0.20862968231389284,
115
+ "grad_norm": 2.926927328109741,
116
+ "learning_rate": 9.602864583333332e-07,
117
+ "loss": 2.2085,
118
+ "mean_token_accuracy": 0.5798784755170345,
119
+ "num_tokens": 85618.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 1.190623751282692,
124
+ "epoch": 0.22759601706970128,
125
+ "grad_norm": 2.580003499984741,
126
+ "learning_rate": 9.537760416666665e-07,
127
+ "loss": 2.1356,
128
+ "mean_token_accuracy": 0.5675114955753088,
129
+ "num_tokens": 93792.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 1.2170004837214947,
134
+ "epoch": 0.24656235182550973,
135
+ "grad_norm": 2.2754576206207275,
136
+ "learning_rate": 9.472656249999999e-07,
137
+ "loss": 2.0575,
138
+ "mean_token_accuracy": 0.5808480866253376,
139
+ "num_tokens": 101636.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 1.2965586438775063,
144
+ "epoch": 0.2655286865813182,
145
+ "grad_norm": 2.0113515853881836,
146
+ "learning_rate": 9.407552083333333e-07,
147
+ "loss": 2.0583,
148
+ "mean_token_accuracy": 0.5819144621491432,
149
+ "num_tokens": 109232.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 1.3018298715353012,
154
+ "epoch": 0.2844950213371266,
155
+ "grad_norm": 1.8721307516098022,
156
+ "learning_rate": 9.342447916666665e-07,
157
+ "loss": 1.9126,
158
+ "mean_token_accuracy": 0.6024341452866793,
159
+ "num_tokens": 116924.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 1.3164579145610333,
164
+ "epoch": 0.30346135609293506,
165
+ "grad_norm": 1.9804903268814087,
166
+ "learning_rate": 9.27734375e-07,
167
+ "loss": 1.8649,
168
+ "mean_token_accuracy": 0.6070760123431682,
169
+ "num_tokens": 124256.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 1.321300919353962,
174
+ "epoch": 0.32242769084874345,
175
+ "grad_norm": 1.8772928714752197,
176
+ "learning_rate": 9.212239583333333e-07,
177
+ "loss": 1.8434,
178
+ "mean_token_accuracy": 0.6069471161812544,
179
+ "num_tokens": 131929.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 1.3300878189504146,
184
+ "epoch": 0.3413940256045519,
185
+ "grad_norm": 1.734480381011963,
186
+ "learning_rate": 9.147135416666666e-07,
187
+ "loss": 1.7704,
188
+ "mean_token_accuracy": 0.6136918149888515,
189
+ "num_tokens": 139796.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 1.2977866984903812,
194
+ "epoch": 0.36036036036036034,
195
+ "grad_norm": 1.4145355224609375,
196
+ "learning_rate": 9.082031249999999e-07,
197
+ "loss": 1.6739,
198
+ "mean_token_accuracy": 0.6313016630709172,
199
+ "num_tokens": 147946.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 1.3758595705032348,
204
+ "epoch": 0.3793266951161688,
205
+ "grad_norm": 1.5995664596557617,
206
+ "learning_rate": 9.016927083333333e-07,
207
+ "loss": 1.6861,
208
+ "mean_token_accuracy": 0.6132468611001969,
209
+ "num_tokens": 155548.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 1.3915398299694062,
214
+ "epoch": 0.39829302987197723,
215
+ "grad_norm": 1.450819969177246,
216
+ "learning_rate": 8.951822916666665e-07,
217
+ "loss": 1.7079,
218
+ "mean_token_accuracy": 0.6195833217352629,
219
+ "num_tokens": 163633.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 1.3885319493710995,
224
+ "epoch": 0.4172593646277857,
225
+ "grad_norm": 1.565523624420166,
226
+ "learning_rate": 8.88671875e-07,
227
+ "loss": 1.6055,
228
+ "mean_token_accuracy": 0.631564911082387,
229
+ "num_tokens": 171429.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 1.42000814974308,
234
+ "epoch": 0.4362256993835941,
235
+ "grad_norm": 1.415071725845337,
236
+ "learning_rate": 8.821614583333334e-07,
237
+ "loss": 1.5733,
238
+ "mean_token_accuracy": 0.6355191901326179,
239
+ "num_tokens": 178813.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 1.4173048675060271,
244
+ "epoch": 0.45519203413940257,
245
+ "grad_norm": 1.4940714836120605,
246
+ "learning_rate": 8.756510416666666e-07,
247
+ "loss": 1.5686,
248
+ "mean_token_accuracy": 0.6268294852226972,
249
+ "num_tokens": 186804.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 1.406810748577118,
254
+ "epoch": 0.474158368895211,
255
+ "grad_norm": 1.481840968132019,
256
+ "learning_rate": 8.69140625e-07,
257
+ "loss": 1.5083,
258
+ "mean_token_accuracy": 0.6454955622553825,
259
+ "num_tokens": 194400.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 1.4201976731419563,
264
+ "epoch": 0.49312470365101946,
265
+ "grad_norm": 1.303875207901001,
266
+ "learning_rate": 8.626302083333333e-07,
267
+ "loss": 1.5492,
268
+ "mean_token_accuracy": 0.6335972256958484,
269
+ "num_tokens": 202121.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 1.4369812428951263,
274
+ "epoch": 0.5120910384068279,
275
+ "grad_norm": 1.2758477926254272,
276
+ "learning_rate": 8.561197916666665e-07,
277
+ "loss": 1.4994,
278
+ "mean_token_accuracy": 0.6454178035259247,
279
+ "num_tokens": 209643.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 1.391933375597,
284
+ "epoch": 0.5310573731626363,
285
+ "grad_norm": 1.2780486345291138,
286
+ "learning_rate": 8.49609375e-07,
287
+ "loss": 1.4388,
288
+ "mean_token_accuracy": 0.6508051678538322,
289
+ "num_tokens": 217154.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 1.4164466500282287,
294
+ "epoch": 0.5500237079184448,
295
+ "grad_norm": 1.3106104135513306,
296
+ "learning_rate": 8.430989583333334e-07,
297
+ "loss": 1.4383,
298
+ "mean_token_accuracy": 0.6559075094759464,
299
+ "num_tokens": 224833.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 1.396108366549015,
304
+ "epoch": 0.5689900426742532,
305
+ "grad_norm": 1.1580867767333984,
306
+ "learning_rate": 8.365885416666666e-07,
307
+ "loss": 1.4295,
308
+ "mean_token_accuracy": 0.6560030743479729,
309
+ "num_tokens": 232528.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 1.3968449525535107,
314
+ "epoch": 0.5879563774300617,
315
+ "grad_norm": 1.4947290420532227,
316
+ "learning_rate": 8.30078125e-07,
317
+ "loss": 1.4474,
318
+ "mean_token_accuracy": 0.6532723367214203,
319
+ "num_tokens": 240340.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 1.3659315139055253,
324
+ "epoch": 0.6069227121858701,
325
+ "grad_norm": 1.2400017976760864,
326
+ "learning_rate": 8.235677083333333e-07,
327
+ "loss": 1.4045,
328
+ "mean_token_accuracy": 0.6663874570280314,
329
+ "num_tokens": 248482.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 1.3608342856168747,
334
+ "epoch": 0.6258890469416786,
335
+ "grad_norm": 1.1932809352874756,
336
+ "learning_rate": 8.170572916666666e-07,
337
+ "loss": 1.3297,
338
+ "mean_token_accuracy": 0.6729936949908734,
339
+ "num_tokens": 256146.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 1.369440621137619,
344
+ "epoch": 0.6448553816974869,
345
+ "grad_norm": 1.304652452468872,
346
+ "learning_rate": 8.10546875e-07,
347
+ "loss": 1.3665,
348
+ "mean_token_accuracy": 0.6693637847900391,
349
+ "num_tokens": 264115.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 1.3208621554076672,
354
+ "epoch": 0.6638217164532954,
355
+ "grad_norm": 1.253781795501709,
356
+ "learning_rate": 8.040364583333334e-07,
357
+ "loss": 1.32,
358
+ "mean_token_accuracy": 0.6763425137847662,
359
+ "num_tokens": 271660.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 1.322153516113758,
364
+ "epoch": 0.6827880512091038,
365
+ "grad_norm": 1.2030173540115356,
366
+ "learning_rate": 7.975260416666666e-07,
367
+ "loss": 1.3156,
368
+ "mean_token_accuracy": 0.6803543917834759,
369
+ "num_tokens": 279383.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 1.3421797141432763,
374
+ "epoch": 0.7017543859649122,
375
+ "grad_norm": 1.215598464012146,
376
+ "learning_rate": 7.91015625e-07,
377
+ "loss": 1.3249,
378
+ "mean_token_accuracy": 0.6731918178498745,
379
+ "num_tokens": 287094.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 1.3480857253074645,
384
+ "epoch": 0.7207207207207207,
385
+ "grad_norm": 1.3740663528442383,
386
+ "learning_rate": 7.845052083333333e-07,
387
+ "loss": 1.3468,
388
+ "mean_token_accuracy": 0.6654974155128002,
389
+ "num_tokens": 294860.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 1.3071250945329667,
394
+ "epoch": 0.7396870554765291,
395
+ "grad_norm": 1.37200129032135,
396
+ "learning_rate": 7.779947916666666e-07,
397
+ "loss": 1.3141,
398
+ "mean_token_accuracy": 0.6753718614578247,
399
+ "num_tokens": 302632.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 1.2966938570141793,
404
+ "epoch": 0.7586533902323376,
405
+ "grad_norm": 1.2524887323379517,
406
+ "learning_rate": 7.71484375e-07,
407
+ "loss": 1.2985,
408
+ "mean_token_accuracy": 0.6792728714644909,
409
+ "num_tokens": 310895.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 1.3287690579891205,
414
+ "epoch": 0.777619724988146,
415
+ "grad_norm": 1.4232484102249146,
416
+ "learning_rate": 7.649739583333334e-07,
417
+ "loss": 1.3058,
418
+ "mean_token_accuracy": 0.683712650835514,
419
+ "num_tokens": 318800.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 1.3336769036948681,
424
+ "epoch": 0.7965860597439545,
425
+ "grad_norm": 1.5561081171035767,
426
+ "learning_rate": 7.584635416666666e-07,
427
+ "loss": 1.3498,
428
+ "mean_token_accuracy": 0.6661995306611062,
429
+ "num_tokens": 326858.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 1.30598786175251,
434
+ "epoch": 0.8155523944997629,
435
+ "grad_norm": 1.274189829826355,
436
+ "learning_rate": 7.51953125e-07,
437
+ "loss": 1.2534,
438
+ "mean_token_accuracy": 0.6906878098845481,
439
+ "num_tokens": 334660.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 1.2970546074211597,
444
+ "epoch": 0.8345187292555714,
445
+ "grad_norm": 1.214945673942566,
446
+ "learning_rate": 7.454427083333333e-07,
447
+ "loss": 1.2538,
448
+ "mean_token_accuracy": 0.6886132195591926,
449
+ "num_tokens": 342557.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 1.3024328142404555,
454
+ "epoch": 0.8534850640113798,
455
+ "grad_norm": 1.4416435956954956,
456
+ "learning_rate": 7.389322916666666e-07,
457
+ "loss": 1.2292,
458
+ "mean_token_accuracy": 0.6991933032870292,
459
+ "num_tokens": 350090.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 1.2910141475498675,
464
+ "epoch": 0.8724513987671882,
465
+ "grad_norm": 1.3008499145507812,
466
+ "learning_rate": 7.32421875e-07,
467
+ "loss": 1.2491,
468
+ "mean_token_accuracy": 0.6929278194904327,
469
+ "num_tokens": 357993.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 1.280844808369875,
474
+ "epoch": 0.8914177335229967,
475
+ "grad_norm": 1.1629010438919067,
476
+ "learning_rate": 7.259114583333334e-07,
477
+ "loss": 1.2173,
478
+ "mean_token_accuracy": 0.7058381117880345,
479
+ "num_tokens": 365851.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 1.2642140217125415,
484
+ "epoch": 0.9103840682788051,
485
+ "grad_norm": 1.1701194047927856,
486
+ "learning_rate": 7.194010416666666e-07,
487
+ "loss": 1.1973,
488
+ "mean_token_accuracy": 0.7036448389291763,
489
+ "num_tokens": 373810.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 1.2932376384735107,
494
+ "epoch": 0.9293504030346136,
495
+ "grad_norm": 1.1186771392822266,
496
+ "learning_rate": 7.12890625e-07,
497
+ "loss": 1.2275,
498
+ "mean_token_accuracy": 0.6950574479997158,
499
+ "num_tokens": 381473.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 1.252262619137764,
504
+ "epoch": 0.948316737790422,
505
+ "grad_norm": 1.1925098896026611,
506
+ "learning_rate": 7.063802083333333e-07,
507
+ "loss": 1.1992,
508
+ "mean_token_accuracy": 0.7074964240193367,
509
+ "num_tokens": 389449.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 1.2449406683444977,
514
+ "epoch": 0.9672830725462305,
515
+ "grad_norm": 1.3617829084396362,
516
+ "learning_rate": 6.998697916666666e-07,
517
+ "loss": 1.1762,
518
+ "mean_token_accuracy": 0.7085213892161846,
519
+ "num_tokens": 397020.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 1.258817932009697,
524
+ "epoch": 0.9862494073020389,
525
+ "grad_norm": 1.1232348680496216,
526
+ "learning_rate": 6.93359375e-07,
527
+ "loss": 1.2082,
528
+ "mean_token_accuracy": 0.7091631673276424,
529
+ "num_tokens": 404954.0,
530
+ "step": 520
531
+ }
532
+ ],
533
+ "logging_steps": 10,
534
+ "max_steps": 1584,
535
+ "num_input_tokens_seen": 0,
536
+ "num_train_epochs": 3,
537
+ "save_steps": 500,
538
+ "stateful_callbacks": {
539
+ "TrainerControl": {
540
+ "args": {
541
+ "should_epoch_stop": false,
542
+ "should_evaluate": false,
543
+ "should_log": false,
544
+ "should_save": true,
545
+ "should_training_stop": false
546
+ },
547
+ "attributes": {}
548
+ }
549
+ },
550
+ "total_flos": 1.666530412560384e+16,
551
+ "train_batch_size": 1,
552
+ "trial_name": null,
553
+ "trial_params": null
554
+ }
refusal-only-lora/checkpoint-528/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36492051829b8ea0cb9bbd2945d49516e1af3ee03d355e12c6e414a818c5c5d5
3
+ size 6417
refusal-only-lora/run_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name_or_path": "meta-llama/Llama-2-7b-chat-hf",
3
+ "num_train_epochs": 3.0,
4
+ "learning_rate": 1e-06,
5
+ "full_finetune": false,
6
+ "use_qlora": false,
7
+ "lora_r": 64,
8
+ "dataset": "HarethahMo/extended-refusal",
9
+ "max_steps": null,
10
+ "response_aspect": "refusal_only",
11
+ "train_examples": 4218,
12
+ "assistant_only_loss": false
13
+ }
refusal-only-lora/special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
refusal-only-lora/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
refusal-only-lora/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
refusal-only-lora/tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "extra_special_tokens": {},
35
+ "legacy": false,
36
+ "model_max_length": 1000000000000000019884624838656,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
refusal-only-lora/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36492051829b8ea0cb9bbd2945d49516e1af3ee03d355e12c6e414a818c5c5d5
3
+ size 6417