jankin123 commited on
Commit
3a7d274
·
verified ·
1 Parent(s): 552da19

Upload 4DThinker-3B config and tokenizer files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ 4drl/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ dift/checkpoints/tokenizer.json filter=lfs diff=lfs merge=lfs -text
4drl/added_tokens.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "<|latent_end|>": 151667,
16
+ "<|latent_pad|>": 151665,
17
+ "<|latent_start|>": 151666,
18
+ "<|object_ref_end|>": 151647,
19
+ "<|object_ref_start|>": 151646,
20
+ "<|quad_end|>": 151651,
21
+ "<|quad_start|>": 151650,
22
+ "<|repo_name|>": 151663,
23
+ "<|video_pad|>": 151656,
24
+ "<|vision_end|>": 151653,
25
+ "<|vision_pad|>": 151654,
26
+ "<|vision_start|>": 151652
27
+ }
4drl/chat_template.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{% 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\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% 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|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
3
+ }
4drl/config.json ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "ce_loss_weight": 0.1,
8
+ "compress_strategy": "average",
9
+ "eos_token_id": 151645,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 2048,
12
+ "image_token_id": 151655,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 11008,
15
+ "latent_end_id": 151667,
16
+ "latent_size": 4,
17
+ "latent_start_id": 151666,
18
+ "latent_token_id": 151665,
19
+ "max_position_embeddings": 128000,
20
+ "max_window_layers": 70,
21
+ "model_type": "qwen2_5_vl",
22
+ "num_attention_heads": 16,
23
+ "num_hidden_layers": 36,
24
+ "num_key_value_heads": 2,
25
+ "rms_norm_eps": 1e-06,
26
+ "rope_scaling": {
27
+ "mrope_section": [
28
+ 16,
29
+ 24,
30
+ 24
31
+ ],
32
+ "rope_type": "default",
33
+ "type": "default"
34
+ },
35
+ "rope_theta": 1000000.0,
36
+ "sim_loss_weight": 1.0,
37
+ "sliding_window": 32768,
38
+ "stage": "stage1",
39
+ "tie_word_embeddings": true,
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.50.0.dev0",
42
+ "use_cache": false,
43
+ "use_sliding_window": false,
44
+ "video_token_id": 151656,
45
+ "vision_config": {
46
+ "depth": 32,
47
+ "fullatt_block_indexes": [
48
+ 7,
49
+ 15,
50
+ 23,
51
+ 31
52
+ ],
53
+ "hidden_act": "silu",
54
+ "hidden_size": 1280,
55
+ "in_channels": 3,
56
+ "in_chans": 3,
57
+ "intermediate_size": 3420,
58
+ "model_type": "qwen2_5_vl",
59
+ "num_heads": 16,
60
+ "out_hidden_size": 2048,
61
+ "patch_size": 14,
62
+ "spatial_merge_size": 2,
63
+ "spatial_patch_size": 14,
64
+ "temporal_patch_size": 2,
65
+ "tokens_per_second": 2,
66
+ "torch_dtype": "bfloat16",
67
+ "window_size": 112
68
+ },
69
+ "vision_end_token_id": 151653,
70
+ "vision_start_token_id": 151652,
71
+ "vision_token_id": 151654,
72
+ "vocab_size": 151668
73
+ }
4drl/generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "attn_implementation": null,
3
+ "bos_token_id": 151643,
4
+ "do_sample": true,
5
+ "eos_token_id": [
6
+ 151645,
7
+ 151643
8
+ ],
9
+ "pad_token_id": 151643,
10
+ "repetition_penalty": 1.05,
11
+ "temperature": 1e-06,
12
+ "transformers_version": "4.50.0.dev0"
13
+ }
4drl/latest ADDED
@@ -0,0 +1 @@
 
 
1
+ global_step100
4drl/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
4drl/model.safetensors.index.json ADDED
@@ -0,0 +1,832 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 8129380352
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00002-of-00002.safetensors",
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
+ }
4drl/preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": true,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.48145466,
8
+ 0.4578275,
9
+ 0.40821073
10
+ ],
11
+ "image_processor_type": "Qwen2VLImageProcessor",
12
+ "image_std": [
13
+ 0.26862954,
14
+ 0.26130258,
15
+ 0.27577711
16
+ ],
17
+ "max_pixels": 200704,
18
+ "merge_size": 2,
19
+ "min_pixels": 784,
20
+ "patch_size": 14,
21
+ "processor_class": "Qwen2_5_VLProcessor",
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "longest_edge": 12845056,
26
+ "shortest_edge": 3136
27
+ },
28
+ "temporal_patch_size": 2
29
+ }
4drl/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67313ba97d49ee570f9aeb9b6e258657d0c0e6f14a3046126a02615a03eb63a6
3
+ size 16389
4drl/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7efefcb3e52578ad958d8e749291b9926ad342f1b2338bd36d43fddfe60c8359
3
+ size 16389
4drl/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b45ef321143210c82c5f1493a1b741fdfeed89c92d0b25bb0fb923ec03da9b7
3
+ size 16389
4drl/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55c9c0be211b3617ef12480f81bcfbd75b818f2cf9cf35dbe24f86b19e802259
3
+ size 16389
4drl/rng_state_4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1606d494f0ce918ec681134441aa862bda21ecf9aec04433351c95bcca88dfe3
3
+ size 16389
4drl/rng_state_5.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:befc26bccfbb9e3a347d12a259bc9d37b134a9da901d7b2188a2486fb8eebee8
3
+ size 16389
4drl/rng_state_6.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:705c29a641c870f59549b645cc78f8c039a0614a8c0f063679ee1b468dd1384e
3
+ size 16389
4drl/rng_state_7.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e45649f515f7ae896b7cd8005e92b579e0af6c0fdc10b3bda7e96fa29023001
3
+ size 16389
4drl/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e713f1580f90e0fcc0fd9c686f8bca9d9b0d242afc025a72ba021ad79ce9c3e4
3
+ size 1465
4drl/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
+ }
4drl/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55b76f98b2c2ca7c24fc62a0775fdb2db68a29790eefa5f295ce8c74aef987fc
3
+ size 11422471
4drl/tokenizer_config.json ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<|latent_pad|>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": true
188
+ },
189
+ "151666": {
190
+ "content": "<|latent_start|>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": true
196
+ },
197
+ "151667": {
198
+ "content": "<|latent_end|>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": true
204
+ }
205
+ },
206
+ "additional_special_tokens": [
207
+ "<|im_start|>",
208
+ "<|im_end|>",
209
+ "<|object_ref_start|>",
210
+ "<|object_ref_end|>",
211
+ "<|box_start|>",
212
+ "<|box_end|>",
213
+ "<|quad_start|>",
214
+ "<|quad_end|>",
215
+ "<|vision_start|>",
216
+ "<|vision_end|>",
217
+ "<|vision_pad|>",
218
+ "<|image_pad|>",
219
+ "<|video_pad|>"
220
+ ],
221
+ "bos_token": null,
222
+ "chat_template": "{% 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\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% 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|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}",
223
+ "clean_up_tokenization_spaces": false,
224
+ "eos_token": "<|im_end|>",
225
+ "errors": "replace",
226
+ "extra_special_tokens": {},
227
+ "model_max_length": 131072,
228
+ "pad_token": "<|endoftext|>",
229
+ "processor_class": "Qwen2_5_VLProcessor",
230
+ "split_special_tokens": false,
231
+ "tokenizer_class": "Qwen2Tokenizer",
232
+ "unk_token": null
233
+ }
4drl/trainer_state.json ADDED
@@ -0,0 +1,1234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.043591979075850044,
6
+ "eval_steps": 500,
7
+ "global_step": 100,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "completion_length": 6066.5546875,
14
+ "epoch": 0.00043591979075850045,
15
+ "grad_norm": 22.7120361328125,
16
+ "learning_rate": 9.995640802092413e-07,
17
+ "loss": -0.00010610813114908524,
18
+ "reward": 0.16562499850988388,
19
+ "reward_std": 0.2048395685851574,
20
+ "rewards/accuracy_reward": 0.1171875,
21
+ "rewards/format_reward": 0.2421875,
22
+ "step": 1
23
+ },
24
+ {
25
+ "completion_length": 5022.6015625,
26
+ "epoch": 0.0008718395815170009,
27
+ "grad_norm": 35.190757751464844,
28
+ "learning_rate": 9.99128160418483e-07,
29
+ "loss": -0.0003467285423539579,
30
+ "reward": 0.24531249701976776,
31
+ "reward_std": 0.13261918351054192,
32
+ "rewards/accuracy_reward": 0.171875,
33
+ "rewards/format_reward": 0.3671875,
34
+ "step": 2
35
+ },
36
+ {
37
+ "completion_length": 5074.4765625,
38
+ "epoch": 0.0013077593722755014,
39
+ "grad_norm": 36.27347946166992,
40
+ "learning_rate": 9.986922406277246e-07,
41
+ "loss": -0.0009319710079580545,
42
+ "reward": 0.31718750298023224,
43
+ "reward_std": 0.15016943216323853,
44
+ "rewards/accuracy_reward": 0.2578125,
45
+ "rewards/format_reward": 0.296875,
46
+ "step": 3
47
+ },
48
+ {
49
+ "completion_length": 4919.9921875,
50
+ "epoch": 0.0017436791630340018,
51
+ "grad_norm": 23.1031494140625,
52
+ "learning_rate": 9.98256320836966e-07,
53
+ "loss": -0.0011635422706604004,
54
+ "reward": 0.2515625134110451,
55
+ "reward_std": 0.22550153732299805,
56
+ "rewards/accuracy_reward": 0.1796875,
57
+ "rewards/format_reward": 0.359375,
58
+ "step": 4
59
+ },
60
+ {
61
+ "completion_length": 4392.3203125,
62
+ "epoch": 0.002179598953792502,
63
+ "grad_norm": 18.30356788635254,
64
+ "learning_rate": 9.978204010462075e-07,
65
+ "loss": -0.001725408248603344,
66
+ "reward": 0.3500000089406967,
67
+ "reward_std": 0.2601192742586136,
68
+ "rewards/accuracy_reward": 0.2734375,
69
+ "rewards/format_reward": 0.3828125,
70
+ "step": 5
71
+ },
72
+ {
73
+ "completion_length": 5603.28125,
74
+ "epoch": 0.0026155187445510027,
75
+ "grad_norm": 21.6483154296875,
76
+ "learning_rate": 9.97384481255449e-07,
77
+ "loss": -0.004177422029897571,
78
+ "reward": 0.07500000298023224,
79
+ "reward_std": 0.14329775422811508,
80
+ "rewards/accuracy_reward": 0.0390625,
81
+ "rewards/format_reward": 0.1796875,
82
+ "step": 6
83
+ },
84
+ {
85
+ "completion_length": 3968.328125,
86
+ "epoch": 0.003051438535309503,
87
+ "grad_norm": 21.388357162475586,
88
+ "learning_rate": 9.969485614646903e-07,
89
+ "loss": -0.002357690129429102,
90
+ "reward": 0.2109375149011612,
91
+ "reward_std": 0.19895199686288834,
92
+ "rewards/accuracy_reward": 0.1328125,
93
+ "rewards/format_reward": 0.390625,
94
+ "step": 7
95
+ },
96
+ {
97
+ "completion_length": 4283.15625,
98
+ "epoch": 0.0034873583260680036,
99
+ "grad_norm": 17.606998443603516,
100
+ "learning_rate": 9.96512641673932e-07,
101
+ "loss": -0.0032072272151708603,
102
+ "reward": 0.3046875149011612,
103
+ "reward_std": 0.3027474880218506,
104
+ "rewards/accuracy_reward": 0.234375,
105
+ "rewards/format_reward": 0.3515625,
106
+ "step": 8
107
+ },
108
+ {
109
+ "completion_length": 2647.453125,
110
+ "epoch": 0.003923278116826504,
111
+ "grad_norm": 7.005691051483154,
112
+ "learning_rate": 9.960767218831735e-07,
113
+ "loss": -0.0025840166490525007,
114
+ "reward": 0.33125001937150955,
115
+ "reward_std": 0.270910307765007,
116
+ "rewards/accuracy_reward": 0.234375,
117
+ "rewards/format_reward": 0.484375,
118
+ "step": 9
119
+ },
120
+ {
121
+ "completion_length": 2621.7734375,
122
+ "epoch": 0.004359197907585004,
123
+ "grad_norm": 32.332698822021484,
124
+ "learning_rate": 9.95640802092415e-07,
125
+ "loss": -0.0029894779436290264,
126
+ "reward": 0.29843752086162567,
127
+ "reward_std": 0.21532631665468216,
128
+ "rewards/accuracy_reward": 0.1640625,
129
+ "rewards/format_reward": 0.671875,
130
+ "step": 10
131
+ },
132
+ {
133
+ "completion_length": 2444.78125,
134
+ "epoch": 0.004795117698343505,
135
+ "grad_norm": 15.55601692199707,
136
+ "learning_rate": 9.952048823016565e-07,
137
+ "loss": -0.003852886729873717,
138
+ "reward": 0.24062500894069672,
139
+ "reward_std": 0.2612670660018921,
140
+ "rewards/accuracy_reward": 0.1484375,
141
+ "rewards/format_reward": 0.4609375,
142
+ "step": 11
143
+ },
144
+ {
145
+ "completion_length": 2593.9140625,
146
+ "epoch": 0.0052310374891020054,
147
+ "grad_norm": 29.252334594726562,
148
+ "learning_rate": 9.94768962510898e-07,
149
+ "loss": -0.0042398301884531975,
150
+ "reward": 0.48750001192092896,
151
+ "reward_std": 0.3399874120950699,
152
+ "rewards/accuracy_reward": 0.3515625,
153
+ "rewards/format_reward": 0.6796875,
154
+ "step": 12
155
+ },
156
+ {
157
+ "completion_length": 2220.7109375,
158
+ "epoch": 0.005666957279860506,
159
+ "grad_norm": 13.38364028930664,
160
+ "learning_rate": 9.943330427201393e-07,
161
+ "loss": -0.0033426693407818675,
162
+ "reward": 0.3125000149011612,
163
+ "reward_std": 0.19083451479673386,
164
+ "rewards/accuracy_reward": 0.171875,
165
+ "rewards/format_reward": 0.703125,
166
+ "step": 13
167
+ },
168
+ {
169
+ "completion_length": 2529.640625,
170
+ "epoch": 0.006102877070619006,
171
+ "grad_norm": 17.974361419677734,
172
+ "learning_rate": 9.93897122929381e-07,
173
+ "loss": -0.004656808450818062,
174
+ "reward": 0.3500000089406967,
175
+ "reward_std": 0.36670154333114624,
176
+ "rewards/accuracy_reward": 0.234375,
177
+ "rewards/format_reward": 0.578125,
178
+ "step": 14
179
+ },
180
+ {
181
+ "completion_length": 2840.5625,
182
+ "epoch": 0.006538796861377506,
183
+ "grad_norm": 11.839619636535645,
184
+ "learning_rate": 9.934612031386225e-07,
185
+ "loss": -0.005619838368147612,
186
+ "reward": 0.29218751937150955,
187
+ "reward_std": 0.11481105536222458,
188
+ "rewards/accuracy_reward": 0.1640625,
189
+ "rewards/format_reward": 0.640625,
190
+ "step": 15
191
+ },
192
+ {
193
+ "completion_length": 3081.2421875,
194
+ "epoch": 0.006974716652136007,
195
+ "grad_norm": 8.316078186035156,
196
+ "learning_rate": 9.93025283347864e-07,
197
+ "loss": -0.00666549289599061,
198
+ "reward": 0.42500003427267075,
199
+ "reward_std": 0.30427779257297516,
200
+ "rewards/accuracy_reward": 0.2890625,
201
+ "rewards/format_reward": 0.6796875,
202
+ "step": 16
203
+ },
204
+ {
205
+ "completion_length": 2150.2734375,
206
+ "epoch": 0.0074106364428945075,
207
+ "grad_norm": 15.924665451049805,
208
+ "learning_rate": 9.925893635571055e-07,
209
+ "loss": -0.006602097302675247,
210
+ "reward": 0.43906252086162567,
211
+ "reward_std": 0.35585278272628784,
212
+ "rewards/accuracy_reward": 0.2890625,
213
+ "rewards/format_reward": 0.75,
214
+ "step": 17
215
+ },
216
+ {
217
+ "completion_length": 1136.3359375,
218
+ "epoch": 0.007846556233653008,
219
+ "grad_norm": 3.312643527984619,
220
+ "learning_rate": 9.92153443766347e-07,
221
+ "loss": -0.00424616876989603,
222
+ "reward": 0.484375,
223
+ "reward_std": 0.2594892159104347,
224
+ "rewards/accuracy_reward": 0.3125,
225
+ "rewards/format_reward": 0.859375,
226
+ "step": 18
227
+ },
228
+ {
229
+ "completion_length": 1163.0703125,
230
+ "epoch": 0.008282476024411508,
231
+ "grad_norm": 4.4617600440979,
232
+ "learning_rate": 9.917175239755885e-07,
233
+ "loss": -0.0060931057669222355,
234
+ "reward": 0.6203125715255737,
235
+ "reward_std": 0.3268684893846512,
236
+ "rewards/accuracy_reward": 0.4375,
237
+ "rewards/format_reward": 0.9140625,
238
+ "step": 19
239
+ },
240
+ {
241
+ "completion_length": 1688.5078125,
242
+ "epoch": 0.008718395815170008,
243
+ "grad_norm": 5.8775506019592285,
244
+ "learning_rate": 9.9128160418483e-07,
245
+ "loss": -0.009722861228510737,
246
+ "reward": 0.38593751192092896,
247
+ "reward_std": 0.21004340052604675,
248
+ "rewards/accuracy_reward": 0.21875,
249
+ "rewards/format_reward": 0.8359375,
250
+ "step": 20
251
+ },
252
+ {
253
+ "completion_length": 1012.625,
254
+ "epoch": 0.009154315605928508,
255
+ "grad_norm": 4.331947326660156,
256
+ "learning_rate": 9.908456843940715e-07,
257
+ "loss": -0.005864025559276342,
258
+ "reward": 0.550000011920929,
259
+ "reward_std": 0.336714543402195,
260
+ "rewards/accuracy_reward": 0.359375,
261
+ "rewards/format_reward": 0.953125,
262
+ "step": 21
263
+ },
264
+ {
265
+ "completion_length": 1052.0234375,
266
+ "epoch": 0.00959023539668701,
267
+ "grad_norm": 7.702275276184082,
268
+ "learning_rate": 9.90409764603313e-07,
269
+ "loss": -0.0061883407179266214,
270
+ "reward": 0.5375000536441803,
271
+ "reward_std": 0.19406893104314804,
272
+ "rewards/accuracy_reward": 0.3515625,
273
+ "rewards/format_reward": 0.9296875,
274
+ "step": 22
275
+ },
276
+ {
277
+ "completion_length": 585.890625,
278
+ "epoch": 0.01002615518744551,
279
+ "grad_norm": 2.693312883377075,
280
+ "learning_rate": 9.899738448125545e-07,
281
+ "loss": -0.0050068587297573686,
282
+ "reward": 0.4500000476837158,
283
+ "reward_std": 0.22148218750953674,
284
+ "rewards/accuracy_reward": 0.25,
285
+ "rewards/format_reward": 1.0,
286
+ "step": 23
287
+ },
288
+ {
289
+ "completion_length": 952.8984375,
290
+ "epoch": 0.010462074978204011,
291
+ "grad_norm": 2.040409564971924,
292
+ "learning_rate": 9.89537925021796e-07,
293
+ "loss": -0.008675348944962025,
294
+ "reward": 0.4531250298023224,
295
+ "reward_std": 0.2833295091986656,
296
+ "rewards/accuracy_reward": 0.2578125,
297
+ "rewards/format_reward": 0.9765625,
298
+ "step": 24
299
+ },
300
+ {
301
+ "completion_length": 855.203125,
302
+ "epoch": 0.010897994768962511,
303
+ "grad_norm": 1.750288486480713,
304
+ "learning_rate": 9.891020052310375e-07,
305
+ "loss": -0.006478779250755906,
306
+ "reward": 0.5281250476837158,
307
+ "reward_std": 0.2747085839509964,
308
+ "rewards/accuracy_reward": 0.3359375,
309
+ "rewards/format_reward": 0.9609375,
310
+ "step": 25
311
+ },
312
+ {
313
+ "completion_length": 622.625,
314
+ "epoch": 0.011333914559721011,
315
+ "grad_norm": 1.3210248947143555,
316
+ "learning_rate": 9.88666085440279e-07,
317
+ "loss": -0.006179739721119404,
318
+ "reward": 0.5562500357627869,
319
+ "reward_std": 0.2532925382256508,
320
+ "rewards/accuracy_reward": 0.359375,
321
+ "rewards/format_reward": 0.984375,
322
+ "step": 26
323
+ },
324
+ {
325
+ "completion_length": 609.3984375,
326
+ "epoch": 0.011769834350479512,
327
+ "grad_norm": 3.869396448135376,
328
+ "learning_rate": 9.882301656495205e-07,
329
+ "loss": -0.0062519978964701295,
330
+ "reward": 0.5000000298023224,
331
+ "reward_std": 0.14424315840005875,
332
+ "rewards/accuracy_reward": 0.3046875,
333
+ "rewards/format_reward": 0.9765625,
334
+ "step": 27
335
+ },
336
+ {
337
+ "completion_length": 547.375,
338
+ "epoch": 0.012205754141238012,
339
+ "grad_norm": 1.0941433906555176,
340
+ "learning_rate": 9.877942458587619e-07,
341
+ "loss": -0.0032227920601144433,
342
+ "reward": 0.5484375357627869,
343
+ "reward_std": 0.21108780801296234,
344
+ "rewards/accuracy_reward": 0.3515625,
345
+ "rewards/format_reward": 0.984375,
346
+ "step": 28
347
+ },
348
+ {
349
+ "completion_length": 566.8515625,
350
+ "epoch": 0.012641673931996512,
351
+ "grad_norm": 1.1244480609893799,
352
+ "learning_rate": 9.873583260680035e-07,
353
+ "loss": -0.005511581432074308,
354
+ "reward": 0.5296875238418579,
355
+ "reward_std": 0.25184717029333115,
356
+ "rewards/accuracy_reward": 0.3359375,
357
+ "rewards/format_reward": 0.96875,
358
+ "step": 29
359
+ },
360
+ {
361
+ "completion_length": 629.2109375,
362
+ "epoch": 0.013077593722755012,
363
+ "grad_norm": 1.0730060338974,
364
+ "learning_rate": 9.869224062772449e-07,
365
+ "loss": -0.00590163329616189,
366
+ "reward": 0.5437500476837158,
367
+ "reward_std": 0.30221718549728394,
368
+ "rewards/accuracy_reward": 0.34375,
369
+ "rewards/format_reward": 1.0,
370
+ "step": 30
371
+ },
372
+ {
373
+ "completion_length": 577.2890625,
374
+ "epoch": 0.013513513513513514,
375
+ "grad_norm": 1.0006390810012817,
376
+ "learning_rate": 9.864864864864865e-07,
377
+ "loss": -0.004602149594575167,
378
+ "reward": 0.48906251788139343,
379
+ "reward_std": 0.2546490430831909,
380
+ "rewards/accuracy_reward": 0.296875,
381
+ "rewards/format_reward": 0.9609375,
382
+ "step": 31
383
+ },
384
+ {
385
+ "completion_length": 652.453125,
386
+ "epoch": 0.013949433304272014,
387
+ "grad_norm": 2.0136349201202393,
388
+ "learning_rate": 9.860505666957279e-07,
389
+ "loss": -0.007033544359728694,
390
+ "reward": 0.6000000536441803,
391
+ "reward_std": 0.34614098072052,
392
+ "rewards/accuracy_reward": 0.40625,
393
+ "rewards/format_reward": 0.96875,
394
+ "step": 32
395
+ },
396
+ {
397
+ "completion_length": 830.296875,
398
+ "epoch": 0.014385353095030515,
399
+ "grad_norm": 0.6222465634346008,
400
+ "learning_rate": 9.856146469049695e-07,
401
+ "loss": -0.0058622711803764105,
402
+ "reward": 0.6406250596046448,
403
+ "reward_std": 0.26844407618045807,
404
+ "rewards/accuracy_reward": 0.4453125,
405
+ "rewards/format_reward": 0.9765625,
406
+ "step": 33
407
+ },
408
+ {
409
+ "completion_length": 924.8984375,
410
+ "epoch": 0.014821272885789015,
411
+ "grad_norm": 1.6224457025527954,
412
+ "learning_rate": 9.851787271142109e-07,
413
+ "loss": -0.006918259430676699,
414
+ "reward": 0.45781250298023224,
415
+ "reward_std": 0.1292574293911457,
416
+ "rewards/accuracy_reward": 0.265625,
417
+ "rewards/format_reward": 0.9609375,
418
+ "step": 34
419
+ },
420
+ {
421
+ "completion_length": 757.8828125,
422
+ "epoch": 0.015257192676547515,
423
+ "grad_norm": 0.8691195249557495,
424
+ "learning_rate": 9.847428073234525e-07,
425
+ "loss": -0.005784029606729746,
426
+ "reward": 0.45468753576278687,
427
+ "reward_std": 0.20147473365068436,
428
+ "rewards/accuracy_reward": 0.2578125,
429
+ "rewards/format_reward": 0.984375,
430
+ "step": 35
431
+ },
432
+ {
433
+ "completion_length": 1539.546875,
434
+ "epoch": 0.015693112467306015,
435
+ "grad_norm": 4.3893961906433105,
436
+ "learning_rate": 9.843068875326939e-07,
437
+ "loss": -0.010595182422548532,
438
+ "reward": 0.4765625298023224,
439
+ "reward_std": 0.2606821805238724,
440
+ "rewards/accuracy_reward": 0.296875,
441
+ "rewards/format_reward": 0.8984375,
442
+ "step": 36
443
+ },
444
+ {
445
+ "completion_length": 949.203125,
446
+ "epoch": 0.016129032258064516,
447
+ "grad_norm": 1.039124608039856,
448
+ "learning_rate": 9.838709677419355e-07,
449
+ "loss": -0.005853116046637297,
450
+ "reward": 0.6062500476837158,
451
+ "reward_std": 0.34973812103271484,
452
+ "rewards/accuracy_reward": 0.4140625,
453
+ "rewards/format_reward": 0.9609375,
454
+ "step": 37
455
+ },
456
+ {
457
+ "completion_length": 1128.515625,
458
+ "epoch": 0.016564952048823016,
459
+ "grad_norm": 2.9782750606536865,
460
+ "learning_rate": 9.834350479511769e-07,
461
+ "loss": -0.00639305729418993,
462
+ "reward": 0.3796875327825546,
463
+ "reward_std": 0.2201501727104187,
464
+ "rewards/accuracy_reward": 0.1953125,
465
+ "rewards/format_reward": 0.921875,
466
+ "step": 38
467
+ },
468
+ {
469
+ "completion_length": 803.09375,
470
+ "epoch": 0.017000871839581516,
471
+ "grad_norm": 0.9739387035369873,
472
+ "learning_rate": 9.829991281604185e-07,
473
+ "loss": -0.003955277847126126,
474
+ "reward": 0.5281250327825546,
475
+ "reward_std": 0.26489946991205215,
476
+ "rewards/accuracy_reward": 0.3359375,
477
+ "rewards/format_reward": 0.9609375,
478
+ "step": 39
479
+ },
480
+ {
481
+ "completion_length": 624.953125,
482
+ "epoch": 0.017436791630340016,
483
+ "grad_norm": 0.5311559438705444,
484
+ "learning_rate": 9.825632083696599e-07,
485
+ "loss": -0.004024791065603495,
486
+ "reward": 0.5468750298023224,
487
+ "reward_std": 0.2868617922067642,
488
+ "rewards/accuracy_reward": 0.3515625,
489
+ "rewards/format_reward": 0.9765625,
490
+ "step": 40
491
+ },
492
+ {
493
+ "completion_length": 1250.9765625,
494
+ "epoch": 0.017872711421098517,
495
+ "grad_norm": 0.7332771420478821,
496
+ "learning_rate": 9.821272885789015e-07,
497
+ "loss": -0.005356588866561651,
498
+ "reward": 0.44062504172325134,
499
+ "reward_std": 0.20438477396965027,
500
+ "rewards/accuracy_reward": 0.2578125,
501
+ "rewards/format_reward": 0.9140625,
502
+ "step": 41
503
+ },
504
+ {
505
+ "completion_length": 1476.9921875,
506
+ "epoch": 0.018308631211857017,
507
+ "grad_norm": 2.0835506916046143,
508
+ "learning_rate": 9.816913687881429e-07,
509
+ "loss": -0.006023196969181299,
510
+ "reward": 0.4125000238418579,
511
+ "reward_std": 0.23667097091674805,
512
+ "rewards/accuracy_reward": 0.234375,
513
+ "rewards/format_reward": 0.890625,
514
+ "step": 42
515
+ },
516
+ {
517
+ "completion_length": 1100.25,
518
+ "epoch": 0.018744551002615517,
519
+ "grad_norm": 0.7210353016853333,
520
+ "learning_rate": 9.812554489973845e-07,
521
+ "loss": -0.00412205932661891,
522
+ "reward": 0.5765625238418579,
523
+ "reward_std": 0.35319100320339203,
524
+ "rewards/accuracy_reward": 0.390625,
525
+ "rewards/format_reward": 0.9296875,
526
+ "step": 43
527
+ },
528
+ {
529
+ "completion_length": 1268.8828125,
530
+ "epoch": 0.01918047079337402,
531
+ "grad_norm": 1.018958330154419,
532
+ "learning_rate": 9.808195292066259e-07,
533
+ "loss": -0.005287598352879286,
534
+ "reward": 0.5796875357627869,
535
+ "reward_std": 0.33388449996709824,
536
+ "rewards/accuracy_reward": 0.3984375,
537
+ "rewards/format_reward": 0.90625,
538
+ "step": 44
539
+ },
540
+ {
541
+ "completion_length": 1529.1484375,
542
+ "epoch": 0.01961639058413252,
543
+ "grad_norm": 0.9156416058540344,
544
+ "learning_rate": 9.803836094158675e-07,
545
+ "loss": -0.006656843703240156,
546
+ "reward": 0.4531250298023224,
547
+ "reward_std": 0.3121063858270645,
548
+ "rewards/accuracy_reward": 0.2734375,
549
+ "rewards/format_reward": 0.8984375,
550
+ "step": 45
551
+ },
552
+ {
553
+ "completion_length": 771.7109375,
554
+ "epoch": 0.02005231037489102,
555
+ "grad_norm": 1.1348389387130737,
556
+ "learning_rate": 9.79947689625109e-07,
557
+ "loss": -0.004119608784094453,
558
+ "reward": 0.5406250357627869,
559
+ "reward_std": 0.16695528104901314,
560
+ "rewards/accuracy_reward": 0.34375,
561
+ "rewards/format_reward": 0.984375,
562
+ "step": 46
563
+ },
564
+ {
565
+ "completion_length": 1171.2578125,
566
+ "epoch": 0.02048823016564952,
567
+ "grad_norm": 0.7597943544387817,
568
+ "learning_rate": 9.795117698343505e-07,
569
+ "loss": -0.004714524140581489,
570
+ "reward": 0.6031250357627869,
571
+ "reward_std": 0.296435609459877,
572
+ "rewards/accuracy_reward": 0.4140625,
573
+ "rewards/format_reward": 0.9453125,
574
+ "step": 47
575
+ },
576
+ {
577
+ "completion_length": 1121.265625,
578
+ "epoch": 0.020924149956408022,
579
+ "grad_norm": 0.7531502842903137,
580
+ "learning_rate": 9.790758500435918e-07,
581
+ "loss": -0.004732346162199974,
582
+ "reward": 0.4359375089406967,
583
+ "reward_std": 0.3109729588031769,
584
+ "rewards/accuracy_reward": 0.25,
585
+ "rewards/format_reward": 0.9296875,
586
+ "step": 48
587
+ },
588
+ {
589
+ "completion_length": 1959.421875,
590
+ "epoch": 0.021360069747166522,
591
+ "grad_norm": 1.5503896474838257,
592
+ "learning_rate": 9.786399302528334e-07,
593
+ "loss": -0.0054204994812607765,
594
+ "reward": 0.4218750298023224,
595
+ "reward_std": 0.28712356090545654,
596
+ "rewards/accuracy_reward": 0.2578125,
597
+ "rewards/format_reward": 0.8203125,
598
+ "step": 49
599
+ },
600
+ {
601
+ "completion_length": 1155.4140625,
602
+ "epoch": 0.021795989537925022,
603
+ "grad_norm": 0.5289723873138428,
604
+ "learning_rate": 9.782040104620748e-07,
605
+ "loss": -0.00590874906629324,
606
+ "reward": 0.4140625298023224,
607
+ "reward_std": 0.2974793165922165,
608
+ "rewards/accuracy_reward": 0.2265625,
609
+ "rewards/format_reward": 0.9375,
610
+ "step": 50
611
+ },
612
+ {
613
+ "completion_length": 1361.078125,
614
+ "epoch": 0.022231909328683522,
615
+ "grad_norm": 0.7921638488769531,
616
+ "learning_rate": 9.777680906713164e-07,
617
+ "loss": -0.005040215328335762,
618
+ "reward": 0.3031249940395355,
619
+ "reward_std": 0.21944554150104523,
620
+ "rewards/accuracy_reward": 0.125,
621
+ "rewards/format_reward": 0.890625,
622
+ "step": 51
623
+ },
624
+ {
625
+ "completion_length": 1471.5859375,
626
+ "epoch": 0.022667829119442023,
627
+ "grad_norm": 0.6596994996070862,
628
+ "learning_rate": 9.77332170880558e-07,
629
+ "loss": -0.005814009346067905,
630
+ "reward": 0.4859375059604645,
631
+ "reward_std": 0.3088204860687256,
632
+ "rewards/accuracy_reward": 0.3046875,
633
+ "rewards/format_reward": 0.90625,
634
+ "step": 52
635
+ },
636
+ {
637
+ "completion_length": 1483.7265625,
638
+ "epoch": 0.023103748910200523,
639
+ "grad_norm": 0.9196128249168396,
640
+ "learning_rate": 9.768962510897994e-07,
641
+ "loss": -0.005532125011086464,
642
+ "reward": 0.6109375357627869,
643
+ "reward_std": 0.32757391035556793,
644
+ "rewards/accuracy_reward": 0.4296875,
645
+ "rewards/format_reward": 0.90625,
646
+ "step": 53
647
+ },
648
+ {
649
+ "completion_length": 1215.15625,
650
+ "epoch": 0.023539668700959023,
651
+ "grad_norm": 0.7604343891143799,
652
+ "learning_rate": 9.764603312990408e-07,
653
+ "loss": -0.0066660866141319275,
654
+ "reward": 0.6000000536441803,
655
+ "reward_std": 0.36297860741615295,
656
+ "rewards/accuracy_reward": 0.4140625,
657
+ "rewards/format_reward": 0.9296875,
658
+ "step": 54
659
+ },
660
+ {
661
+ "completion_length": 1351.3125,
662
+ "epoch": 0.023975588491717523,
663
+ "grad_norm": 0.7223543524742126,
664
+ "learning_rate": 9.760244115082824e-07,
665
+ "loss": -0.005946665536612272,
666
+ "reward": 0.43906253576278687,
667
+ "reward_std": 0.2528854086995125,
668
+ "rewards/accuracy_reward": 0.2578125,
669
+ "rewards/format_reward": 0.90625,
670
+ "step": 55
671
+ },
672
+ {
673
+ "completion_length": 1185.84375,
674
+ "epoch": 0.024411508282476024,
675
+ "grad_norm": 0.5095703601837158,
676
+ "learning_rate": 9.755884917175238e-07,
677
+ "loss": -0.0064112339168787,
678
+ "reward": 0.5093750208616257,
679
+ "reward_std": 0.21522878110408783,
680
+ "rewards/accuracy_reward": 0.3203125,
681
+ "rewards/format_reward": 0.9453125,
682
+ "step": 56
683
+ },
684
+ {
685
+ "completion_length": 1281.0546875,
686
+ "epoch": 0.024847428073234524,
687
+ "grad_norm": 1.2985528707504272,
688
+ "learning_rate": 9.751525719267654e-07,
689
+ "loss": -0.006073690485209227,
690
+ "reward": 0.515625,
691
+ "reward_std": 0.26809659600257874,
692
+ "rewards/accuracy_reward": 0.328125,
693
+ "rewards/format_reward": 0.9375,
694
+ "step": 57
695
+ },
696
+ {
697
+ "completion_length": 1124.7109375,
698
+ "epoch": 0.025283347863993024,
699
+ "grad_norm": 0.5998630523681641,
700
+ "learning_rate": 9.74716652136007e-07,
701
+ "loss": -0.006307224277406931,
702
+ "reward": 0.42500001192092896,
703
+ "reward_std": 0.15122529119253159,
704
+ "rewards/accuracy_reward": 0.234375,
705
+ "rewards/format_reward": 0.953125,
706
+ "step": 58
707
+ },
708
+ {
709
+ "completion_length": 1213.90625,
710
+ "epoch": 0.025719267654751524,
711
+ "grad_norm": 1.0118658542633057,
712
+ "learning_rate": 9.742807323452484e-07,
713
+ "loss": -0.007607629988342524,
714
+ "reward": 0.7015625238418579,
715
+ "reward_std": 0.26937858760356903,
716
+ "rewards/accuracy_reward": 0.515625,
717
+ "rewards/format_reward": 0.9296875,
718
+ "step": 59
719
+ },
720
+ {
721
+ "completion_length": 816.8046875,
722
+ "epoch": 0.026155187445510025,
723
+ "grad_norm": 0.5398353338241577,
724
+ "learning_rate": 9.738448125544898e-07,
725
+ "loss": -0.005773038603365421,
726
+ "reward": 0.8140625357627869,
727
+ "reward_std": 0.2714267522096634,
728
+ "rewards/accuracy_reward": 0.6171875,
729
+ "rewards/format_reward": 0.984375,
730
+ "step": 60
731
+ },
732
+ {
733
+ "completion_length": 802.9453125,
734
+ "epoch": 0.02659110723626853,
735
+ "grad_norm": 0.40469521284103394,
736
+ "learning_rate": 9.734088927637314e-07,
737
+ "loss": -0.005671899998560548,
738
+ "reward": 0.5234375298023224,
739
+ "reward_std": 0.19351572543382645,
740
+ "rewards/accuracy_reward": 0.328125,
741
+ "rewards/format_reward": 0.9765625,
742
+ "step": 61
743
+ },
744
+ {
745
+ "completion_length": 609.734375,
746
+ "epoch": 0.02702702702702703,
747
+ "grad_norm": 0.2660030424594879,
748
+ "learning_rate": 9.72972972972973e-07,
749
+ "loss": -0.003733730292879045,
750
+ "reward": 0.4968750327825546,
751
+ "reward_std": 0.11230766773223877,
752
+ "rewards/accuracy_reward": 0.296875,
753
+ "rewards/format_reward": 1.0,
754
+ "step": 62
755
+ },
756
+ {
757
+ "completion_length": 606.8125,
758
+ "epoch": 0.02746294681778553,
759
+ "grad_norm": 0.34162867069244385,
760
+ "learning_rate": 9.725370531822144e-07,
761
+ "loss": -0.004276728723198175,
762
+ "reward": 0.46406252682209015,
763
+ "reward_std": 0.17800088226795197,
764
+ "rewards/accuracy_reward": 0.265625,
765
+ "rewards/format_reward": 0.9921875,
766
+ "step": 63
767
+ },
768
+ {
769
+ "completion_length": 675.0234375,
770
+ "epoch": 0.02789886660854403,
771
+ "grad_norm": 0.3267340660095215,
772
+ "learning_rate": 9.72101133391456e-07,
773
+ "loss": -0.004803936462849379,
774
+ "reward": 0.47968754172325134,
775
+ "reward_std": 0.2698579430580139,
776
+ "rewards/accuracy_reward": 0.28125,
777
+ "rewards/format_reward": 0.9921875,
778
+ "step": 64
779
+ },
780
+ {
781
+ "completion_length": 689.875,
782
+ "epoch": 0.02833478639930253,
783
+ "grad_norm": 0.5070520639419556,
784
+ "learning_rate": 9.716652136006974e-07,
785
+ "loss": -0.004681795369833708,
786
+ "reward": 0.5890625417232513,
787
+ "reward_std": 0.28590644896030426,
788
+ "rewards/accuracy_reward": 0.390625,
789
+ "rewards/format_reward": 0.9921875,
790
+ "step": 65
791
+ },
792
+ {
793
+ "completion_length": 741.4296875,
794
+ "epoch": 0.02877070619006103,
795
+ "grad_norm": 0.539318859577179,
796
+ "learning_rate": 9.712292938099388e-07,
797
+ "loss": -0.0042268745601177216,
798
+ "reward": 0.7734375298023224,
799
+ "reward_std": 0.1940227895975113,
800
+ "rewards/accuracy_reward": 0.578125,
801
+ "rewards/format_reward": 0.9765625,
802
+ "step": 66
803
+ },
804
+ {
805
+ "completion_length": 494.328125,
806
+ "epoch": 0.02920662598081953,
807
+ "grad_norm": 0.23426468670368195,
808
+ "learning_rate": 9.707933740191804e-07,
809
+ "loss": -0.0033774186158552766,
810
+ "reward": 0.6296875476837158,
811
+ "reward_std": 0.12073517590761185,
812
+ "rewards/accuracy_reward": 0.4296875,
813
+ "rewards/format_reward": 1.0,
814
+ "step": 67
815
+ },
816
+ {
817
+ "completion_length": 663.703125,
818
+ "epoch": 0.02964254577157803,
819
+ "grad_norm": 0.5735094547271729,
820
+ "learning_rate": 9.70357454228422e-07,
821
+ "loss": -0.004496369976550341,
822
+ "reward": 0.47812503576278687,
823
+ "reward_std": 0.2521483972668648,
824
+ "rewards/accuracy_reward": 0.28125,
825
+ "rewards/format_reward": 0.984375,
826
+ "step": 68
827
+ },
828
+ {
829
+ "completion_length": 556.1875,
830
+ "epoch": 0.03007846556233653,
831
+ "grad_norm": 0.6028347611427307,
832
+ "learning_rate": 9.699215344376634e-07,
833
+ "loss": -0.0033272686414420605,
834
+ "reward": 0.5500000417232513,
835
+ "reward_std": 0.1772443801164627,
836
+ "rewards/accuracy_reward": 0.3515625,
837
+ "rewards/format_reward": 0.9921875,
838
+ "step": 69
839
+ },
840
+ {
841
+ "completion_length": 566.171875,
842
+ "epoch": 0.03051438535309503,
843
+ "grad_norm": 0.2644914984703064,
844
+ "learning_rate": 9.69485614646905e-07,
845
+ "loss": -0.0035728231305256486,
846
+ "reward": 0.44062504172325134,
847
+ "reward_std": 0.1354043260216713,
848
+ "rewards/accuracy_reward": 0.2421875,
849
+ "rewards/format_reward": 0.9921875,
850
+ "step": 70
851
+ },
852
+ {
853
+ "completion_length": 747.1171875,
854
+ "epoch": 0.03095030514385353,
855
+ "grad_norm": 0.45364266633987427,
856
+ "learning_rate": 9.690496948561464e-07,
857
+ "loss": -0.004377002594992518,
858
+ "reward": 0.5640625357627869,
859
+ "reward_std": 0.26171743869781494,
860
+ "rewards/accuracy_reward": 0.3671875,
861
+ "rewards/format_reward": 0.984375,
862
+ "step": 71
863
+ },
864
+ {
865
+ "completion_length": 736.7734375,
866
+ "epoch": 0.03138622493461203,
867
+ "grad_norm": 0.4566240608692169,
868
+ "learning_rate": 9.686137750653878e-07,
869
+ "loss": -0.0046136470045894384,
870
+ "reward": 0.5250000357627869,
871
+ "reward_std": 0.20069601386785507,
872
+ "rewards/accuracy_reward": 0.328125,
873
+ "rewards/format_reward": 0.984375,
874
+ "step": 72
875
+ },
876
+ {
877
+ "completion_length": 459.0234375,
878
+ "epoch": 0.03182214472537053,
879
+ "grad_norm": 0.4804815948009491,
880
+ "learning_rate": 9.681778552746294e-07,
881
+ "loss": -0.002390326582826674,
882
+ "reward": 0.5593750327825546,
883
+ "reward_std": 0.24959056824445724,
884
+ "rewards/accuracy_reward": 0.359375,
885
+ "rewards/format_reward": 1.0,
886
+ "step": 73
887
+ },
888
+ {
889
+ "completion_length": 611.203125,
890
+ "epoch": 0.03225806451612903,
891
+ "grad_norm": 0.32491230964660645,
892
+ "learning_rate": 9.67741935483871e-07,
893
+ "loss": -0.002548949094489217,
894
+ "reward": 0.6343750357627869,
895
+ "reward_std": 0.15103846788406372,
896
+ "rewards/accuracy_reward": 0.4375,
897
+ "rewards/format_reward": 0.984375,
898
+ "step": 74
899
+ },
900
+ {
901
+ "completion_length": 844.71875,
902
+ "epoch": 0.03269398430688753,
903
+ "grad_norm": 0.45734190940856934,
904
+ "learning_rate": 9.673060156931124e-07,
905
+ "loss": -0.0051384728867560625,
906
+ "reward": 0.47031253576278687,
907
+ "reward_std": 0.21036501228809357,
908
+ "rewards/accuracy_reward": 0.2734375,
909
+ "rewards/format_reward": 0.984375,
910
+ "step": 75
911
+ },
912
+ {
913
+ "completion_length": 507.1640625,
914
+ "epoch": 0.03312990409764603,
915
+ "grad_norm": 0.33810898661613464,
916
+ "learning_rate": 9.66870095902354e-07,
917
+ "loss": -0.0030672921566292644,
918
+ "reward": 0.7390625476837158,
919
+ "reward_std": 0.19674428552389145,
920
+ "rewards/accuracy_reward": 0.5390625,
921
+ "rewards/format_reward": 1.0,
922
+ "step": 76
923
+ },
924
+ {
925
+ "completion_length": 901.546875,
926
+ "epoch": 0.03356582388840453,
927
+ "grad_norm": 0.4877094626426697,
928
+ "learning_rate": 9.664341761115954e-07,
929
+ "loss": -0.004802107345312834,
930
+ "reward": 0.6296875476837158,
931
+ "reward_std": 0.24297793954610825,
932
+ "rewards/accuracy_reward": 0.4375,
933
+ "rewards/format_reward": 0.9609375,
934
+ "step": 77
935
+ },
936
+ {
937
+ "completion_length": 714.9296875,
938
+ "epoch": 0.03400174367916303,
939
+ "grad_norm": 0.6446647644042969,
940
+ "learning_rate": 9.659982563208368e-07,
941
+ "loss": -0.0041290284134447575,
942
+ "reward": 0.6953125298023224,
943
+ "reward_std": 0.21879743784666061,
944
+ "rewards/accuracy_reward": 0.5,
945
+ "rewards/format_reward": 0.9765625,
946
+ "step": 78
947
+ },
948
+ {
949
+ "completion_length": 595.71875,
950
+ "epoch": 0.03443766346992153,
951
+ "grad_norm": 0.5552946329116821,
952
+ "learning_rate": 9.655623365300784e-07,
953
+ "loss": -0.00336921657435596,
954
+ "reward": 0.6906250417232513,
955
+ "reward_std": 0.2824498862028122,
956
+ "rewards/accuracy_reward": 0.4921875,
957
+ "rewards/format_reward": 0.9921875,
958
+ "step": 79
959
+ },
960
+ {
961
+ "completion_length": 559.0859375,
962
+ "epoch": 0.03487358326068003,
963
+ "grad_norm": 0.3945360481739044,
964
+ "learning_rate": 9.6512641673932e-07,
965
+ "loss": -0.0029993923380970955,
966
+ "reward": 0.5187500417232513,
967
+ "reward_std": 0.18508683145046234,
968
+ "rewards/accuracy_reward": 0.3203125,
969
+ "rewards/format_reward": 0.9921875,
970
+ "step": 80
971
+ },
972
+ {
973
+ "completion_length": 702.71875,
974
+ "epoch": 0.03530950305143853,
975
+ "grad_norm": 0.3644000291824341,
976
+ "learning_rate": 9.646904969485614e-07,
977
+ "loss": -0.004066583467647433,
978
+ "reward": 0.7515625357627869,
979
+ "reward_std": 0.17609478533267975,
980
+ "rewards/accuracy_reward": 0.5546875,
981
+ "rewards/format_reward": 0.984375,
982
+ "step": 81
983
+ },
984
+ {
985
+ "completion_length": 594.859375,
986
+ "epoch": 0.03574542284219703,
987
+ "grad_norm": 0.43995150923728943,
988
+ "learning_rate": 9.64254577157803e-07,
989
+ "loss": -0.0034514348953962326,
990
+ "reward": 0.49531254172325134,
991
+ "reward_std": 0.28716301918029785,
992
+ "rewards/accuracy_reward": 0.296875,
993
+ "rewards/format_reward": 0.9921875,
994
+ "step": 82
995
+ },
996
+ {
997
+ "completion_length": 468.734375,
998
+ "epoch": 0.036181342632955533,
999
+ "grad_norm": 0.49772775173187256,
1000
+ "learning_rate": 9.638186573670444e-07,
1001
+ "loss": -0.0027159389574080706,
1002
+ "reward": 0.27031251788139343,
1003
+ "reward_std": 0.15308690071105957,
1004
+ "rewards/accuracy_reward": 0.0703125,
1005
+ "rewards/format_reward": 1.0,
1006
+ "step": 83
1007
+ },
1008
+ {
1009
+ "completion_length": 626.71875,
1010
+ "epoch": 0.036617262423714034,
1011
+ "grad_norm": 0.27482131123542786,
1012
+ "learning_rate": 9.63382737576286e-07,
1013
+ "loss": -0.0032146567245945334,
1014
+ "reward": 0.5421875417232513,
1015
+ "reward_std": 0.14730052649974823,
1016
+ "rewards/accuracy_reward": 0.34375,
1017
+ "rewards/format_reward": 0.9921875,
1018
+ "step": 84
1019
+ },
1020
+ {
1021
+ "completion_length": 496.859375,
1022
+ "epoch": 0.037053182214472534,
1023
+ "grad_norm": 0.39663198590278625,
1024
+ "learning_rate": 9.629468177855274e-07,
1025
+ "loss": -0.0021742535172961652,
1026
+ "reward": 0.6218750476837158,
1027
+ "reward_std": 0.25354722142219543,
1028
+ "rewards/accuracy_reward": 0.421875,
1029
+ "rewards/format_reward": 1.0,
1030
+ "step": 85
1031
+ },
1032
+ {
1033
+ "completion_length": 507.53125,
1034
+ "epoch": 0.037489102005231034,
1035
+ "grad_norm": 0.38531285524368286,
1036
+ "learning_rate": 9.62510897994769e-07,
1037
+ "loss": -0.003144865622743964,
1038
+ "reward": 0.6140625327825546,
1039
+ "reward_std": 0.19332444667816162,
1040
+ "rewards/accuracy_reward": 0.4140625,
1041
+ "rewards/format_reward": 1.0,
1042
+ "step": 86
1043
+ },
1044
+ {
1045
+ "completion_length": 522.9609375,
1046
+ "epoch": 0.03792502179598954,
1047
+ "grad_norm": 0.4018486738204956,
1048
+ "learning_rate": 9.620749782040104e-07,
1049
+ "loss": -0.003351722378283739,
1050
+ "reward": 0.5750000476837158,
1051
+ "reward_std": 0.2790592461824417,
1052
+ "rewards/accuracy_reward": 0.375,
1053
+ "rewards/format_reward": 1.0,
1054
+ "step": 87
1055
+ },
1056
+ {
1057
+ "completion_length": 574.625,
1058
+ "epoch": 0.03836094158674804,
1059
+ "grad_norm": 0.29832443594932556,
1060
+ "learning_rate": 9.61639058413252e-07,
1061
+ "loss": -0.0031917719170451164,
1062
+ "reward": 0.49531254172325134,
1063
+ "reward_std": 0.19090906530618668,
1064
+ "rewards/accuracy_reward": 0.296875,
1065
+ "rewards/format_reward": 0.9921875,
1066
+ "step": 88
1067
+ },
1068
+ {
1069
+ "completion_length": 506.140625,
1070
+ "epoch": 0.03879686137750654,
1071
+ "grad_norm": 0.34219008684158325,
1072
+ "learning_rate": 9.612031386224936e-07,
1073
+ "loss": -0.002893596771173179,
1074
+ "reward": 0.5359375476837158,
1075
+ "reward_std": 0.21778053790330887,
1076
+ "rewards/accuracy_reward": 0.3359375,
1077
+ "rewards/format_reward": 1.0,
1078
+ "step": 89
1079
+ },
1080
+ {
1081
+ "completion_length": 520.8984375,
1082
+ "epoch": 0.03923278116826504,
1083
+ "grad_norm": 0.3178415298461914,
1084
+ "learning_rate": 9.60767218831735e-07,
1085
+ "loss": -0.0036478497786447406,
1086
+ "reward": 0.5828125476837158,
1087
+ "reward_std": 0.16781240701675415,
1088
+ "rewards/accuracy_reward": 0.3828125,
1089
+ "rewards/format_reward": 1.0,
1090
+ "step": 90
1091
+ },
1092
+ {
1093
+ "completion_length": 524.90625,
1094
+ "epoch": 0.03966870095902354,
1095
+ "grad_norm": 0.3558061122894287,
1096
+ "learning_rate": 9.603312990409764e-07,
1097
+ "loss": -0.003106694668531418,
1098
+ "reward": 0.5437500476837158,
1099
+ "reward_std": 0.268809512257576,
1100
+ "rewards/accuracy_reward": 0.34375,
1101
+ "rewards/format_reward": 1.0,
1102
+ "step": 91
1103
+ },
1104
+ {
1105
+ "completion_length": 486.4140625,
1106
+ "epoch": 0.04010462074978204,
1107
+ "grad_norm": 0.3201664388179779,
1108
+ "learning_rate": 9.59895379250218e-07,
1109
+ "loss": -0.00227005232591182,
1110
+ "reward": 0.5750000476837158,
1111
+ "reward_std": 0.17464719712734222,
1112
+ "rewards/accuracy_reward": 0.375,
1113
+ "rewards/format_reward": 1.0,
1114
+ "step": 92
1115
+ },
1116
+ {
1117
+ "completion_length": 605.6640625,
1118
+ "epoch": 0.04054054054054054,
1119
+ "grad_norm": 0.5713381767272949,
1120
+ "learning_rate": 9.594594594594594e-07,
1121
+ "loss": -0.003524004598148167,
1122
+ "reward": 0.6125000417232513,
1123
+ "reward_std": 0.26134093105793,
1124
+ "rewards/accuracy_reward": 0.4140625,
1125
+ "rewards/format_reward": 0.9921875,
1126
+ "step": 93
1127
+ },
1128
+ {
1129
+ "completion_length": 516.140625,
1130
+ "epoch": 0.04097646033129904,
1131
+ "grad_norm": 0.41625216603279114,
1132
+ "learning_rate": 9.59023539668701e-07,
1133
+ "loss": -0.003131876001134515,
1134
+ "reward": 0.5906250476837158,
1135
+ "reward_std": 0.20805486291646957,
1136
+ "rewards/accuracy_reward": 0.390625,
1137
+ "rewards/format_reward": 1.0,
1138
+ "step": 94
1139
+ },
1140
+ {
1141
+ "completion_length": 528.953125,
1142
+ "epoch": 0.04141238012205754,
1143
+ "grad_norm": 0.48059654235839844,
1144
+ "learning_rate": 9.585876198779426e-07,
1145
+ "loss": -0.003212686162441969,
1146
+ "reward": 0.5984375476837158,
1147
+ "reward_std": 0.24329258501529694,
1148
+ "rewards/accuracy_reward": 0.3984375,
1149
+ "rewards/format_reward": 1.0,
1150
+ "step": 95
1151
+ },
1152
+ {
1153
+ "completion_length": 500.1328125,
1154
+ "epoch": 0.041848299912816043,
1155
+ "grad_norm": 0.5891656875610352,
1156
+ "learning_rate": 9.58151700087184e-07,
1157
+ "loss": -0.0030139287700876594,
1158
+ "reward": 0.5593750327825546,
1159
+ "reward_std": 0.18648964911699295,
1160
+ "rewards/accuracy_reward": 0.359375,
1161
+ "rewards/format_reward": 1.0,
1162
+ "step": 96
1163
+ },
1164
+ {
1165
+ "completion_length": 474.71875,
1166
+ "epoch": 0.042284219703574544,
1167
+ "grad_norm": 0.8267337083816528,
1168
+ "learning_rate": 9.577157802964253e-07,
1169
+ "loss": -0.002822687732987106,
1170
+ "reward": 0.5515625476837158,
1171
+ "reward_std": 0.2012200579047203,
1172
+ "rewards/accuracy_reward": 0.3515625,
1173
+ "rewards/format_reward": 1.0,
1174
+ "step": 97
1175
+ },
1176
+ {
1177
+ "completion_length": 791.3203125,
1178
+ "epoch": 0.042720139494333044,
1179
+ "grad_norm": 0.38680315017700195,
1180
+ "learning_rate": 9.57279860505667e-07,
1181
+ "loss": -0.003116427455097437,
1182
+ "reward": 0.6093750298023224,
1183
+ "reward_std": 0.2934764325618744,
1184
+ "rewards/accuracy_reward": 0.4140625,
1185
+ "rewards/format_reward": 0.9765625,
1186
+ "step": 98
1187
+ },
1188
+ {
1189
+ "completion_length": 552.703125,
1190
+ "epoch": 0.043156059285091544,
1191
+ "grad_norm": 0.4463382959365845,
1192
+ "learning_rate": 9.568439407149083e-07,
1193
+ "loss": -0.0025965895038098097,
1194
+ "reward": 0.5578125417232513,
1195
+ "reward_std": 0.21536517888307571,
1196
+ "rewards/accuracy_reward": 0.359375,
1197
+ "rewards/format_reward": 0.9921875,
1198
+ "step": 99
1199
+ },
1200
+ {
1201
+ "completion_length": 462.828125,
1202
+ "epoch": 0.043591979075850044,
1203
+ "grad_norm": 0.3906485140323639,
1204
+ "learning_rate": 9.5640802092415e-07,
1205
+ "loss": -0.002442999859340489,
1206
+ "reward": 0.4968750476837158,
1207
+ "reward_std": 0.2109457552433014,
1208
+ "rewards/accuracy_reward": 0.296875,
1209
+ "rewards/format_reward": 1.0,
1210
+ "step": 100
1211
+ }
1212
+ ],
1213
+ "logging_steps": 1.0,
1214
+ "max_steps": 2294,
1215
+ "num_input_tokens_seen": 0,
1216
+ "num_train_epochs": 1,
1217
+ "save_steps": 100,
1218
+ "stateful_callbacks": {
1219
+ "TrainerControl": {
1220
+ "args": {
1221
+ "should_epoch_stop": false,
1222
+ "should_evaluate": false,
1223
+ "should_log": false,
1224
+ "should_save": true,
1225
+ "should_training_stop": false
1226
+ },
1227
+ "attributes": {}
1228
+ }
1229
+ },
1230
+ "total_flos": 0.0,
1231
+ "train_batch_size": 8,
1232
+ "trial_name": null,
1233
+ "trial_params": null
1234
+ }
4drl/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f9d6bf347aa96331358293b6fce260c77af317ecf6622528c2014677acb57af
3
+ size 9041
4drl/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
4drl/zero_to_fp32.py ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+
3
+ # Copyright (c) Microsoft Corporation.
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
6
+ # DeepSpeed Team
7
+
8
+ # This script extracts fp32 consolidated weights from a zero 1, 2 and 3 DeepSpeed checkpoints. It gets
9
+ # copied into the top level checkpoint dir, so the user can easily do the conversion at any point in
10
+ # the future. Once extracted, the weights don't require DeepSpeed and can be used in any
11
+ # application.
12
+ #
13
+ # example:
14
+ # python zero_to_fp32.py . output_dir/
15
+ # or
16
+ # python zero_to_fp32.py . output_dir/ --safe_serialization
17
+
18
+ import argparse
19
+ import torch
20
+ import glob
21
+ import math
22
+ import os
23
+ import re
24
+ import json
25
+ from tqdm import tqdm
26
+ from collections import OrderedDict
27
+ from dataclasses import dataclass
28
+
29
+ # while this script doesn't use deepspeed to recover data, since the checkpoints are pickled with
30
+ # DeepSpeed data structures it has to be available in the current python environment.
31
+ from deepspeed.utils import logger
32
+ from deepspeed.checkpoint.constants import (DS_VERSION, OPTIMIZER_STATE_DICT, SINGLE_PARTITION_OF_FP32_GROUPS,
33
+ FP32_FLAT_GROUPS, ZERO_STAGE, PARTITION_COUNT, PARAM_SHAPES, BUFFER_NAMES,
34
+ FROZEN_PARAM_SHAPES, FROZEN_PARAM_FRAGMENTS)
35
+
36
+
37
+ @dataclass
38
+ class zero_model_state:
39
+ buffers: dict()
40
+ param_shapes: dict()
41
+ shared_params: list
42
+ ds_version: int
43
+ frozen_param_shapes: dict()
44
+ frozen_param_fragments: dict()
45
+
46
+
47
+ debug = 0
48
+
49
+ # load to cpu
50
+ device = torch.device('cpu')
51
+
52
+
53
+ def atoi(text):
54
+ return int(text) if text.isdigit() else text
55
+
56
+
57
+ def natural_keys(text):
58
+ '''
59
+ alist.sort(key=natural_keys) sorts in human order
60
+ http://nedbatchelder.com/blog/200712/human_sorting.html
61
+ (See Toothy's implementation in the comments)
62
+ '''
63
+ return [atoi(c) for c in re.split(r'(\d+)', text)]
64
+
65
+
66
+ def get_model_state_file(checkpoint_dir, zero_stage):
67
+ if not os.path.isdir(checkpoint_dir):
68
+ raise FileNotFoundError(f"Directory '{checkpoint_dir}' doesn't exist")
69
+
70
+ # there should be only one file
71
+ if zero_stage <= 2:
72
+ file = os.path.join(checkpoint_dir, "mp_rank_00_model_states.pt")
73
+ elif zero_stage == 3:
74
+ file = os.path.join(checkpoint_dir, "zero_pp_rank_0_mp_rank_00_model_states.pt")
75
+
76
+ if not os.path.exists(file):
77
+ raise FileNotFoundError(f"can't find model states file at '{file}'")
78
+
79
+ return file
80
+
81
+
82
+ def get_checkpoint_files(checkpoint_dir, glob_pattern):
83
+ # XXX: need to test that this simple glob rule works for multi-node setup too
84
+ ckpt_files = sorted(glob.glob(os.path.join(checkpoint_dir, glob_pattern)), key=natural_keys)
85
+
86
+ if len(ckpt_files) == 0:
87
+ raise FileNotFoundError(f"can't find {glob_pattern} files in directory '{checkpoint_dir}'")
88
+
89
+ return ckpt_files
90
+
91
+
92
+ def get_optim_files(checkpoint_dir):
93
+ return get_checkpoint_files(checkpoint_dir, "*_optim_states.pt")
94
+
95
+
96
+ def get_model_state_files(checkpoint_dir):
97
+ return get_checkpoint_files(checkpoint_dir, "*_model_states.pt")
98
+
99
+
100
+ def parse_model_states(files):
101
+ zero_model_states = []
102
+ for file in files:
103
+ state_dict = torch.load(file, map_location=device)
104
+
105
+ if BUFFER_NAMES not in state_dict:
106
+ raise ValueError(f"{file} is not a model state checkpoint")
107
+ buffer_names = state_dict[BUFFER_NAMES]
108
+ if debug:
109
+ print("Found buffers:", buffer_names)
110
+
111
+ # recover just the buffers while restoring them to fp32 if they were saved in fp16
112
+ buffers = {k: v.float() for k, v in state_dict["module"].items() if k in buffer_names}
113
+ param_shapes = state_dict[PARAM_SHAPES]
114
+
115
+ # collect parameters that are included in param_shapes
116
+ param_names = []
117
+ for s in param_shapes:
118
+ for name in s.keys():
119
+ param_names.append(name)
120
+
121
+ # update with frozen parameters
122
+ frozen_param_shapes = state_dict.get(FROZEN_PARAM_SHAPES, None)
123
+ if frozen_param_shapes is not None:
124
+ if debug:
125
+ print(f"Found frozen_param_shapes: {frozen_param_shapes}")
126
+ param_names += list(frozen_param_shapes.keys())
127
+
128
+ # handle shared params
129
+ shared_params = [[k, v] for k, v in state_dict["shared_params"].items()]
130
+
131
+ ds_version = state_dict.get(DS_VERSION, None)
132
+
133
+ frozen_param_fragments = state_dict.get(FROZEN_PARAM_FRAGMENTS, None)
134
+
135
+ z_model_state = zero_model_state(buffers=buffers,
136
+ param_shapes=param_shapes,
137
+ shared_params=shared_params,
138
+ ds_version=ds_version,
139
+ frozen_param_shapes=frozen_param_shapes,
140
+ frozen_param_fragments=frozen_param_fragments)
141
+ zero_model_states.append(z_model_state)
142
+
143
+ return zero_model_states
144
+
145
+
146
+ def parse_optim_states(files, ds_checkpoint_dir):
147
+ total_files = len(files)
148
+ state_dicts = []
149
+ for f in files:
150
+ state_dict = torch.load(f, map_location=device)
151
+ # immediately discard the potentially huge 2 optimizer states as we only care for fp32 master weights
152
+ # and also handle the case where it was already removed by another helper script
153
+ state_dict["optimizer_state_dict"].pop("optimizer_state_dict", None)
154
+ state_dicts.append(state_dict)
155
+
156
+ if not ZERO_STAGE in state_dicts[0][OPTIMIZER_STATE_DICT]:
157
+ raise ValueError(f"{files[0]} is not a zero checkpoint")
158
+ zero_stage = state_dicts[0][OPTIMIZER_STATE_DICT][ZERO_STAGE]
159
+ world_size = state_dicts[0][OPTIMIZER_STATE_DICT][PARTITION_COUNT]
160
+
161
+ # For ZeRO-2 each param group can have different partition_count as data parallelism for expert
162
+ # parameters can be different from data parallelism for non-expert parameters. So we can just
163
+ # use the max of the partition_count to get the dp world_size.
164
+
165
+ if type(world_size) is list:
166
+ world_size = max(world_size)
167
+
168
+ if world_size != total_files:
169
+ raise ValueError(
170
+ f"Expected {world_size} of '*_optim_states.pt' under '{ds_checkpoint_dir}' but found {total_files} files. "
171
+ "Possibly due to an overwrite of an old checkpoint, or a checkpoint didn't get saved by one or more processes."
172
+ )
173
+
174
+ # the groups are named differently in each stage
175
+ if zero_stage <= 2:
176
+ fp32_groups_key = SINGLE_PARTITION_OF_FP32_GROUPS
177
+ elif zero_stage == 3:
178
+ fp32_groups_key = FP32_FLAT_GROUPS
179
+ else:
180
+ raise ValueError(f"unknown zero stage {zero_stage}")
181
+
182
+ if zero_stage <= 2:
183
+ fp32_flat_groups = [state_dicts[i][OPTIMIZER_STATE_DICT][fp32_groups_key] for i in range(len(state_dicts))]
184
+ elif zero_stage == 3:
185
+ # if there is more than one param group, there will be multiple flattened tensors - one
186
+ # flattened tensor per group - for simplicity merge them into a single tensor
187
+ #
188
+ # XXX: could make the script more memory efficient for when there are multiple groups - it
189
+ # will require matching the sub-lists of param_shapes for each param group flattened tensor
190
+
191
+ fp32_flat_groups = [
192
+ torch.cat(state_dicts[i][OPTIMIZER_STATE_DICT][fp32_groups_key], 0) for i in range(len(state_dicts))
193
+ ]
194
+
195
+ return zero_stage, world_size, fp32_flat_groups
196
+
197
+
198
+ def _get_fp32_state_dict_from_zero_checkpoint(ds_checkpoint_dir, exclude_frozen_parameters):
199
+ """
200
+ Returns fp32 state_dict reconstructed from ds checkpoint
201
+
202
+ Args:
203
+ - ``ds_checkpoint_dir``: path to the deepspeed checkpoint folder (where the optimizer files are)
204
+
205
+ """
206
+ print(f"Processing zero checkpoint '{ds_checkpoint_dir}'")
207
+
208
+ optim_files = get_optim_files(ds_checkpoint_dir)
209
+ zero_stage, world_size, fp32_flat_groups = parse_optim_states(optim_files, ds_checkpoint_dir)
210
+ print(f"Detected checkpoint of type zero stage {zero_stage}, world_size: {world_size}")
211
+
212
+ model_files = get_model_state_files(ds_checkpoint_dir)
213
+
214
+ zero_model_states = parse_model_states(model_files)
215
+ print(f'Parsing checkpoint created by deepspeed=={zero_model_states[0].ds_version}')
216
+
217
+ if zero_stage <= 2:
218
+ return _get_fp32_state_dict_from_zero2_checkpoint(world_size, fp32_flat_groups, zero_model_states,
219
+ exclude_frozen_parameters)
220
+ elif zero_stage == 3:
221
+ return _get_fp32_state_dict_from_zero3_checkpoint(world_size, fp32_flat_groups, zero_model_states,
222
+ exclude_frozen_parameters)
223
+
224
+
225
+ def _zero2_merge_frozen_params(state_dict, zero_model_states):
226
+ if zero_model_states[0].frozen_param_shapes is None or len(zero_model_states[0].frozen_param_shapes) == 0:
227
+ return
228
+
229
+ frozen_param_shapes = zero_model_states[0].frozen_param_shapes
230
+ frozen_param_fragments = zero_model_states[0].frozen_param_fragments
231
+
232
+ if debug:
233
+ num_elem = sum(s.numel() for s in frozen_param_shapes.values())
234
+ print(f'rank 0: {FROZEN_PARAM_SHAPES}.numel = {num_elem}')
235
+
236
+ wanted_params = len(frozen_param_shapes)
237
+ wanted_numel = sum(s.numel() for s in frozen_param_shapes.values())
238
+ avail_numel = sum([p.numel() for p in frozen_param_fragments.values()])
239
+ print(f'Frozen params: Have {avail_numel} numels to process.')
240
+ print(f'Frozen params: Need {wanted_numel} numels in {wanted_params} params')
241
+
242
+ total_params = 0
243
+ total_numel = 0
244
+ for name, shape in frozen_param_shapes.items():
245
+ total_params += 1
246
+ unpartitioned_numel = shape.numel()
247
+ total_numel += unpartitioned_numel
248
+
249
+ state_dict[name] = frozen_param_fragments[name]
250
+
251
+ if debug:
252
+ print(f"{name} full shape: {shape} unpartitioned numel {unpartitioned_numel} ")
253
+
254
+ print(f"Reconstructed Frozen fp32 state dict with {total_params} params {total_numel} elements")
255
+
256
+
257
+ def _has_callable(obj, fn):
258
+ attr = getattr(obj, fn, None)
259
+ return callable(attr)
260
+
261
+
262
+ def _zero2_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states):
263
+ param_shapes = zero_model_states[0].param_shapes
264
+
265
+ # Reconstruction protocol:
266
+ #
267
+ # XXX: document this
268
+
269
+ if debug:
270
+ for i in range(world_size):
271
+ for j in range(len(fp32_flat_groups[0])):
272
+ print(f"{FP32_FLAT_GROUPS}[{i}][{j}].shape={fp32_flat_groups[i][j].shape}")
273
+
274
+ # XXX: memory usage doubles here (zero2)
275
+ num_param_groups = len(fp32_flat_groups[0])
276
+ merged_single_partition_of_fp32_groups = []
277
+ for i in range(num_param_groups):
278
+ merged_partitions = [sd[i] for sd in fp32_flat_groups]
279
+ full_single_fp32_vector = torch.cat(merged_partitions, 0)
280
+ merged_single_partition_of_fp32_groups.append(full_single_fp32_vector)
281
+ avail_numel = sum(
282
+ [full_single_fp32_vector.numel() for full_single_fp32_vector in merged_single_partition_of_fp32_groups])
283
+
284
+ if debug:
285
+ wanted_params = sum([len(shapes) for shapes in param_shapes])
286
+ wanted_numel = sum([sum(shape.numel() for shape in shapes.values()) for shapes in param_shapes])
287
+ # not asserting if there is a mismatch due to possible padding
288
+ print(f"Have {avail_numel} numels to process.")
289
+ print(f"Need {wanted_numel} numels in {wanted_params} params.")
290
+
291
+ # params
292
+ # XXX: for huge models that can't fit into the host's RAM we will have to recode this to support
293
+ # out-of-core computing solution
294
+ total_numel = 0
295
+ total_params = 0
296
+ for shapes, full_single_fp32_vector in zip(param_shapes, merged_single_partition_of_fp32_groups):
297
+ offset = 0
298
+ avail_numel = full_single_fp32_vector.numel()
299
+ for name, shape in shapes.items():
300
+
301
+ unpartitioned_numel = shape.numel() if _has_callable(shape, 'numel') else math.prod(shape)
302
+ total_numel += unpartitioned_numel
303
+ total_params += 1
304
+
305
+ if debug:
306
+ print(f"{name} full shape: {shape} unpartitioned numel {unpartitioned_numel} ")
307
+ state_dict[name] = full_single_fp32_vector.narrow(0, offset, unpartitioned_numel).view(shape)
308
+ offset += unpartitioned_numel
309
+
310
+ # Z2 started to align to 2*world_size to improve nccl performance. Therefore both offset and
311
+ # avail_numel can differ by anywhere between 0..2*world_size. Due to two unrelated complex
312
+ # paddings performed in the code it's almost impossible to predict the exact numbers w/o the
313
+ # live optimizer object, so we are checking that the numbers are within the right range
314
+ align_to = 2 * world_size
315
+
316
+ def zero2_align(x):
317
+ return align_to * math.ceil(x / align_to)
318
+
319
+ if debug:
320
+ print(f"original offset={offset}, avail_numel={avail_numel}")
321
+
322
+ offset = zero2_align(offset)
323
+ avail_numel = zero2_align(avail_numel)
324
+
325
+ if debug:
326
+ print(f"aligned offset={offset}, avail_numel={avail_numel}")
327
+
328
+ # Sanity check
329
+ if offset != avail_numel:
330
+ raise ValueError(f"consumed {offset} numels out of {avail_numel} - something is wrong")
331
+
332
+ print(f"Reconstructed fp32 state dict with {total_params} params {total_numel} elements")
333
+
334
+
335
+ def _get_fp32_state_dict_from_zero2_checkpoint(world_size, fp32_flat_groups, zero_model_states,
336
+ exclude_frozen_parameters):
337
+ state_dict = OrderedDict()
338
+
339
+ # buffers
340
+ buffers = zero_model_states[0].buffers
341
+ state_dict.update(buffers)
342
+ if debug:
343
+ print(f"added {len(buffers)} buffers")
344
+
345
+ if not exclude_frozen_parameters:
346
+ _zero2_merge_frozen_params(state_dict, zero_model_states)
347
+
348
+ _zero2_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states)
349
+
350
+ # recover shared parameters
351
+ for pair in zero_model_states[0].shared_params:
352
+ if pair[1] in state_dict:
353
+ state_dict[pair[0]] = state_dict[pair[1]]
354
+
355
+ return state_dict
356
+
357
+
358
+ def zero3_partitioned_param_info(unpartitioned_numel, world_size):
359
+ remainder = unpartitioned_numel % world_size
360
+ padding_numel = (world_size - remainder) if remainder else 0
361
+ partitioned_numel = math.ceil(unpartitioned_numel / world_size)
362
+ return partitioned_numel, padding_numel
363
+
364
+
365
+ def _zero3_merge_frozen_params(state_dict, world_size, zero_model_states):
366
+ if zero_model_states[0].frozen_param_shapes is None or len(zero_model_states[0].frozen_param_shapes) == 0:
367
+ return
368
+
369
+ if debug:
370
+ for i in range(world_size):
371
+ num_elem = sum(s.numel() for s in zero_model_states[i].frozen_param_fragments.values())
372
+ print(f'rank {i}: {FROZEN_PARAM_SHAPES}.numel = {num_elem}')
373
+
374
+ frozen_param_shapes = zero_model_states[0].frozen_param_shapes
375
+ wanted_params = len(frozen_param_shapes)
376
+ wanted_numel = sum(s.numel() for s in frozen_param_shapes.values())
377
+ avail_numel = sum([p.numel() for p in zero_model_states[0].frozen_param_fragments.values()]) * world_size
378
+ print(f'Frozen params: Have {avail_numel} numels to process.')
379
+ print(f'Frozen params: Need {wanted_numel} numels in {wanted_params} params')
380
+
381
+ total_params = 0
382
+ total_numel = 0
383
+ for name, shape in zero_model_states[0].frozen_param_shapes.items():
384
+ total_params += 1
385
+ unpartitioned_numel = shape.numel()
386
+ total_numel += unpartitioned_numel
387
+
388
+ param_frags = tuple(model_state.frozen_param_fragments[name] for model_state in zero_model_states)
389
+ state_dict[name] = torch.cat(param_frags, 0).narrow(0, 0, unpartitioned_numel).view(shape)
390
+
391
+ partitioned_numel, partitioned_padding_numel = zero3_partitioned_param_info(unpartitioned_numel, world_size)
392
+
393
+ if debug:
394
+ print(
395
+ f"Frozen params: {total_params} {name} full shape: {shape} partition0 numel={partitioned_numel} partitioned_padding_numel={partitioned_padding_numel}"
396
+ )
397
+
398
+ print(f"Reconstructed Frozen fp32 state dict with {total_params} params {total_numel} elements")
399
+
400
+
401
+ def _zero3_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states):
402
+ param_shapes = zero_model_states[0].param_shapes
403
+ avail_numel = fp32_flat_groups[0].numel() * world_size
404
+ # Reconstruction protocol: For zero3 we need to zip the partitions together at boundary of each
405
+ # param, re-consolidating each param, while dealing with padding if any
406
+
407
+ # merge list of dicts, preserving order
408
+ param_shapes = {k: v for d in param_shapes for k, v in d.items()}
409
+
410
+ if debug:
411
+ for i in range(world_size):
412
+ print(f"{FP32_FLAT_GROUPS}[{i}].shape={fp32_flat_groups[i].shape}")
413
+
414
+ wanted_params = len(param_shapes)
415
+ wanted_numel = sum(shape.numel() for shape in param_shapes.values())
416
+ # not asserting if there is a mismatch due to possible padding
417
+ avail_numel = fp32_flat_groups[0].numel() * world_size
418
+ print(f"Trainable params: Have {avail_numel} numels to process.")
419
+ print(f"Trainable params: Need {wanted_numel} numels in {wanted_params} params.")
420
+
421
+ # params
422
+ # XXX: for huge models that can't fit into the host's RAM we will have to recode this to support
423
+ # out-of-core computing solution
424
+ offset = 0
425
+ total_numel = 0
426
+ total_params = 0
427
+ for name, shape in tqdm(param_shapes.items(), desc='Gathering Sharded Weights'):
428
+ unpartitioned_numel = shape.numel()
429
+ total_numel += unpartitioned_numel
430
+ total_params += 1
431
+ partitioned_numel, partitioned_padding_numel = zero3_partitioned_param_info(unpartitioned_numel, world_size)
432
+
433
+ if debug:
434
+ print(
435
+ f"Trainable params: {total_params} {name} full shape: {shape} partition0 numel={partitioned_numel} partitioned_padding_numel={partitioned_padding_numel}"
436
+ )
437
+
438
+ # XXX: memory usage doubles here
439
+ state_dict[name] = torch.cat(
440
+ tuple(fp32_flat_groups[i].narrow(0, offset, partitioned_numel) for i in range(world_size)),
441
+ 0).narrow(0, 0, unpartitioned_numel).view(shape)
442
+ offset += partitioned_numel
443
+
444
+ offset *= world_size
445
+
446
+ # Sanity check
447
+ if offset != avail_numel:
448
+ raise ValueError(f"consumed {offset} numels out of {avail_numel} - something is wrong")
449
+
450
+ print(f"Reconstructed Trainable fp32 state dict with {total_params} params {total_numel} elements")
451
+
452
+
453
+ def _get_fp32_state_dict_from_zero3_checkpoint(world_size, fp32_flat_groups, zero_model_states,
454
+ exclude_frozen_parameters):
455
+ state_dict = OrderedDict()
456
+
457
+ # buffers
458
+ buffers = zero_model_states[0].buffers
459
+ state_dict.update(buffers)
460
+ if debug:
461
+ print(f"added {len(buffers)} buffers")
462
+
463
+ if not exclude_frozen_parameters:
464
+ _zero3_merge_frozen_params(state_dict, world_size, zero_model_states)
465
+
466
+ _zero3_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states)
467
+
468
+ # recover shared parameters
469
+ for pair in zero_model_states[0].shared_params:
470
+ if pair[1] in state_dict:
471
+ state_dict[pair[0]] = state_dict[pair[1]]
472
+
473
+ return state_dict
474
+
475
+
476
+ def get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, tag=None, exclude_frozen_parameters=False):
477
+ """
478
+ Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated state_dict that can be loaded with
479
+ ``load_state_dict()`` and used for training without DeepSpeed or shared with others, for example
480
+ via a model hub.
481
+
482
+ Args:
483
+ - ``checkpoint_dir``: path to the desired checkpoint folder
484
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in 'latest' file. e.g., ``global_step14``
485
+ - ``exclude_frozen_parameters``: exclude frozen parameters
486
+
487
+ Returns:
488
+ - pytorch ``state_dict``
489
+
490
+ Note: this approach may not work if your application doesn't have sufficient free CPU memory and
491
+ you may need to use the offline approach using the ``zero_to_fp32.py`` script that is saved with
492
+ the checkpoint.
493
+
494
+ A typical usage might be ::
495
+
496
+ from deepspeed.utils.zero_to_fp32 import get_fp32_state_dict_from_zero_checkpoint
497
+ # do the training and checkpoint saving
498
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir) # already on cpu
499
+ model = model.cpu() # move to cpu
500
+ model.load_state_dict(state_dict)
501
+ # submit to model hub or save the model to share with others
502
+
503
+ In this example the ``model`` will no longer be usable in the deepspeed context of the same
504
+ application. i.e. you will need to re-initialize the deepspeed engine, since
505
+ ``model.load_state_dict(state_dict)`` will remove all the deepspeed magic from it.
506
+
507
+ If you want it all done for you, use ``load_state_dict_from_zero_checkpoint`` instead.
508
+
509
+ """
510
+ if tag is None:
511
+ latest_path = os.path.join(checkpoint_dir, 'latest')
512
+ if os.path.isfile(latest_path):
513
+ with open(latest_path, 'r') as fd:
514
+ tag = fd.read().strip()
515
+ else:
516
+ raise ValueError(f"Unable to find 'latest' file at {latest_path}")
517
+
518
+ ds_checkpoint_dir = os.path.join(checkpoint_dir, tag)
519
+
520
+ if not os.path.isdir(ds_checkpoint_dir):
521
+ raise FileNotFoundError(f"Directory '{ds_checkpoint_dir}' doesn't exist")
522
+
523
+ return _get_fp32_state_dict_from_zero_checkpoint(ds_checkpoint_dir, exclude_frozen_parameters)
524
+
525
+
526
+ def convert_zero_checkpoint_to_fp32_state_dict(checkpoint_dir,
527
+ output_dir,
528
+ max_shard_size="5GB",
529
+ safe_serialization=False,
530
+ tag=None,
531
+ exclude_frozen_parameters=False):
532
+ """
533
+ Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated ``state_dict`` file that can be
534
+ loaded with ``torch.load(file)`` + ``load_state_dict()`` and used for training without DeepSpeed.
535
+
536
+ Args:
537
+ - ``checkpoint_dir``: path to the desired checkpoint folder. (one that contains the tag-folder, like ``global_step14``)
538
+ - ``output_dir``: directory to the pytorch fp32 state_dict output files
539
+ - ``max_shard_size``: the maximum size for a checkpoint before being sharded, default value is 5GB
540
+ - ``safe_serialization``: whether to save the model using `safetensors` or the traditional PyTorch way (that uses `pickle`).
541
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in the file named ``latest`` in the checkpoint folder, e.g., ``global_step14``
542
+ - ``exclude_frozen_parameters``: exclude frozen parameters
543
+ """
544
+ # Dependency pre-check
545
+ if safe_serialization:
546
+ try:
547
+ from safetensors.torch import save_file
548
+ except ImportError:
549
+ print('If you want to use `safe_serialization`, please `pip install safetensors`')
550
+ raise
551
+ if max_shard_size is not None:
552
+ try:
553
+ from huggingface_hub import split_torch_state_dict_into_shards
554
+ except ImportError:
555
+ print('If you want to use `max_shard_size`, please `pip install huggingface_hub`')
556
+ raise
557
+
558
+ # Convert zero checkpoint to state_dict
559
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, tag, exclude_frozen_parameters)
560
+
561
+ # Shard the model if it is too big.
562
+ weights_name = "model.safetensors" if safe_serialization else "pytorch_model.bin"
563
+ if max_shard_size is not None:
564
+ filename_pattern = weights_name.replace(".bin", "{suffix}.bin").replace(".safetensors", "{suffix}.safetensors")
565
+ state_dict_split = split_torch_state_dict_into_shards(state_dict,
566
+ filename_pattern=filename_pattern,
567
+ max_shard_size=max_shard_size)
568
+ else:
569
+ from collections import namedtuple
570
+ StateDictSplit = namedtuple("StateDictSplit", ["is_sharded", "filename_to_tensors"])
571
+ state_dict_split = StateDictSplit(is_sharded=False,
572
+ filename_to_tensors={weights_name: list(state_dict.keys())})
573
+
574
+ # Save the model
575
+ filename_to_tensors = state_dict_split.filename_to_tensors.items()
576
+ for shard_file, tensors in tqdm(filename_to_tensors, desc="Saving checkpoint shards"):
577
+ shard = {tensor: state_dict[tensor].contiguous() for tensor in tensors}
578
+ output_path = os.path.join(output_dir, shard_file)
579
+ if safe_serialization:
580
+ save_file(shard, output_path, metadata={"format": "pt"})
581
+ else:
582
+ torch.save(shard, output_path)
583
+
584
+ # Save index if sharded
585
+ if state_dict_split.is_sharded:
586
+ index = {
587
+ "metadata": state_dict_split.metadata,
588
+ "weight_map": state_dict_split.tensor_to_filename,
589
+ }
590
+ save_index_file = "model.safetensors.index.json" if safe_serialization else "pytorch_model.bin.index.json"
591
+ save_index_file = os.path.join(output_dir, save_index_file)
592
+ with open(save_index_file, "w", encoding="utf-8") as f:
593
+ content = json.dumps(index, indent=2, sort_keys=True) + "\n"
594
+ f.write(content)
595
+
596
+
597
+ def load_state_dict_from_zero_checkpoint(model, checkpoint_dir, tag=None):
598
+ """
599
+ 1. Put the provided model to cpu
600
+ 2. Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated ``state_dict``
601
+ 3. Load it into the provided model
602
+
603
+ Args:
604
+ - ``model``: the model object to update
605
+ - ``checkpoint_dir``: path to the desired checkpoint folder. (one that contains the tag-folder, like ``global_step14``)
606
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in the file named ``latest`` in the checkpoint folder, e.g., ``global_step14``
607
+
608
+ Returns:
609
+ - ``model`: modified model
610
+
611
+ Make sure you have plenty of CPU memory available before you call this function. If you don't
612
+ have enough use the ``zero_to_fp32.py`` utility to do the conversion. You will find it
613
+ conveniently placed for you in the checkpoint folder.
614
+
615
+ A typical usage might be ::
616
+
617
+ from deepspeed.utils.zero_to_fp32 import load_state_dict_from_zero_checkpoint
618
+ model = load_state_dict_from_zero_checkpoint(trainer.model, checkpoint_dir)
619
+ # submit to model hub or save the model to share with others
620
+
621
+ Note, that once this was run, the ``model`` will no longer be usable in the deepspeed context
622
+ of the same application. i.e. you will need to re-initialize the deepspeed engine, since
623
+ ``model.load_state_dict(state_dict)`` will remove all the deepspeed magic from it.
624
+
625
+ """
626
+ logger.info(f"Extracting fp32 weights")
627
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, tag)
628
+
629
+ logger.info(f"Overwriting model with fp32 weights")
630
+ model = model.cpu()
631
+ model.load_state_dict(state_dict, strict=False)
632
+
633
+ return model
634
+
635
+
636
+ if __name__ == "__main__":
637
+ parser = argparse.ArgumentParser()
638
+ parser.add_argument("checkpoint_dir",
639
+ type=str,
640
+ help="path to the desired checkpoint folder, e.g., path/checkpoint-12")
641
+ parser.add_argument("output_dir",
642
+ type=str,
643
+ help="directory to the pytorch fp32 state_dict output files"
644
+ "(e.g. path/checkpoint-12-output/)")
645
+ parser.add_argument(
646
+ "--max_shard_size",
647
+ type=str,
648
+ default="5GB",
649
+ help="The maximum size for a checkpoint before being sharded. Checkpoints shard will then be each of size"
650
+ "lower than this size. If expressed as a string, needs to be digits followed by a unit (like `5MB`"
651
+ "We default it to 5GB in order for models to be able to run easily on free-tier google colab instances"
652
+ "without CPU OOM issues.")
653
+ parser.add_argument(
654
+ "--safe_serialization",
655
+ default=False,
656
+ action='store_true',
657
+ help="Whether to save the model using `safetensors` or the traditional PyTorch way (that uses `pickle`).")
658
+ parser.add_argument("-t",
659
+ "--tag",
660
+ type=str,
661
+ default=None,
662
+ help="checkpoint tag used as a unique identifier for checkpoint. e.g., global_step1")
663
+ parser.add_argument("--exclude_frozen_parameters", action='store_true', help="exclude frozen parameters")
664
+ parser.add_argument("-d", "--debug", action='store_true', help="enable debug")
665
+ args = parser.parse_args()
666
+
667
+ debug = args.debug
668
+
669
+ convert_zero_checkpoint_to_fp32_state_dict(args.checkpoint_dir,
670
+ args.output_dir,
671
+ max_shard_size=args.max_shard_size,
672
+ safe_serialization=args.safe_serialization,
673
+ tag=args.tag,
674
+ exclude_frozen_parameters=args.exclude_frozen_parameters)
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - 4DThinker
5
+ - dynamic-spatial-reasoning
6
+ - vision-language-model
7
+ - latent-reasoning
8
+ ---
9
+
10
+ # 4DThinker Model Checkpoints
11
+
12
+ This repository contains the trained model checkpoints from Qwen2.5-VL-3B for **4DThinker**, a framework that enables VLMs to "think with 4D" through dynamic latent mental imagery.
13
+
14
+ ## Model Structure
15
+
16
+ ```
17
+ model/
18
+ ├── dift/
19
+ │ ├── checkpoints/ # DIFT-stage model weights
20
+ │ │ ├── model-00001-of-00002.safetensors
21
+ │ │ ├── model-00002-of-00002.safetensors
22
+ │ │ ├── config.json
23
+ │ │ ├── tokenizer.json
24
+ │ │ └── ...
25
+ │ └── tensorboard/ # DIFT training logs
26
+ └── 4drl/
27
+ ├── model-00001-of-00002.safetensors
28
+ ├── model-00002-of-00002.safetensors
29
+ ├── config.json
30
+ ├── tokenizer.json
31
+ ├── trainer_state.json
32
+ └── ...
33
+ ```
34
+
35
+ ## Models
36
+
37
+ | Model | Stage | Base Model | Description |
38
+ |-------|-------|------------|-------------|
39
+ | `dift/checkpoints/` | DIFT | Qwen2.5-VL-3B-Instruct | Supervised with cosine similarity loss on latent visual tokens |
40
+ | `4drl/` | 4DRL (GRPO) | DIFT checkpoint | Reinforced with answer-based rewards |
41
+
42
+ ## Special Tokens
43
+
44
+ Three special tokens are added to the Qwen2.5-VL vocabulary:
45
+
46
+ | Token | Description |
47
+ |-------|-------------|
48
+ | `<\|latent_pad\|>` | Padding within latent sequences |
49
+ | `<\|latent_start\|>` | Marks start of latent visual token block |
50
+ | `<\|latent_end\|>` | Marks end of latent visual token block |
51
+
52
+ ## Usage
53
+
54
+ ```python
55
+ from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
56
+
57
+ model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
58
+ "./model/4drl",
59
+ torch_dtype="auto",
60
+ device_map="auto"
61
+ )
62
+ processor = AutoProcessor.from_pretrained("./model/4drl")
63
+ ```
64
+
65
+ ## License
66
+
67
+ Apache License 2.0
dift/checkpoints/added_tokens.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "<|latent_end|>": 151667,
16
+ "<|latent_pad|>": 151665,
17
+ "<|latent_start|>": 151666,
18
+ "<|object_ref_end|>": 151647,
19
+ "<|object_ref_start|>": 151646,
20
+ "<|quad_end|>": 151651,
21
+ "<|quad_start|>": 151650,
22
+ "<|repo_name|>": 151663,
23
+ "<|video_pad|>": 151656,
24
+ "<|vision_end|>": 151653,
25
+ "<|vision_pad|>": 151654,
26
+ "<|vision_start|>": 151652
27
+ }
dift/checkpoints/chat_template.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{% 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\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% 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|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}"
3
+ }
dift/checkpoints/config.json ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "ce_loss_weight": 0.1,
8
+ "compress_strategy": "average",
9
+ "eos_token_id": 151645,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 2048,
12
+ "image_token_id": 151655,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 11008,
15
+ "latent_end_id": 151667,
16
+ "latent_size": 4,
17
+ "latent_start_id": 151666,
18
+ "latent_token_id": 151665,
19
+ "max_position_embeddings": 128000,
20
+ "max_window_layers": 70,
21
+ "model_type": "qwen2_5_vl",
22
+ "num_attention_heads": 16,
23
+ "num_hidden_layers": 36,
24
+ "num_key_value_heads": 2,
25
+ "rms_norm_eps": 1e-06,
26
+ "rope_scaling": {
27
+ "mrope_section": [
28
+ 16,
29
+ 24,
30
+ 24
31
+ ],
32
+ "rope_type": "default",
33
+ "type": "default"
34
+ },
35
+ "rope_theta": 1000000.0,
36
+ "sim_loss_weight": 1.0,
37
+ "sliding_window": 32768,
38
+ "stage": "stage1",
39
+ "tie_word_embeddings": true,
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.50.0.dev0",
42
+ "use_cache": true,
43
+ "use_sliding_window": false,
44
+ "video_token_id": 151656,
45
+ "vision_config": {
46
+ "depth": 32,
47
+ "fullatt_block_indexes": [
48
+ 7,
49
+ 15,
50
+ 23,
51
+ 31
52
+ ],
53
+ "hidden_act": "silu",
54
+ "hidden_size": 1280,
55
+ "in_channels": 3,
56
+ "in_chans": 3,
57
+ "intermediate_size": 3420,
58
+ "model_type": "qwen2_5_vl",
59
+ "num_heads": 16,
60
+ "out_hidden_size": 2048,
61
+ "patch_size": 14,
62
+ "spatial_merge_size": 2,
63
+ "spatial_patch_size": 14,
64
+ "temporal_patch_size": 2,
65
+ "tokens_per_second": 2,
66
+ "torch_dtype": "bfloat16",
67
+ "window_size": 112
68
+ },
69
+ "vision_end_token_id": 151653,
70
+ "vision_start_token_id": 151652,
71
+ "vision_token_id": 151654,
72
+ "vocab_size": 151668
73
+ }
dift/checkpoints/generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "repetition_penalty": 1.05,
10
+ "temperature": 1e-06,
11
+ "transformers_version": "4.50.0.dev0"
12
+ }
dift/checkpoints/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
dift/checkpoints/model.safetensors.index.json ADDED
@@ -0,0 +1,832 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 8129380352
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00002-of-00002.safetensors",
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
+ }
dift/checkpoints/preprocessor_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "min_pixels": 3136,
3
+ "max_pixels": 12845056,
4
+ "patch_size": 14,
5
+ "temporal_patch_size": 2,
6
+ "merge_size": 2,
7
+ "image_mean": [
8
+ 0.48145466,
9
+ 0.4578275,
10
+ 0.40821073
11
+ ],
12
+ "image_std": [
13
+ 0.26862954,
14
+ 0.26130258,
15
+ 0.27577711
16
+ ],
17
+ "image_processor_type": "Qwen2VLImageProcessor",
18
+ "processor_class": "Qwen2_5_VLProcessor"
19
+ }
dift/checkpoints/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
+ }
dift/checkpoints/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55b76f98b2c2ca7c24fc62a0775fdb2db68a29790eefa5f295ce8c74aef987fc
3
+ size 11422471
dift/checkpoints/tokenizer_config.json ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<|latent_pad|>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": true
188
+ },
189
+ "151666": {
190
+ "content": "<|latent_start|>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": true
196
+ },
197
+ "151667": {
198
+ "content": "<|latent_end|>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": true
204
+ }
205
+ },
206
+ "additional_special_tokens": [
207
+ "<|im_start|>",
208
+ "<|im_end|>",
209
+ "<|object_ref_start|>",
210
+ "<|object_ref_end|>",
211
+ "<|box_start|>",
212
+ "<|box_end|>",
213
+ "<|quad_start|>",
214
+ "<|quad_end|>",
215
+ "<|vision_start|>",
216
+ "<|vision_end|>",
217
+ "<|vision_pad|>",
218
+ "<|image_pad|>",
219
+ "<|video_pad|>"
220
+ ],
221
+ "bos_token": null,
222
+ "chat_template": "{% 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\nYou are a helpful assistant.<|im_end|>\n{% endif %}<|im_start|>{{ message['role'] }}\n{% if message['content'] is string %}{{ message['content'] }}<|im_end|>\n{% 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|>\n{% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant\n{% endif %}",
223
+ "clean_up_tokenization_spaces": false,
224
+ "eos_token": "<|im_end|>",
225
+ "errors": "replace",
226
+ "extra_special_tokens": {},
227
+ "model_max_length": 131072,
228
+ "pad_token": "<|endoftext|>",
229
+ "split_special_tokens": false,
230
+ "tokenizer_class": "Qwen2Tokenizer",
231
+ "unk_token": null
232
+ }
dift/checkpoints/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0440f36dbec673382242ed34493237b2941bd8c084afd4cdd7391f1c46499d96
3
+ size 7633
dift/checkpoints/vocab.json ADDED
The diff for this file is too large to render. See raw diff
 
dift/tensorboard/events.out.tfevents.1776353114.psxlzxrl99my2m-worker-0.1335527.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8f959f2e54182c89092147016ea0c1499ecabb1b682aac46c5bd3901b666048
3
+ size 173276