SuhZhang commited on
Commit
de655b3
·
verified ·
1 Parent(s): e5ea225

Upload folder using huggingface_hub

Browse files
VGLLM_Pi3_Original_train_small/added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
VGLLM_Pi3_Original_train_small/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
+ }
VGLLM_Pi3_Original_train_small/config.json ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGenerationWithVGGT"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "eos_token_id": 151645,
8
+ "feature_fusion_method": "add",
9
+ "fusion_num_layers": 1,
10
+ "geometry_encoder_type": "pi3",
11
+ "geometry_merger_type": "mlp",
12
+ "hidden_act": "silu",
13
+ "hidden_size": 3584,
14
+ "image_token_id": 151655,
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 18944,
17
+ "max_position_embeddings": 128000,
18
+ "max_window_layers": 28,
19
+ "model_type": "qwen2_5_vl",
20
+ "num_attention_heads": 28,
21
+ "num_hidden_layers": 28,
22
+ "num_key_value_heads": 4,
23
+ "reference_frame": "first",
24
+ "rms_norm_eps": 1e-06,
25
+ "rope_scaling": {
26
+ "mrope_section": [
27
+ 16,
28
+ 24,
29
+ 24
30
+ ],
31
+ "rope_type": "default",
32
+ "type": "default"
33
+ },
34
+ "rope_theta": 1000000.0,
35
+ "sliding_window": 32768,
36
+ "tie_word_embeddings": false,
37
+ "torch_dtype": "bfloat16",
38
+ "transformers_version": "4.51.0",
39
+ "use_cache": true,
40
+ "use_geometry_encoder": true,
41
+ "use_sliding_window": false,
42
+ "video_token_id": 151656,
43
+ "vision_config": {
44
+ "depth": 32,
45
+ "fullatt_block_indexes": [
46
+ 7,
47
+ 15,
48
+ 23,
49
+ 31
50
+ ],
51
+ "hidden_act": "silu",
52
+ "hidden_size": 1280,
53
+ "in_channels": 3,
54
+ "in_chans": 3,
55
+ "intermediate_size": 3420,
56
+ "model_type": "qwen2_5_vl",
57
+ "num_heads": 16,
58
+ "out_hidden_size": 3584,
59
+ "patch_size": 14,
60
+ "spatial_merge_size": 2,
61
+ "spatial_patch_size": 14,
62
+ "temporal_patch_size": 2,
63
+ "tokens_per_second": 2,
64
+ "torch_dtype": "bfloat16",
65
+ "window_size": 112
66
+ },
67
+ "vision_end_token_id": 151653,
68
+ "vision_start_token_id": 151652,
69
+ "vision_token_id": 151654,
70
+ "vocab_size": 152064
71
+ }
VGLLM_Pi3_Original_train_small/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.51.0"
12
+ }
VGLLM_Pi3_Original_train_small/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
VGLLM_Pi3_Original_train_small/model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac7c8e903465f0f32055496afcd1bd78ce4e84717e3770864e16d439dcb52d9d
3
+ size 4982015372
VGLLM_Pi3_Original_train_small/model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfdb3689f002fa79eede80206d647aa3755a5f0500ff778670a77001bf34b1eb
3
+ size 4932750944
VGLLM_Pi3_Original_train_small/model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d8915432a6a3caaa6186750b026205601ec2ea5c08b6f5551446803af55396c
3
+ size 4991495888
VGLLM_Pi3_Original_train_small/model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfa755aa2a9e8d45960ded8711887fbe14d667fa309dba9637d9f88fb71aca02
3
+ size 3692182944
VGLLM_Pi3_Original_train_small/model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
VGLLM_Pi3_Original_train_small/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": 451584,
18
+ "merge_size": 2,
19
+ "min_pixels": 12544,
20
+ "patch_size": 14,
21
+ "processor_class": "Qwen2_5_VLProcessor",
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "longest_edge": 451584,
26
+ "shortest_edge": 12544
27
+ },
28
+ "temporal_patch_size": 2
29
+ }
VGLLM_Pi3_Original_train_small/runs/May07_14-43-53_hopper-18/events.out.tfevents.1778165151.hopper-18.2583876.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6caf7e1338f032bdce8d6f1c6d2858e366bc24af5783988893d4dc9f5ce7d226
3
+ size 26494
VGLLM_Pi3_Original_train_small/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
+ }
VGLLM_Pi3_Original_train_small/tokenizer_config.json ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "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 %}",
199
+ "clean_up_tokenization_spaces": false,
200
+ "eos_token": "<|im_end|>",
201
+ "errors": "replace",
202
+ "extra_special_tokens": {},
203
+ "model_max_length": 12800,
204
+ "pad_token": "<|endoftext|>",
205
+ "padding_side": "right",
206
+ "split_special_tokens": false,
207
+ "tokenizer_class": "Qwen2Tokenizer",
208
+ "unk_token": null
209
+ }
VGLLM_Pi3_Original_train_small/train.log ADDED
The diff for this file is too large to render. See raw diff
 
VGLLM_Pi3_Original_train_small/trainer_state.json ADDED
@@ -0,0 +1,694 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.9998523628652342,
6
+ "eval_steps": 500,
7
+ "global_step": 4656,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.010737246164789885,
14
+ "grad_norm": 31.757007598876953,
15
+ "learning_rate": 3.5e-06,
16
+ "loss": 8.1253,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.02147449232957977,
21
+ "grad_norm": 34.76927185058594,
22
+ "learning_rate": 7.0714285714285726e-06,
23
+ "loss": 7.9501,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.03221173849436966,
28
+ "grad_norm": 32.890419006347656,
29
+ "learning_rate": 9.999902002389173e-06,
30
+ "loss": 8.8053,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.04294898465915954,
35
+ "grad_norm": 38.708160400390625,
36
+ "learning_rate": 9.995789099860018e-06,
37
+ "loss": 6.4262,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.05368623082394943,
42
+ "grad_norm": 72.66991424560547,
43
+ "learning_rate": 9.985632646249046e-06,
44
+ "loss": 7.3614,
45
+ "step": 250
46
+ },
47
+ {
48
+ "epoch": 0.06442347698873932,
49
+ "grad_norm": 73.92744445800781,
50
+ "learning_rate": 9.969444928112993e-06,
51
+ "loss": 7.6295,
52
+ "step": 300
53
+ },
54
+ {
55
+ "epoch": 0.0751607231535292,
56
+ "grad_norm": 78.62584686279297,
57
+ "learning_rate": 9.947245528204349e-06,
58
+ "loss": 7.1915,
59
+ "step": 350
60
+ },
61
+ {
62
+ "epoch": 0.08589796931831908,
63
+ "grad_norm": 36.329803466796875,
64
+ "learning_rate": 9.919061301781545e-06,
65
+ "loss": 6.9127,
66
+ "step": 400
67
+ },
68
+ {
69
+ "epoch": 0.09663521548310897,
70
+ "grad_norm": 28.44091796875,
71
+ "learning_rate": 9.88492634412136e-06,
72
+ "loss": 7.4461,
73
+ "step": 450
74
+ },
75
+ {
76
+ "epoch": 0.10737246164789886,
77
+ "grad_norm": 29.602134704589844,
78
+ "learning_rate": 9.844881949272874e-06,
79
+ "loss": 5.9567,
80
+ "step": 500
81
+ },
82
+ {
83
+ "epoch": 0.11810970781268874,
84
+ "grad_norm": 69.68312072753906,
85
+ "learning_rate": 9.798976560102866e-06,
86
+ "loss": 6.8857,
87
+ "step": 550
88
+ },
89
+ {
90
+ "epoch": 0.12884695397747864,
91
+ "grad_norm": 34.79572677612305,
92
+ "learning_rate": 9.747265709693065e-06,
93
+ "loss": 6.3411,
94
+ "step": 600
95
+ },
96
+ {
97
+ "epoch": 0.13958420014226852,
98
+ "grad_norm": 24.730871200561523,
99
+ "learning_rate": 9.689811954160169e-06,
100
+ "loss": 6.9333,
101
+ "step": 650
102
+ },
103
+ {
104
+ "epoch": 0.1503214463070584,
105
+ "grad_norm": 107.74388122558594,
106
+ "learning_rate": 9.626684796979897e-06,
107
+ "loss": 7.6262,
108
+ "step": 700
109
+ },
110
+ {
111
+ "epoch": 0.16105869247184829,
112
+ "grad_norm": 26.178325653076172,
113
+ "learning_rate": 9.557960604906617e-06,
114
+ "loss": 6.8968,
115
+ "step": 750
116
+ },
117
+ {
118
+ "epoch": 0.17179593863663817,
119
+ "grad_norm": 33.18976974487305,
120
+ "learning_rate": 9.483722515590272e-06,
121
+ "loss": 6.6629,
122
+ "step": 800
123
+ },
124
+ {
125
+ "epoch": 0.18253318480142805,
126
+ "grad_norm": 34.82332229614258,
127
+ "learning_rate": 9.40406033700234e-06,
128
+ "loss": 7.0993,
129
+ "step": 850
130
+ },
131
+ {
132
+ "epoch": 0.19327043096621793,
133
+ "grad_norm": 26.693336486816406,
134
+ "learning_rate": 9.319070438792531e-06,
135
+ "loss": 6.4723,
136
+ "step": 900
137
+ },
138
+ {
139
+ "epoch": 0.20400767713100781,
140
+ "grad_norm": 34.47566604614258,
141
+ "learning_rate": 9.228855635707628e-06,
142
+ "loss": 5.8886,
143
+ "step": 950
144
+ },
145
+ {
146
+ "epoch": 0.21474492329579772,
147
+ "grad_norm": 65.18700408935547,
148
+ "learning_rate": 9.133525063213493e-06,
149
+ "loss": 6.6788,
150
+ "step": 1000
151
+ },
152
+ {
153
+ "epoch": 0.2254821694605876,
154
+ "grad_norm": 61.74058532714844,
155
+ "learning_rate": 9.033194045470737e-06,
156
+ "loss": 7.2595,
157
+ "step": 1050
158
+ },
159
+ {
160
+ "epoch": 0.2362194156253775,
161
+ "grad_norm": 25.502079010009766,
162
+ "learning_rate": 8.927983955823733e-06,
163
+ "loss": 6.1929,
164
+ "step": 1100
165
+ },
166
+ {
167
+ "epoch": 0.24695666179016737,
168
+ "grad_norm": 29.763696670532227,
169
+ "learning_rate": 8.818022069971751e-06,
170
+ "loss": 6.5921,
171
+ "step": 1150
172
+ },
173
+ {
174
+ "epoch": 0.2576939079549573,
175
+ "grad_norm": 65.69770050048828,
176
+ "learning_rate": 8.70344141199986e-06,
177
+ "loss": 6.6611,
178
+ "step": 1200
179
+ },
180
+ {
181
+ "epoch": 0.26843115411974716,
182
+ "grad_norm": 25.397932052612305,
183
+ "learning_rate": 8.584380593455827e-06,
184
+ "loss": 7.0567,
185
+ "step": 1250
186
+ },
187
+ {
188
+ "epoch": 0.27916840028453704,
189
+ "grad_norm": 30.733415603637695,
190
+ "learning_rate": 8.460983645667699e-06,
191
+ "loss": 6.7576,
192
+ "step": 1300
193
+ },
194
+ {
195
+ "epoch": 0.2899056464493269,
196
+ "grad_norm": 66.96133422851562,
197
+ "learning_rate": 8.333399845504937e-06,
198
+ "loss": 6.3752,
199
+ "step": 1350
200
+ },
201
+ {
202
+ "epoch": 0.3006428926141168,
203
+ "grad_norm": 26.447092056274414,
204
+ "learning_rate": 8.201783534793842e-06,
205
+ "loss": 6.876,
206
+ "step": 1400
207
+ },
208
+ {
209
+ "epoch": 0.3113801387789067,
210
+ "grad_norm": 24.18231964111328,
211
+ "learning_rate": 8.066293933605773e-06,
212
+ "loss": 6.0732,
213
+ "step": 1450
214
+ },
215
+ {
216
+ "epoch": 0.32211738494369657,
217
+ "grad_norm": 34.274925231933594,
218
+ "learning_rate": 7.927094947644011e-06,
219
+ "loss": 5.7283,
220
+ "step": 1500
221
+ },
222
+ {
223
+ "epoch": 0.33285463110848645,
224
+ "grad_norm": 27.62099266052246,
225
+ "learning_rate": 7.78435496996226e-06,
226
+ "loss": 7.3833,
227
+ "step": 1550
228
+ },
229
+ {
230
+ "epoch": 0.34359187727327634,
231
+ "grad_norm": 25.83642578125,
232
+ "learning_rate": 7.638246677254688e-06,
233
+ "loss": 6.509,
234
+ "step": 1600
235
+ },
236
+ {
237
+ "epoch": 0.3543291234380662,
238
+ "grad_norm": 36.06763458251953,
239
+ "learning_rate": 7.488946820963927e-06,
240
+ "loss": 6.5806,
241
+ "step": 1650
242
+ },
243
+ {
244
+ "epoch": 0.3650663696028561,
245
+ "grad_norm": 27.58775520324707,
246
+ "learning_rate": 7.336636013459703e-06,
247
+ "loss": 5.934,
248
+ "step": 1700
249
+ },
250
+ {
251
+ "epoch": 0.375803615767646,
252
+ "grad_norm": 22.30318260192871,
253
+ "learning_rate": 7.181498509546826e-06,
254
+ "loss": 5.7693,
255
+ "step": 1750
256
+ },
257
+ {
258
+ "epoch": 0.38654086193243586,
259
+ "grad_norm": 24.926786422729492,
260
+ "learning_rate": 7.023721983566801e-06,
261
+ "loss": 6.9289,
262
+ "step": 1800
263
+ },
264
+ {
265
+ "epoch": 0.39727810809722575,
266
+ "grad_norm": 25.968164443969727,
267
+ "learning_rate": 6.8634973023627226e-06,
268
+ "loss": 6.768,
269
+ "step": 1850
270
+ },
271
+ {
272
+ "epoch": 0.40801535426201563,
273
+ "grad_norm": 25.165254592895508,
274
+ "learning_rate": 6.701018294382127e-06,
275
+ "loss": 7.1266,
276
+ "step": 1900
277
+ },
278
+ {
279
+ "epoch": 0.4187526004268055,
280
+ "grad_norm": 24.712444305419922,
281
+ "learning_rate": 6.536481515197079e-06,
282
+ "loss": 6.3425,
283
+ "step": 1950
284
+ },
285
+ {
286
+ "epoch": 0.42948984659159545,
287
+ "grad_norm": 31.923627853393555,
288
+ "learning_rate": 6.370086009725202e-06,
289
+ "loss": 6.2436,
290
+ "step": 2000
291
+ },
292
+ {
293
+ "epoch": 0.44022709275638533,
294
+ "grad_norm": 68.29981994628906,
295
+ "learning_rate": 6.2020330714392606e-06,
296
+ "loss": 6.6696,
297
+ "step": 2050
298
+ },
299
+ {
300
+ "epoch": 0.4509643389211752,
301
+ "grad_norm": 26.502107620239258,
302
+ "learning_rate": 6.032525998856602e-06,
303
+ "loss": 7.4051,
304
+ "step": 2100
305
+ },
306
+ {
307
+ "epoch": 0.4617015850859651,
308
+ "grad_norm": 67.43496704101562,
309
+ "learning_rate": 5.861769849603037e-06,
310
+ "loss": 6.4374,
311
+ "step": 2150
312
+ },
313
+ {
314
+ "epoch": 0.472438831250755,
315
+ "grad_norm": 22.64506721496582,
316
+ "learning_rate": 5.6899711923486865e-06,
317
+ "loss": 6.0758,
318
+ "step": 2200
319
+ },
320
+ {
321
+ "epoch": 0.48317607741554486,
322
+ "grad_norm": 70.44175720214844,
323
+ "learning_rate": 5.517337856915855e-06,
324
+ "loss": 6.7893,
325
+ "step": 2250
326
+ },
327
+ {
328
+ "epoch": 0.49391332358033474,
329
+ "grad_norm": 24.47262954711914,
330
+ "learning_rate": 5.344078682861271e-06,
331
+ "loss": 7.6083,
332
+ "step": 2300
333
+ },
334
+ {
335
+ "epoch": 0.5046505697451246,
336
+ "grad_norm": 25.729589462280273,
337
+ "learning_rate": 5.170403266836805e-06,
338
+ "loss": 7.6877,
339
+ "step": 2350
340
+ },
341
+ {
342
+ "epoch": 0.5153878159099146,
343
+ "grad_norm": 34.42097091674805,
344
+ "learning_rate": 4.996521709034323e-06,
345
+ "loss": 6.2438,
346
+ "step": 2400
347
+ },
348
+ {
349
+ "epoch": 0.5261250620747044,
350
+ "grad_norm": 22.106380462646484,
351
+ "learning_rate": 4.822644359021385e-06,
352
+ "loss": 5.7968,
353
+ "step": 2450
354
+ },
355
+ {
356
+ "epoch": 0.5368623082394943,
357
+ "grad_norm": 32.665008544921875,
358
+ "learning_rate": 4.6489815612752605e-06,
359
+ "loss": 7.0503,
360
+ "step": 2500
361
+ },
362
+ {
363
+ "epoch": 0.5475995544042842,
364
+ "grad_norm": 71.0403823852539,
365
+ "learning_rate": 4.475743400723118e-06,
366
+ "loss": 8.1591,
367
+ "step": 2550
368
+ },
369
+ {
370
+ "epoch": 0.5583368005690741,
371
+ "grad_norm": 25.462692260742188,
372
+ "learning_rate": 4.303139448596186e-06,
373
+ "loss": 7.8905,
374
+ "step": 2600
375
+ },
376
+ {
377
+ "epoch": 0.569074046733864,
378
+ "grad_norm": 23.902353286743164,
379
+ "learning_rate": 4.131378508905354e-06,
380
+ "loss": 7.5098,
381
+ "step": 2650
382
+ },
383
+ {
384
+ "epoch": 0.5798112928986539,
385
+ "grad_norm": 73.74296569824219,
386
+ "learning_rate": 3.960668365844897e-06,
387
+ "loss": 6.9865,
388
+ "step": 2700
389
+ },
390
+ {
391
+ "epoch": 0.5905485390634437,
392
+ "grad_norm": 23.606212615966797,
393
+ "learning_rate": 3.7912155324299055e-06,
394
+ "loss": 6.7793,
395
+ "step": 2750
396
+ },
397
+ {
398
+ "epoch": 0.6012857852282336,
399
+ "grad_norm": 28.69478988647461,
400
+ "learning_rate": 3.6232250006714984e-06,
401
+ "loss": 7.8017,
402
+ "step": 2800
403
+ },
404
+ {
405
+ "epoch": 0.6120230313930235,
406
+ "grad_norm": 32.56262969970703,
407
+ "learning_rate": 3.4568999935920326e-06,
408
+ "loss": 7.3203,
409
+ "step": 2850
410
+ },
411
+ {
412
+ "epoch": 0.6227602775578134,
413
+ "grad_norm": 30.071924209594727,
414
+ "learning_rate": 3.2924417193803227e-06,
415
+ "loss": 7.1038,
416
+ "step": 2900
417
+ },
418
+ {
419
+ "epoch": 0.6334975237226033,
420
+ "grad_norm": 26.632976531982422,
421
+ "learning_rate": 3.130049127984244e-06,
422
+ "loss": 6.5636,
423
+ "step": 2950
424
+ },
425
+ {
426
+ "epoch": 0.6442347698873931,
427
+ "grad_norm": 74.82283782958984,
428
+ "learning_rate": 2.9699186704352147e-06,
429
+ "loss": 8.7268,
430
+ "step": 3000
431
+ },
432
+ {
433
+ "epoch": 0.654972016052183,
434
+ "grad_norm": 25.507118225097656,
435
+ "learning_rate": 2.8122440611956786e-06,
436
+ "loss": 6.9816,
437
+ "step": 3050
438
+ },
439
+ {
440
+ "epoch": 0.6657092622169729,
441
+ "grad_norm": 28.5225772857666,
442
+ "learning_rate": 2.6572160438170908e-06,
443
+ "loss": 7.1572,
444
+ "step": 3100
445
+ },
446
+ {
447
+ "epoch": 0.6764465083817628,
448
+ "grad_norm": 30.661989212036133,
449
+ "learning_rate": 2.5050221601919212e-06,
450
+ "loss": 6.9789,
451
+ "step": 3150
452
+ },
453
+ {
454
+ "epoch": 0.6871837545465527,
455
+ "grad_norm": 55.0948600769043,
456
+ "learning_rate": 2.355846523678763e-06,
457
+ "loss": 7.0668,
458
+ "step": 3200
459
+ },
460
+ {
461
+ "epoch": 0.6979210007113426,
462
+ "grad_norm": 29.32298469543457,
463
+ "learning_rate": 2.2098695963750772e-06,
464
+ "loss": 8.2287,
465
+ "step": 3250
466
+ },
467
+ {
468
+ "epoch": 0.7086582468761324,
469
+ "grad_norm": 25.44624137878418,
470
+ "learning_rate": 2.067267970806951e-06,
471
+ "loss": 7.5194,
472
+ "step": 3300
473
+ },
474
+ {
475
+ "epoch": 0.7193954930409223,
476
+ "grad_norm": 32.456871032714844,
477
+ "learning_rate": 1.9282141562999857e-06,
478
+ "loss": 8.1477,
479
+ "step": 3350
480
+ },
481
+ {
482
+ "epoch": 0.7301327392057122,
483
+ "grad_norm": 24.61339569091797,
484
+ "learning_rate": 1.7928763702897628e-06,
485
+ "loss": 6.7401,
486
+ "step": 3400
487
+ },
488
+ {
489
+ "epoch": 0.7408699853705021,
490
+ "grad_norm": 26.18975067138672,
491
+ "learning_rate": 1.6614183348243374e-06,
492
+ "loss": 7.6334,
493
+ "step": 3450
494
+ },
495
+ {
496
+ "epoch": 0.751607231535292,
497
+ "grad_norm": 26.87986946105957,
498
+ "learning_rate": 1.5339990785049042e-06,
499
+ "loss": 7.9684,
500
+ "step": 3500
501
+ },
502
+ {
503
+ "epoch": 0.7623444777000818,
504
+ "grad_norm": 33.244022369384766,
505
+ "learning_rate": 1.4107727441043078e-06,
506
+ "loss": 5.8326,
507
+ "step": 3550
508
+ },
509
+ {
510
+ "epoch": 0.7730817238648717,
511
+ "grad_norm": 25.52863121032715,
512
+ "learning_rate": 1.2918884020960376e-06,
513
+ "loss": 8.6725,
514
+ "step": 3600
515
+ },
516
+ {
517
+ "epoch": 0.7838189700296616,
518
+ "grad_norm": 29.53597068786621,
519
+ "learning_rate": 1.1774898703193543e-06,
520
+ "loss": 7.2816,
521
+ "step": 3650
522
+ },
523
+ {
524
+ "epoch": 0.7945562161944515,
525
+ "grad_norm": 26.243022918701172,
526
+ "learning_rate": 1.0677155399986816e-06,
527
+ "loss": 7.5118,
528
+ "step": 3700
529
+ },
530
+ {
531
+ "epoch": 0.8052934623592414,
532
+ "grad_norm": 30.626358032226562,
533
+ "learning_rate": 9.626982083277164e-07,
534
+ "loss": 6.5894,
535
+ "step": 3750
536
+ },
537
+ {
538
+ "epoch": 0.8160307085240313,
539
+ "grad_norm": 67.14990234375,
540
+ "learning_rate": 8.625649178208118e-07,
541
+ "loss": 8.3317,
542
+ "step": 3800
543
+ },
544
+ {
545
+ "epoch": 0.8267679546888211,
546
+ "grad_norm": 27.17194938659668,
547
+ "learning_rate": 7.67436802625962e-07,
548
+ "loss": 6.036,
549
+ "step": 3850
550
+ },
551
+ {
552
+ "epoch": 0.837505200853611,
553
+ "grad_norm": 30.984590530395508,
554
+ "learning_rate": 6.774289419853047e-07,
555
+ "loss": 7.6851,
556
+ "step": 3900
557
+ },
558
+ {
559
+ "epoch": 0.8482424470184009,
560
+ "grad_norm": 27.136178970336914,
561
+ "learning_rate": 5.926502210204272e-07,
562
+ "loss": 6.5551,
563
+ "step": 3950
564
+ },
565
+ {
566
+ "epoch": 0.8589796931831909,
567
+ "grad_norm": 23.628337860107422,
568
+ "learning_rate": 5.132031990108638e-07,
569
+ "loss": 7.834,
570
+ "step": 4000
571
+ },
572
+ {
573
+ "epoch": 0.8697169393479808,
574
+ "grad_norm": 24.78034782409668,
575
+ "learning_rate": 4.391839853251695e-07,
576
+ "loss": 7.6128,
577
+ "step": 4050
578
+ },
579
+ {
580
+ "epoch": 0.8804541855127707,
581
+ "grad_norm": 22.940263748168945,
582
+ "learning_rate": 3.7068212315462037e-07,
583
+ "loss": 7.8816,
584
+ "step": 4100
585
+ },
586
+ {
587
+ "epoch": 0.8911914316775605,
588
+ "grad_norm": 25.937314987182617,
589
+ "learning_rate": 3.07780481190218e-07,
590
+ "loss": 6.3264,
591
+ "step": 4150
592
+ },
593
+ {
594
+ "epoch": 0.9019286778423504,
595
+ "grad_norm": 69.99578857421875,
596
+ "learning_rate": 2.5055515337402856e-07,
597
+ "loss": 8.9909,
598
+ "step": 4200
599
+ },
600
+ {
601
+ "epoch": 0.9126659240071403,
602
+ "grad_norm": 28.738903045654297,
603
+ "learning_rate": 1.9907536684613428e-07,
604
+ "loss": 7.5736,
605
+ "step": 4250
606
+ },
607
+ {
608
+ "epoch": 0.9234031701719302,
609
+ "grad_norm": 25.56987762451172,
610
+ "learning_rate": 1.534033981985489e-07,
611
+ "loss": 7.6917,
612
+ "step": 4300
613
+ },
614
+ {
615
+ "epoch": 0.9341404163367201,
616
+ "grad_norm": 24.722858428955078,
617
+ "learning_rate": 1.135944981374193e-07,
618
+ "loss": 7.3278,
619
+ "step": 4350
620
+ },
621
+ {
622
+ "epoch": 0.94487766250151,
623
+ "grad_norm": 32.49238586425781,
624
+ "learning_rate": 7.969682464464334e-08,
625
+ "loss": 7.2815,
626
+ "step": 4400
627
+ },
628
+ {
629
+ "epoch": 0.9556149086662998,
630
+ "grad_norm": 28.5219669342041,
631
+ "learning_rate": 5.175138471975705e-08,
632
+ "loss": 10.3005,
633
+ "step": 4450
634
+ },
635
+ {
636
+ "epoch": 0.9663521548310897,
637
+ "grad_norm": 29.434492111206055,
638
+ "learning_rate": 2.979198477258194e-08,
639
+ "loss": 6.9552,
640
+ "step": 4500
641
+ },
642
+ {
643
+ "epoch": 0.9770894009958796,
644
+ "grad_norm": 36.71159362792969,
645
+ "learning_rate": 1.3845189726628405e-08,
646
+ "loss": 8.4473,
647
+ "step": 4550
648
+ },
649
+ {
650
+ "epoch": 0.9878266471606695,
651
+ "grad_norm": 27.780433654785156,
652
+ "learning_rate": 3.930290882734333e-09,
653
+ "loss": 6.6687,
654
+ "step": 4600
655
+ },
656
+ {
657
+ "epoch": 0.9985638933254594,
658
+ "grad_norm": 33.07185745239258,
659
+ "learning_rate": 5.928258182075209e-11,
660
+ "loss": 9.9865,
661
+ "step": 4650
662
+ },
663
+ {
664
+ "epoch": 0.9998523628652342,
665
+ "step": 4656,
666
+ "total_flos": 3.225661760470411e+19,
667
+ "train_loss": 7.148990503291494,
668
+ "train_runtime": 70302.7025,
669
+ "train_samples_per_second": 4.239,
670
+ "train_steps_per_second": 0.066
671
+ }
672
+ ],
673
+ "logging_steps": 50,
674
+ "max_steps": 4656,
675
+ "num_input_tokens_seen": 0,
676
+ "num_train_epochs": 1,
677
+ "save_steps": 1000,
678
+ "stateful_callbacks": {
679
+ "TrainerControl": {
680
+ "args": {
681
+ "should_epoch_stop": false,
682
+ "should_evaluate": false,
683
+ "should_log": false,
684
+ "should_save": true,
685
+ "should_training_stop": true
686
+ },
687
+ "attributes": {}
688
+ }
689
+ },
690
+ "total_flos": 3.225661760470411e+19,
691
+ "train_batch_size": 1,
692
+ "trial_name": null,
693
+ "trial_params": null
694
+ }
VGLLM_Pi3_Original_train_small/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c60658f41398516b8a804cc15f572ce19180b49bb4bda7f864ec3502bc328dd
3
+ size 7480
VGLLM_Pi3_Original_train_small/vocab.json ADDED
The diff for this file is too large to render. See raw diff