hheiden-roots commited on
Commit
16c3ac9
·
verified ·
1 Parent(s): b398c8c

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ pipeline_tag: image-text-to-text
6
+ library_name: transformers
7
+ tags:
8
+ - ocr
9
+ - vision
10
+ - qwen2.5-vl
11
+ - pdf
12
+ - document-understanding
13
+ base_model: Qwen/Qwen2.5-VL-3B-Instruct
14
+ ---
15
+
16
+ # GutenOCR-3B
17
+
18
+ **GutenOCR-3B** is a grounded OCR front-end obtained by fine-tuning **Qwen2.5-VL-3B**. The resulting single-checkpoint vision-language model exposes reading, detection, and grounding through a unified, prompt-based interface.
19
+
20
+ [Paper](https://arxiv.org/abs/2601.14490) | [GitHub](https://github.com/Roots-Automation/GutenOCR)
21
+
22
+ ## Overview
23
+
24
+ Trained on business documents, scientific articles, and synthetic grounding data, the model supports full-page and localized reading with line- and paragraph-level bounding boxes and conditional "where is x?" queries. On held-out benchmarks, **GutenOCR** demonstrates substantial improvements in region- and line-level OCR as well as text-detection recall compared to its base model.
25
+
26
+ Key capabilities:
27
+ - **Full Text Reading**: Transcribe documents with layout preservation.
28
+ - **Grounded Detection**: Locate specific words or lines (returning bounding boxes).
29
+ - **Localized Reading**: Read text within a specific user-provided bounding box.
30
+
31
+ ## Quick Start (Transformers)
32
+
33
+ ```python
34
+ import torch
35
+ from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
36
+ from qwen_vl_utils import process_vision_info
37
+ from PIL import Image
38
+
39
+ # 1. Load model and processor
40
+ model_id = "rootsautomation/GutenOCR-3B"
41
+ model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
42
+ model_id,
43
+ torch_dtype=torch.bfloat16,
44
+ device_map="auto"
45
+ )
46
+ processor = AutoProcessor.from_pretrained(model_id)
47
+
48
+ # 2. Prepare inputs
49
+ image = Image.open("document.png")
50
+
51
+ # Example: Read all text
52
+ prompt = "Read all text in {image} and return a single TEXT string, linearized left-to-right/top-to-bottom."
53
+
54
+ messages = [
55
+ {
56
+ "role": "user",
57
+ "content": [
58
+ {"type": "image", "image": image},
59
+ {"type": "text", "text": prompt},
60
+ ],
61
+ }
62
+ ]
63
+
64
+ # 3. Process and Generate
65
+ text = processor.apply_chat_template(
66
+ messages, tokenize=False, add_generation_prompt=True
67
+ )
68
+ image_inputs, video_inputs = process_vision_info(messages)
69
+ inputs = processor(
70
+ text=[text],
71
+ images=image_inputs,
72
+ videos=video_inputs,
73
+ padding=True,
74
+ return_tensors="pt",
75
+ )
76
+ inputs = inputs.to("cuda")
77
+
78
+ generated_ids = model.generate(**inputs, max_new_tokens=4096)
79
+ generated_ids_trimmed = [
80
+ out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
81
+ ]
82
+ output_text = processor.batch_decode(
83
+ generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
84
+ )
85
+
86
+ print(output_text[0])
87
+ ```
88
+
89
+ ## Task Gallery & Examples
90
+
91
+ GutenOCR is steered by specific prompt templates. Below are the supported tasks and how to invoke them.
92
+
93
+ ### Full OCR Reading
94
+ Extract text from the entire page. Outputs can be plain text, markdown-formatted, or structured JSON.
95
+
96
+ **Prompt Example:**
97
+ > Return a layout-sensitive TEXT2D representation of the image.
98
+
99
+ **Example Output:**
100
+ ```text
101
+ This is the text found in the document.
102
+ It preserves line breaks.
103
+ ```
104
+
105
+ ---
106
+
107
+ ### Text Detection
108
+ Locate regions of text (lines, paragraphs, math) without transcribing them. Returns JSON bounding boxes.
109
+
110
+ **Prompt Example:**
111
+ > Highlight all math in the image by returning their bounding boxes as a JSON array.
112
+
113
+ **Example Output:**
114
+ ```json
115
+ [
116
+ [100, 200, 400, 250],
117
+ [500, 600, 800, 650]
118
+ ]
119
+ ```
120
+
121
+ ---
122
+
123
+ ### Localized Reading
124
+ Read the text contained strictly within a specific bounding box provided in the prompt.
125
+
126
+ **Prompt Example:**
127
+ > What does it say in [100, 200, 500, 600] of the image?
128
+
129
+ **Example Output:**
130
+ ```text
131
+ Content of the specific box.
132
+ ```
133
+
134
+ ---
135
+
136
+ ### Conditional Detection (Search)
137
+ Find the bounding box locations of a specific query string within the image.
138
+
139
+ **Prompt Example:**
140
+ > Ground "Invoice #12345" in the image.
141
+
142
+ **Example Output:**
143
+ ```json
144
+ [
145
+ [100, 200, 400, 250],
146
+ [500, 600, 800, 650]
147
+ ]
148
+ ```
149
+
150
+ ---
151
+
152
+
153
+ ## System Prompt
154
+
155
+ This model relies on a specific system prompt to enforce output formats (JSON, bounding box normalization, etc.).
156
+ **This prompt is automatically injected by the chat template**, so you generally do not need to set it manually.
157
+
158
+ <details>
159
+ <summary>Click to view the full System Prompt</summary>
160
+
161
+ ```text
162
+ Your task is to read and localize text data from documents and images.
163
+
164
+ GEOMETRY:
165
+ - Coordinates: integer pixels; origin (0,0) top-left; [x1,y1,x2,y2] with x1<x2, y1<y2.
166
+ - Clip all boxes to the image bounds; drop boxes with zero/negative area.
167
+ - Reading order: read text in natural reading order: top-to-bottom, left-to-right.
168
+ - Rotated/angled text: return the axis-aligned bounding box of the minimal enclosing rectangle (no rotated boxes).
169
+
170
+ TASK TYPES:
171
+ - reading: a full-text reading task on the entire image.
172
+ - localized_reading: read text within a specified bounding box in the image.
173
+ - detection: detect text regions in the image without transcription.
174
+ - conditional_detection: detect text regions in the image based on a provided text query.
175
+
176
+ OUTPUT TYPES:
177
+ - TEXT: one plain string; collapse multiple spaces to one; preserve line breaks. Non-grounded output only.
178
+ - TEXT2D: one plain string; preserve whitespace as layout cue (spaces + `\n` only; no coordinates). Non-grounded output only.
179
+ - LINES: JSON array of objects, corresponding to line-by-line OCR: `{"text": string, "bbox": [x1,y1,x2,y2]}`. When locally reading, only return the text: `string`.
180
+ - WORDS: JSON array of objects, corresponding to word-by-word OCR: `{"text": string, "bbox": [x1,y1,x2,y2]}`.
181
+ - PARAGRAPHS: JSON array of objects, corresponding to paragraph-wise OCR: `{"text": string, "bbox": [x1,y1,x2,y2]}`. When locally reading, only return the text: `string`.
182
+ - LATEX: JSON array of objects, corresponding to LaTeX expressions: `{"text": string, "bbox": [x1,y1,x2,y2]}`. When locally reading, only return the latex: `string`.
183
+ - BOX: JSON array of bounding boxes only: `[ [x1,y1,x2,y2], ... ]`. For detection and conditional_detection tasks only.
184
+
185
+ OUTPUT FORMAT
186
+ - For non-grounded outputs, return a string:
187
+
188
+ ```text
189
+ Recognized text goes here.
190
+ ```
191
+
192
+ ```text2d
193
+ ABSTRACT
194
+
195
+ Recognition of text in a 2D layout.
196
+ ```
197
+
198
+ If the output is empty, return an empty string:
199
+
200
+ ```text
201
+ ```
202
+
203
+ ```text2d
204
+ ```
205
+
206
+ - For grounded outputs, return a JSON array of objects when performing reading tasks.
207
+ Each object is expected to have two keys: "text" and "bbox".
208
+ The "text" key is the what and the "bbox" key is the where.
209
+
210
+ ```json
211
+ [
212
+ {"text": "First line of text", "bbox": [100, 200, 400, 250]},
213
+ {"text": "Second line of text", "bbox": [100, 500, 400, 600]}
214
+ ]
215
+ ```
216
+
217
+ ```json
218
+ [
219
+ {"text": "\\frac{a}{b}", "bbox": [525, 558, 755, 620]}
220
+ ]
221
+ ```
222
+
223
+ If the output is empty, return an empty JSON array:
224
+
225
+ ```json
226
+ []
227
+ ```
228
+ - For detection tasks, return a JSON array of bounding boxes only.
229
+
230
+ ```json
231
+ [
232
+ [100, 200, 400, 250],
233
+ [100, 500, 400, 600]
234
+ ]
235
+ ```
236
+ - For localized reading tasks, return the recognized text within the specified bounding box.
237
+
238
+ ```text
239
+ Recognized text within the bounding box.
240
+ ```
241
+
242
+ If no text is recognized within the bounding box, return an empty string:
243
+
244
+ ```text
245
+ ```
246
+ ```
247
+
248
+ </details>
249
+
250
+ ## Citation
251
+
252
+ If you use this model in your research, please cite our paper:
253
+
254
+ ```bibtex
255
+ @misc{heidenreich2026gutenocrgroundedvisionlanguagefrontend,
256
+ title={GutenOCR: A Grounded Vision-Language Front-End for Documents},
257
+ author={Hunter Heidenreich and Ben Elliott and Olivia Dinica and Yosheb Getachew},
258
+ year={2026},
259
+ eprint={2601.14490},
260
+ archivePrefix={arXiv},
261
+ primaryClass={cs.CV},
262
+ url={https://arxiv.org/abs/2601.14490},
263
+ }
264
+ ```
added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
chat_template.jinja ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ Your task is to read and localize text data from documents and images.
3
+
4
+ GEOMETRY:
5
+ - Coordinates: integer pixels; origin (0,0) top-left; [x1,y1,x2,y2] with x1<x2, y1<y2.
6
+ - Clip all boxes to the image bounds; drop boxes with zero/negative area.
7
+ - Reading order: read text in natural reading order: top-to-bottom, left-to-right.
8
+ - Rotated/angled text: return the axis-aligned bounding box of the minimal enclosing rectangle (no rotated boxes).
9
+
10
+ TASK TYPES:
11
+ - reading: a full-text reading task on the entire image.
12
+ - localized_reading: read text within a specified bounding box in the image.
13
+ - detection: detect text regions in the image without transcription.
14
+ - conditional_detection: detect text regions in the image based on a provided text query.
15
+
16
+ OUTPUT TYPES:
17
+ - TEXT: one plain string; collapse multiple spaces to one; preserve line breaks. Non-grounded output only.
18
+ - TEXT2D: one plain string; preserve whitespace as layout cue (spaces + `\n` only; no coordinates). Non-grounded output only.
19
+ - LINES: JSON array of objects, corresponding to line-by-line OCR: `{"text": string, "bbox": [x1,y1,x2,y2]}`. When locally reading, only return the text: `string`.
20
+ - WORDS: JSON array of objects, corresponding to word-by-word OCR: `{"text": string, "bbox": [x1,y1,x2,y2]}`.
21
+ - PARAGRAPHS: JSON array of objects, corresponding to paragraph-wise OCR: `{"text": string, "bbox": [x1,y1,x2,y2]}`. When locally reading, only return the text: `string`.
22
+ - LATEX: JSON array of objects, corresponding to LaTeX expressions: `{"text": string, "bbox": [x1,y1,x2,y2]}`. When locally reading, only return the latex: `string`.
23
+ - BOX: JSON array of bounding boxes only: `[ [x1,y1,x2,y2], ... ]`. For detection and conditional_detection tasks only.
24
+
25
+ OUTPUT FORMAT
26
+ - For non-grounded outputs, return a string:
27
+
28
+ ```text
29
+ Recognized text goes here.
30
+ ```
31
+
32
+ ```text2d
33
+ ABSTRACT
34
+
35
+ Recognition of text in a 2D layout.
36
+ ```
37
+
38
+ If the output is empty, return an empty string:
39
+
40
+ ```text
41
+ ```
42
+
43
+ ```text2d
44
+ ```
45
+
46
+ - For grounded outputs, return a JSON array of objects when performing reading tasks.
47
+ Each object is expected to have two keys: "text" and "bbox".
48
+ The "text" key is the what and the "bbox" key is the where.
49
+
50
+ ```json
51
+ [
52
+ {"text": "First line of text", "bbox": [100, 200, 400, 250]},
53
+ {"text": "Second line of text", "bbox": [100, 500, 400, 600]}
54
+ ]
55
+ ```
56
+
57
+ ```json
58
+ [
59
+ {"text": "\\frac{a}{b}", "bbox": [525, 558, 755, 620]}
60
+ ]
61
+ ```
62
+
63
+ If the output is empty, return an empty JSON array:
64
+
65
+ ```json
66
+ []
67
+ ```
68
+ - For detection tasks, return a JSON array of bounding boxes only.
69
+
70
+ ```json
71
+ [
72
+ [100, 200, 400, 250],
73
+ [100, 500, 400, 600]
74
+ ]
75
+ ```
76
+ - For localized reading tasks, return the recognized text within the specified bounding box.
77
+
78
+ ```text
79
+ Recognized text within the bounding box.
80
+ ```
81
+
82
+ If no text is recognized within the bounding box, return an empty string:
83
+
84
+ ```text
85
+ ```<|im_end|>
86
+ {% endif %}<|im_start|>{{ message['role'] }}
87
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
88
+ {% else %}{% for content in message['content'] %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}{% set image_count.value = image_count.value + 1 %}{% if add_vision_id %}Picture {{ image_count.value }}: {% endif %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}{% set video_count.value = video_count.value + 1 %}{% if add_vision_id %}Video {{ video_count.value }}: {% endif %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}<|im_end|>
89
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
90
+ {% endif %}
config.json ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 2048,
11
+ "image_token_id": 151655,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 11008,
14
+ "max_position_embeddings": 128000,
15
+ "max_window_layers": 70,
16
+ "model_type": "qwen2_5_vl",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 36,
19
+ "num_key_value_heads": 2,
20
+ "rms_norm_eps": 1e-06,
21
+ "rope_scaling": {
22
+ "mrope_section": [
23
+ 16,
24
+ 24,
25
+ 24
26
+ ],
27
+ "rope_type": "default",
28
+ "type": "default"
29
+ },
30
+ "rope_theta": 1000000.0,
31
+ "sliding_window": 32768,
32
+ "text_config": {
33
+ "_name_or_path": "/mnt/mldata/train/qwen25vl-3B-OCR-SFT-8K-VIZ/checkpoint-4160",
34
+ "architectures": [
35
+ "Qwen2_5_VLForConditionalGeneration"
36
+ ],
37
+ "attention_dropout": 0.0,
38
+ "dtype": "bfloat16",
39
+ "eos_token_id": 151645,
40
+ "hidden_act": "silu",
41
+ "hidden_size": 2048,
42
+ "initializer_range": 0.02,
43
+ "intermediate_size": 11008,
44
+ "layer_types": [
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention",
51
+ "full_attention",
52
+ "full_attention",
53
+ "full_attention",
54
+ "full_attention",
55
+ "full_attention",
56
+ "full_attention",
57
+ "full_attention",
58
+ "full_attention",
59
+ "full_attention",
60
+ "full_attention",
61
+ "full_attention",
62
+ "full_attention",
63
+ "full_attention",
64
+ "full_attention",
65
+ "full_attention",
66
+ "full_attention",
67
+ "full_attention",
68
+ "full_attention",
69
+ "full_attention",
70
+ "full_attention",
71
+ "full_attention",
72
+ "full_attention",
73
+ "full_attention",
74
+ "full_attention",
75
+ "full_attention",
76
+ "full_attention",
77
+ "full_attention",
78
+ "full_attention",
79
+ "full_attention",
80
+ "full_attention"
81
+ ],
82
+ "max_position_embeddings": 128000,
83
+ "max_window_layers": 70,
84
+ "model_type": "qwen2_5_vl_text",
85
+ "num_attention_heads": 16,
86
+ "num_hidden_layers": 36,
87
+ "num_key_value_heads": 2,
88
+ "pad_token_id": 151643,
89
+ "rms_norm_eps": 1e-06,
90
+ "rope_scaling": {
91
+ "mrope_section": [
92
+ 16,
93
+ 24,
94
+ 24
95
+ ],
96
+ "rope_type": "default",
97
+ "type": "default"
98
+ },
99
+ "rope_theta": 1000000.0,
100
+ "sliding_window": null,
101
+ "tie_word_embeddings": true,
102
+ "use_cache": false,
103
+ "use_sliding_window": false,
104
+ "vision_token_id": 151654,
105
+ "vocab_size": 151936
106
+ },
107
+ "transformers_version": "4.57.0",
108
+ "use_cache": true,
109
+ "use_sliding_window": false,
110
+ "video_token_id": 151656,
111
+ "vision_config": {
112
+ "depth": 32,
113
+ "dtype": "bfloat16",
114
+ "fullatt_block_indexes": [
115
+ 7,
116
+ 15,
117
+ 23,
118
+ 31
119
+ ],
120
+ "hidden_act": "silu",
121
+ "hidden_size": 1280,
122
+ "in_channels": 3,
123
+ "in_chans": 3,
124
+ "initializer_range": 0.02,
125
+ "intermediate_size": 3420,
126
+ "model_type": "qwen2_5_vl",
127
+ "num_heads": 16,
128
+ "out_hidden_size": 2048,
129
+ "patch_size": 14,
130
+ "spatial_merge_size": 2,
131
+ "spatial_patch_size": 14,
132
+ "temporal_patch_size": 2,
133
+ "tokens_per_second": 2,
134
+ "window_size": 112
135
+ },
136
+ "vision_end_token_id": 151653,
137
+ "vision_start_token_id": 151652,
138
+ "vision_token_id": 151654,
139
+ "vocab_size": 151936
140
+ }
generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151643
6
+ ],
7
+ "pad_token_id": 151643,
8
+ "repetition_penalty": 1.05,
9
+ "temperature": 1e-06,
10
+ "transformers_version": "4.57.0"
11
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc1cd7ab8c3cf27807c5d65dab1a6b310506756e537d4496b0d1c5d23a78f0f5
3
+ size 4997750760
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1314071e286edcf09964c391c9f4f0f2e20900bd287ad8fc7a1ba02f17236273
3
+ size 2511587184
model.safetensors.index.json ADDED
@@ -0,0 +1,832 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 755712,
4
+ "total_size": 7509245952
5
+ },
6
+ "weight_map": {
7
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
16
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
26
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
29
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
31
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.10.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
38
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.10.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
41
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.10.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
43
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.11.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
50
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.11.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
53
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.11.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
55
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.12.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
62
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.12.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
65
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.12.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
67
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.13.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
74
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.13.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
77
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.13.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
79
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.14.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
86
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.14.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
89
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.14.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
91
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.15.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
98
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.15.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
101
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.15.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
103
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
109
+ "model.layers.16.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
110
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
112
+ "model.layers.16.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
113
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
114
+ "model.layers.16.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
115
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
116
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
117
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.17.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
122
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.17.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
125
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
126
+ "model.layers.17.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
127
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
128
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
129
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
130
+ "model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
131
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
132
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
133
+ "model.layers.18.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
134
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
135
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
136
+ "model.layers.18.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
137
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
138
+ "model.layers.18.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
139
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
140
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00002.safetensors",
141
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
142
+ "model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
143
+ "model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
144
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
145
+ "model.layers.19.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
146
+ "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
147
+ "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
148
+ "model.layers.19.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
149
+ "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
150
+ "model.layers.19.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
151
+ "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
152
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
153
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
154
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
155
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
156
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
157
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
158
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
160
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
161
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
162
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
163
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
164
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00002.safetensors",
165
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
166
+ "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
167
+ "model.layers.20.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
168
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
169
+ "model.layers.20.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
170
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
171
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
172
+ "model.layers.20.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
173
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
174
+ "model.layers.20.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
175
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
176
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
177
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
178
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
179
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
180
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
181
+ "model.layers.21.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
182
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
183
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
184
+ "model.layers.21.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
185
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
186
+ "model.layers.21.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
187
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
188
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
189
+ "model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
190
+ "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
191
+ "model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
192
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
193
+ "model.layers.22.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
194
+ "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
195
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
196
+ "model.layers.22.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
197
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
198
+ "model.layers.22.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
199
+ "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
200
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
201
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
202
+ "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
203
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
204
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
205
+ "model.layers.23.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
206
+ "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
207
+ "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
208
+ "model.layers.23.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
209
+ "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
210
+ "model.layers.23.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
211
+ "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
212
+ "model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
213
+ "model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
214
+ "model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
215
+ "model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
216
+ "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
217
+ "model.layers.24.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
218
+ "model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
219
+ "model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
220
+ "model.layers.24.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
221
+ "model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
222
+ "model.layers.24.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
223
+ "model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
224
+ "model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
225
+ "model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
226
+ "model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
227
+ "model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
228
+ "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
229
+ "model.layers.25.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
230
+ "model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
231
+ "model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
232
+ "model.layers.25.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
233
+ "model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
234
+ "model.layers.25.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
235
+ "model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
236
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
237
+ "model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
238
+ "model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
239
+ "model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
240
+ "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
241
+ "model.layers.26.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
242
+ "model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
243
+ "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
244
+ "model.layers.26.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
245
+ "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
246
+ "model.layers.26.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
247
+ "model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
248
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
249
+ "model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
250
+ "model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
251
+ "model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
252
+ "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
253
+ "model.layers.27.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
254
+ "model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
255
+ "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
256
+ "model.layers.27.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
257
+ "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
258
+ "model.layers.27.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
259
+ "model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
260
+ "model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
261
+ "model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
262
+ "model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
263
+ "model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
264
+ "model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
265
+ "model.layers.28.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
266
+ "model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
267
+ "model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
268
+ "model.layers.28.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
269
+ "model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
270
+ "model.layers.28.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
271
+ "model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
272
+ "model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
273
+ "model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
274
+ "model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
275
+ "model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
276
+ "model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
277
+ "model.layers.29.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
278
+ "model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
279
+ "model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
280
+ "model.layers.29.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
281
+ "model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
282
+ "model.layers.29.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
283
+ "model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
284
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
285
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
286
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
287
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
288
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
289
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
290
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
291
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
292
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
293
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
294
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
295
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
296
+ "model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
297
+ "model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
298
+ "model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
299
+ "model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
300
+ "model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
301
+ "model.layers.30.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
302
+ "model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
303
+ "model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
304
+ "model.layers.30.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
305
+ "model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
306
+ "model.layers.30.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
307
+ "model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
308
+ "model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
309
+ "model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
310
+ "model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
311
+ "model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
312
+ "model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
313
+ "model.layers.31.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
314
+ "model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
315
+ "model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
316
+ "model.layers.31.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
317
+ "model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
318
+ "model.layers.31.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
319
+ "model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
320
+ "model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
321
+ "model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
322
+ "model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
323
+ "model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
324
+ "model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
325
+ "model.layers.32.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
326
+ "model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
327
+ "model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
328
+ "model.layers.32.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
329
+ "model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
330
+ "model.layers.32.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
331
+ "model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
332
+ "model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
333
+ "model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
334
+ "model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
335
+ "model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
336
+ "model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
337
+ "model.layers.33.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
338
+ "model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
339
+ "model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
340
+ "model.layers.33.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
341
+ "model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
342
+ "model.layers.33.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
343
+ "model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
344
+ "model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
345
+ "model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
346
+ "model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
347
+ "model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
348
+ "model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
349
+ "model.layers.34.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
350
+ "model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
351
+ "model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
352
+ "model.layers.34.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
353
+ "model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
354
+ "model.layers.34.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
355
+ "model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
356
+ "model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
357
+ "model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
358
+ "model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
359
+ "model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
360
+ "model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
361
+ "model.layers.35.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
362
+ "model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
363
+ "model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
364
+ "model.layers.35.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
365
+ "model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
366
+ "model.layers.35.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
367
+ "model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
368
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
369
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
370
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
371
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
372
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
373
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
374
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
375
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
376
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
377
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
378
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
379
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
380
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
381
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
382
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
383
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
384
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
385
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
386
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
387
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
388
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
389
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
390
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
391
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
392
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
393
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
394
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
395
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
396
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
397
+ "model.layers.6.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
398
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
399
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
400
+ "model.layers.6.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
401
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
402
+ "model.layers.6.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
403
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
404
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
405
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
406
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
407
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
408
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
409
+ "model.layers.7.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
410
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
411
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
412
+ "model.layers.7.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
413
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
414
+ "model.layers.7.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
415
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
416
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
417
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
418
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
419
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
420
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
421
+ "model.layers.8.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
422
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
423
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
424
+ "model.layers.8.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
425
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
426
+ "model.layers.8.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
427
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
428
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
429
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
430
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
431
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
432
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
433
+ "model.layers.9.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
434
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
435
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
436
+ "model.layers.9.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
437
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
438
+ "model.layers.9.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
439
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
440
+ "model.norm.weight": "model-00002-of-00002.safetensors",
441
+ "visual.blocks.0.attn.proj.bias": "model-00001-of-00002.safetensors",
442
+ "visual.blocks.0.attn.proj.weight": "model-00001-of-00002.safetensors",
443
+ "visual.blocks.0.attn.qkv.bias": "model-00001-of-00002.safetensors",
444
+ "visual.blocks.0.attn.qkv.weight": "model-00001-of-00002.safetensors",
445
+ "visual.blocks.0.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
446
+ "visual.blocks.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
447
+ "visual.blocks.0.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
448
+ "visual.blocks.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
449
+ "visual.blocks.0.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
450
+ "visual.blocks.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
451
+ "visual.blocks.0.norm1.weight": "model-00001-of-00002.safetensors",
452
+ "visual.blocks.0.norm2.weight": "model-00001-of-00002.safetensors",
453
+ "visual.blocks.1.attn.proj.bias": "model-00001-of-00002.safetensors",
454
+ "visual.blocks.1.attn.proj.weight": "model-00001-of-00002.safetensors",
455
+ "visual.blocks.1.attn.qkv.bias": "model-00001-of-00002.safetensors",
456
+ "visual.blocks.1.attn.qkv.weight": "model-00001-of-00002.safetensors",
457
+ "visual.blocks.1.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
458
+ "visual.blocks.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
459
+ "visual.blocks.1.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
460
+ "visual.blocks.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
461
+ "visual.blocks.1.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
462
+ "visual.blocks.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
463
+ "visual.blocks.1.norm1.weight": "model-00001-of-00002.safetensors",
464
+ "visual.blocks.1.norm2.weight": "model-00001-of-00002.safetensors",
465
+ "visual.blocks.10.attn.proj.bias": "model-00001-of-00002.safetensors",
466
+ "visual.blocks.10.attn.proj.weight": "model-00001-of-00002.safetensors",
467
+ "visual.blocks.10.attn.qkv.bias": "model-00001-of-00002.safetensors",
468
+ "visual.blocks.10.attn.qkv.weight": "model-00001-of-00002.safetensors",
469
+ "visual.blocks.10.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
470
+ "visual.blocks.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
471
+ "visual.blocks.10.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
472
+ "visual.blocks.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
473
+ "visual.blocks.10.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
474
+ "visual.blocks.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
475
+ "visual.blocks.10.norm1.weight": "model-00001-of-00002.safetensors",
476
+ "visual.blocks.10.norm2.weight": "model-00001-of-00002.safetensors",
477
+ "visual.blocks.11.attn.proj.bias": "model-00001-of-00002.safetensors",
478
+ "visual.blocks.11.attn.proj.weight": "model-00001-of-00002.safetensors",
479
+ "visual.blocks.11.attn.qkv.bias": "model-00001-of-00002.safetensors",
480
+ "visual.blocks.11.attn.qkv.weight": "model-00001-of-00002.safetensors",
481
+ "visual.blocks.11.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
482
+ "visual.blocks.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
483
+ "visual.blocks.11.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
484
+ "visual.blocks.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
485
+ "visual.blocks.11.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
486
+ "visual.blocks.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
487
+ "visual.blocks.11.norm1.weight": "model-00001-of-00002.safetensors",
488
+ "visual.blocks.11.norm2.weight": "model-00001-of-00002.safetensors",
489
+ "visual.blocks.12.attn.proj.bias": "model-00001-of-00002.safetensors",
490
+ "visual.blocks.12.attn.proj.weight": "model-00001-of-00002.safetensors",
491
+ "visual.blocks.12.attn.qkv.bias": "model-00001-of-00002.safetensors",
492
+ "visual.blocks.12.attn.qkv.weight": "model-00001-of-00002.safetensors",
493
+ "visual.blocks.12.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
494
+ "visual.blocks.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
495
+ "visual.blocks.12.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
496
+ "visual.blocks.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
497
+ "visual.blocks.12.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
498
+ "visual.blocks.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
499
+ "visual.blocks.12.norm1.weight": "model-00001-of-00002.safetensors",
500
+ "visual.blocks.12.norm2.weight": "model-00001-of-00002.safetensors",
501
+ "visual.blocks.13.attn.proj.bias": "model-00001-of-00002.safetensors",
502
+ "visual.blocks.13.attn.proj.weight": "model-00001-of-00002.safetensors",
503
+ "visual.blocks.13.attn.qkv.bias": "model-00001-of-00002.safetensors",
504
+ "visual.blocks.13.attn.qkv.weight": "model-00001-of-00002.safetensors",
505
+ "visual.blocks.13.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
506
+ "visual.blocks.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
507
+ "visual.blocks.13.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
508
+ "visual.blocks.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
509
+ "visual.blocks.13.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
510
+ "visual.blocks.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
511
+ "visual.blocks.13.norm1.weight": "model-00001-of-00002.safetensors",
512
+ "visual.blocks.13.norm2.weight": "model-00001-of-00002.safetensors",
513
+ "visual.blocks.14.attn.proj.bias": "model-00001-of-00002.safetensors",
514
+ "visual.blocks.14.attn.proj.weight": "model-00001-of-00002.safetensors",
515
+ "visual.blocks.14.attn.qkv.bias": "model-00001-of-00002.safetensors",
516
+ "visual.blocks.14.attn.qkv.weight": "model-00001-of-00002.safetensors",
517
+ "visual.blocks.14.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
518
+ "visual.blocks.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
519
+ "visual.blocks.14.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
520
+ "visual.blocks.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
521
+ "visual.blocks.14.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
522
+ "visual.blocks.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
523
+ "visual.blocks.14.norm1.weight": "model-00001-of-00002.safetensors",
524
+ "visual.blocks.14.norm2.weight": "model-00001-of-00002.safetensors",
525
+ "visual.blocks.15.attn.proj.bias": "model-00001-of-00002.safetensors",
526
+ "visual.blocks.15.attn.proj.weight": "model-00001-of-00002.safetensors",
527
+ "visual.blocks.15.attn.qkv.bias": "model-00001-of-00002.safetensors",
528
+ "visual.blocks.15.attn.qkv.weight": "model-00001-of-00002.safetensors",
529
+ "visual.blocks.15.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
530
+ "visual.blocks.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
531
+ "visual.blocks.15.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
532
+ "visual.blocks.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
533
+ "visual.blocks.15.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
534
+ "visual.blocks.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
535
+ "visual.blocks.15.norm1.weight": "model-00001-of-00002.safetensors",
536
+ "visual.blocks.15.norm2.weight": "model-00001-of-00002.safetensors",
537
+ "visual.blocks.16.attn.proj.bias": "model-00001-of-00002.safetensors",
538
+ "visual.blocks.16.attn.proj.weight": "model-00001-of-00002.safetensors",
539
+ "visual.blocks.16.attn.qkv.bias": "model-00001-of-00002.safetensors",
540
+ "visual.blocks.16.attn.qkv.weight": "model-00001-of-00002.safetensors",
541
+ "visual.blocks.16.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
542
+ "visual.blocks.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
543
+ "visual.blocks.16.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
544
+ "visual.blocks.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
545
+ "visual.blocks.16.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
546
+ "visual.blocks.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
547
+ "visual.blocks.16.norm1.weight": "model-00001-of-00002.safetensors",
548
+ "visual.blocks.16.norm2.weight": "model-00001-of-00002.safetensors",
549
+ "visual.blocks.17.attn.proj.bias": "model-00001-of-00002.safetensors",
550
+ "visual.blocks.17.attn.proj.weight": "model-00001-of-00002.safetensors",
551
+ "visual.blocks.17.attn.qkv.bias": "model-00001-of-00002.safetensors",
552
+ "visual.blocks.17.attn.qkv.weight": "model-00001-of-00002.safetensors",
553
+ "visual.blocks.17.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
554
+ "visual.blocks.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
555
+ "visual.blocks.17.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
556
+ "visual.blocks.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
557
+ "visual.blocks.17.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
558
+ "visual.blocks.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
559
+ "visual.blocks.17.norm1.weight": "model-00001-of-00002.safetensors",
560
+ "visual.blocks.17.norm2.weight": "model-00001-of-00002.safetensors",
561
+ "visual.blocks.18.attn.proj.bias": "model-00001-of-00002.safetensors",
562
+ "visual.blocks.18.attn.proj.weight": "model-00001-of-00002.safetensors",
563
+ "visual.blocks.18.attn.qkv.bias": "model-00001-of-00002.safetensors",
564
+ "visual.blocks.18.attn.qkv.weight": "model-00001-of-00002.safetensors",
565
+ "visual.blocks.18.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
566
+ "visual.blocks.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
567
+ "visual.blocks.18.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
568
+ "visual.blocks.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
569
+ "visual.blocks.18.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
570
+ "visual.blocks.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
571
+ "visual.blocks.18.norm1.weight": "model-00001-of-00002.safetensors",
572
+ "visual.blocks.18.norm2.weight": "model-00001-of-00002.safetensors",
573
+ "visual.blocks.19.attn.proj.bias": "model-00001-of-00002.safetensors",
574
+ "visual.blocks.19.attn.proj.weight": "model-00001-of-00002.safetensors",
575
+ "visual.blocks.19.attn.qkv.bias": "model-00001-of-00002.safetensors",
576
+ "visual.blocks.19.attn.qkv.weight": "model-00001-of-00002.safetensors",
577
+ "visual.blocks.19.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
578
+ "visual.blocks.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
579
+ "visual.blocks.19.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
580
+ "visual.blocks.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
581
+ "visual.blocks.19.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
582
+ "visual.blocks.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
583
+ "visual.blocks.19.norm1.weight": "model-00001-of-00002.safetensors",
584
+ "visual.blocks.19.norm2.weight": "model-00001-of-00002.safetensors",
585
+ "visual.blocks.2.attn.proj.bias": "model-00001-of-00002.safetensors",
586
+ "visual.blocks.2.attn.proj.weight": "model-00001-of-00002.safetensors",
587
+ "visual.blocks.2.attn.qkv.bias": "model-00001-of-00002.safetensors",
588
+ "visual.blocks.2.attn.qkv.weight": "model-00001-of-00002.safetensors",
589
+ "visual.blocks.2.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
590
+ "visual.blocks.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
591
+ "visual.blocks.2.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
592
+ "visual.blocks.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
593
+ "visual.blocks.2.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
594
+ "visual.blocks.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
595
+ "visual.blocks.2.norm1.weight": "model-00001-of-00002.safetensors",
596
+ "visual.blocks.2.norm2.weight": "model-00001-of-00002.safetensors",
597
+ "visual.blocks.20.attn.proj.bias": "model-00001-of-00002.safetensors",
598
+ "visual.blocks.20.attn.proj.weight": "model-00001-of-00002.safetensors",
599
+ "visual.blocks.20.attn.qkv.bias": "model-00001-of-00002.safetensors",
600
+ "visual.blocks.20.attn.qkv.weight": "model-00001-of-00002.safetensors",
601
+ "visual.blocks.20.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
602
+ "visual.blocks.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
603
+ "visual.blocks.20.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
604
+ "visual.blocks.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
605
+ "visual.blocks.20.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
606
+ "visual.blocks.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
607
+ "visual.blocks.20.norm1.weight": "model-00001-of-00002.safetensors",
608
+ "visual.blocks.20.norm2.weight": "model-00001-of-00002.safetensors",
609
+ "visual.blocks.21.attn.proj.bias": "model-00001-of-00002.safetensors",
610
+ "visual.blocks.21.attn.proj.weight": "model-00001-of-00002.safetensors",
611
+ "visual.blocks.21.attn.qkv.bias": "model-00001-of-00002.safetensors",
612
+ "visual.blocks.21.attn.qkv.weight": "model-00001-of-00002.safetensors",
613
+ "visual.blocks.21.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
614
+ "visual.blocks.21.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
615
+ "visual.blocks.21.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
616
+ "visual.blocks.21.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
617
+ "visual.blocks.21.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
618
+ "visual.blocks.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
619
+ "visual.blocks.21.norm1.weight": "model-00001-of-00002.safetensors",
620
+ "visual.blocks.21.norm2.weight": "model-00001-of-00002.safetensors",
621
+ "visual.blocks.22.attn.proj.bias": "model-00001-of-00002.safetensors",
622
+ "visual.blocks.22.attn.proj.weight": "model-00001-of-00002.safetensors",
623
+ "visual.blocks.22.attn.qkv.bias": "model-00001-of-00002.safetensors",
624
+ "visual.blocks.22.attn.qkv.weight": "model-00001-of-00002.safetensors",
625
+ "visual.blocks.22.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
626
+ "visual.blocks.22.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
627
+ "visual.blocks.22.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
628
+ "visual.blocks.22.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
629
+ "visual.blocks.22.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
630
+ "visual.blocks.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
631
+ "visual.blocks.22.norm1.weight": "model-00001-of-00002.safetensors",
632
+ "visual.blocks.22.norm2.weight": "model-00001-of-00002.safetensors",
633
+ "visual.blocks.23.attn.proj.bias": "model-00001-of-00002.safetensors",
634
+ "visual.blocks.23.attn.proj.weight": "model-00001-of-00002.safetensors",
635
+ "visual.blocks.23.attn.qkv.bias": "model-00001-of-00002.safetensors",
636
+ "visual.blocks.23.attn.qkv.weight": "model-00001-of-00002.safetensors",
637
+ "visual.blocks.23.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
638
+ "visual.blocks.23.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
639
+ "visual.blocks.23.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
640
+ "visual.blocks.23.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
641
+ "visual.blocks.23.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
642
+ "visual.blocks.23.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
643
+ "visual.blocks.23.norm1.weight": "model-00001-of-00002.safetensors",
644
+ "visual.blocks.23.norm2.weight": "model-00001-of-00002.safetensors",
645
+ "visual.blocks.24.attn.proj.bias": "model-00001-of-00002.safetensors",
646
+ "visual.blocks.24.attn.proj.weight": "model-00001-of-00002.safetensors",
647
+ "visual.blocks.24.attn.qkv.bias": "model-00001-of-00002.safetensors",
648
+ "visual.blocks.24.attn.qkv.weight": "model-00001-of-00002.safetensors",
649
+ "visual.blocks.24.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
650
+ "visual.blocks.24.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
651
+ "visual.blocks.24.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
652
+ "visual.blocks.24.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
653
+ "visual.blocks.24.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
654
+ "visual.blocks.24.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
655
+ "visual.blocks.24.norm1.weight": "model-00001-of-00002.safetensors",
656
+ "visual.blocks.24.norm2.weight": "model-00001-of-00002.safetensors",
657
+ "visual.blocks.25.attn.proj.bias": "model-00001-of-00002.safetensors",
658
+ "visual.blocks.25.attn.proj.weight": "model-00001-of-00002.safetensors",
659
+ "visual.blocks.25.attn.qkv.bias": "model-00001-of-00002.safetensors",
660
+ "visual.blocks.25.attn.qkv.weight": "model-00001-of-00002.safetensors",
661
+ "visual.blocks.25.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
662
+ "visual.blocks.25.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
663
+ "visual.blocks.25.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
664
+ "visual.blocks.25.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
665
+ "visual.blocks.25.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
666
+ "visual.blocks.25.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
667
+ "visual.blocks.25.norm1.weight": "model-00001-of-00002.safetensors",
668
+ "visual.blocks.25.norm2.weight": "model-00001-of-00002.safetensors",
669
+ "visual.blocks.26.attn.proj.bias": "model-00001-of-00002.safetensors",
670
+ "visual.blocks.26.attn.proj.weight": "model-00001-of-00002.safetensors",
671
+ "visual.blocks.26.attn.qkv.bias": "model-00001-of-00002.safetensors",
672
+ "visual.blocks.26.attn.qkv.weight": "model-00001-of-00002.safetensors",
673
+ "visual.blocks.26.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
674
+ "visual.blocks.26.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
675
+ "visual.blocks.26.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
676
+ "visual.blocks.26.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
677
+ "visual.blocks.26.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
678
+ "visual.blocks.26.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
679
+ "visual.blocks.26.norm1.weight": "model-00001-of-00002.safetensors",
680
+ "visual.blocks.26.norm2.weight": "model-00001-of-00002.safetensors",
681
+ "visual.blocks.27.attn.proj.bias": "model-00001-of-00002.safetensors",
682
+ "visual.blocks.27.attn.proj.weight": "model-00001-of-00002.safetensors",
683
+ "visual.blocks.27.attn.qkv.bias": "model-00001-of-00002.safetensors",
684
+ "visual.blocks.27.attn.qkv.weight": "model-00001-of-00002.safetensors",
685
+ "visual.blocks.27.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
686
+ "visual.blocks.27.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
687
+ "visual.blocks.27.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
688
+ "visual.blocks.27.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
689
+ "visual.blocks.27.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
690
+ "visual.blocks.27.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
691
+ "visual.blocks.27.norm1.weight": "model-00001-of-00002.safetensors",
692
+ "visual.blocks.27.norm2.weight": "model-00001-of-00002.safetensors",
693
+ "visual.blocks.28.attn.proj.bias": "model-00001-of-00002.safetensors",
694
+ "visual.blocks.28.attn.proj.weight": "model-00001-of-00002.safetensors",
695
+ "visual.blocks.28.attn.qkv.bias": "model-00001-of-00002.safetensors",
696
+ "visual.blocks.28.attn.qkv.weight": "model-00001-of-00002.safetensors",
697
+ "visual.blocks.28.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
698
+ "visual.blocks.28.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
699
+ "visual.blocks.28.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
700
+ "visual.blocks.28.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
701
+ "visual.blocks.28.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
702
+ "visual.blocks.28.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
703
+ "visual.blocks.28.norm1.weight": "model-00001-of-00002.safetensors",
704
+ "visual.blocks.28.norm2.weight": "model-00001-of-00002.safetensors",
705
+ "visual.blocks.29.attn.proj.bias": "model-00001-of-00002.safetensors",
706
+ "visual.blocks.29.attn.proj.weight": "model-00001-of-00002.safetensors",
707
+ "visual.blocks.29.attn.qkv.bias": "model-00001-of-00002.safetensors",
708
+ "visual.blocks.29.attn.qkv.weight": "model-00001-of-00002.safetensors",
709
+ "visual.blocks.29.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
710
+ "visual.blocks.29.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
711
+ "visual.blocks.29.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
712
+ "visual.blocks.29.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
713
+ "visual.blocks.29.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
714
+ "visual.blocks.29.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
715
+ "visual.blocks.29.norm1.weight": "model-00001-of-00002.safetensors",
716
+ "visual.blocks.29.norm2.weight": "model-00001-of-00002.safetensors",
717
+ "visual.blocks.3.attn.proj.bias": "model-00001-of-00002.safetensors",
718
+ "visual.blocks.3.attn.proj.weight": "model-00001-of-00002.safetensors",
719
+ "visual.blocks.3.attn.qkv.bias": "model-00001-of-00002.safetensors",
720
+ "visual.blocks.3.attn.qkv.weight": "model-00001-of-00002.safetensors",
721
+ "visual.blocks.3.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
722
+ "visual.blocks.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
723
+ "visual.blocks.3.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
724
+ "visual.blocks.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
725
+ "visual.blocks.3.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
726
+ "visual.blocks.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
727
+ "visual.blocks.3.norm1.weight": "model-00001-of-00002.safetensors",
728
+ "visual.blocks.3.norm2.weight": "model-00001-of-00002.safetensors",
729
+ "visual.blocks.30.attn.proj.bias": "model-00001-of-00002.safetensors",
730
+ "visual.blocks.30.attn.proj.weight": "model-00001-of-00002.safetensors",
731
+ "visual.blocks.30.attn.qkv.bias": "model-00001-of-00002.safetensors",
732
+ "visual.blocks.30.attn.qkv.weight": "model-00001-of-00002.safetensors",
733
+ "visual.blocks.30.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
734
+ "visual.blocks.30.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
735
+ "visual.blocks.30.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
736
+ "visual.blocks.30.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
737
+ "visual.blocks.30.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
738
+ "visual.blocks.30.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
739
+ "visual.blocks.30.norm1.weight": "model-00001-of-00002.safetensors",
740
+ "visual.blocks.30.norm2.weight": "model-00001-of-00002.safetensors",
741
+ "visual.blocks.31.attn.proj.bias": "model-00001-of-00002.safetensors",
742
+ "visual.blocks.31.attn.proj.weight": "model-00001-of-00002.safetensors",
743
+ "visual.blocks.31.attn.qkv.bias": "model-00001-of-00002.safetensors",
744
+ "visual.blocks.31.attn.qkv.weight": "model-00001-of-00002.safetensors",
745
+ "visual.blocks.31.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
746
+ "visual.blocks.31.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
747
+ "visual.blocks.31.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
748
+ "visual.blocks.31.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
749
+ "visual.blocks.31.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
750
+ "visual.blocks.31.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
751
+ "visual.blocks.31.norm1.weight": "model-00001-of-00002.safetensors",
752
+ "visual.blocks.31.norm2.weight": "model-00001-of-00002.safetensors",
753
+ "visual.blocks.4.attn.proj.bias": "model-00001-of-00002.safetensors",
754
+ "visual.blocks.4.attn.proj.weight": "model-00001-of-00002.safetensors",
755
+ "visual.blocks.4.attn.qkv.bias": "model-00001-of-00002.safetensors",
756
+ "visual.blocks.4.attn.qkv.weight": "model-00001-of-00002.safetensors",
757
+ "visual.blocks.4.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
758
+ "visual.blocks.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
759
+ "visual.blocks.4.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
760
+ "visual.blocks.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
761
+ "visual.blocks.4.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
762
+ "visual.blocks.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
763
+ "visual.blocks.4.norm1.weight": "model-00001-of-00002.safetensors",
764
+ "visual.blocks.4.norm2.weight": "model-00001-of-00002.safetensors",
765
+ "visual.blocks.5.attn.proj.bias": "model-00001-of-00002.safetensors",
766
+ "visual.blocks.5.attn.proj.weight": "model-00001-of-00002.safetensors",
767
+ "visual.blocks.5.attn.qkv.bias": "model-00001-of-00002.safetensors",
768
+ "visual.blocks.5.attn.qkv.weight": "model-00001-of-00002.safetensors",
769
+ "visual.blocks.5.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
770
+ "visual.blocks.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
771
+ "visual.blocks.5.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
772
+ "visual.blocks.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
773
+ "visual.blocks.5.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
774
+ "visual.blocks.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
775
+ "visual.blocks.5.norm1.weight": "model-00001-of-00002.safetensors",
776
+ "visual.blocks.5.norm2.weight": "model-00001-of-00002.safetensors",
777
+ "visual.blocks.6.attn.proj.bias": "model-00001-of-00002.safetensors",
778
+ "visual.blocks.6.attn.proj.weight": "model-00001-of-00002.safetensors",
779
+ "visual.blocks.6.attn.qkv.bias": "model-00001-of-00002.safetensors",
780
+ "visual.blocks.6.attn.qkv.weight": "model-00001-of-00002.safetensors",
781
+ "visual.blocks.6.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
782
+ "visual.blocks.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
783
+ "visual.blocks.6.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
784
+ "visual.blocks.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
785
+ "visual.blocks.6.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
786
+ "visual.blocks.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
787
+ "visual.blocks.6.norm1.weight": "model-00001-of-00002.safetensors",
788
+ "visual.blocks.6.norm2.weight": "model-00001-of-00002.safetensors",
789
+ "visual.blocks.7.attn.proj.bias": "model-00001-of-00002.safetensors",
790
+ "visual.blocks.7.attn.proj.weight": "model-00001-of-00002.safetensors",
791
+ "visual.blocks.7.attn.qkv.bias": "model-00001-of-00002.safetensors",
792
+ "visual.blocks.7.attn.qkv.weight": "model-00001-of-00002.safetensors",
793
+ "visual.blocks.7.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
794
+ "visual.blocks.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
795
+ "visual.blocks.7.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
796
+ "visual.blocks.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
797
+ "visual.blocks.7.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
798
+ "visual.blocks.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
799
+ "visual.blocks.7.norm1.weight": "model-00001-of-00002.safetensors",
800
+ "visual.blocks.7.norm2.weight": "model-00001-of-00002.safetensors",
801
+ "visual.blocks.8.attn.proj.bias": "model-00001-of-00002.safetensors",
802
+ "visual.blocks.8.attn.proj.weight": "model-00001-of-00002.safetensors",
803
+ "visual.blocks.8.attn.qkv.bias": "model-00001-of-00002.safetensors",
804
+ "visual.blocks.8.attn.qkv.weight": "model-00001-of-00002.safetensors",
805
+ "visual.blocks.8.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
806
+ "visual.blocks.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
807
+ "visual.blocks.8.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
808
+ "visual.blocks.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
809
+ "visual.blocks.8.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
810
+ "visual.blocks.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
811
+ "visual.blocks.8.norm1.weight": "model-00001-of-00002.safetensors",
812
+ "visual.blocks.8.norm2.weight": "model-00001-of-00002.safetensors",
813
+ "visual.blocks.9.attn.proj.bias": "model-00001-of-00002.safetensors",
814
+ "visual.blocks.9.attn.proj.weight": "model-00001-of-00002.safetensors",
815
+ "visual.blocks.9.attn.qkv.bias": "model-00001-of-00002.safetensors",
816
+ "visual.blocks.9.attn.qkv.weight": "model-00001-of-00002.safetensors",
817
+ "visual.blocks.9.mlp.down_proj.bias": "model-00001-of-00002.safetensors",
818
+ "visual.blocks.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
819
+ "visual.blocks.9.mlp.gate_proj.bias": "model-00001-of-00002.safetensors",
820
+ "visual.blocks.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
821
+ "visual.blocks.9.mlp.up_proj.bias": "model-00001-of-00002.safetensors",
822
+ "visual.blocks.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
823
+ "visual.blocks.9.norm1.weight": "model-00001-of-00002.safetensors",
824
+ "visual.blocks.9.norm2.weight": "model-00001-of-00002.safetensors",
825
+ "visual.merger.ln_q.weight": "model-00001-of-00002.safetensors",
826
+ "visual.merger.mlp.0.bias": "model-00001-of-00002.safetensors",
827
+ "visual.merger.mlp.0.weight": "model-00001-of-00002.safetensors",
828
+ "visual.merger.mlp.2.bias": "model-00001-of-00002.safetensors",
829
+ "visual.merger.mlp.2.weight": "model-00001-of-00002.safetensors",
830
+ "visual.patch_embed.proj.weight": "model-00001-of-00002.safetensors"
831
+ }
832
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "disable_grouping": null,
7
+ "do_center_crop": null,
8
+ "do_convert_rgb": true,
9
+ "do_normalize": true,
10
+ "do_pad": null,
11
+ "do_rescale": true,
12
+ "do_resize": true,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_processor_type": "Qwen2VLImageProcessorFast",
19
+ "image_std": [
20
+ 0.26862954,
21
+ 0.26130258,
22
+ 0.27577711
23
+ ],
24
+ "input_data_format": null,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_pixels": 3136,
28
+ "pad_size": null,
29
+ "patch_size": 14,
30
+ "processor_class": "Qwen2_5_VLProcessor",
31
+ "resample": 3,
32
+ "rescale_factor": 0.00392156862745098,
33
+ "return_tensors": null,
34
+ "size": {
35
+ "longest_edge": 12845056,
36
+ "shortest_edge": 3136
37
+ },
38
+ "temporal_patch_size": 2
39
+ }
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:bc08b7d67e4d66a892b4c4a9e6aba0ed948b6bcc2a19d977ffca0f31125120be
3
+ size 11422164
tokenizer_config.json ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "clean_up_tokenization_spaces": false,
199
+ "eos_token": "<|im_end|>",
200
+ "errors": "replace",
201
+ "extra_special_tokens": {},
202
+ "max_length": 3072,
203
+ "model_max_length": 131072,
204
+ "pad_to_multiple_of": null,
205
+ "pad_token": "<|endoftext|>",
206
+ "pad_token_type_id": 0,
207
+ "padding_side": "right",
208
+ "processor_class": "Qwen2_5_VLProcessor",
209
+ "split_special_tokens": false,
210
+ "stride": 0,
211
+ "tokenizer_class": "Qwen2Tokenizer",
212
+ "truncation_side": "right",
213
+ "truncation_strategy": "longest_first",
214
+ "unk_token": null
215
+ }
trainer_state.json ADDED
@@ -0,0 +1,1506 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.125,
6
+ "eval_steps": 500,
7
+ "global_step": 2080,
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,
14
+ "eval_loss": 0.5193641781806946,
15
+ "eval_runtime": 15.6757,
16
+ "eval_samples_per_second": 2.041,
17
+ "eval_steps_per_second": 0.255,
18
+ "step": 0
19
+ },
20
+ {
21
+ "epoch": 0.0006009615384615385,
22
+ "grad_norm": 55.403633140710234,
23
+ "learning_rate": 9e-09,
24
+ "loss": 0.5113,
25
+ "step": 10
26
+ },
27
+ {
28
+ "epoch": 0.001201923076923077,
29
+ "grad_norm": 23.47426110450185,
30
+ "learning_rate": 1.8999999999999998e-08,
31
+ "loss": 0.4385,
32
+ "step": 20
33
+ },
34
+ {
35
+ "epoch": 0.0018028846153846155,
36
+ "grad_norm": 10.224385416254647,
37
+ "learning_rate": 2.9e-08,
38
+ "loss": 0.4586,
39
+ "step": 30
40
+ },
41
+ {
42
+ "epoch": 0.002403846153846154,
43
+ "grad_norm": 20.74032508741799,
44
+ "learning_rate": 3.9e-08,
45
+ "loss": 0.4234,
46
+ "step": 40
47
+ },
48
+ {
49
+ "epoch": 0.0030048076923076925,
50
+ "grad_norm": 21.168707763774822,
51
+ "learning_rate": 4.9e-08,
52
+ "loss": 0.526,
53
+ "step": 50
54
+ },
55
+ {
56
+ "epoch": 0.003605769230769231,
57
+ "grad_norm": 22.648636815908606,
58
+ "learning_rate": 5.899999999999999e-08,
59
+ "loss": 0.5596,
60
+ "step": 60
61
+ },
62
+ {
63
+ "epoch": 0.004206730769230769,
64
+ "grad_norm": 13.508051762249275,
65
+ "learning_rate": 6.900000000000001e-08,
66
+ "loss": 0.4981,
67
+ "step": 70
68
+ },
69
+ {
70
+ "epoch": 0.004807692307692308,
71
+ "grad_norm": 23.403551137207025,
72
+ "learning_rate": 7.899999999999999e-08,
73
+ "loss": 0.5008,
74
+ "step": 80
75
+ },
76
+ {
77
+ "epoch": 0.005408653846153846,
78
+ "grad_norm": 48.6142950712791,
79
+ "learning_rate": 8.899999999999999e-08,
80
+ "loss": 0.4585,
81
+ "step": 90
82
+ },
83
+ {
84
+ "epoch": 0.006009615384615385,
85
+ "grad_norm": 8.884428417822688,
86
+ "learning_rate": 9.9e-08,
87
+ "loss": 0.4388,
88
+ "step": 100
89
+ },
90
+ {
91
+ "epoch": 0.006610576923076923,
92
+ "grad_norm": 9.705307595727518,
93
+ "learning_rate": 1.09e-07,
94
+ "loss": 0.4471,
95
+ "step": 110
96
+ },
97
+ {
98
+ "epoch": 0.007211538461538462,
99
+ "grad_norm": 30.306963311413714,
100
+ "learning_rate": 1.19e-07,
101
+ "loss": 0.4293,
102
+ "step": 120
103
+ },
104
+ {
105
+ "epoch": 0.0078125,
106
+ "grad_norm": 14.67235522750005,
107
+ "learning_rate": 1.29e-07,
108
+ "loss": 0.4955,
109
+ "step": 130
110
+ },
111
+ {
112
+ "epoch": 0.008413461538461538,
113
+ "grad_norm": 41.261340367060896,
114
+ "learning_rate": 1.3900000000000001e-07,
115
+ "loss": 0.5347,
116
+ "step": 140
117
+ },
118
+ {
119
+ "epoch": 0.009014423076923076,
120
+ "grad_norm": 28.145775622131612,
121
+ "learning_rate": 1.49e-07,
122
+ "loss": 0.4671,
123
+ "step": 150
124
+ },
125
+ {
126
+ "epoch": 0.009615384615384616,
127
+ "grad_norm": 13.92342254703078,
128
+ "learning_rate": 1.59e-07,
129
+ "loss": 0.4318,
130
+ "step": 160
131
+ },
132
+ {
133
+ "epoch": 0.010216346153846154,
134
+ "grad_norm": 42.72542828466139,
135
+ "learning_rate": 1.69e-07,
136
+ "loss": 0.4232,
137
+ "step": 170
138
+ },
139
+ {
140
+ "epoch": 0.010817307692307692,
141
+ "grad_norm": 18.910952118646854,
142
+ "learning_rate": 1.7899999999999997e-07,
143
+ "loss": 0.5434,
144
+ "step": 180
145
+ },
146
+ {
147
+ "epoch": 0.01141826923076923,
148
+ "grad_norm": 9.945569021169186,
149
+ "learning_rate": 1.8899999999999999e-07,
150
+ "loss": 0.5091,
151
+ "step": 190
152
+ },
153
+ {
154
+ "epoch": 0.01201923076923077,
155
+ "grad_norm": 12.064577086348633,
156
+ "learning_rate": 1.99e-07,
157
+ "loss": 0.4811,
158
+ "step": 200
159
+ },
160
+ {
161
+ "epoch": 0.012620192307692308,
162
+ "grad_norm": 21.22554429640729,
163
+ "learning_rate": 2.0899999999999998e-07,
164
+ "loss": 0.486,
165
+ "step": 210
166
+ },
167
+ {
168
+ "epoch": 0.013221153846153846,
169
+ "grad_norm": 51.114586227567436,
170
+ "learning_rate": 2.19e-07,
171
+ "loss": 0.5489,
172
+ "step": 220
173
+ },
174
+ {
175
+ "epoch": 0.013822115384615384,
176
+ "grad_norm": 33.767338939816305,
177
+ "learning_rate": 2.29e-07,
178
+ "loss": 0.5006,
179
+ "step": 230
180
+ },
181
+ {
182
+ "epoch": 0.014423076923076924,
183
+ "grad_norm": 20.989645421924674,
184
+ "learning_rate": 2.3899999999999996e-07,
185
+ "loss": 0.5026,
186
+ "step": 240
187
+ },
188
+ {
189
+ "epoch": 0.015024038461538462,
190
+ "grad_norm": 46.94572882286708,
191
+ "learning_rate": 2.4899999999999997e-07,
192
+ "loss": 0.4662,
193
+ "step": 250
194
+ },
195
+ {
196
+ "epoch": 0.015625,
197
+ "grad_norm": 16.1857675192416,
198
+ "learning_rate": 2.59e-07,
199
+ "loss": 0.4428,
200
+ "step": 260
201
+ },
202
+ {
203
+ "epoch": 0.01622596153846154,
204
+ "grad_norm": 22.356923049427976,
205
+ "learning_rate": 2.69e-07,
206
+ "loss": 0.466,
207
+ "step": 270
208
+ },
209
+ {
210
+ "epoch": 0.016826923076923076,
211
+ "grad_norm": 27.919776058404576,
212
+ "learning_rate": 2.79e-07,
213
+ "loss": 0.5299,
214
+ "step": 280
215
+ },
216
+ {
217
+ "epoch": 0.017427884615384616,
218
+ "grad_norm": 20.374817697720214,
219
+ "learning_rate": 2.8899999999999995e-07,
220
+ "loss": 0.5575,
221
+ "step": 290
222
+ },
223
+ {
224
+ "epoch": 0.018028846153846152,
225
+ "grad_norm": 11.1596095155468,
226
+ "learning_rate": 2.9899999999999996e-07,
227
+ "loss": 0.5476,
228
+ "step": 300
229
+ },
230
+ {
231
+ "epoch": 0.018629807692307692,
232
+ "grad_norm": 18.15970681497743,
233
+ "learning_rate": 3.09e-07,
234
+ "loss": 0.521,
235
+ "step": 310
236
+ },
237
+ {
238
+ "epoch": 0.019230769230769232,
239
+ "grad_norm": 7.209018602994909,
240
+ "learning_rate": 3.19e-07,
241
+ "loss": 0.4647,
242
+ "step": 320
243
+ },
244
+ {
245
+ "epoch": 0.019831730769230768,
246
+ "grad_norm": 14.837068682221664,
247
+ "learning_rate": 3.29e-07,
248
+ "loss": 0.4864,
249
+ "step": 330
250
+ },
251
+ {
252
+ "epoch": 0.020432692307692308,
253
+ "grad_norm": 14.235741132745929,
254
+ "learning_rate": 3.39e-07,
255
+ "loss": 0.4107,
256
+ "step": 340
257
+ },
258
+ {
259
+ "epoch": 0.021033653846153848,
260
+ "grad_norm": 27.277651971922182,
261
+ "learning_rate": 3.4899999999999996e-07,
262
+ "loss": 0.4536,
263
+ "step": 350
264
+ },
265
+ {
266
+ "epoch": 0.021634615384615384,
267
+ "grad_norm": 17.10480760395017,
268
+ "learning_rate": 3.5899999999999997e-07,
269
+ "loss": 0.4289,
270
+ "step": 360
271
+ },
272
+ {
273
+ "epoch": 0.022235576923076924,
274
+ "grad_norm": 29.929679141274484,
275
+ "learning_rate": 3.69e-07,
276
+ "loss": 0.4647,
277
+ "step": 370
278
+ },
279
+ {
280
+ "epoch": 0.02283653846153846,
281
+ "grad_norm": 10.398612915945172,
282
+ "learning_rate": 3.79e-07,
283
+ "loss": 0.5167,
284
+ "step": 380
285
+ },
286
+ {
287
+ "epoch": 0.0234375,
288
+ "grad_norm": 9.769808118666157,
289
+ "learning_rate": 3.89e-07,
290
+ "loss": 0.4793,
291
+ "step": 390
292
+ },
293
+ {
294
+ "epoch": 0.02403846153846154,
295
+ "grad_norm": 18.64004530242777,
296
+ "learning_rate": 3.99e-07,
297
+ "loss": 0.4865,
298
+ "step": 400
299
+ },
300
+ {
301
+ "epoch": 0.024639423076923076,
302
+ "grad_norm": 17.699474376401422,
303
+ "learning_rate": 4.0899999999999997e-07,
304
+ "loss": 0.4727,
305
+ "step": 410
306
+ },
307
+ {
308
+ "epoch": 0.025240384615384616,
309
+ "grad_norm": 11.83869387760017,
310
+ "learning_rate": 4.19e-07,
311
+ "loss": 0.4803,
312
+ "step": 420
313
+ },
314
+ {
315
+ "epoch": 0.025841346153846152,
316
+ "grad_norm": 52.6903160822148,
317
+ "learning_rate": 4.29e-07,
318
+ "loss": 0.4587,
319
+ "step": 430
320
+ },
321
+ {
322
+ "epoch": 0.026442307692307692,
323
+ "grad_norm": 8.207347232374364,
324
+ "learning_rate": 4.39e-07,
325
+ "loss": 0.4849,
326
+ "step": 440
327
+ },
328
+ {
329
+ "epoch": 0.027043269230769232,
330
+ "grad_norm": 30.073558497443987,
331
+ "learning_rate": 4.49e-07,
332
+ "loss": 0.5023,
333
+ "step": 450
334
+ },
335
+ {
336
+ "epoch": 0.027644230769230768,
337
+ "grad_norm": 10.373186832780206,
338
+ "learning_rate": 4.59e-07,
339
+ "loss": 0.4538,
340
+ "step": 460
341
+ },
342
+ {
343
+ "epoch": 0.028245192307692308,
344
+ "grad_norm": 25.960320061465094,
345
+ "learning_rate": 4.689999999999999e-07,
346
+ "loss": 0.4712,
347
+ "step": 470
348
+ },
349
+ {
350
+ "epoch": 0.028846153846153848,
351
+ "grad_norm": 12.862144045179527,
352
+ "learning_rate": 4.79e-07,
353
+ "loss": 0.4704,
354
+ "step": 480
355
+ },
356
+ {
357
+ "epoch": 0.029447115384615384,
358
+ "grad_norm": 21.599196101058833,
359
+ "learning_rate": 4.89e-07,
360
+ "loss": 0.4695,
361
+ "step": 490
362
+ },
363
+ {
364
+ "epoch": 0.030048076923076924,
365
+ "grad_norm": 26.447052889694493,
366
+ "learning_rate": 4.99e-07,
367
+ "loss": 0.4574,
368
+ "step": 500
369
+ },
370
+ {
371
+ "epoch": 0.03064903846153846,
372
+ "grad_norm": 19.343061960700307,
373
+ "learning_rate": 5.09e-07,
374
+ "loss": 0.4259,
375
+ "step": 510
376
+ },
377
+ {
378
+ "epoch": 0.03125,
379
+ "grad_norm": 55.39351897669441,
380
+ "learning_rate": 5.19e-07,
381
+ "loss": 0.4362,
382
+ "step": 520
383
+ },
384
+ {
385
+ "epoch": 0.031850961538461536,
386
+ "grad_norm": 9.138204788385957,
387
+ "learning_rate": 5.29e-07,
388
+ "loss": 0.4519,
389
+ "step": 530
390
+ },
391
+ {
392
+ "epoch": 0.03245192307692308,
393
+ "grad_norm": 9.17406599995409,
394
+ "learning_rate": 5.39e-07,
395
+ "loss": 0.4639,
396
+ "step": 540
397
+ },
398
+ {
399
+ "epoch": 0.033052884615384616,
400
+ "grad_norm": 42.607781411989706,
401
+ "learning_rate": 5.490000000000001e-07,
402
+ "loss": 0.4302,
403
+ "step": 550
404
+ },
405
+ {
406
+ "epoch": 0.03365384615384615,
407
+ "grad_norm": 10.368759637182924,
408
+ "learning_rate": 5.590000000000001e-07,
409
+ "loss": 0.4107,
410
+ "step": 560
411
+ },
412
+ {
413
+ "epoch": 0.034254807692307696,
414
+ "grad_norm": 12.31592718573613,
415
+ "learning_rate": 5.69e-07,
416
+ "loss": 0.4403,
417
+ "step": 570
418
+ },
419
+ {
420
+ "epoch": 0.03485576923076923,
421
+ "grad_norm": 13.670395980874881,
422
+ "learning_rate": 5.79e-07,
423
+ "loss": 0.4294,
424
+ "step": 580
425
+ },
426
+ {
427
+ "epoch": 0.03545673076923077,
428
+ "grad_norm": 16.653414422369462,
429
+ "learning_rate": 5.89e-07,
430
+ "loss": 0.439,
431
+ "step": 590
432
+ },
433
+ {
434
+ "epoch": 0.036057692307692304,
435
+ "grad_norm": 10.215056425825546,
436
+ "learning_rate": 5.989999999999999e-07,
437
+ "loss": 0.4069,
438
+ "step": 600
439
+ },
440
+ {
441
+ "epoch": 0.03665865384615385,
442
+ "grad_norm": 31.589724664408692,
443
+ "learning_rate": 6.089999999999999e-07,
444
+ "loss": 0.4354,
445
+ "step": 610
446
+ },
447
+ {
448
+ "epoch": 0.037259615384615384,
449
+ "grad_norm": 21.847510353862578,
450
+ "learning_rate": 6.189999999999999e-07,
451
+ "loss": 0.4638,
452
+ "step": 620
453
+ },
454
+ {
455
+ "epoch": 0.03786057692307692,
456
+ "grad_norm": 8.076334096727454,
457
+ "learning_rate": 6.289999999999999e-07,
458
+ "loss": 0.4312,
459
+ "step": 630
460
+ },
461
+ {
462
+ "epoch": 0.038461538461538464,
463
+ "grad_norm": 22.52385975163401,
464
+ "learning_rate": 6.389999999999999e-07,
465
+ "loss": 0.4364,
466
+ "step": 640
467
+ },
468
+ {
469
+ "epoch": 0.0390625,
470
+ "grad_norm": 13.204088595346095,
471
+ "learning_rate": 6.49e-07,
472
+ "loss": 0.4231,
473
+ "step": 650
474
+ },
475
+ {
476
+ "epoch": 0.039663461538461536,
477
+ "grad_norm": 33.19312446450432,
478
+ "learning_rate": 6.59e-07,
479
+ "loss": 0.4301,
480
+ "step": 660
481
+ },
482
+ {
483
+ "epoch": 0.04026442307692308,
484
+ "grad_norm": 9.715044908453299,
485
+ "learning_rate": 6.69e-07,
486
+ "loss": 0.4201,
487
+ "step": 670
488
+ },
489
+ {
490
+ "epoch": 0.040865384615384616,
491
+ "grad_norm": 10.574912363532471,
492
+ "learning_rate": 6.79e-07,
493
+ "loss": 0.4547,
494
+ "step": 680
495
+ },
496
+ {
497
+ "epoch": 0.04146634615384615,
498
+ "grad_norm": 22.39620841168723,
499
+ "learning_rate": 6.889999999999999e-07,
500
+ "loss": 0.4493,
501
+ "step": 690
502
+ },
503
+ {
504
+ "epoch": 0.042067307692307696,
505
+ "grad_norm": 8.058186609469454,
506
+ "learning_rate": 6.989999999999999e-07,
507
+ "loss": 0.3926,
508
+ "step": 700
509
+ },
510
+ {
511
+ "epoch": 0.04266826923076923,
512
+ "grad_norm": 21.022586695480996,
513
+ "learning_rate": 7.089999999999999e-07,
514
+ "loss": 0.4393,
515
+ "step": 710
516
+ },
517
+ {
518
+ "epoch": 0.04326923076923077,
519
+ "grad_norm": 12.66012747128014,
520
+ "learning_rate": 7.189999999999999e-07,
521
+ "loss": 0.4359,
522
+ "step": 720
523
+ },
524
+ {
525
+ "epoch": 0.043870192307692304,
526
+ "grad_norm": 5.937649569363215,
527
+ "learning_rate": 7.289999999999999e-07,
528
+ "loss": 0.4277,
529
+ "step": 730
530
+ },
531
+ {
532
+ "epoch": 0.04447115384615385,
533
+ "grad_norm": 16.798833074370908,
534
+ "learning_rate": 7.389999999999999e-07,
535
+ "loss": 0.446,
536
+ "step": 740
537
+ },
538
+ {
539
+ "epoch": 0.045072115384615384,
540
+ "grad_norm": 26.4182799886464,
541
+ "learning_rate": 7.489999999999999e-07,
542
+ "loss": 0.4737,
543
+ "step": 750
544
+ },
545
+ {
546
+ "epoch": 0.04567307692307692,
547
+ "grad_norm": 13.91407808362797,
548
+ "learning_rate": 7.59e-07,
549
+ "loss": 0.4796,
550
+ "step": 760
551
+ },
552
+ {
553
+ "epoch": 0.046274038461538464,
554
+ "grad_norm": 16.734955748274775,
555
+ "learning_rate": 7.69e-07,
556
+ "loss": 0.4678,
557
+ "step": 770
558
+ },
559
+ {
560
+ "epoch": 0.046875,
561
+ "grad_norm": 11.89547913614258,
562
+ "learning_rate": 7.79e-07,
563
+ "loss": 0.4536,
564
+ "step": 780
565
+ },
566
+ {
567
+ "epoch": 0.047475961538461536,
568
+ "grad_norm": 16.860857694776378,
569
+ "learning_rate": 7.89e-07,
570
+ "loss": 0.422,
571
+ "step": 790
572
+ },
573
+ {
574
+ "epoch": 0.04807692307692308,
575
+ "grad_norm": 20.294362719824335,
576
+ "learning_rate": 7.99e-07,
577
+ "loss": 0.4675,
578
+ "step": 800
579
+ },
580
+ {
581
+ "epoch": 0.048677884615384616,
582
+ "grad_norm": 32.163806042850815,
583
+ "learning_rate": 8.09e-07,
584
+ "loss": 0.4162,
585
+ "step": 810
586
+ },
587
+ {
588
+ "epoch": 0.04927884615384615,
589
+ "grad_norm": 8.835869696589675,
590
+ "learning_rate": 8.189999999999999e-07,
591
+ "loss": 0.4531,
592
+ "step": 820
593
+ },
594
+ {
595
+ "epoch": 0.049879807692307696,
596
+ "grad_norm": 27.004489539541865,
597
+ "learning_rate": 8.289999999999999e-07,
598
+ "loss": 0.46,
599
+ "step": 830
600
+ },
601
+ {
602
+ "epoch": 0.05048076923076923,
603
+ "grad_norm": 10.039120612814386,
604
+ "learning_rate": 8.389999999999999e-07,
605
+ "loss": 0.4351,
606
+ "step": 840
607
+ },
608
+ {
609
+ "epoch": 0.05108173076923077,
610
+ "grad_norm": 25.890820231883552,
611
+ "learning_rate": 8.489999999999999e-07,
612
+ "loss": 0.4477,
613
+ "step": 850
614
+ },
615
+ {
616
+ "epoch": 0.051682692307692304,
617
+ "grad_norm": 21.84065301973945,
618
+ "learning_rate": 8.59e-07,
619
+ "loss": 0.4028,
620
+ "step": 860
621
+ },
622
+ {
623
+ "epoch": 0.05228365384615385,
624
+ "grad_norm": 17.894672539322194,
625
+ "learning_rate": 8.69e-07,
626
+ "loss": 0.4231,
627
+ "step": 870
628
+ },
629
+ {
630
+ "epoch": 0.052884615384615384,
631
+ "grad_norm": 33.13377776596334,
632
+ "learning_rate": 8.79e-07,
633
+ "loss": 0.4483,
634
+ "step": 880
635
+ },
636
+ {
637
+ "epoch": 0.05348557692307692,
638
+ "grad_norm": 57.77962521420785,
639
+ "learning_rate": 8.89e-07,
640
+ "loss": 0.4528,
641
+ "step": 890
642
+ },
643
+ {
644
+ "epoch": 0.054086538461538464,
645
+ "grad_norm": 14.605643747393765,
646
+ "learning_rate": 8.99e-07,
647
+ "loss": 0.4183,
648
+ "step": 900
649
+ },
650
+ {
651
+ "epoch": 0.0546875,
652
+ "grad_norm": 30.921239622195746,
653
+ "learning_rate": 9.09e-07,
654
+ "loss": 0.4299,
655
+ "step": 910
656
+ },
657
+ {
658
+ "epoch": 0.055288461538461536,
659
+ "grad_norm": 14.136816366550216,
660
+ "learning_rate": 9.19e-07,
661
+ "loss": 0.4105,
662
+ "step": 920
663
+ },
664
+ {
665
+ "epoch": 0.05588942307692308,
666
+ "grad_norm": 11.231190902163389,
667
+ "learning_rate": 9.29e-07,
668
+ "loss": 0.4185,
669
+ "step": 930
670
+ },
671
+ {
672
+ "epoch": 0.056490384615384616,
673
+ "grad_norm": 33.801234798562184,
674
+ "learning_rate": 9.389999999999999e-07,
675
+ "loss": 0.4541,
676
+ "step": 940
677
+ },
678
+ {
679
+ "epoch": 0.05709134615384615,
680
+ "grad_norm": 17.846337242420834,
681
+ "learning_rate": 9.489999999999999e-07,
682
+ "loss": 0.4178,
683
+ "step": 950
684
+ },
685
+ {
686
+ "epoch": 0.057692307692307696,
687
+ "grad_norm": 19.667393686818674,
688
+ "learning_rate": 9.589999999999998e-07,
689
+ "loss": 0.4446,
690
+ "step": 960
691
+ },
692
+ {
693
+ "epoch": 0.05829326923076923,
694
+ "grad_norm": 10.919623781198071,
695
+ "learning_rate": 9.69e-07,
696
+ "loss": 0.4745,
697
+ "step": 970
698
+ },
699
+ {
700
+ "epoch": 0.05889423076923077,
701
+ "grad_norm": 27.87766553645535,
702
+ "learning_rate": 9.789999999999999e-07,
703
+ "loss": 0.4779,
704
+ "step": 980
705
+ },
706
+ {
707
+ "epoch": 0.059495192307692304,
708
+ "grad_norm": 32.8338113927267,
709
+ "learning_rate": 9.89e-07,
710
+ "loss": 0.4962,
711
+ "step": 990
712
+ },
713
+ {
714
+ "epoch": 0.06009615384615385,
715
+ "grad_norm": 54.56857085663595,
716
+ "learning_rate": 9.989999999999999e-07,
717
+ "loss": 0.4523,
718
+ "step": 1000
719
+ },
720
+ {
721
+ "epoch": 0.060697115384615384,
722
+ "grad_norm": 67.84354578257332,
723
+ "learning_rate": 9.994245524296674e-07,
724
+ "loss": 0.3837,
725
+ "step": 1010
726
+ },
727
+ {
728
+ "epoch": 0.06129807692307692,
729
+ "grad_norm": 23.915401977778863,
730
+ "learning_rate": 9.987851662404092e-07,
731
+ "loss": 0.4318,
732
+ "step": 1020
733
+ },
734
+ {
735
+ "epoch": 0.061899038461538464,
736
+ "grad_norm": 18.692398541022605,
737
+ "learning_rate": 9.981457800511507e-07,
738
+ "loss": 0.4429,
739
+ "step": 1030
740
+ },
741
+ {
742
+ "epoch": 0.0625,
743
+ "grad_norm": 8.96899175552455,
744
+ "learning_rate": 9.975063938618924e-07,
745
+ "loss": 0.4265,
746
+ "step": 1040
747
+ },
748
+ {
749
+ "epoch": 0.06310096153846154,
750
+ "grad_norm": 67.76708100008346,
751
+ "learning_rate": 9.968670076726342e-07,
752
+ "loss": 0.4004,
753
+ "step": 1050
754
+ },
755
+ {
756
+ "epoch": 0.06370192307692307,
757
+ "grad_norm": 14.95483642619465,
758
+ "learning_rate": 9.962276214833759e-07,
759
+ "loss": 0.4134,
760
+ "step": 1060
761
+ },
762
+ {
763
+ "epoch": 0.06430288461538461,
764
+ "grad_norm": 11.936205292399153,
765
+ "learning_rate": 9.955882352941176e-07,
766
+ "loss": 0.4206,
767
+ "step": 1070
768
+ },
769
+ {
770
+ "epoch": 0.06490384615384616,
771
+ "grad_norm": 8.144208338195012,
772
+ "learning_rate": 9.949488491048593e-07,
773
+ "loss": 0.4,
774
+ "step": 1080
775
+ },
776
+ {
777
+ "epoch": 0.0655048076923077,
778
+ "grad_norm": 19.659029674044277,
779
+ "learning_rate": 9.94309462915601e-07,
780
+ "loss": 0.3855,
781
+ "step": 1090
782
+ },
783
+ {
784
+ "epoch": 0.06610576923076923,
785
+ "grad_norm": 14.97116772003002,
786
+ "learning_rate": 9.936700767263426e-07,
787
+ "loss": 0.402,
788
+ "step": 1100
789
+ },
790
+ {
791
+ "epoch": 0.06670673076923077,
792
+ "grad_norm": 147.02140982947978,
793
+ "learning_rate": 9.930306905370843e-07,
794
+ "loss": 0.481,
795
+ "step": 1110
796
+ },
797
+ {
798
+ "epoch": 0.0673076923076923,
799
+ "grad_norm": 43.55065984134183,
800
+ "learning_rate": 9.92391304347826e-07,
801
+ "loss": 0.4902,
802
+ "step": 1120
803
+ },
804
+ {
805
+ "epoch": 0.06790865384615384,
806
+ "grad_norm": 7.879535552657374,
807
+ "learning_rate": 9.917519181585678e-07,
808
+ "loss": 0.4542,
809
+ "step": 1130
810
+ },
811
+ {
812
+ "epoch": 0.06850961538461539,
813
+ "grad_norm": 8.151701209609962,
814
+ "learning_rate": 9.911125319693095e-07,
815
+ "loss": 0.414,
816
+ "step": 1140
817
+ },
818
+ {
819
+ "epoch": 0.06911057692307693,
820
+ "grad_norm": 14.637959734877429,
821
+ "learning_rate": 9.904731457800513e-07,
822
+ "loss": 0.3782,
823
+ "step": 1150
824
+ },
825
+ {
826
+ "epoch": 0.06971153846153846,
827
+ "grad_norm": 4.501693875744606,
828
+ "learning_rate": 9.898337595907928e-07,
829
+ "loss": 0.3849,
830
+ "step": 1160
831
+ },
832
+ {
833
+ "epoch": 0.0703125,
834
+ "grad_norm": 35.230763684058516,
835
+ "learning_rate": 9.891943734015345e-07,
836
+ "loss": 0.4404,
837
+ "step": 1170
838
+ },
839
+ {
840
+ "epoch": 0.07091346153846154,
841
+ "grad_norm": 12.442031715529945,
842
+ "learning_rate": 9.885549872122762e-07,
843
+ "loss": 0.4576,
844
+ "step": 1180
845
+ },
846
+ {
847
+ "epoch": 0.07151442307692307,
848
+ "grad_norm": 18.8069021556737,
849
+ "learning_rate": 9.879156010230177e-07,
850
+ "loss": 0.4832,
851
+ "step": 1190
852
+ },
853
+ {
854
+ "epoch": 0.07211538461538461,
855
+ "grad_norm": 15.855907967671428,
856
+ "learning_rate": 9.872762148337595e-07,
857
+ "loss": 0.4352,
858
+ "step": 1200
859
+ },
860
+ {
861
+ "epoch": 0.07271634615384616,
862
+ "grad_norm": 14.369715804290616,
863
+ "learning_rate": 9.866368286445012e-07,
864
+ "loss": 0.4028,
865
+ "step": 1210
866
+ },
867
+ {
868
+ "epoch": 0.0733173076923077,
869
+ "grad_norm": 177.80186681538973,
870
+ "learning_rate": 9.85997442455243e-07,
871
+ "loss": 0.4571,
872
+ "step": 1220
873
+ },
874
+ {
875
+ "epoch": 0.07391826923076923,
876
+ "grad_norm": 11.84969824290971,
877
+ "learning_rate": 9.853580562659845e-07,
878
+ "loss": 0.4467,
879
+ "step": 1230
880
+ },
881
+ {
882
+ "epoch": 0.07451923076923077,
883
+ "grad_norm": 68.42006681557945,
884
+ "learning_rate": 9.847186700767262e-07,
885
+ "loss": 0.4505,
886
+ "step": 1240
887
+ },
888
+ {
889
+ "epoch": 0.0751201923076923,
890
+ "grad_norm": 16.098276335781833,
891
+ "learning_rate": 9.84079283887468e-07,
892
+ "loss": 0.4319,
893
+ "step": 1250
894
+ },
895
+ {
896
+ "epoch": 0.07572115384615384,
897
+ "grad_norm": 16.956837398008382,
898
+ "learning_rate": 9.834398976982096e-07,
899
+ "loss": 0.4748,
900
+ "step": 1260
901
+ },
902
+ {
903
+ "epoch": 0.07632211538461539,
904
+ "grad_norm": 13.890105636051898,
905
+ "learning_rate": 9.828005115089514e-07,
906
+ "loss": 0.4738,
907
+ "step": 1270
908
+ },
909
+ {
910
+ "epoch": 0.07692307692307693,
911
+ "grad_norm": 14.52112888511607,
912
+ "learning_rate": 9.821611253196931e-07,
913
+ "loss": 0.4436,
914
+ "step": 1280
915
+ },
916
+ {
917
+ "epoch": 0.07752403846153846,
918
+ "grad_norm": 14.482587862628632,
919
+ "learning_rate": 9.815217391304348e-07,
920
+ "loss": 0.4213,
921
+ "step": 1290
922
+ },
923
+ {
924
+ "epoch": 0.078125,
925
+ "grad_norm": 15.66954308966829,
926
+ "learning_rate": 9.808823529411764e-07,
927
+ "loss": 0.4889,
928
+ "step": 1300
929
+ },
930
+ {
931
+ "epoch": 0.07872596153846154,
932
+ "grad_norm": 33.3147760442157,
933
+ "learning_rate": 9.80242966751918e-07,
934
+ "loss": 0.4395,
935
+ "step": 1310
936
+ },
937
+ {
938
+ "epoch": 0.07932692307692307,
939
+ "grad_norm": 31.576191017602305,
940
+ "learning_rate": 9.796035805626598e-07,
941
+ "loss": 0.3946,
942
+ "step": 1320
943
+ },
944
+ {
945
+ "epoch": 0.07992788461538461,
946
+ "grad_norm": 15.62093132771886,
947
+ "learning_rate": 9.789641943734016e-07,
948
+ "loss": 0.4729,
949
+ "step": 1330
950
+ },
951
+ {
952
+ "epoch": 0.08052884615384616,
953
+ "grad_norm": 51.855714781154056,
954
+ "learning_rate": 9.783248081841433e-07,
955
+ "loss": 0.4652,
956
+ "step": 1340
957
+ },
958
+ {
959
+ "epoch": 0.0811298076923077,
960
+ "grad_norm": 84.97065453956941,
961
+ "learning_rate": 9.77685421994885e-07,
962
+ "loss": 0.4229,
963
+ "step": 1350
964
+ },
965
+ {
966
+ "epoch": 0.08173076923076923,
967
+ "grad_norm": 25.452407688499903,
968
+ "learning_rate": 9.770460358056265e-07,
969
+ "loss": 0.4064,
970
+ "step": 1360
971
+ },
972
+ {
973
+ "epoch": 0.08233173076923077,
974
+ "grad_norm": 18.263105399640835,
975
+ "learning_rate": 9.764066496163683e-07,
976
+ "loss": 0.4564,
977
+ "step": 1370
978
+ },
979
+ {
980
+ "epoch": 0.0829326923076923,
981
+ "grad_norm": 24.334822911726036,
982
+ "learning_rate": 9.7576726342711e-07,
983
+ "loss": 0.4071,
984
+ "step": 1380
985
+ },
986
+ {
987
+ "epoch": 0.08353365384615384,
988
+ "grad_norm": 11.382524106662059,
989
+ "learning_rate": 9.751278772378515e-07,
990
+ "loss": 0.4332,
991
+ "step": 1390
992
+ },
993
+ {
994
+ "epoch": 0.08413461538461539,
995
+ "grad_norm": 54.06425057509178,
996
+ "learning_rate": 9.744884910485932e-07,
997
+ "loss": 0.4505,
998
+ "step": 1400
999
+ },
1000
+ {
1001
+ "epoch": 0.08473557692307693,
1002
+ "grad_norm": 5.076664593001253,
1003
+ "learning_rate": 9.73849104859335e-07,
1004
+ "loss": 0.4453,
1005
+ "step": 1410
1006
+ },
1007
+ {
1008
+ "epoch": 0.08533653846153846,
1009
+ "grad_norm": 21.527761337764254,
1010
+ "learning_rate": 9.732097186700767e-07,
1011
+ "loss": 0.4719,
1012
+ "step": 1420
1013
+ },
1014
+ {
1015
+ "epoch": 0.0859375,
1016
+ "grad_norm": 36.50870455739431,
1017
+ "learning_rate": 9.725703324808182e-07,
1018
+ "loss": 0.4512,
1019
+ "step": 1430
1020
+ },
1021
+ {
1022
+ "epoch": 0.08653846153846154,
1023
+ "grad_norm": 12.540139357753157,
1024
+ "learning_rate": 9.7193094629156e-07,
1025
+ "loss": 0.4548,
1026
+ "step": 1440
1027
+ },
1028
+ {
1029
+ "epoch": 0.08713942307692307,
1030
+ "grad_norm": 15.096306703319206,
1031
+ "learning_rate": 9.712915601023017e-07,
1032
+ "loss": 0.5067,
1033
+ "step": 1450
1034
+ },
1035
+ {
1036
+ "epoch": 0.08774038461538461,
1037
+ "grad_norm": 88.89595612518276,
1038
+ "learning_rate": 9.706521739130434e-07,
1039
+ "loss": 0.469,
1040
+ "step": 1460
1041
+ },
1042
+ {
1043
+ "epoch": 0.08834134615384616,
1044
+ "grad_norm": 24.05245110004213,
1045
+ "learning_rate": 9.700127877237851e-07,
1046
+ "loss": 0.4336,
1047
+ "step": 1470
1048
+ },
1049
+ {
1050
+ "epoch": 0.0889423076923077,
1051
+ "grad_norm": 7.772235228925758,
1052
+ "learning_rate": 9.693734015345269e-07,
1053
+ "loss": 0.39,
1054
+ "step": 1480
1055
+ },
1056
+ {
1057
+ "epoch": 0.08954326923076923,
1058
+ "grad_norm": 49.178387681040576,
1059
+ "learning_rate": 9.687340153452686e-07,
1060
+ "loss": 0.4151,
1061
+ "step": 1490
1062
+ },
1063
+ {
1064
+ "epoch": 0.09014423076923077,
1065
+ "grad_norm": 9.880025918953056,
1066
+ "learning_rate": 9.680946291560101e-07,
1067
+ "loss": 0.4437,
1068
+ "step": 1500
1069
+ },
1070
+ {
1071
+ "epoch": 0.0907451923076923,
1072
+ "grad_norm": 84.04802965246304,
1073
+ "learning_rate": 9.674552429667519e-07,
1074
+ "loss": 0.4544,
1075
+ "step": 1510
1076
+ },
1077
+ {
1078
+ "epoch": 0.09134615384615384,
1079
+ "grad_norm": 23.879300812095252,
1080
+ "learning_rate": 9.668158567774936e-07,
1081
+ "loss": 0.4778,
1082
+ "step": 1520
1083
+ },
1084
+ {
1085
+ "epoch": 0.09194711538461539,
1086
+ "grad_norm": 8.74377800352843,
1087
+ "learning_rate": 9.661764705882353e-07,
1088
+ "loss": 0.4424,
1089
+ "step": 1530
1090
+ },
1091
+ {
1092
+ "epoch": 0.09254807692307693,
1093
+ "grad_norm": 25.340394685074983,
1094
+ "learning_rate": 9.65537084398977e-07,
1095
+ "loss": 0.4457,
1096
+ "step": 1540
1097
+ },
1098
+ {
1099
+ "epoch": 0.09314903846153846,
1100
+ "grad_norm": 24.377319461101425,
1101
+ "learning_rate": 9.648976982097188e-07,
1102
+ "loss": 0.4145,
1103
+ "step": 1550
1104
+ },
1105
+ {
1106
+ "epoch": 0.09375,
1107
+ "grad_norm": 27.44647420729,
1108
+ "learning_rate": 9.642583120204603e-07,
1109
+ "loss": 0.3954,
1110
+ "step": 1560
1111
+ },
1112
+ {
1113
+ "epoch": 0.09435096153846154,
1114
+ "grad_norm": 9.525464831385005,
1115
+ "learning_rate": 9.63618925831202e-07,
1116
+ "loss": 0.3716,
1117
+ "step": 1570
1118
+ },
1119
+ {
1120
+ "epoch": 0.09495192307692307,
1121
+ "grad_norm": 27.349989017536107,
1122
+ "learning_rate": 9.629795396419438e-07,
1123
+ "loss": 0.3668,
1124
+ "step": 1580
1125
+ },
1126
+ {
1127
+ "epoch": 0.09555288461538461,
1128
+ "grad_norm": 19.197820909162925,
1129
+ "learning_rate": 9.623401534526855e-07,
1130
+ "loss": 0.4735,
1131
+ "step": 1590
1132
+ },
1133
+ {
1134
+ "epoch": 0.09615384615384616,
1135
+ "grad_norm": 14.821828935472933,
1136
+ "learning_rate": 9.61700767263427e-07,
1137
+ "loss": 0.4551,
1138
+ "step": 1600
1139
+ },
1140
+ {
1141
+ "epoch": 0.0967548076923077,
1142
+ "grad_norm": 10.183698117047507,
1143
+ "learning_rate": 9.610613810741687e-07,
1144
+ "loss": 0.4463,
1145
+ "step": 1610
1146
+ },
1147
+ {
1148
+ "epoch": 0.09735576923076923,
1149
+ "grad_norm": 17.003317993340907,
1150
+ "learning_rate": 9.604219948849105e-07,
1151
+ "loss": 0.4501,
1152
+ "step": 1620
1153
+ },
1154
+ {
1155
+ "epoch": 0.09795673076923077,
1156
+ "grad_norm": 16.527884738622046,
1157
+ "learning_rate": 9.59782608695652e-07,
1158
+ "loss": 0.4274,
1159
+ "step": 1630
1160
+ },
1161
+ {
1162
+ "epoch": 0.0985576923076923,
1163
+ "grad_norm": 96.03639510226907,
1164
+ "learning_rate": 9.591432225063937e-07,
1165
+ "loss": 0.4002,
1166
+ "step": 1640
1167
+ },
1168
+ {
1169
+ "epoch": 0.09915865384615384,
1170
+ "grad_norm": 21.560400331772723,
1171
+ "learning_rate": 9.585038363171354e-07,
1172
+ "loss": 0.3857,
1173
+ "step": 1650
1174
+ },
1175
+ {
1176
+ "epoch": 0.09975961538461539,
1177
+ "grad_norm": 22.502753235352646,
1178
+ "learning_rate": 9.578644501278772e-07,
1179
+ "loss": 0.3972,
1180
+ "step": 1660
1181
+ },
1182
+ {
1183
+ "epoch": 0.10036057692307693,
1184
+ "grad_norm": 13.923835321348774,
1185
+ "learning_rate": 9.57225063938619e-07,
1186
+ "loss": 0.4161,
1187
+ "step": 1670
1188
+ },
1189
+ {
1190
+ "epoch": 0.10096153846153846,
1191
+ "grad_norm": 13.89020798215834,
1192
+ "learning_rate": 9.565856777493606e-07,
1193
+ "loss": 0.4409,
1194
+ "step": 1680
1195
+ },
1196
+ {
1197
+ "epoch": 0.1015625,
1198
+ "grad_norm": 93.30579652904981,
1199
+ "learning_rate": 9.559462915601024e-07,
1200
+ "loss": 0.4413,
1201
+ "step": 1690
1202
+ },
1203
+ {
1204
+ "epoch": 0.10216346153846154,
1205
+ "grad_norm": 10.306967482471663,
1206
+ "learning_rate": 9.553069053708439e-07,
1207
+ "loss": 0.4306,
1208
+ "step": 1700
1209
+ },
1210
+ {
1211
+ "epoch": 0.10276442307692307,
1212
+ "grad_norm": 16.35022677130188,
1213
+ "learning_rate": 9.546675191815856e-07,
1214
+ "loss": 0.4361,
1215
+ "step": 1710
1216
+ },
1217
+ {
1218
+ "epoch": 0.10336538461538461,
1219
+ "grad_norm": 68.65163238192922,
1220
+ "learning_rate": 9.540281329923273e-07,
1221
+ "loss": 0.4508,
1222
+ "step": 1720
1223
+ },
1224
+ {
1225
+ "epoch": 0.10396634615384616,
1226
+ "grad_norm": 14.691319864310291,
1227
+ "learning_rate": 9.533887468030691e-07,
1228
+ "loss": 0.4637,
1229
+ "step": 1730
1230
+ },
1231
+ {
1232
+ "epoch": 0.1045673076923077,
1233
+ "grad_norm": 11.655266762752866,
1234
+ "learning_rate": 9.527493606138107e-07,
1235
+ "loss": 0.4239,
1236
+ "step": 1740
1237
+ },
1238
+ {
1239
+ "epoch": 0.10516826923076923,
1240
+ "grad_norm": 26.007719217225308,
1241
+ "learning_rate": 9.521099744245524e-07,
1242
+ "loss": 0.4427,
1243
+ "step": 1750
1244
+ },
1245
+ {
1246
+ "epoch": 0.10576923076923077,
1247
+ "grad_norm": 31.093138088222684,
1248
+ "learning_rate": 9.51470588235294e-07,
1249
+ "loss": 0.459,
1250
+ "step": 1760
1251
+ },
1252
+ {
1253
+ "epoch": 0.1063701923076923,
1254
+ "grad_norm": 8.469416417535411,
1255
+ "learning_rate": 9.508312020460358e-07,
1256
+ "loss": 0.402,
1257
+ "step": 1770
1258
+ },
1259
+ {
1260
+ "epoch": 0.10697115384615384,
1261
+ "grad_norm": 16.06555093014836,
1262
+ "learning_rate": 9.501918158567774e-07,
1263
+ "loss": 0.4276,
1264
+ "step": 1780
1265
+ },
1266
+ {
1267
+ "epoch": 0.10757211538461539,
1268
+ "grad_norm": 46.21222096469417,
1269
+ "learning_rate": 9.495524296675191e-07,
1270
+ "loss": 0.4177,
1271
+ "step": 1790
1272
+ },
1273
+ {
1274
+ "epoch": 0.10817307692307693,
1275
+ "grad_norm": 11.561230412768193,
1276
+ "learning_rate": 9.489130434782609e-07,
1277
+ "loss": 0.3993,
1278
+ "step": 1800
1279
+ },
1280
+ {
1281
+ "epoch": 0.10877403846153846,
1282
+ "grad_norm": 33.55933631376849,
1283
+ "learning_rate": 9.482736572890026e-07,
1284
+ "loss": 0.4206,
1285
+ "step": 1810
1286
+ },
1287
+ {
1288
+ "epoch": 0.109375,
1289
+ "grad_norm": 11.530474264624262,
1290
+ "learning_rate": 9.476342710997442e-07,
1291
+ "loss": 0.4378,
1292
+ "step": 1820
1293
+ },
1294
+ {
1295
+ "epoch": 0.10997596153846154,
1296
+ "grad_norm": 28.092472805389466,
1297
+ "learning_rate": 9.469948849104858e-07,
1298
+ "loss": 0.4033,
1299
+ "step": 1830
1300
+ },
1301
+ {
1302
+ "epoch": 0.11057692307692307,
1303
+ "grad_norm": 12.87483056607121,
1304
+ "learning_rate": 9.463554987212276e-07,
1305
+ "loss": 0.3855,
1306
+ "step": 1840
1307
+ },
1308
+ {
1309
+ "epoch": 0.11117788461538461,
1310
+ "grad_norm": 12.951129649825642,
1311
+ "learning_rate": 9.457161125319693e-07,
1312
+ "loss": 0.4156,
1313
+ "step": 1850
1314
+ },
1315
+ {
1316
+ "epoch": 0.11177884615384616,
1317
+ "grad_norm": 10.238507527434807,
1318
+ "learning_rate": 9.450767263427109e-07,
1319
+ "loss": 0.4417,
1320
+ "step": 1860
1321
+ },
1322
+ {
1323
+ "epoch": 0.1123798076923077,
1324
+ "grad_norm": 8.449261275213267,
1325
+ "learning_rate": 9.444373401534527e-07,
1326
+ "loss": 0.4499,
1327
+ "step": 1870
1328
+ },
1329
+ {
1330
+ "epoch": 0.11298076923076923,
1331
+ "grad_norm": 33.54997769262099,
1332
+ "learning_rate": 9.437979539641944e-07,
1333
+ "loss": 0.3718,
1334
+ "step": 1880
1335
+ },
1336
+ {
1337
+ "epoch": 0.11358173076923077,
1338
+ "grad_norm": 163.06822397421263,
1339
+ "learning_rate": 9.43158567774936e-07,
1340
+ "loss": 0.3994,
1341
+ "step": 1890
1342
+ },
1343
+ {
1344
+ "epoch": 0.1141826923076923,
1345
+ "grad_norm": 747.6560259343341,
1346
+ "learning_rate": 9.425191815856776e-07,
1347
+ "loss": 0.41,
1348
+ "step": 1900
1349
+ },
1350
+ {
1351
+ "epoch": 0.11478365384615384,
1352
+ "grad_norm": 20.948270060235018,
1353
+ "learning_rate": 9.418797953964194e-07,
1354
+ "loss": 0.4012,
1355
+ "step": 1910
1356
+ },
1357
+ {
1358
+ "epoch": 0.11538461538461539,
1359
+ "grad_norm": 16.592630584743493,
1360
+ "learning_rate": 9.412404092071611e-07,
1361
+ "loss": 0.4071,
1362
+ "step": 1920
1363
+ },
1364
+ {
1365
+ "epoch": 0.11598557692307693,
1366
+ "grad_norm": 6.4533503474115985,
1367
+ "learning_rate": 9.406010230179028e-07,
1368
+ "loss": 0.3927,
1369
+ "step": 1930
1370
+ },
1371
+ {
1372
+ "epoch": 0.11658653846153846,
1373
+ "grad_norm": 9.481676872361602,
1374
+ "learning_rate": 9.399616368286445e-07,
1375
+ "loss": 0.4486,
1376
+ "step": 1940
1377
+ },
1378
+ {
1379
+ "epoch": 0.1171875,
1380
+ "grad_norm": 22.879429418595755,
1381
+ "learning_rate": 9.393222506393862e-07,
1382
+ "loss": 0.4487,
1383
+ "step": 1950
1384
+ },
1385
+ {
1386
+ "epoch": 0.11778846153846154,
1387
+ "grad_norm": 36.32090030167348,
1388
+ "learning_rate": 9.386828644501278e-07,
1389
+ "loss": 0.4866,
1390
+ "step": 1960
1391
+ },
1392
+ {
1393
+ "epoch": 0.11838942307692307,
1394
+ "grad_norm": 15.994462091464001,
1395
+ "learning_rate": 9.380434782608695e-07,
1396
+ "loss": 0.4853,
1397
+ "step": 1970
1398
+ },
1399
+ {
1400
+ "epoch": 0.11899038461538461,
1401
+ "grad_norm": 16.476880149018157,
1402
+ "learning_rate": 9.374040920716112e-07,
1403
+ "loss": 0.4713,
1404
+ "step": 1980
1405
+ },
1406
+ {
1407
+ "epoch": 0.11959134615384616,
1408
+ "grad_norm": 1316.107870553675,
1409
+ "learning_rate": 9.367647058823529e-07,
1410
+ "loss": 0.4386,
1411
+ "step": 1990
1412
+ },
1413
+ {
1414
+ "epoch": 0.1201923076923077,
1415
+ "grad_norm": 20.762433776167253,
1416
+ "learning_rate": 9.361253196930946e-07,
1417
+ "loss": 0.4609,
1418
+ "step": 2000
1419
+ },
1420
+ {
1421
+ "epoch": 0.12079326923076923,
1422
+ "grad_norm": 33.600636933197194,
1423
+ "learning_rate": 9.354859335038364e-07,
1424
+ "loss": 0.4346,
1425
+ "step": 2010
1426
+ },
1427
+ {
1428
+ "epoch": 0.12139423076923077,
1429
+ "grad_norm": 18.47987496120014,
1430
+ "learning_rate": 9.34846547314578e-07,
1431
+ "loss": 0.3968,
1432
+ "step": 2020
1433
+ },
1434
+ {
1435
+ "epoch": 0.1219951923076923,
1436
+ "grad_norm": 12.493741832264165,
1437
+ "learning_rate": 9.342071611253196e-07,
1438
+ "loss": 0.3862,
1439
+ "step": 2030
1440
+ },
1441
+ {
1442
+ "epoch": 0.12259615384615384,
1443
+ "grad_norm": 8.016162557709496,
1444
+ "learning_rate": 9.335677749360613e-07,
1445
+ "loss": 0.3913,
1446
+ "step": 2040
1447
+ },
1448
+ {
1449
+ "epoch": 0.12319711538461539,
1450
+ "grad_norm": 556.4941548489389,
1451
+ "learning_rate": 9.329283887468031e-07,
1452
+ "loss": 0.4127,
1453
+ "step": 2050
1454
+ },
1455
+ {
1456
+ "epoch": 0.12379807692307693,
1457
+ "grad_norm": 25.506919407129853,
1458
+ "learning_rate": 9.322890025575447e-07,
1459
+ "loss": 0.4349,
1460
+ "step": 2060
1461
+ },
1462
+ {
1463
+ "epoch": 0.12439903846153846,
1464
+ "grad_norm": 21.228728941085222,
1465
+ "learning_rate": 9.316496163682864e-07,
1466
+ "loss": 0.4603,
1467
+ "step": 2070
1468
+ },
1469
+ {
1470
+ "epoch": 0.125,
1471
+ "grad_norm": 9.977415169528852,
1472
+ "learning_rate": 9.310102301790282e-07,
1473
+ "loss": 0.4158,
1474
+ "step": 2080
1475
+ },
1476
+ {
1477
+ "epoch": 0.125,
1478
+ "eval_loss": 0.4175701141357422,
1479
+ "eval_runtime": 13.8604,
1480
+ "eval_samples_per_second": 2.309,
1481
+ "eval_steps_per_second": 0.289,
1482
+ "step": 2080
1483
+ }
1484
+ ],
1485
+ "logging_steps": 10,
1486
+ "max_steps": 16640,
1487
+ "num_input_tokens_seen": 0,
1488
+ "num_train_epochs": 9223372036854775807,
1489
+ "save_steps": 500,
1490
+ "stateful_callbacks": {
1491
+ "TrainerControl": {
1492
+ "args": {
1493
+ "should_epoch_stop": false,
1494
+ "should_evaluate": false,
1495
+ "should_log": false,
1496
+ "should_save": true,
1497
+ "should_training_stop": false
1498
+ },
1499
+ "attributes": {}
1500
+ }
1501
+ },
1502
+ "total_flos": 1.037184756875264e+16,
1503
+ "train_batch_size": 1,
1504
+ "trial_name": null,
1505
+ "trial_params": null
1506
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:819ef48b578eae4a2bf411a66ab29fb8896e28aded3e5b54787ea605e9c3380c
3
+ size 7224
video_preprocessor_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "do_center_crop": null,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "do_sample_frames": false,
12
+ "fps": null,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_std": [
19
+ 0.26862954,
20
+ 0.26130258,
21
+ 0.27577711
22
+ ],
23
+ "input_data_format": null,
24
+ "max_frames": 768,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_frames": 4,
28
+ "min_pixels": 3136,
29
+ "num_frames": null,
30
+ "pad_size": null,
31
+ "patch_size": 14,
32
+ "processor_class": "Qwen2_5_VLProcessor",
33
+ "resample": 3,
34
+ "rescale_factor": 0.00392156862745098,
35
+ "return_metadata": false,
36
+ "size": {
37
+ "longest_edge": 12845056,
38
+ "shortest_edge": 3136
39
+ },
40
+ "temporal_patch_size": 2,
41
+ "video_metadata": null,
42
+ "video_processor_type": "Qwen2VLVideoProcessor"
43
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff