erata commited on
Commit
7971924
·
verified ·
1 Parent(s): 97cc024

Upload folder using huggingface_hub

Browse files
Files changed (39) hide show
  1. .gitattributes +1 -0
  2. README.md +203 -3
  3. added_tokens.json +28 -0
  4. chat_template.jinja +89 -0
  5. global_step410/bf16_zero_pp_rank_0_mp_rank_00_optim_states.pt +3 -0
  6. global_step410/bf16_zero_pp_rank_1_mp_rank_00_optim_states.pt +3 -0
  7. global_step410/bf16_zero_pp_rank_2_mp_rank_00_optim_states.pt +3 -0
  8. global_step410/bf16_zero_pp_rank_3_mp_rank_00_optim_states.pt +3 -0
  9. global_step410/bf16_zero_pp_rank_4_mp_rank_00_optim_states.pt +3 -0
  10. global_step410/bf16_zero_pp_rank_5_mp_rank_00_optim_states.pt +3 -0
  11. global_step410/bf16_zero_pp_rank_6_mp_rank_00_optim_states.pt +3 -0
  12. global_step410/bf16_zero_pp_rank_7_mp_rank_00_optim_states.pt +3 -0
  13. global_step410/zero_pp_rank_0_mp_rank_00_model_states.pt +3 -0
  14. global_step410/zero_pp_rank_1_mp_rank_00_model_states.pt +3 -0
  15. global_step410/zero_pp_rank_2_mp_rank_00_model_states.pt +3 -0
  16. global_step410/zero_pp_rank_3_mp_rank_00_model_states.pt +3 -0
  17. global_step410/zero_pp_rank_4_mp_rank_00_model_states.pt +3 -0
  18. global_step410/zero_pp_rank_5_mp_rank_00_model_states.pt +3 -0
  19. global_step410/zero_pp_rank_6_mp_rank_00_model_states.pt +3 -0
  20. global_step410/zero_pp_rank_7_mp_rank_00_model_states.pt +3 -0
  21. latest +1 -0
  22. merges.txt +0 -0
  23. pytorch_model.bin +3 -0
  24. rng_state_0.pth +3 -0
  25. rng_state_1.pth +3 -0
  26. rng_state_2.pth +3 -0
  27. rng_state_3.pth +3 -0
  28. rng_state_4.pth +3 -0
  29. rng_state_5.pth +3 -0
  30. rng_state_6.pth +3 -0
  31. rng_state_7.pth +3 -0
  32. scheduler.pt +3 -0
  33. special_tokens_map.json +31 -0
  34. tokenizer.json +3 -0
  35. tokenizer_config.json +239 -0
  36. trainer_state.json +1059 -0
  37. training_args.bin +3 -0
  38. vocab.json +0 -0
  39. zero_to_fp32.py +760 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,203 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen3-0.6B
4
+ tags:
5
+ - sat
6
+ - satisfiability
7
+ - cube-and-conquer
8
+ - variable-selection
9
+ - combinatorial-optimization
10
+ datasets:
11
+ - Yale-ROSE/SAT-VarSelector-Distilled
12
+ language:
13
+ - en
14
+ pipeline_tag: text-classification
15
+ ---
16
+
17
+ # Qwen3-0.6B-SAT-VarSelector-Distilled
18
+
19
+ A **Qwen3-0.6B** model fine-tuned for **SAT variable selection** in the Cube-and-Conquer (CnC) framework. Given a CNF formula state, the model predicts which variable to branch/cube on next.
20
+
21
+ ## Model Description
22
+
23
+ This model implements a **masked classification head** on top of Qwen3-0.6B to select branching variables for SAT solving. Unlike traditional heuristics (e.g., VSIDS), it learns from expert solver traces to make informed variable selection decisions.
24
+
25
+ ### Key Features
26
+
27
+ - **Task**: Variable selection for SAT Cube-and-Conquer
28
+ - **Architecture**: Qwen3-0.6B backbone + classification head (601 classes for variables 0-600)
29
+ - **Training**: Supervised fine-tuning on distilled expert data
30
+ - **Output**: Integer variable ID to branch on
31
+
32
+ ## Training Details
33
+
34
+ | Attribute | Value |
35
+ |-----------|-------|
36
+ | Base Model | `Qwen/Qwen3-0.6B` |
37
+ | Training Dataset | Distilled from GPT expert traces |
38
+ | Best Checkpoint | Step 410 (Epoch ~6.7) |
39
+ | **Eval Accuracy** | **14.75%** |
40
+ | Eval Loss | 3.789 |
41
+ | Training Time | ~53 minutes (8×H100 GPUs) |
42
+
43
+ ### Performance Context
44
+
45
+ - **Random Baseline**: ~1-2% accuracy (depends on number of valid variables)
46
+ - **This Model**: 14.75% accuracy = **~7-15× better than random**
47
+
48
+ ### Hyperparameters
49
+
50
+ ```yaml
51
+ learning_rate: 5e-6
52
+ warmup_ratio: 0.1
53
+ num_train_epochs: 8
54
+ per_device_train_batch_size: 1
55
+ gradient_accumulation_steps: 8
56
+ max_length: 8192
57
+ max_vars: 600
58
+ optimizer: AdamW
59
+ scheduler: cosine
60
+ deepspeed: ZeRO-3
61
+ ```
62
+
63
+ ## Usage
64
+
65
+ ### Loading the Model
66
+
67
+ ```python
68
+ from transformers import AutoTokenizer, AutoModelForCausalLM
69
+ import torch
70
+ import torch.nn as nn
71
+ import re
72
+
73
+ class QwenVarClassifier(nn.Module):
74
+ def __init__(self, base_model, max_vars=600):
75
+ super().__init__()
76
+ self.base = base_model
77
+ hidden_size = base_model.config.hidden_size
78
+ self.norm = nn.LayerNorm(hidden_size)
79
+ self.head = nn.Linear(hidden_size, max_vars + 1)
80
+
81
+ def forward(self, input_ids, attention_mask=None):
82
+ outputs = self.base(input_ids, attention_mask=attention_mask, output_hidden_states=True)
83
+ hidden = outputs.hidden_states[-1] # [B, seq, hidden]
84
+
85
+ # Pool at last non-pad token
86
+ if attention_mask is not None:
87
+ lengths = attention_mask.sum(dim=1) - 1
88
+ pooled = hidden[torch.arange(hidden.size(0)), lengths]
89
+ else:
90
+ pooled = hidden[:, -1, :]
91
+
92
+ pooled = self.norm(pooled)
93
+ logits = self.head(pooled)
94
+ return logits
95
+
96
+ # Load
97
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-0.6B")
98
+ base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-0.6B")
99
+ model = QwenVarClassifier(base_model, max_vars=600)
100
+
101
+ # Load fine-tuned weights
102
+ state_dict = torch.load("pytorch_model.bin", map_location="cpu")
103
+ model.load_state_dict(state_dict)
104
+ model.eval()
105
+ ```
106
+
107
+ ### Inference
108
+
109
+ ```python
110
+ def get_valid_vars(cnf_text, max_vars=600):
111
+ """Extract valid variable IDs from CNF text."""
112
+ valid = set()
113
+ for line in cnf_text.strip().split('\n'):
114
+ if line.startswith('c') or line.startswith('p'):
115
+ continue
116
+ for tok in line.split():
117
+ try:
118
+ lit = int(tok)
119
+ if lit != 0:
120
+ valid.add(abs(lit))
121
+ except ValueError:
122
+ pass
123
+ return valid
124
+
125
+ def predict_variable(cnf_text, model, tokenizer, max_vars=600):
126
+ """Predict the next variable to branch on."""
127
+ inputs = tokenizer(cnf_text, return_tensors="pt", truncation=True, max_length=8192)
128
+
129
+ with torch.no_grad():
130
+ logits = model(inputs["input_ids"], inputs["attention_mask"])
131
+
132
+ # Mask invalid variables
133
+ valid_vars = get_valid_vars(cnf_text, max_vars)
134
+ mask = torch.zeros(max_vars + 1, dtype=torch.bool)
135
+ for v in valid_vars:
136
+ if 1 <= v <= max_vars:
137
+ mask[v] = True
138
+
139
+ logits[0, ~mask] = -1e4
140
+ predicted_var = logits.argmax(dim=-1).item()
141
+
142
+ return predicted_var
143
+
144
+ # Example
145
+ cnf_text = """p cnf 100 200
146
+ 1 -2 3 0
147
+ -1 4 -5 0
148
+ 2 5 6 0
149
+ """
150
+
151
+ var = predict_variable(cnf_text, model, tokenizer)
152
+ print(f"Predicted variable: {var}")
153
+ ```
154
+
155
+ ## Architecture Details
156
+
157
+ ### Why Masked Classification?
158
+
159
+ The valid action set is **state-dependent**: not all variables are valid at every step.
160
+
161
+ - Some variables may be eliminated during simplification
162
+ - Some may be out of range for the specific instance
163
+
164
+ We use **masked softmax**:
165
+ 1. Model outputs logits for all 601 classes (0-600)
166
+ 2. Invalid variables get logits set to `-1e4`
167
+ 3. Softmax only assigns probability to valid variables
168
+ 4. Training uses masked cross-entropy loss
169
+
170
+ ### Why Pool the Last Token?
171
+
172
+ The last non-pad token has attended to the entire CNF sequence through causal attention, making it a natural summary representation.
173
+
174
+ ### Why LayerNorm Before the Head?
175
+
176
+ Qwen's hidden states can have large magnitudes. LayerNorm stabilizes the input to the classification head.
177
+
178
+ ## Limitations
179
+
180
+ - Maximum 600 variables (configurable during training)
181
+ - Maximum sequence length 8192 tokens
182
+ - Trained on specific CNF distribution; may not generalize to all SAT instances
183
+ - Accuracy metric is strict exact-match; the model may predict "good" variables even when not matching the expert label exactly
184
+
185
+ ## Citation
186
+
187
+ ```bibtex
188
+ @misc{qwen-sat-varselector,
189
+ title={Qwen3-0.6B-SAT-VarSelector-Distilled},
190
+ author={Yale-ROSE},
191
+ year={2026},
192
+ publisher={Hugging Face},
193
+ url={https://huggingface.co/Yale-ROSE/Qwen3-0.6B-SAT-VarSelector-Distilled}
194
+ }
195
+ ```
196
+
197
+ ## Related Models
198
+
199
+ - [Yale-ROSE/Qwen3-4B-SAT-VarSelector](https://huggingface.co/Yale-ROSE/Qwen3-4B-SAT-VarSelector) - Larger 4B parameter version
200
+
201
+ ## License
202
+
203
+ Apache 2.0 (following the base Qwen3 license)
added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
global_step410/bf16_zero_pp_rank_0_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ccbbadc33b4d1d3d4347c188c93f82b20051127f3045a5fc6747c5df6214ffb
3
+ size 895007429
global_step410/bf16_zero_pp_rank_1_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27fadac16f054f5a90074ed66b8c7c8c2e3316186d706d3e7afe101ca1437f86
3
+ size 895007429
global_step410/bf16_zero_pp_rank_2_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3d9982e9075caf82c0e3c7ba4dd7545403fdae8b36ef5f27fbeaf9751f1a2e4
3
+ size 895007429
global_step410/bf16_zero_pp_rank_3_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65a08717c58671cf8a36a45d1c02bb95457e049ddb2e01ace410feef7b85b24b
3
+ size 895007429
global_step410/bf16_zero_pp_rank_4_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:630040bd55b65dca6af42d4c2ba6d6ae343b56d56e6bddeb6196143fc0a68a46
3
+ size 895007429
global_step410/bf16_zero_pp_rank_5_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c15add7b826bf73a0451326a02b02e542d984d3a6437871d6fbdbda76ae4ae65
3
+ size 895007429
global_step410/bf16_zero_pp_rank_6_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49aacc04bcb08710c05355788c061bce1c3daa5eb700efebf6f25c4378786ebd
3
+ size 895007429
global_step410/bf16_zero_pp_rank_7_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77aca66738052ab70e6c446b1932bd7890e61b6162a0a3e5ff8895a0b56a995e
3
+ size 895007429
global_step410/zero_pp_rank_0_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec781da82ecd6f7882b2e619a9eec4186c8f05b836819871cf7002f731809584
3
+ size 168971
global_step410/zero_pp_rank_1_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45bab9476dcd282273efc27c99b29966b015ca3f0e677e2aac49ebcd1f98d05a
3
+ size 168907
global_step410/zero_pp_rank_2_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28183b923bbe3866413add3a2990c627bf492b9f8079a30657aa167169c02d9a
3
+ size 168907
global_step410/zero_pp_rank_3_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d15c29f8ee05b89067e74db99873b76221035db486799f5c2fd7bb3bf047d8a1
3
+ size 168907
global_step410/zero_pp_rank_4_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:963b1e4e28d6e9e3e51a1572b868cee7c46f09c8f18d5b1479a586049266b350
3
+ size 168907
global_step410/zero_pp_rank_5_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e6ede8583c213cd919570c058669a65481053b91772598b05aad658528464c3
3
+ size 168907
global_step410/zero_pp_rank_6_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e66b39cd5c3ee977b30ef84516bb522a4e2a7909853f8bd6ea2c3a1eebcf2bac
3
+ size 168907
global_step410/zero_pp_rank_7_mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:040eae58e0add040cd9f21a859527833cd4aa1e269aa0d7d6f797d6b613db2d7
3
+ size 168907
latest ADDED
@@ -0,0 +1 @@
 
 
1
+ global_step410
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fdc9339663edaba63e99a0868a29bc05a5642f7875b29957c36212233d88be1
3
+ size 1193440459
rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a717e796866a56d9780e272a25aebb426950bce5aa9b5d2497f05b461ff76729
3
+ size 16325
rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:979715f4cd80f53fd94508599aca8831163b40d525858bcb11e6454ddb8251c0
3
+ size 16389
rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2297b99224f632707d9574fcf1aaa010691c398f9f0f7339d357ff558d79d21
3
+ size 16389
rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8977ecd4d73fa6ee50b4f9d14ee8ff5d28167f5540b3271d7b4d4843f152656b
3
+ size 16389
rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aba176670c628753c0cc24485ddacff4538fcc08ea4f35777a7eb84b54dd2922
3
+ size 16389
rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:992b6b333d0e5866749e05e760309ea00aed67c9810d11da4eac4381cc34e022
3
+ size 16389
rng_state_6.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac5f361548be76f7934e995622866df9cb9b72bd19b7e323c942a9026e21565f
3
+ size 16389
rng_state_7.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1868f50bff5601996407296d2060a8bb4b443c68d73d4b2442b76fa40389c757
3
+ size 16389
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7d204098f3bd572f36fccc74c22ca679a5de55f9aee6ea69ea3718f1765f1d7
3
+ size 1465
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7a6a993d40b42d517297bb247ff66679e5bc9dd7a5143be0620faf210b42861
3
+ size 11422753
tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
trainer_state.json ADDED
@@ -0,0 +1,1059 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 410,
3
+ "best_metric": 0.14746543778801843,
4
+ "best_model_checkpoint": "out_qwen_0.6b_sft_distilled/checkpoint-410",
5
+ "epoch": 6.721311475409836,
6
+ "eval_steps": 10,
7
+ "global_step": 410,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.08196721311475409,
14
+ "grad_norm": 131.30086444913783,
15
+ "learning_rate": 4.0816326530612243e-07,
16
+ "loss": 40.5707,
17
+ "step": 5,
18
+ "true_loss": 4.9328
19
+ },
20
+ {
21
+ "epoch": 0.16393442622950818,
22
+ "grad_norm": 126.20257823342612,
23
+ "learning_rate": 9.183673469387756e-07,
24
+ "loss": 40.4496,
25
+ "step": 10,
26
+ "true_loss": 4.9664
27
+ },
28
+ {
29
+ "epoch": 0.16393442622950818,
30
+ "eval_accuracy": 0.004608294930875576,
31
+ "eval_loss": 5.019261360168457,
32
+ "eval_runtime": 8.3229,
33
+ "eval_samples_per_second": 52.145,
34
+ "eval_steps_per_second": 6.608,
35
+ "step": 10
36
+ },
37
+ {
38
+ "epoch": 0.2459016393442623,
39
+ "grad_norm": 136.9898759427637,
40
+ "learning_rate": 1.4285714285714286e-06,
41
+ "loss": 40.502,
42
+ "step": 15,
43
+ "true_loss": 4.9781
44
+ },
45
+ {
46
+ "epoch": 0.32786885245901637,
47
+ "grad_norm": 134.72385927894973,
48
+ "learning_rate": 1.938775510204082e-06,
49
+ "loss": 39.6527,
50
+ "step": 20,
51
+ "true_loss": 4.9395
52
+ },
53
+ {
54
+ "epoch": 0.32786885245901637,
55
+ "eval_accuracy": 0.004608294930875576,
56
+ "eval_loss": 4.9670939445495605,
57
+ "eval_runtime": 7.9853,
58
+ "eval_samples_per_second": 54.35,
59
+ "eval_steps_per_second": 6.888,
60
+ "step": 20
61
+ },
62
+ {
63
+ "epoch": 0.4098360655737705,
64
+ "grad_norm": 127.00331303837481,
65
+ "learning_rate": 2.4489795918367347e-06,
66
+ "loss": 38.9625,
67
+ "step": 25,
68
+ "true_loss": 4.9176
69
+ },
70
+ {
71
+ "epoch": 0.4918032786885246,
72
+ "grad_norm": 111.05596081816127,
73
+ "learning_rate": 2.959183673469388e-06,
74
+ "loss": 38.8523,
75
+ "step": 30,
76
+ "true_loss": 4.9895
77
+ },
78
+ {
79
+ "epoch": 0.4918032786885246,
80
+ "eval_accuracy": 0.009216589861751152,
81
+ "eval_loss": 4.8343892097473145,
82
+ "eval_runtime": 8.399,
83
+ "eval_samples_per_second": 51.673,
84
+ "eval_steps_per_second": 6.548,
85
+ "step": 30
86
+ },
87
+ {
88
+ "epoch": 0.5737704918032787,
89
+ "grad_norm": 127.72432425565634,
90
+ "learning_rate": 3.469387755102041e-06,
91
+ "loss": 38.366,
92
+ "step": 35,
93
+ "true_loss": 4.7629
94
+ },
95
+ {
96
+ "epoch": 0.6557377049180327,
97
+ "grad_norm": 142.80923150687772,
98
+ "learning_rate": 3.979591836734694e-06,
99
+ "loss": 38.0703,
100
+ "step": 40,
101
+ "true_loss": 4.8902
102
+ },
103
+ {
104
+ "epoch": 0.6557377049180327,
105
+ "eval_accuracy": 0.055299539170506916,
106
+ "eval_loss": 4.662118434906006,
107
+ "eval_runtime": 8.4731,
108
+ "eval_samples_per_second": 51.221,
109
+ "eval_steps_per_second": 6.491,
110
+ "step": 40
111
+ },
112
+ {
113
+ "epoch": 0.7377049180327869,
114
+ "grad_norm": 179.79048183030648,
115
+ "learning_rate": 4.489795918367348e-06,
116
+ "loss": 36.2355,
117
+ "step": 45,
118
+ "true_loss": 4.6008
119
+ },
120
+ {
121
+ "epoch": 0.819672131147541,
122
+ "grad_norm": 161.88532993207818,
123
+ "learning_rate": 5e-06,
124
+ "loss": 37.6594,
125
+ "step": 50,
126
+ "true_loss": 5.0719
127
+ },
128
+ {
129
+ "epoch": 0.819672131147541,
130
+ "eval_accuracy": 0.08294930875576037,
131
+ "eval_loss": 4.533751964569092,
132
+ "eval_runtime": 8.6568,
133
+ "eval_samples_per_second": 50.134,
134
+ "eval_steps_per_second": 6.353,
135
+ "step": 50
136
+ },
137
+ {
138
+ "epoch": 0.9016393442622951,
139
+ "grad_norm": 151.13368850588557,
140
+ "learning_rate": 4.943052391799545e-06,
141
+ "loss": 36.9232,
142
+ "step": 55,
143
+ "true_loss": 4.5199
144
+ },
145
+ {
146
+ "epoch": 0.9836065573770492,
147
+ "grad_norm": 140.76185960403066,
148
+ "learning_rate": 4.886104783599089e-06,
149
+ "loss": 35.987,
150
+ "step": 60,
151
+ "true_loss": 4.3872
152
+ },
153
+ {
154
+ "epoch": 0.9836065573770492,
155
+ "eval_accuracy": 0.08064516129032258,
156
+ "eval_loss": 4.438742160797119,
157
+ "eval_runtime": 8.6755,
158
+ "eval_samples_per_second": 50.026,
159
+ "eval_steps_per_second": 6.34,
160
+ "step": 60
161
+ },
162
+ {
163
+ "epoch": 1.0655737704918034,
164
+ "grad_norm": 141.24088109006144,
165
+ "learning_rate": 4.829157175398634e-06,
166
+ "loss": 35.8602,
167
+ "step": 65,
168
+ "true_loss": 4.6277
169
+ },
170
+ {
171
+ "epoch": 1.1475409836065573,
172
+ "grad_norm": 147.2087879935333,
173
+ "learning_rate": 4.772209567198178e-06,
174
+ "loss": 35.6707,
175
+ "step": 70,
176
+ "true_loss": 4.1293
177
+ },
178
+ {
179
+ "epoch": 1.1475409836065573,
180
+ "eval_accuracy": 0.08294930875576037,
181
+ "eval_loss": 4.400156497955322,
182
+ "eval_runtime": 8.477,
183
+ "eval_samples_per_second": 51.198,
184
+ "eval_steps_per_second": 6.488,
185
+ "step": 70
186
+ },
187
+ {
188
+ "epoch": 1.2295081967213115,
189
+ "grad_norm": 153.44325788545655,
190
+ "learning_rate": 4.7152619589977225e-06,
191
+ "loss": 34.8141,
192
+ "step": 75,
193
+ "true_loss": 4.2855
194
+ },
195
+ {
196
+ "epoch": 1.3114754098360657,
197
+ "grad_norm": 167.21816733466747,
198
+ "learning_rate": 4.658314350797267e-06,
199
+ "loss": 35.2213,
200
+ "step": 80,
201
+ "true_loss": 4.4329
202
+ },
203
+ {
204
+ "epoch": 1.3114754098360657,
205
+ "eval_accuracy": 0.08755760368663594,
206
+ "eval_loss": 4.335811614990234,
207
+ "eval_runtime": 8.385,
208
+ "eval_samples_per_second": 51.759,
209
+ "eval_steps_per_second": 6.559,
210
+ "step": 80
211
+ },
212
+ {
213
+ "epoch": 1.3934426229508197,
214
+ "grad_norm": 170.8547829819815,
215
+ "learning_rate": 4.601366742596811e-06,
216
+ "loss": 34.6405,
217
+ "step": 85,
218
+ "true_loss": 4.2484
219
+ },
220
+ {
221
+ "epoch": 1.4754098360655736,
222
+ "grad_norm": 169.3659623205823,
223
+ "learning_rate": 4.544419134396356e-06,
224
+ "loss": 34.6621,
225
+ "step": 90,
226
+ "true_loss": 4.5617
227
+ },
228
+ {
229
+ "epoch": 1.4754098360655736,
230
+ "eval_accuracy": 0.10829493087557604,
231
+ "eval_loss": 4.2690629959106445,
232
+ "eval_runtime": 8.5736,
233
+ "eval_samples_per_second": 50.62,
234
+ "eval_steps_per_second": 6.415,
235
+ "step": 90
236
+ },
237
+ {
238
+ "epoch": 1.5573770491803278,
239
+ "grad_norm": 181.5354290153052,
240
+ "learning_rate": 4.4874715261959e-06,
241
+ "loss": 33.5805,
242
+ "step": 95,
243
+ "true_loss": 4.2242
244
+ },
245
+ {
246
+ "epoch": 1.639344262295082,
247
+ "grad_norm": 183.60203299469077,
248
+ "learning_rate": 4.4305239179954446e-06,
249
+ "loss": 34.323,
250
+ "step": 100,
251
+ "true_loss": 4.3387
252
+ },
253
+ {
254
+ "epoch": 1.639344262295082,
255
+ "eval_accuracy": 0.10368663594470046,
256
+ "eval_loss": 4.227273464202881,
257
+ "eval_runtime": 8.642,
258
+ "eval_samples_per_second": 50.22,
259
+ "eval_steps_per_second": 6.364,
260
+ "step": 100
261
+ },
262
+ {
263
+ "epoch": 1.721311475409836,
264
+ "grad_norm": 170.66504985673134,
265
+ "learning_rate": 4.373576309794989e-06,
266
+ "loss": 32.0365,
267
+ "step": 105,
268
+ "true_loss": 3.9484
269
+ },
270
+ {
271
+ "epoch": 1.8032786885245902,
272
+ "grad_norm": 185.72351413214275,
273
+ "learning_rate": 4.316628701594533e-06,
274
+ "loss": 33.875,
275
+ "step": 110,
276
+ "true_loss": 4.1586
277
+ },
278
+ {
279
+ "epoch": 1.8032786885245902,
280
+ "eval_accuracy": 0.11290322580645161,
281
+ "eval_loss": 4.191784381866455,
282
+ "eval_runtime": 8.026,
283
+ "eval_samples_per_second": 54.074,
284
+ "eval_steps_per_second": 6.853,
285
+ "step": 110
286
+ },
287
+ {
288
+ "epoch": 1.8852459016393444,
289
+ "grad_norm": 187.82807734370155,
290
+ "learning_rate": 4.259681093394078e-06,
291
+ "loss": 33.4,
292
+ "step": 115,
293
+ "true_loss": 4.2566
294
+ },
295
+ {
296
+ "epoch": 1.9672131147540983,
297
+ "grad_norm": 177.04120464657095,
298
+ "learning_rate": 4.202733485193622e-06,
299
+ "loss": 32.768,
300
+ "step": 120,
301
+ "true_loss": 4.1711
302
+ },
303
+ {
304
+ "epoch": 1.9672131147540983,
305
+ "eval_accuracy": 0.10138248847926268,
306
+ "eval_loss": 4.166411876678467,
307
+ "eval_runtime": 8.3731,
308
+ "eval_samples_per_second": 51.833,
309
+ "eval_steps_per_second": 6.569,
310
+ "step": 120
311
+ },
312
+ {
313
+ "epoch": 2.0491803278688523,
314
+ "grad_norm": 175.70043001685525,
315
+ "learning_rate": 4.145785876993167e-06,
316
+ "loss": 32.9279,
317
+ "step": 125,
318
+ "true_loss": 4.2443
319
+ },
320
+ {
321
+ "epoch": 2.1311475409836067,
322
+ "grad_norm": 211.66606785751807,
323
+ "learning_rate": 4.088838268792711e-06,
324
+ "loss": 31.4897,
325
+ "step": 130,
326
+ "true_loss": 3.9807
327
+ },
328
+ {
329
+ "epoch": 2.1311475409836067,
330
+ "eval_accuracy": 0.09907834101382489,
331
+ "eval_loss": 4.117466449737549,
332
+ "eval_runtime": 9.4127,
333
+ "eval_samples_per_second": 46.108,
334
+ "eval_steps_per_second": 5.843,
335
+ "step": 130
336
+ },
337
+ {
338
+ "epoch": 2.2131147540983607,
339
+ "grad_norm": 243.03840327182303,
340
+ "learning_rate": 4.0318906605922555e-06,
341
+ "loss": 31.5314,
342
+ "step": 135,
343
+ "true_loss": 3.9421
344
+ },
345
+ {
346
+ "epoch": 2.2950819672131146,
347
+ "grad_norm": 220.78266878880433,
348
+ "learning_rate": 3.9749430523918e-06,
349
+ "loss": 31.4336,
350
+ "step": 140,
351
+ "true_loss": 3.7703
352
+ },
353
+ {
354
+ "epoch": 2.2950819672131146,
355
+ "eval_accuracy": 0.1336405529953917,
356
+ "eval_loss": 4.065812110900879,
357
+ "eval_runtime": 8.6071,
358
+ "eval_samples_per_second": 50.423,
359
+ "eval_steps_per_second": 6.39,
360
+ "step": 140
361
+ },
362
+ {
363
+ "epoch": 2.3770491803278686,
364
+ "grad_norm": 196.6859886983302,
365
+ "learning_rate": 3.917995444191344e-06,
366
+ "loss": 31.3979,
367
+ "step": 145,
368
+ "true_loss": 3.8875
369
+ },
370
+ {
371
+ "epoch": 2.459016393442623,
372
+ "grad_norm": 209.14552747888038,
373
+ "learning_rate": 3.861047835990889e-06,
374
+ "loss": 31.5513,
375
+ "step": 150,
376
+ "true_loss": 3.65
377
+ },
378
+ {
379
+ "epoch": 2.459016393442623,
380
+ "eval_accuracy": 0.12903225806451613,
381
+ "eval_loss": 4.045776844024658,
382
+ "eval_runtime": 8.5013,
383
+ "eval_samples_per_second": 51.051,
384
+ "eval_steps_per_second": 6.47,
385
+ "step": 150
386
+ },
387
+ {
388
+ "epoch": 2.540983606557377,
389
+ "grad_norm": 205.92078421639843,
390
+ "learning_rate": 3.804100227790433e-06,
391
+ "loss": 31.4361,
392
+ "step": 155,
393
+ "true_loss": 3.7869
394
+ },
395
+ {
396
+ "epoch": 2.6229508196721314,
397
+ "grad_norm": 219.604580334424,
398
+ "learning_rate": 3.7471526195899776e-06,
399
+ "loss": 31.6139,
400
+ "step": 160,
401
+ "true_loss": 3.9903
402
+ },
403
+ {
404
+ "epoch": 2.6229508196721314,
405
+ "eval_accuracy": 0.1175115207373272,
406
+ "eval_loss": 4.006894588470459,
407
+ "eval_runtime": 8.1353,
408
+ "eval_samples_per_second": 53.348,
409
+ "eval_steps_per_second": 6.761,
410
+ "step": 160
411
+ },
412
+ {
413
+ "epoch": 2.7049180327868854,
414
+ "grad_norm": 221.00907729918933,
415
+ "learning_rate": 3.690205011389522e-06,
416
+ "loss": 31.0029,
417
+ "step": 165,
418
+ "true_loss": 3.9396
419
+ },
420
+ {
421
+ "epoch": 2.7868852459016393,
422
+ "grad_norm": 200.63567221965303,
423
+ "learning_rate": 3.6332574031890664e-06,
424
+ "loss": 30.4827,
425
+ "step": 170,
426
+ "true_loss": 4.0088
427
+ },
428
+ {
429
+ "epoch": 2.7868852459016393,
430
+ "eval_accuracy": 0.12442396313364056,
431
+ "eval_loss": 3.991098403930664,
432
+ "eval_runtime": 8.4689,
433
+ "eval_samples_per_second": 51.246,
434
+ "eval_steps_per_second": 6.494,
435
+ "step": 170
436
+ },
437
+ {
438
+ "epoch": 2.8688524590163933,
439
+ "grad_norm": 208.08258154815047,
440
+ "learning_rate": 3.5763097949886104e-06,
441
+ "loss": 30.7274,
442
+ "step": 175,
443
+ "true_loss": 3.8941
444
+ },
445
+ {
446
+ "epoch": 2.9508196721311473,
447
+ "grad_norm": 209.30561480651423,
448
+ "learning_rate": 3.519362186788155e-06,
449
+ "loss": 31.2113,
450
+ "step": 180,
451
+ "true_loss": 3.5918
452
+ },
453
+ {
454
+ "epoch": 2.9508196721311473,
455
+ "eval_accuracy": 0.1175115207373272,
456
+ "eval_loss": 3.9841365814208984,
457
+ "eval_runtime": 8.6637,
458
+ "eval_samples_per_second": 50.094,
459
+ "eval_steps_per_second": 6.348,
460
+ "step": 180
461
+ },
462
+ {
463
+ "epoch": 3.0327868852459017,
464
+ "grad_norm": 214.16917085440517,
465
+ "learning_rate": 3.4624145785876997e-06,
466
+ "loss": 31.0295,
467
+ "step": 185,
468
+ "true_loss": 3.5908
469
+ },
470
+ {
471
+ "epoch": 3.1147540983606556,
472
+ "grad_norm": 235.71482357282463,
473
+ "learning_rate": 3.405466970387244e-06,
474
+ "loss": 28.5428,
475
+ "step": 190,
476
+ "true_loss": 3.1442
477
+ },
478
+ {
479
+ "epoch": 3.1147540983606556,
480
+ "eval_accuracy": 0.12442396313364056,
481
+ "eval_loss": 3.974285364151001,
482
+ "eval_runtime": 8.0976,
483
+ "eval_samples_per_second": 53.596,
484
+ "eval_steps_per_second": 6.792,
485
+ "step": 190
486
+ },
487
+ {
488
+ "epoch": 3.19672131147541,
489
+ "grad_norm": 226.00461681805723,
490
+ "learning_rate": 3.3485193621867885e-06,
491
+ "loss": 29.5642,
492
+ "step": 195,
493
+ "true_loss": 3.5915
494
+ },
495
+ {
496
+ "epoch": 3.278688524590164,
497
+ "grad_norm": 233.95245184744422,
498
+ "learning_rate": 3.291571753986333e-06,
499
+ "loss": 29.4133,
500
+ "step": 200,
501
+ "true_loss": 3.518
502
+ },
503
+ {
504
+ "epoch": 3.278688524590164,
505
+ "eval_accuracy": 0.1313364055299539,
506
+ "eval_loss": 3.9394891262054443,
507
+ "eval_runtime": 8.5951,
508
+ "eval_samples_per_second": 50.494,
509
+ "eval_steps_per_second": 6.399,
510
+ "step": 200
511
+ },
512
+ {
513
+ "epoch": 3.360655737704918,
514
+ "grad_norm": 239.65764806983628,
515
+ "learning_rate": 3.2346241457858773e-06,
516
+ "loss": 29.0733,
517
+ "step": 205,
518
+ "true_loss": 3.4392
519
+ },
520
+ {
521
+ "epoch": 3.442622950819672,
522
+ "grad_norm": 251.9041666596011,
523
+ "learning_rate": 3.1776765375854217e-06,
524
+ "loss": 28.5826,
525
+ "step": 210,
526
+ "true_loss": 3.4814
527
+ },
528
+ {
529
+ "epoch": 3.442622950819672,
530
+ "eval_accuracy": 0.14055299539170507,
531
+ "eval_loss": 3.9186437129974365,
532
+ "eval_runtime": 8.3264,
533
+ "eval_samples_per_second": 52.123,
534
+ "eval_steps_per_second": 6.605,
535
+ "step": 210
536
+ },
537
+ {
538
+ "epoch": 3.5245901639344264,
539
+ "grad_norm": 236.49516114079387,
540
+ "learning_rate": 3.120728929384966e-06,
541
+ "loss": 29.3459,
542
+ "step": 215,
543
+ "true_loss": 3.6947
544
+ },
545
+ {
546
+ "epoch": 3.6065573770491803,
547
+ "grad_norm": 232.10135728893482,
548
+ "learning_rate": 3.0637813211845106e-06,
549
+ "loss": 29.1922,
550
+ "step": 220,
551
+ "true_loss": 3.7867
552
+ },
553
+ {
554
+ "epoch": 3.6065573770491803,
555
+ "eval_accuracy": 0.11981566820276497,
556
+ "eval_loss": 3.924264669418335,
557
+ "eval_runtime": 8.114,
558
+ "eval_samples_per_second": 53.488,
559
+ "eval_steps_per_second": 6.778,
560
+ "step": 220
561
+ },
562
+ {
563
+ "epoch": 3.6885245901639343,
564
+ "grad_norm": 248.9470759438453,
565
+ "learning_rate": 3.0068337129840546e-06,
566
+ "loss": 29.3719,
567
+ "step": 225,
568
+ "true_loss": 3.6912
569
+ },
570
+ {
571
+ "epoch": 3.7704918032786887,
572
+ "grad_norm": 242.5668319946587,
573
+ "learning_rate": 2.949886104783599e-06,
574
+ "loss": 29.0788,
575
+ "step": 230,
576
+ "true_loss": 3.7821
577
+ },
578
+ {
579
+ "epoch": 3.7704918032786887,
580
+ "eval_accuracy": 0.12672811059907835,
581
+ "eval_loss": 3.9106783866882324,
582
+ "eval_runtime": 8.4282,
583
+ "eval_samples_per_second": 51.494,
584
+ "eval_steps_per_second": 6.526,
585
+ "step": 230
586
+ },
587
+ {
588
+ "epoch": 3.8524590163934427,
589
+ "grad_norm": 258.17481354757325,
590
+ "learning_rate": 2.892938496583144e-06,
591
+ "loss": 28.8174,
592
+ "step": 235,
593
+ "true_loss": 3.3456
594
+ },
595
+ {
596
+ "epoch": 3.9344262295081966,
597
+ "grad_norm": 242.242892316644,
598
+ "learning_rate": 2.8359908883826882e-06,
599
+ "loss": 28.4613,
600
+ "step": 240,
601
+ "true_loss": 3.3777
602
+ },
603
+ {
604
+ "epoch": 3.9344262295081966,
605
+ "eval_accuracy": 0.12211981566820276,
606
+ "eval_loss": 3.8972718715667725,
607
+ "eval_runtime": 8.5279,
608
+ "eval_samples_per_second": 50.892,
609
+ "eval_steps_per_second": 6.449,
610
+ "step": 240
611
+ },
612
+ {
613
+ "epoch": 4.016393442622951,
614
+ "grad_norm": 249.19080164598319,
615
+ "learning_rate": 2.7790432801822326e-06,
616
+ "loss": 27.6907,
617
+ "step": 245,
618
+ "true_loss": 3.153
619
+ },
620
+ {
621
+ "epoch": 4.098360655737705,
622
+ "grad_norm": 290.1903243585321,
623
+ "learning_rate": 2.722095671981777e-06,
624
+ "loss": 26.9221,
625
+ "step": 250,
626
+ "true_loss": 3.2854
627
+ },
628
+ {
629
+ "epoch": 4.098360655737705,
630
+ "eval_accuracy": 0.1175115207373272,
631
+ "eval_loss": 3.8916871547698975,
632
+ "eval_runtime": 8.1923,
633
+ "eval_samples_per_second": 52.977,
634
+ "eval_steps_per_second": 6.714,
635
+ "step": 250
636
+ },
637
+ {
638
+ "epoch": 4.180327868852459,
639
+ "grad_norm": 284.2190675087926,
640
+ "learning_rate": 2.6651480637813215e-06,
641
+ "loss": 26.3206,
642
+ "step": 255,
643
+ "true_loss": 3.2506
644
+ },
645
+ {
646
+ "epoch": 4.262295081967213,
647
+ "grad_norm": 279.44061029669723,
648
+ "learning_rate": 2.608200455580866e-06,
649
+ "loss": 26.9143,
650
+ "step": 260,
651
+ "true_loss": 3.4412
652
+ },
653
+ {
654
+ "epoch": 4.262295081967213,
655
+ "eval_accuracy": 0.1152073732718894,
656
+ "eval_loss": 3.8716788291931152,
657
+ "eval_runtime": 8.5568,
658
+ "eval_samples_per_second": 50.72,
659
+ "eval_steps_per_second": 6.428,
660
+ "step": 260
661
+ },
662
+ {
663
+ "epoch": 4.344262295081967,
664
+ "grad_norm": 266.7499728501794,
665
+ "learning_rate": 2.5512528473804103e-06,
666
+ "loss": 26.4962,
667
+ "step": 265,
668
+ "true_loss": 3.5133
669
+ },
670
+ {
671
+ "epoch": 4.426229508196721,
672
+ "grad_norm": 260.78822590196535,
673
+ "learning_rate": 2.4943052391799547e-06,
674
+ "loss": 26.4451,
675
+ "step": 270,
676
+ "true_loss": 3.4446
677
+ },
678
+ {
679
+ "epoch": 4.426229508196721,
680
+ "eval_accuracy": 0.12211981566820276,
681
+ "eval_loss": 3.8494653701782227,
682
+ "eval_runtime": 8.4627,
683
+ "eval_samples_per_second": 51.284,
684
+ "eval_steps_per_second": 6.499,
685
+ "step": 270
686
+ },
687
+ {
688
+ "epoch": 4.508196721311475,
689
+ "grad_norm": 274.64077279341876,
690
+ "learning_rate": 2.437357630979499e-06,
691
+ "loss": 27.3761,
692
+ "step": 275,
693
+ "true_loss": 3.4453
694
+ },
695
+ {
696
+ "epoch": 4.590163934426229,
697
+ "grad_norm": 273.19374429695523,
698
+ "learning_rate": 2.3804100227790436e-06,
699
+ "loss": 27.4194,
700
+ "step": 280,
701
+ "true_loss": 3.1874
702
+ },
703
+ {
704
+ "epoch": 4.590163934426229,
705
+ "eval_accuracy": 0.11059907834101383,
706
+ "eval_loss": 3.846774101257324,
707
+ "eval_runtime": 8.5426,
708
+ "eval_samples_per_second": 50.804,
709
+ "eval_steps_per_second": 6.438,
710
+ "step": 280
711
+ },
712
+ {
713
+ "epoch": 4.672131147540983,
714
+ "grad_norm": 275.7740703438606,
715
+ "learning_rate": 2.323462414578588e-06,
716
+ "loss": 26.827,
717
+ "step": 285,
718
+ "true_loss": 3.3258
719
+ },
720
+ {
721
+ "epoch": 4.754098360655737,
722
+ "grad_norm": 274.35156164348126,
723
+ "learning_rate": 2.2665148063781324e-06,
724
+ "loss": 27.2383,
725
+ "step": 290,
726
+ "true_loss": 3.9754
727
+ },
728
+ {
729
+ "epoch": 4.754098360655737,
730
+ "eval_accuracy": 0.11981566820276497,
731
+ "eval_loss": 3.8400866985321045,
732
+ "eval_runtime": 8.4749,
733
+ "eval_samples_per_second": 51.21,
734
+ "eval_steps_per_second": 6.49,
735
+ "step": 290
736
+ },
737
+ {
738
+ "epoch": 4.836065573770492,
739
+ "grad_norm": 279.2476311679269,
740
+ "learning_rate": 2.209567198177677e-06,
741
+ "loss": 26.5837,
742
+ "step": 295,
743
+ "true_loss": 3.2732
744
+ },
745
+ {
746
+ "epoch": 4.918032786885246,
747
+ "grad_norm": 318.84649232107,
748
+ "learning_rate": 2.1526195899772212e-06,
749
+ "loss": 28.2213,
750
+ "step": 300,
751
+ "true_loss": 3.8258
752
+ },
753
+ {
754
+ "epoch": 4.918032786885246,
755
+ "eval_accuracy": 0.1336405529953917,
756
+ "eval_loss": 3.828943967819214,
757
+ "eval_runtime": 8.3482,
758
+ "eval_samples_per_second": 51.987,
759
+ "eval_steps_per_second": 6.588,
760
+ "step": 300
761
+ },
762
+ {
763
+ "epoch": 5.0,
764
+ "grad_norm": 281.39270714708135,
765
+ "learning_rate": 2.0956719817767656e-06,
766
+ "loss": 26.5872,
767
+ "step": 305,
768
+ "true_loss": 3.2237
769
+ },
770
+ {
771
+ "epoch": 5.081967213114754,
772
+ "grad_norm": 297.3835718534045,
773
+ "learning_rate": 2.03872437357631e-06,
774
+ "loss": 24.571,
775
+ "step": 310,
776
+ "true_loss": 3.346
777
+ },
778
+ {
779
+ "epoch": 5.081967213114754,
780
+ "eval_accuracy": 0.14516129032258066,
781
+ "eval_loss": 3.8257129192352295,
782
+ "eval_runtime": 8.4071,
783
+ "eval_samples_per_second": 51.623,
784
+ "eval_steps_per_second": 6.542,
785
+ "step": 310
786
+ },
787
+ {
788
+ "epoch": 5.163934426229508,
789
+ "grad_norm": 333.18631426892176,
790
+ "learning_rate": 1.9817767653758545e-06,
791
+ "loss": 25.2512,
792
+ "step": 315,
793
+ "true_loss": 3.185
794
+ },
795
+ {
796
+ "epoch": 5.245901639344262,
797
+ "grad_norm": 307.93977906152685,
798
+ "learning_rate": 1.924829157175399e-06,
799
+ "loss": 24.5613,
800
+ "step": 320,
801
+ "true_loss": 3.1895
802
+ },
803
+ {
804
+ "epoch": 5.245901639344262,
805
+ "eval_accuracy": 0.14285714285714285,
806
+ "eval_loss": 3.8230037689208984,
807
+ "eval_runtime": 8.2033,
808
+ "eval_samples_per_second": 52.906,
809
+ "eval_steps_per_second": 6.705,
810
+ "step": 320
811
+ },
812
+ {
813
+ "epoch": 5.327868852459017,
814
+ "grad_norm": 312.5942332522537,
815
+ "learning_rate": 1.8678815489749433e-06,
816
+ "loss": 25.0569,
817
+ "step": 325,
818
+ "true_loss": 3.3557
819
+ },
820
+ {
821
+ "epoch": 5.409836065573771,
822
+ "grad_norm": 300.21567029382476,
823
+ "learning_rate": 1.8109339407744877e-06,
824
+ "loss": 25.5947,
825
+ "step": 330,
826
+ "true_loss": 3.3142
827
+ },
828
+ {
829
+ "epoch": 5.409836065573771,
830
+ "eval_accuracy": 0.14285714285714285,
831
+ "eval_loss": 3.8151462078094482,
832
+ "eval_runtime": 8.197,
833
+ "eval_samples_per_second": 52.946,
834
+ "eval_steps_per_second": 6.71,
835
+ "step": 330
836
+ },
837
+ {
838
+ "epoch": 5.491803278688525,
839
+ "grad_norm": 355.0409546655278,
840
+ "learning_rate": 1.753986332574032e-06,
841
+ "loss": 25.8608,
842
+ "step": 335,
843
+ "true_loss": 3.0482
844
+ },
845
+ {
846
+ "epoch": 5.573770491803279,
847
+ "grad_norm": 328.72773533463106,
848
+ "learning_rate": 1.6970387243735763e-06,
849
+ "loss": 25.1268,
850
+ "step": 340,
851
+ "true_loss": 3.103
852
+ },
853
+ {
854
+ "epoch": 5.573770491803279,
855
+ "eval_accuracy": 0.1336405529953917,
856
+ "eval_loss": 3.811136484146118,
857
+ "eval_runtime": 8.3155,
858
+ "eval_samples_per_second": 52.192,
859
+ "eval_steps_per_second": 6.614,
860
+ "step": 340
861
+ },
862
+ {
863
+ "epoch": 5.655737704918033,
864
+ "grad_norm": 335.47496045434843,
865
+ "learning_rate": 1.640091116173121e-06,
866
+ "loss": 25.9661,
867
+ "step": 345,
868
+ "true_loss": 3.5002
869
+ },
870
+ {
871
+ "epoch": 5.737704918032787,
872
+ "grad_norm": 318.3200333649924,
873
+ "learning_rate": 1.5831435079726654e-06,
874
+ "loss": 24.7426,
875
+ "step": 350,
876
+ "true_loss": 3.4293
877
+ },
878
+ {
879
+ "epoch": 5.737704918032787,
880
+ "eval_accuracy": 0.1336405529953917,
881
+ "eval_loss": 3.7999937534332275,
882
+ "eval_runtime": 8.9261,
883
+ "eval_samples_per_second": 48.621,
884
+ "eval_steps_per_second": 6.162,
885
+ "step": 350
886
+ },
887
+ {
888
+ "epoch": 5.8196721311475414,
889
+ "grad_norm": 315.7081677451309,
890
+ "learning_rate": 1.5261958997722096e-06,
891
+ "loss": 25.5119,
892
+ "step": 355,
893
+ "true_loss": 3.0279
894
+ },
895
+ {
896
+ "epoch": 5.901639344262295,
897
+ "grad_norm": 313.72316359405403,
898
+ "learning_rate": 1.469248291571754e-06,
899
+ "loss": 24.6192,
900
+ "step": 360,
901
+ "true_loss": 3.0785
902
+ },
903
+ {
904
+ "epoch": 5.901639344262295,
905
+ "eval_accuracy": 0.14055299539170507,
906
+ "eval_loss": 3.7833380699157715,
907
+ "eval_runtime": 8.9156,
908
+ "eval_samples_per_second": 48.679,
909
+ "eval_steps_per_second": 6.169,
910
+ "step": 360
911
+ },
912
+ {
913
+ "epoch": 5.983606557377049,
914
+ "grad_norm": 337.09696857571805,
915
+ "learning_rate": 1.4123006833712984e-06,
916
+ "loss": 24.576,
917
+ "step": 365,
918
+ "true_loss": 3.0792
919
+ },
920
+ {
921
+ "epoch": 6.065573770491803,
922
+ "grad_norm": 312.44171671989244,
923
+ "learning_rate": 1.355353075170843e-06,
924
+ "loss": 23.0454,
925
+ "step": 370,
926
+ "true_loss": 2.8838
927
+ },
928
+ {
929
+ "epoch": 6.065573770491803,
930
+ "eval_accuracy": 0.14285714285714285,
931
+ "eval_loss": 3.78341007232666,
932
+ "eval_runtime": 8.7024,
933
+ "eval_samples_per_second": 49.871,
934
+ "eval_steps_per_second": 6.32,
935
+ "step": 370
936
+ },
937
+ {
938
+ "epoch": 6.147540983606557,
939
+ "grad_norm": 312.0953900031812,
940
+ "learning_rate": 1.2984054669703875e-06,
941
+ "loss": 22.3877,
942
+ "step": 375,
943
+ "true_loss": 2.4284
944
+ },
945
+ {
946
+ "epoch": 6.229508196721311,
947
+ "grad_norm": 335.94846858957845,
948
+ "learning_rate": 1.2414578587699317e-06,
949
+ "loss": 23.5471,
950
+ "step": 380,
951
+ "true_loss": 3.0217
952
+ },
953
+ {
954
+ "epoch": 6.229508196721311,
955
+ "eval_accuracy": 0.1382488479262673,
956
+ "eval_loss": 3.793076753616333,
957
+ "eval_runtime": 8.1781,
958
+ "eval_samples_per_second": 53.068,
959
+ "eval_steps_per_second": 6.725,
960
+ "step": 380
961
+ },
962
+ {
963
+ "epoch": 6.311475409836065,
964
+ "grad_norm": 341.87803857824105,
965
+ "learning_rate": 1.1845102505694763e-06,
966
+ "loss": 23.2389,
967
+ "step": 385,
968
+ "true_loss": 2.6483
969
+ },
970
+ {
971
+ "epoch": 6.39344262295082,
972
+ "grad_norm": 369.08934119445,
973
+ "learning_rate": 1.1275626423690205e-06,
974
+ "loss": 23.6875,
975
+ "step": 390,
976
+ "true_loss": 2.932
977
+ },
978
+ {
979
+ "epoch": 6.39344262295082,
980
+ "eval_accuracy": 0.14055299539170507,
981
+ "eval_loss": 3.795403480529785,
982
+ "eval_runtime": 8.1757,
983
+ "eval_samples_per_second": 53.084,
984
+ "eval_steps_per_second": 6.727,
985
+ "step": 390
986
+ },
987
+ {
988
+ "epoch": 6.475409836065574,
989
+ "grad_norm": 369.5208687625068,
990
+ "learning_rate": 1.0706150341685651e-06,
991
+ "loss": 23.193,
992
+ "step": 395,
993
+ "true_loss": 2.8789
994
+ },
995
+ {
996
+ "epoch": 6.557377049180328,
997
+ "grad_norm": 376.6391661100538,
998
+ "learning_rate": 1.0136674259681093e-06,
999
+ "loss": 23.5847,
1000
+ "step": 400,
1001
+ "true_loss": 2.9588
1002
+ },
1003
+ {
1004
+ "epoch": 6.557377049180328,
1005
+ "eval_accuracy": 0.14516129032258066,
1006
+ "eval_loss": 3.8012988567352295,
1007
+ "eval_runtime": 8.302,
1008
+ "eval_samples_per_second": 52.276,
1009
+ "eval_steps_per_second": 6.625,
1010
+ "step": 400
1011
+ },
1012
+ {
1013
+ "epoch": 6.639344262295082,
1014
+ "grad_norm": 335.2314208261569,
1015
+ "learning_rate": 9.567198177676538e-07,
1016
+ "loss": 22.4865,
1017
+ "step": 405,
1018
+ "true_loss": 3.1291
1019
+ },
1020
+ {
1021
+ "epoch": 6.721311475409836,
1022
+ "grad_norm": 383.2496458341536,
1023
+ "learning_rate": 8.997722095671982e-07,
1024
+ "loss": 24.1513,
1025
+ "step": 410,
1026
+ "true_loss": 2.858
1027
+ },
1028
+ {
1029
+ "epoch": 6.721311475409836,
1030
+ "eval_accuracy": 0.14746543778801843,
1031
+ "eval_loss": 3.801600217819214,
1032
+ "eval_runtime": 8.4227,
1033
+ "eval_samples_per_second": 51.528,
1034
+ "eval_steps_per_second": 6.53,
1035
+ "step": 410
1036
+ }
1037
+ ],
1038
+ "logging_steps": 5,
1039
+ "max_steps": 488,
1040
+ "num_input_tokens_seen": 0,
1041
+ "num_train_epochs": 8,
1042
+ "save_steps": 10,
1043
+ "stateful_callbacks": {
1044
+ "TrainerControl": {
1045
+ "args": {
1046
+ "should_epoch_stop": false,
1047
+ "should_evaluate": false,
1048
+ "should_log": false,
1049
+ "should_save": true,
1050
+ "should_training_stop": false
1051
+ },
1052
+ "attributes": {}
1053
+ }
1054
+ },
1055
+ "total_flos": 0.0,
1056
+ "train_batch_size": 1,
1057
+ "trial_name": null,
1058
+ "trial_params": null
1059
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:639ecd139094c2a0c834dd7bd8e1bcc25336952f6cfc37d956b51b3443e52c51
3
+ size 7249
vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
zero_to_fp32.py ADDED
@@ -0,0 +1,760 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+
3
+ # Copyright (c) Microsoft Corporation.
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
6
+ # DeepSpeed Team
7
+
8
+ # This script extracts fp32 consolidated weights from a zero 1, 2 and 3 DeepSpeed checkpoints. It gets
9
+ # copied into the top level checkpoint dir, so the user can easily do the conversion at any point in
10
+ # the future. Once extracted, the weights don't require DeepSpeed and can be used in any
11
+ # application.
12
+ #
13
+ # example:
14
+ # python zero_to_fp32.py . output_dir/
15
+ # or
16
+ # python zero_to_fp32.py . output_dir/ --safe_serialization
17
+
18
+ import argparse
19
+ import torch
20
+ import glob
21
+ import math
22
+ import os
23
+ import re
24
+ import gc
25
+ import json
26
+ import numpy as np
27
+ from tqdm import tqdm
28
+ from collections import OrderedDict
29
+ from dataclasses import dataclass
30
+
31
+ # while this script doesn't use deepspeed to recover data, since the checkpoints are pickled with
32
+ # DeepSpeed data structures it has to be available in the current python environment.
33
+ from deepspeed.utils import logger
34
+ from deepspeed.checkpoint.constants import (DS_VERSION, OPTIMIZER_STATE_DICT, SINGLE_PARTITION_OF_FP32_GROUPS,
35
+ FP32_FLAT_GROUPS, ZERO_STAGE, PARTITION_COUNT, PARAM_SHAPES, BUFFER_NAMES,
36
+ FROZEN_PARAM_SHAPES, FROZEN_PARAM_FRAGMENTS)
37
+
38
+
39
+ @dataclass
40
+ class zero_model_state:
41
+ buffers: dict()
42
+ param_shapes: dict()
43
+ shared_params: list
44
+ ds_version: int
45
+ frozen_param_shapes: dict()
46
+ frozen_param_fragments: dict()
47
+
48
+
49
+ debug = 0
50
+
51
+ # load to cpu
52
+ device = torch.device('cpu')
53
+
54
+
55
+ def atoi(text):
56
+ return int(text) if text.isdigit() else text
57
+
58
+
59
+ def natural_keys(text):
60
+ '''
61
+ alist.sort(key=natural_keys) sorts in human order
62
+ http://nedbatchelder.com/blog/200712/human_sorting.html
63
+ (See Toothy's implementation in the comments)
64
+ '''
65
+ return [atoi(c) for c in re.split(r'(\d+)', text)]
66
+
67
+
68
+ def get_model_state_file(checkpoint_dir, zero_stage):
69
+ if not os.path.isdir(checkpoint_dir):
70
+ raise FileNotFoundError(f"Directory '{checkpoint_dir}' doesn't exist")
71
+
72
+ # there should be only one file
73
+ if zero_stage <= 2:
74
+ file = os.path.join(checkpoint_dir, "mp_rank_00_model_states.pt")
75
+ elif zero_stage == 3:
76
+ file = os.path.join(checkpoint_dir, "zero_pp_rank_0_mp_rank_00_model_states.pt")
77
+
78
+ if not os.path.exists(file):
79
+ raise FileNotFoundError(f"can't find model states file at '{file}'")
80
+
81
+ return file
82
+
83
+
84
+ def get_checkpoint_files(checkpoint_dir, glob_pattern):
85
+ # XXX: need to test that this simple glob rule works for multi-node setup too
86
+ ckpt_files = sorted(glob.glob(os.path.join(checkpoint_dir, glob_pattern)), key=natural_keys)
87
+
88
+ if len(ckpt_files) == 0:
89
+ raise FileNotFoundError(f"can't find {glob_pattern} files in directory '{checkpoint_dir}'")
90
+
91
+ return ckpt_files
92
+
93
+
94
+ def get_optim_files(checkpoint_dir):
95
+ return get_checkpoint_files(checkpoint_dir, "*_optim_states.pt")
96
+
97
+
98
+ def get_model_state_files(checkpoint_dir):
99
+ return get_checkpoint_files(checkpoint_dir, "*_model_states.pt")
100
+
101
+
102
+ def parse_model_states(files):
103
+ zero_model_states = []
104
+ for file in files:
105
+ state_dict = torch.load(file, map_location=device, weights_only=False)
106
+
107
+ if BUFFER_NAMES not in state_dict:
108
+ raise ValueError(f"{file} is not a model state checkpoint")
109
+ buffer_names = state_dict[BUFFER_NAMES]
110
+ if debug:
111
+ print("Found buffers:", buffer_names)
112
+
113
+ # recover just the buffers while restoring them to fp32 if they were saved in fp16
114
+ buffers = {k: v.float() for k, v in state_dict["module"].items() if k in buffer_names}
115
+ param_shapes = state_dict[PARAM_SHAPES]
116
+
117
+ # collect parameters that are included in param_shapes
118
+ param_names = []
119
+ for s in param_shapes:
120
+ for name in s.keys():
121
+ param_names.append(name)
122
+
123
+ # update with frozen parameters
124
+ frozen_param_shapes = state_dict.get(FROZEN_PARAM_SHAPES, None)
125
+ if frozen_param_shapes is not None:
126
+ if debug:
127
+ print(f"Found frozen_param_shapes: {frozen_param_shapes}")
128
+ param_names += list(frozen_param_shapes.keys())
129
+
130
+ # handle shared params
131
+ shared_params = [[k, v] for k, v in state_dict["shared_params"].items()]
132
+
133
+ ds_version = state_dict.get(DS_VERSION, None)
134
+
135
+ frozen_param_fragments = state_dict.get(FROZEN_PARAM_FRAGMENTS, None)
136
+
137
+ z_model_state = zero_model_state(buffers=buffers,
138
+ param_shapes=param_shapes,
139
+ shared_params=shared_params,
140
+ ds_version=ds_version,
141
+ frozen_param_shapes=frozen_param_shapes,
142
+ frozen_param_fragments=frozen_param_fragments)
143
+ zero_model_states.append(z_model_state)
144
+
145
+ return zero_model_states
146
+
147
+
148
+ def parse_optim_states(files, ds_checkpoint_dir):
149
+ total_files = len(files)
150
+ state_dicts = []
151
+ for f in tqdm(files, desc='Loading checkpoint shards'):
152
+ state_dict = torch.load(f, map_location=device, mmap=True, weights_only=False)
153
+ # immediately discard the potentially huge 2 optimizer states as we only care for fp32 master weights
154
+ # and also handle the case where it was already removed by another helper script
155
+ state_dict["optimizer_state_dict"].pop("optimizer_state_dict", None)
156
+ state_dicts.append(state_dict)
157
+
158
+ if ZERO_STAGE not in state_dicts[0][OPTIMIZER_STATE_DICT]:
159
+ raise ValueError(f"{files[0]} is not a zero checkpoint")
160
+ zero_stage = state_dicts[0][OPTIMIZER_STATE_DICT][ZERO_STAGE]
161
+ world_size = state_dicts[0][OPTIMIZER_STATE_DICT][PARTITION_COUNT]
162
+
163
+ # For ZeRO-2 each param group can have different partition_count as data parallelism for expert
164
+ # parameters can be different from data parallelism for non-expert parameters. So we can just
165
+ # use the max of the partition_count to get the dp world_size.
166
+
167
+ if type(world_size) is list:
168
+ world_size = max(world_size)
169
+
170
+ if world_size != total_files:
171
+ raise ValueError(
172
+ f"Expected {world_size} of '*_optim_states.pt' under '{ds_checkpoint_dir}' but found {total_files} files. "
173
+ "Possibly due to an overwrite of an old checkpoint, or a checkpoint didn't get saved by one or more processes."
174
+ )
175
+
176
+ # the groups are named differently in each stage
177
+ if zero_stage <= 2:
178
+ fp32_groups_key = SINGLE_PARTITION_OF_FP32_GROUPS
179
+ elif zero_stage == 3:
180
+ fp32_groups_key = FP32_FLAT_GROUPS
181
+ else:
182
+ raise ValueError(f"unknown zero stage {zero_stage}")
183
+
184
+ fp32_flat_groups = [state_dicts[i][OPTIMIZER_STATE_DICT][fp32_groups_key] for i in range(len(state_dicts))]
185
+ return zero_stage, world_size, fp32_flat_groups
186
+
187
+
188
+ def _get_fp32_state_dict_from_zero_checkpoint(ds_checkpoint_dir, exclude_frozen_parameters):
189
+ """
190
+ Returns fp32 state_dict reconstructed from ds checkpoint
191
+
192
+ Args:
193
+ - ``ds_checkpoint_dir``: path to the deepspeed checkpoint folder (where the optimizer files are)
194
+
195
+ """
196
+ print(f"Processing zero checkpoint '{ds_checkpoint_dir}'")
197
+
198
+ optim_files = get_optim_files(ds_checkpoint_dir)
199
+ zero_stage, world_size, fp32_flat_groups = parse_optim_states(optim_files, ds_checkpoint_dir)
200
+ print(f"Detected checkpoint of type zero stage {zero_stage}, world_size: {world_size}")
201
+
202
+ model_files = get_model_state_files(ds_checkpoint_dir)
203
+
204
+ zero_model_states = parse_model_states(model_files)
205
+ print(f'Parsing checkpoint created by deepspeed=={zero_model_states[0].ds_version}')
206
+
207
+ if zero_stage <= 2:
208
+ return _get_fp32_state_dict_from_zero2_checkpoint(world_size, fp32_flat_groups, zero_model_states,
209
+ exclude_frozen_parameters)
210
+ elif zero_stage == 3:
211
+ return _get_fp32_state_dict_from_zero3_checkpoint(world_size, fp32_flat_groups, zero_model_states,
212
+ exclude_frozen_parameters)
213
+
214
+
215
+ def _zero2_merge_frozen_params(state_dict, zero_model_states):
216
+ if zero_model_states[0].frozen_param_shapes is None or len(zero_model_states[0].frozen_param_shapes) == 0:
217
+ return
218
+
219
+ frozen_param_shapes = zero_model_states[0].frozen_param_shapes
220
+ frozen_param_fragments = zero_model_states[0].frozen_param_fragments
221
+
222
+ if debug:
223
+ num_elem = sum(s.numel() for s in frozen_param_shapes.values())
224
+ print(f'rank 0: {FROZEN_PARAM_SHAPES}.numel = {num_elem}')
225
+
226
+ wanted_params = len(frozen_param_shapes)
227
+ wanted_numel = sum(s.numel() for s in frozen_param_shapes.values())
228
+ avail_numel = sum([p.numel() for p in frozen_param_fragments.values()])
229
+ print(f'Frozen params: Have {avail_numel} numels to process.')
230
+ print(f'Frozen params: Need {wanted_numel} numels in {wanted_params} params')
231
+
232
+ total_params = 0
233
+ total_numel = 0
234
+ for name, shape in frozen_param_shapes.items():
235
+ total_params += 1
236
+ unpartitioned_numel = shape.numel()
237
+ total_numel += unpartitioned_numel
238
+
239
+ state_dict[name] = frozen_param_fragments[name]
240
+
241
+ if debug:
242
+ print(f"{name} full shape: {shape} unpartitioned numel {unpartitioned_numel} ")
243
+
244
+ print(f"Reconstructed Frozen fp32 state dict with {total_params} params {total_numel} elements")
245
+
246
+
247
+ def _has_callable(obj, fn):
248
+ attr = getattr(obj, fn, None)
249
+ return callable(attr)
250
+
251
+
252
+ def _zero2_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states):
253
+ param_shapes = zero_model_states[0].param_shapes
254
+
255
+ # Reconstruction protocol:
256
+ #
257
+ # XXX: document this
258
+
259
+ if debug:
260
+ for i in range(world_size):
261
+ for j in range(len(fp32_flat_groups[0])):
262
+ print(f"{FP32_FLAT_GROUPS}[{i}][{j}].shape={fp32_flat_groups[i][j].shape}")
263
+
264
+ # XXX: memory usage doubles here (zero2)
265
+ num_param_groups = len(fp32_flat_groups[0])
266
+ merged_single_partition_of_fp32_groups = []
267
+ for i in range(num_param_groups):
268
+ merged_partitions = [sd[i] for sd in fp32_flat_groups]
269
+ full_single_fp32_vector = torch.cat(merged_partitions, 0)
270
+ merged_single_partition_of_fp32_groups.append(full_single_fp32_vector)
271
+ avail_numel = sum(
272
+ [full_single_fp32_vector.numel() for full_single_fp32_vector in merged_single_partition_of_fp32_groups])
273
+
274
+ if debug:
275
+ wanted_params = sum([len(shapes) for shapes in param_shapes])
276
+ wanted_numel = sum([sum(shape.numel() for shape in shapes.values()) for shapes in param_shapes])
277
+ # not asserting if there is a mismatch due to possible padding
278
+ print(f"Have {avail_numel} numels to process.")
279
+ print(f"Need {wanted_numel} numels in {wanted_params} params.")
280
+
281
+ # params
282
+ # XXX: for huge models that can't fit into the host's RAM we will have to recode this to support
283
+ # out-of-core computing solution
284
+ total_numel = 0
285
+ total_params = 0
286
+ for shapes, full_single_fp32_vector in zip(param_shapes, merged_single_partition_of_fp32_groups):
287
+ offset = 0
288
+ avail_numel = full_single_fp32_vector.numel()
289
+ for name, shape in shapes.items():
290
+
291
+ unpartitioned_numel = shape.numel() if _has_callable(shape, 'numel') else math.prod(shape)
292
+ total_numel += unpartitioned_numel
293
+ total_params += 1
294
+
295
+ if debug:
296
+ print(f"{name} full shape: {shape} unpartitioned numel {unpartitioned_numel} ")
297
+ state_dict[name] = full_single_fp32_vector.narrow(0, offset, unpartitioned_numel).view(shape)
298
+ offset += unpartitioned_numel
299
+
300
+ # Z2 started to align to 2*world_size to improve nccl performance. Therefore both offset and
301
+ # avail_numel can differ by anywhere between 0..2*world_size. Due to two unrelated complex
302
+ # paddings performed in the code it's almost impossible to predict the exact numbers w/o the
303
+ # live optimizer object, so we are checking that the numbers are within the right range
304
+ align_to = 2 * world_size
305
+
306
+ def zero2_align(x):
307
+ return align_to * math.ceil(x / align_to)
308
+
309
+ if debug:
310
+ print(f"original offset={offset}, avail_numel={avail_numel}")
311
+
312
+ offset = zero2_align(offset)
313
+ avail_numel = zero2_align(avail_numel)
314
+
315
+ if debug:
316
+ print(f"aligned offset={offset}, avail_numel={avail_numel}")
317
+
318
+ # Sanity check
319
+ if offset != avail_numel:
320
+ raise ValueError(f"consumed {offset} numels out of {avail_numel} - something is wrong")
321
+
322
+ print(f"Reconstructed fp32 state dict with {total_params} params {total_numel} elements")
323
+
324
+
325
+ def _get_fp32_state_dict_from_zero2_checkpoint(world_size, fp32_flat_groups, zero_model_states,
326
+ exclude_frozen_parameters):
327
+ state_dict = OrderedDict()
328
+
329
+ # buffers
330
+ buffers = zero_model_states[0].buffers
331
+ state_dict.update(buffers)
332
+ if debug:
333
+ print(f"added {len(buffers)} buffers")
334
+
335
+ if not exclude_frozen_parameters:
336
+ _zero2_merge_frozen_params(state_dict, zero_model_states)
337
+
338
+ _zero2_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states)
339
+
340
+ # recover shared parameters
341
+ for pair in zero_model_states[0].shared_params:
342
+ if pair[1] in state_dict:
343
+ state_dict[pair[0]] = state_dict[pair[1]]
344
+
345
+ return state_dict
346
+
347
+
348
+ def zero3_partitioned_param_info(unpartitioned_numel, world_size):
349
+ remainder = unpartitioned_numel % world_size
350
+ padding_numel = (world_size - remainder) if remainder else 0
351
+ partitioned_numel = math.ceil(unpartitioned_numel / world_size)
352
+ return partitioned_numel, padding_numel
353
+
354
+
355
+ def _zero3_merge_frozen_params(state_dict, world_size, zero_model_states):
356
+ if zero_model_states[0].frozen_param_shapes is None or len(zero_model_states[0].frozen_param_shapes) == 0:
357
+ return
358
+
359
+ if debug:
360
+ for i in range(world_size):
361
+ num_elem = sum(s.numel() for s in zero_model_states[i].frozen_param_fragments.values())
362
+ print(f'rank {i}: {FROZEN_PARAM_SHAPES}.numel = {num_elem}')
363
+
364
+ frozen_param_shapes = zero_model_states[0].frozen_param_shapes
365
+ wanted_params = len(frozen_param_shapes)
366
+ wanted_numel = sum(s.numel() for s in frozen_param_shapes.values())
367
+ avail_numel = sum([p.numel() for p in zero_model_states[0].frozen_param_fragments.values()]) * world_size
368
+ print(f'Frozen params: Have {avail_numel} numels to process.')
369
+ print(f'Frozen params: Need {wanted_numel} numels in {wanted_params} params')
370
+
371
+ total_params = 0
372
+ total_numel = 0
373
+ for name, shape in zero_model_states[0].frozen_param_shapes.items():
374
+ total_params += 1
375
+ unpartitioned_numel = shape.numel()
376
+ total_numel += unpartitioned_numel
377
+
378
+ param_frags = tuple(model_state.frozen_param_fragments[name] for model_state in zero_model_states)
379
+ state_dict[name] = torch.cat(param_frags, 0).narrow(0, 0, unpartitioned_numel).view(shape)
380
+
381
+ partitioned_numel, partitioned_padding_numel = zero3_partitioned_param_info(unpartitioned_numel, world_size)
382
+
383
+ if debug:
384
+ print(
385
+ f"Frozen params: {total_params} {name} full shape: {shape} partition0 numel={partitioned_numel} partitioned_padding_numel={partitioned_padding_numel}"
386
+ )
387
+
388
+ print(f"Reconstructed Frozen fp32 state dict with {total_params} params {total_numel} elements")
389
+
390
+
391
+ class GatheredTensor:
392
+ """
393
+ A pseudo tensor that collects partitioned weights.
394
+ It is more memory efficient when there are multiple groups.
395
+ """
396
+
397
+ def __init__(self, flat_groups, flat_groups_offset, offset, partitioned_numel, shape):
398
+ self.flat_groups = flat_groups
399
+ self.flat_groups_offset = flat_groups_offset
400
+ self.offset = offset
401
+ self.partitioned_numel = partitioned_numel
402
+ self.shape = shape
403
+ self.dtype = self.flat_groups[0][0].dtype
404
+
405
+ def contiguous(self):
406
+ """
407
+ Merge partitioned weights from flat_groups into a single tensor.
408
+ """
409
+ end_idx = self.offset + self.partitioned_numel
410
+ world_size = len(self.flat_groups)
411
+ pad_flat_param_chunks = []
412
+
413
+ for rank_i in range(world_size):
414
+ # for each rank, we need to collect weights from related group/groups
415
+ flat_groups_at_rank_i = self.flat_groups[rank_i]
416
+ start_group_id = None
417
+ end_group_id = None
418
+ for group_id in range(len(self.flat_groups_offset)):
419
+ if self.flat_groups_offset[group_id] <= self.offset < self.flat_groups_offset[group_id + 1]:
420
+ start_group_id = group_id
421
+ if self.flat_groups_offset[group_id] < end_idx <= self.flat_groups_offset[group_id + 1]:
422
+ end_group_id = group_id
423
+ break
424
+ # collect weights from related group/groups
425
+ for group_id in range(start_group_id, end_group_id + 1):
426
+ flat_tensor = flat_groups_at_rank_i[group_id]
427
+ start_offset = self.offset - self.flat_groups_offset[group_id]
428
+ end_offset = min(end_idx, self.flat_groups_offset[group_id + 1]) - self.flat_groups_offset[group_id]
429
+ pad_flat_param_chunks.append(flat_tensor[start_offset:end_offset])
430
+
431
+ # collect weights from all ranks
432
+ pad_flat_param = torch.cat(pad_flat_param_chunks, dim=0)
433
+ param = pad_flat_param[:self.shape.numel()].view(self.shape).contiguous()
434
+ return param
435
+
436
+
437
+ def _zero3_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states):
438
+ param_shapes = zero_model_states[0].param_shapes
439
+ avail_numel = sum([flat_group.numel() for flat_group in fp32_flat_groups[0]]) * world_size
440
+
441
+ # Reconstruction protocol: For zero3 we need to zip the partitions together at boundary of each
442
+ # param, re-consolidating each param, while dealing with padding if any
443
+
444
+ # merge list of dicts, preserving order
445
+ param_shapes = {k: v for d in param_shapes for k, v in d.items()}
446
+
447
+ if debug:
448
+ for i in range(world_size):
449
+ print(f"{FP32_FLAT_GROUPS}[{i}].shape={fp32_flat_groups[i].shape}")
450
+
451
+ wanted_params = len(param_shapes)
452
+ wanted_numel = sum(shape.numel() for shape in param_shapes.values())
453
+ # not asserting if there is a mismatch due to possible padding
454
+ avail_numel = fp32_flat_groups[0].numel() * world_size
455
+ print(f"Trainable params: Have {avail_numel} numels to process.")
456
+ print(f"Trainable params: Need {wanted_numel} numels in {wanted_params} params.")
457
+
458
+ # params
459
+ # XXX: for huge models that can't fit into the host's RAM we will have to recode this to support
460
+ # out-of-core computing solution
461
+ offset = 0
462
+ total_numel = 0
463
+ total_params = 0
464
+ flat_groups_offset = [0] + list(np.cumsum([flat_tensor.numel() for flat_tensor in fp32_flat_groups[0]]))
465
+ for name, shape in tqdm(param_shapes.items(), desc='Gathering sharded weights'):
466
+ unpartitioned_numel = shape.numel()
467
+ total_numel += unpartitioned_numel
468
+ total_params += 1
469
+ partitioned_numel, partitioned_padding_numel = zero3_partitioned_param_info(unpartitioned_numel, world_size)
470
+
471
+ if debug:
472
+ print(
473
+ f"Trainable params: {total_params} {name} full shape: {shape} partition0 numel={partitioned_numel} partitioned_padding_numel={partitioned_padding_numel}"
474
+ )
475
+
476
+ # memory efficient tensor
477
+ tensor = GatheredTensor(fp32_flat_groups, flat_groups_offset, offset, partitioned_numel, shape)
478
+ state_dict[name] = tensor
479
+ offset += partitioned_numel
480
+
481
+ offset *= world_size
482
+
483
+ # Sanity check
484
+ if offset != avail_numel:
485
+ raise ValueError(f"consumed {offset} numels out of {avail_numel} - something is wrong")
486
+
487
+ print(f"Reconstructed Trainable fp32 state dict with {total_params} params {total_numel} elements")
488
+
489
+
490
+ def _get_fp32_state_dict_from_zero3_checkpoint(world_size, fp32_flat_groups, zero_model_states,
491
+ exclude_frozen_parameters):
492
+ state_dict = OrderedDict()
493
+
494
+ # buffers
495
+ buffers = zero_model_states[0].buffers
496
+ state_dict.update(buffers)
497
+ if debug:
498
+ print(f"added {len(buffers)} buffers")
499
+
500
+ if not exclude_frozen_parameters:
501
+ _zero3_merge_frozen_params(state_dict, world_size, zero_model_states)
502
+
503
+ _zero3_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states)
504
+
505
+ # recover shared parameters
506
+ for pair in zero_model_states[0].shared_params:
507
+ if pair[1] in state_dict:
508
+ state_dict[pair[0]] = state_dict[pair[1]]
509
+
510
+ return state_dict
511
+
512
+
513
+ def to_torch_tensor(state_dict, return_empty_tensor=False):
514
+ """
515
+ Convert state_dict of GatheredTensor to torch tensor
516
+ """
517
+ torch_state_dict = {}
518
+ converted_tensors = {}
519
+ for name, tensor in state_dict.items():
520
+ tensor_id = id(tensor)
521
+ if tensor_id in converted_tensors: # shared tensors
522
+ shared_tensor = torch_state_dict[converted_tensors[tensor_id]]
523
+ torch_state_dict[name] = shared_tensor
524
+ else:
525
+ converted_tensors[tensor_id] = name
526
+ if return_empty_tensor:
527
+ torch_state_dict[name] = torch.empty(tensor.shape, dtype=tensor.dtype)
528
+ else:
529
+ torch_state_dict[name] = tensor.contiguous()
530
+ return torch_state_dict
531
+
532
+
533
+ def get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir,
534
+ tag=None,
535
+ exclude_frozen_parameters=False,
536
+ lazy_mode=False):
537
+ """
538
+ Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated state_dict that can be loaded with
539
+ ``load_state_dict()`` and used for training without DeepSpeed or shared with others, for example
540
+ via a model hub.
541
+
542
+ Args:
543
+ - ``checkpoint_dir``: path to the desired checkpoint folder
544
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in 'latest' file. e.g., ``global_step14``
545
+ - ``exclude_frozen_parameters``: exclude frozen parameters
546
+ - ``lazy_mode``: get state_dict in lazy mode. It returns a dict of pesduo tensor instead of torch tensor, which is more memory efficient.
547
+ Convert the pesduo tensor to torch tensor by ``.contiguous()``
548
+
549
+ Returns:
550
+ - pytorch ``state_dict``
551
+
552
+ A typical usage might be ::
553
+
554
+ from deepspeed.utils.zero_to_fp32 import get_fp32_state_dict_from_zero_checkpoint
555
+ # do the training and checkpoint saving
556
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir) # already on cpu
557
+ model = model.cpu() # move to cpu
558
+ model.load_state_dict(state_dict)
559
+ # submit to model hub or save the model to share with others
560
+
561
+ In this example the ``model`` will no longer be usable in the deepspeed context of the same
562
+ application. i.e. you will need to re-initialize the deepspeed engine, since
563
+ ``model.load_state_dict(state_dict)`` will remove all the deepspeed magic from it.
564
+
565
+ If you want it all done for you, use ``load_state_dict_from_zero_checkpoint`` instead.
566
+
567
+ Note: the above usage may not work if your application doesn't have sufficient free CPU memory.
568
+ You may need to use the offline approach using the ``zero_to_fp32.py`` script that is saved with
569
+ the checkpoint. Or you can load state_dict in lazy mode ::
570
+
571
+ from deepspeed.utils.zero_to_fp32 import get_fp32_state_dict_from_zero_checkpoint
572
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, lazy_mode=True) # not on cpu
573
+ for name, lazy_tensor in state_dict.item():
574
+ tensor = lazy_tensor.contiguous() # to cpu
575
+ print(name, tensor)
576
+ # del tensor to release memory if it no longer in use
577
+ """
578
+ if tag is None:
579
+ latest_path = os.path.join(checkpoint_dir, 'latest')
580
+ if os.path.isfile(latest_path):
581
+ with open(latest_path, 'r') as fd:
582
+ tag = fd.read().strip()
583
+ else:
584
+ raise ValueError(f"Unable to find 'latest' file at {latest_path}")
585
+
586
+ ds_checkpoint_dir = os.path.join(checkpoint_dir, tag)
587
+
588
+ if not os.path.isdir(ds_checkpoint_dir):
589
+ raise FileNotFoundError(f"Directory '{ds_checkpoint_dir}' doesn't exist")
590
+
591
+ state_dict = _get_fp32_state_dict_from_zero_checkpoint(ds_checkpoint_dir, exclude_frozen_parameters)
592
+ if lazy_mode:
593
+ return state_dict
594
+ else:
595
+ return to_torch_tensor(state_dict)
596
+
597
+
598
+ def convert_zero_checkpoint_to_fp32_state_dict(checkpoint_dir,
599
+ output_dir,
600
+ max_shard_size="5GB",
601
+ safe_serialization=False,
602
+ tag=None,
603
+ exclude_frozen_parameters=False):
604
+ """
605
+ Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated ``state_dict`` file that can be
606
+ loaded with ``torch.load(file)`` + ``load_state_dict()`` and used for training without DeepSpeed.
607
+
608
+ Args:
609
+ - ``checkpoint_dir``: path to the desired checkpoint folder. (one that contains the tag-folder, like ``global_step14``)
610
+ - ``output_dir``: directory to the pytorch fp32 state_dict output files
611
+ - ``max_shard_size``: the maximum size for a checkpoint before being sharded, default value is 5GB
612
+ - ``safe_serialization``: whether to save the model using `safetensors` or the traditional PyTorch way (that uses `pickle`).
613
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in the file named ``latest`` in the checkpoint folder, e.g., ``global_step14``
614
+ - ``exclude_frozen_parameters``: exclude frozen parameters
615
+ """
616
+
617
+ # Dependency pre-check
618
+ if safe_serialization:
619
+ try:
620
+ from safetensors.torch import save_file
621
+ except ImportError:
622
+ print('If you want to use `safe_serialization`, please `pip install safetensors`')
623
+ raise
624
+ if max_shard_size is not None:
625
+ try:
626
+ from huggingface_hub import split_torch_state_dict_into_shards
627
+ except ImportError:
628
+ print('If you want to use `max_shard_size`, please `pip install huggingface_hub`')
629
+ raise
630
+
631
+ # Convert zero checkpoint to state_dict
632
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir,
633
+ tag,
634
+ exclude_frozen_parameters,
635
+ lazy_mode=True)
636
+
637
+ # Shard the model if it is too big.
638
+ weights_name = "model.safetensors" if safe_serialization else "pytorch_model.bin"
639
+ if max_shard_size is not None:
640
+ filename_pattern = weights_name.replace(".bin", "{suffix}.bin").replace(".safetensors", "{suffix}.safetensors")
641
+ # an memory-efficient approach for sharding
642
+ empty_state_dict = to_torch_tensor(state_dict, return_empty_tensor=True)
643
+ state_dict_split = split_torch_state_dict_into_shards(empty_state_dict,
644
+ filename_pattern=filename_pattern,
645
+ max_shard_size=max_shard_size)
646
+ else:
647
+ from collections import namedtuple
648
+ StateDictSplit = namedtuple("StateDictSplit", ["is_sharded", "filename_to_tensors"])
649
+ state_dict_split = StateDictSplit(is_sharded=False,
650
+ filename_to_tensors={weights_name: list(state_dict.keys())})
651
+
652
+ # Save the model by shard
653
+ os.makedirs(output_dir, exist_ok=True)
654
+ filename_to_tensors = state_dict_split.filename_to_tensors.items()
655
+ for shard_file, tensors in tqdm(filename_to_tensors, desc="Saving checkpoint shards"):
656
+ shard_state_dict = {tensor_name: state_dict[tensor_name] for tensor_name in tensors}
657
+ shard_state_dict = to_torch_tensor(shard_state_dict)
658
+ output_path = os.path.join(output_dir, shard_file)
659
+ if safe_serialization:
660
+ save_file(shard_state_dict, output_path, metadata={"format": "pt"})
661
+ else:
662
+ torch.save(shard_state_dict, output_path)
663
+ # release the memory of current shard
664
+ for tensor_name in list(shard_state_dict.keys()):
665
+ del state_dict[tensor_name]
666
+ del shard_state_dict[tensor_name]
667
+ del shard_state_dict
668
+ gc.collect()
669
+
670
+ # Save index if sharded
671
+ if state_dict_split.is_sharded:
672
+ index = {
673
+ "metadata": state_dict_split.metadata,
674
+ "weight_map": state_dict_split.tensor_to_filename,
675
+ }
676
+ save_index_file = "model.safetensors.index.json" if safe_serialization else "pytorch_model.bin.index.json"
677
+ save_index_file = os.path.join(output_dir, save_index_file)
678
+ with open(save_index_file, "w", encoding="utf-8") as f:
679
+ content = json.dumps(index, indent=2, sort_keys=True) + "\n"
680
+ f.write(content)
681
+
682
+
683
+ def load_state_dict_from_zero_checkpoint(model, checkpoint_dir, tag=None):
684
+ """
685
+ 1. Put the provided model to cpu
686
+ 2. Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated ``state_dict``
687
+ 3. Load it into the provided model
688
+
689
+ Args:
690
+ - ``model``: the model object to update
691
+ - ``checkpoint_dir``: path to the desired checkpoint folder. (one that contains the tag-folder, like ``global_step14``)
692
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in the file named ``latest`` in the checkpoint folder, e.g., ``global_step14``
693
+
694
+ Returns:
695
+ - ``model`: modified model
696
+
697
+ Make sure you have plenty of CPU memory available before you call this function. If you don't
698
+ have enough use the ``zero_to_fp32.py`` utility to do the conversion. You will find it
699
+ conveniently placed for you in the checkpoint folder.
700
+
701
+ A typical usage might be ::
702
+
703
+ from deepspeed.utils.zero_to_fp32 import load_state_dict_from_zero_checkpoint
704
+ model = load_state_dict_from_zero_checkpoint(trainer.model, checkpoint_dir)
705
+ # submit to model hub or save the model to share with others
706
+
707
+ Note, that once this was run, the ``model`` will no longer be usable in the deepspeed context
708
+ of the same application. i.e. you will need to re-initialize the deepspeed engine, since
709
+ ``model.load_state_dict(state_dict)`` will remove all the deepspeed magic from it.
710
+
711
+ """
712
+ logger.info("Extracting fp32 weights")
713
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, tag)
714
+
715
+ logger.info("Overwriting model with fp32 weights")
716
+ model = model.cpu()
717
+ model.load_state_dict(state_dict, strict=False)
718
+
719
+ return model
720
+
721
+
722
+ if __name__ == "__main__":
723
+ parser = argparse.ArgumentParser()
724
+ parser.add_argument("checkpoint_dir",
725
+ type=str,
726
+ help="path to the desired checkpoint folder, e.g., path/checkpoint-12")
727
+ parser.add_argument("output_dir",
728
+ type=str,
729
+ help="directory to the pytorch fp32 state_dict output files"
730
+ "(e.g. path/checkpoint-12-output/)")
731
+ parser.add_argument(
732
+ "--max_shard_size",
733
+ type=str,
734
+ default="5GB",
735
+ help="The maximum size for a checkpoint before being sharded. Checkpoints shard will then be each of size"
736
+ "lower than this size. If expressed as a string, needs to be digits followed by a unit (like `5MB`"
737
+ "We default it to 5GB in order for models to be able to run easily on free-tier google colab instances"
738
+ "without CPU OOM issues.")
739
+ parser.add_argument(
740
+ "--safe_serialization",
741
+ default=False,
742
+ action='store_true',
743
+ help="Whether to save the model using `safetensors` or the traditional PyTorch way (that uses `pickle`).")
744
+ parser.add_argument("-t",
745
+ "--tag",
746
+ type=str,
747
+ default=None,
748
+ help="checkpoint tag used as a unique identifier for checkpoint. e.g., global_step1")
749
+ parser.add_argument("--exclude_frozen_parameters", action='store_true', help="exclude frozen parameters")
750
+ parser.add_argument("-d", "--debug", action='store_true', help="enable debug")
751
+ args = parser.parse_args()
752
+
753
+ debug = args.debug
754
+
755
+ convert_zero_checkpoint_to_fp32_state_dict(args.checkpoint_dir,
756
+ args.output_dir,
757
+ max_shard_size=args.max_shard_size,
758
+ safe_serialization=args.safe_serialization,
759
+ tag=args.tag,
760
+ exclude_frozen_parameters=args.exclude_frozen_parameters)