SuhZhang commited on
Commit
ed5b3f2
·
verified ·
1 Parent(s): b545982

Upload folder using huggingface_hub

Browse files
VGLLM_Gated_VisionZero80p50_train_small_real/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_Gated_VisionZero80p50_train_small_real/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_Gated_VisionZero80p50_train_small_real/config.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "gated",
9
+ "fusion_num_layers": 1,
10
+ "geometry_encoder_type": "vggt",
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.50.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_mask_apply_prob": 0.5,
69
+ "vision_mask_keep_prob": 0.19999999999999996,
70
+ "vision_mask_prob": 0.8,
71
+ "vision_start_token_id": 151652,
72
+ "vision_token_id": 151654,
73
+ "vocab_size": 152064
74
+ }
VGLLM_Gated_VisionZero80p50_train_small_real/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"
12
+ }
VGLLM_Gated_VisionZero80p50_train_small_real/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
VGLLM_Gated_VisionZero80p50_train_small_real/model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c941ffb9e92de16be1651bac54e952dbf898eaf92fce58839c17f217b423cc84
3
+ size 4934281216
VGLLM_Gated_VisionZero80p50_train_small_real/model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44db390f4354340e6e21859996867e6eda8e34b2a1bf6ef40302f44764bfffbb
3
+ size 4932750944
VGLLM_Gated_VisionZero80p50_train_small_real/model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54817dd2e6dce0f0621497c7301b17e0865cd72cda44e72f7b567c7cd66d6a88
3
+ size 4991495888
VGLLM_Gated_VisionZero80p50_train_small_real/model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0006683a861c0adc2cf6101de2002a73a8e4b294646bc0220adf2b79a0131686
3
+ size 3692182944
VGLLM_Gated_VisionZero80p50_train_small_real/model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
VGLLM_Gated_VisionZero80p50_train_small_real/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_Gated_VisionZero80p50_train_small_real/runs/Feb24_13-19-33_hopper-30/events.out.tfevents.1771939288.hopper-30.2124213.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b4f27729d6d287eeafef95ea868177b73460f767122d4d875c41225f6608b68
3
+ size 26723
VGLLM_Gated_VisionZero80p50_train_small_real/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_Gated_VisionZero80p50_train_small_real/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_Gated_VisionZero80p50_train_small_real/train.log ADDED
The diff for this file is too large to render. See raw diff
 
VGLLM_Gated_VisionZero80p50_train_small_real/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": 122.58504486083984,
15
+ "learning_rate": 3.5714285714285718e-06,
16
+ "loss": 25.5971,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.02147449232957977,
21
+ "grad_norm": 92.14105224609375,
22
+ "learning_rate": 7.1428571428571436e-06,
23
+ "loss": 15.8095,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.03221173849436966,
28
+ "grad_norm": 88.2498779296875,
29
+ "learning_rate": 9.999879015387978e-06,
30
+ "loss": 14.4751,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.04294898465915954,
35
+ "grad_norm": 79.90851593017578,
36
+ "learning_rate": 9.995645168701038e-06,
37
+ "loss": 10.6395,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.05368623082394943,
42
+ "grad_norm": 98.06950378417969,
43
+ "learning_rate": 9.98536794504998e-06,
44
+ "loss": 11.1393,
45
+ "step": 250
46
+ },
47
+ {
48
+ "epoch": 0.06442347698873932,
49
+ "grad_norm": 95.09337615966797,
50
+ "learning_rate": 9.969059777090564e-06,
51
+ "loss": 11.2403,
52
+ "step": 300
53
+ },
54
+ {
55
+ "epoch": 0.0751607231535292,
56
+ "grad_norm": 94.5640869140625,
57
+ "learning_rate": 9.946740393286928e-06,
58
+ "loss": 10.161,
59
+ "step": 350
60
+ },
61
+ {
62
+ "epoch": 0.08589796931831908,
63
+ "grad_norm": 45.75733947753906,
64
+ "learning_rate": 9.918436794045507e-06,
65
+ "loss": 9.6319,
66
+ "step": 400
67
+ },
68
+ {
69
+ "epoch": 0.09663521548310897,
70
+ "grad_norm": 44.17033767700195,
71
+ "learning_rate": 9.884183219051837e-06,
72
+ "loss": 10.4065,
73
+ "step": 450
74
+ },
75
+ {
76
+ "epoch": 0.10737246164789886,
77
+ "grad_norm": 41.16874694824219,
78
+ "learning_rate": 9.844021105849837e-06,
79
+ "loss": 7.8502,
80
+ "step": 500
81
+ },
82
+ {
83
+ "epoch": 0.11810970781268874,
84
+ "grad_norm": 84.32959747314453,
85
+ "learning_rate": 9.797999039713586e-06,
86
+ "loss": 9.3041,
87
+ "step": 550
88
+ },
89
+ {
90
+ "epoch": 0.12884695397747864,
91
+ "grad_norm": 39.66738510131836,
92
+ "learning_rate": 9.746172694872332e-06,
93
+ "loss": 8.5279,
94
+ "step": 600
95
+ },
96
+ {
97
+ "epoch": 0.13958420014226852,
98
+ "grad_norm": 39.50006866455078,
99
+ "learning_rate": 9.688604767159736e-06,
100
+ "loss": 9.5201,
101
+ "step": 650
102
+ },
103
+ {
104
+ "epoch": 0.1503214463070584,
105
+ "grad_norm": 38.226261138916016,
106
+ "learning_rate": 9.62536489816892e-06,
107
+ "loss": 9.9717,
108
+ "step": 700
109
+ },
110
+ {
111
+ "epoch": 0.16105869247184829,
112
+ "grad_norm": 35.42646789550781,
113
+ "learning_rate": 9.556529591005001e-06,
114
+ "loss": 9.0548,
115
+ "step": 750
116
+ },
117
+ {
118
+ "epoch": 0.17179593863663817,
119
+ "grad_norm": 44.124263763427734,
120
+ "learning_rate": 9.482182117737066e-06,
121
+ "loss": 8.9763,
122
+ "step": 800
123
+ },
124
+ {
125
+ "epoch": 0.18253318480142805,
126
+ "grad_norm": 43.76786422729492,
127
+ "learning_rate": 9.402412418661541e-06,
128
+ "loss": 9.8142,
129
+ "step": 850
130
+ },
131
+ {
132
+ "epoch": 0.19327043096621793,
133
+ "grad_norm": 34.88469314575195,
134
+ "learning_rate": 9.317316993498788e-06,
135
+ "loss": 8.6092,
136
+ "step": 900
137
+ },
138
+ {
139
+ "epoch": 0.20400767713100781,
140
+ "grad_norm": 38.54001998901367,
141
+ "learning_rate": 9.226998784654606e-06,
142
+ "loss": 7.4996,
143
+ "step": 950
144
+ },
145
+ {
146
+ "epoch": 0.21474492329579772,
147
+ "grad_norm": 74.26197814941406,
148
+ "learning_rate": 9.131567052687811e-06,
149
+ "loss": 9.0709,
150
+ "step": 1000
151
+ },
152
+ {
153
+ "epoch": 0.2254821694605876,
154
+ "grad_norm": 41.04670333862305,
155
+ "learning_rate": 9.03113724413456e-06,
156
+ "loss": 10.0284,
157
+ "step": 1050
158
+ },
159
+ {
160
+ "epoch": 0.2362194156253775,
161
+ "grad_norm": 42.67012405395508,
162
+ "learning_rate": 8.925830851849338e-06,
163
+ "loss": 7.9923,
164
+ "step": 1100
165
+ },
166
+ {
167
+ "epoch": 0.24695666179016737,
168
+ "grad_norm": 49.978736877441406,
169
+ "learning_rate": 8.815775268031514e-06,
170
+ "loss": 8.8409,
171
+ "step": 1150
172
+ },
173
+ {
174
+ "epoch": 0.2576939079549573,
175
+ "grad_norm": 80.3055419921875,
176
+ "learning_rate": 8.701103630115303e-06,
177
+ "loss": 8.9708,
178
+ "step": 1200
179
+ },
180
+ {
181
+ "epoch": 0.26843115411974716,
182
+ "grad_norm": 31.320579528808594,
183
+ "learning_rate": 8.581954659709549e-06,
184
+ "loss": 9.6101,
185
+ "step": 1250
186
+ },
187
+ {
188
+ "epoch": 0.27916840028453704,
189
+ "grad_norm": 35.097434997558594,
190
+ "learning_rate": 8.458472494782169e-06,
191
+ "loss": 9.1278,
192
+ "step": 1300
193
+ },
194
+ {
195
+ "epoch": 0.2899056464493269,
196
+ "grad_norm": 79.29938507080078,
197
+ "learning_rate": 8.330806515292271e-06,
198
+ "loss": 8.365,
199
+ "step": 1350
200
+ },
201
+ {
202
+ "epoch": 0.3006428926141168,
203
+ "grad_norm": 35.84828186035156,
204
+ "learning_rate": 8.199111162480871e-06,
205
+ "loss": 9.4828,
206
+ "step": 1400
207
+ },
208
+ {
209
+ "epoch": 0.3113801387789067,
210
+ "grad_norm": 28.13869857788086,
211
+ "learning_rate": 8.063545752038854e-06,
212
+ "loss": 7.6841,
213
+ "step": 1450
214
+ },
215
+ {
216
+ "epoch": 0.32211738494369657,
217
+ "grad_norm": 48.257423400878906,
218
+ "learning_rate": 7.924274281378153e-06,
219
+ "loss": 7.3778,
220
+ "step": 1500
221
+ },
222
+ {
223
+ "epoch": 0.33285463110848645,
224
+ "grad_norm": 39.27827835083008,
225
+ "learning_rate": 7.781465231239318e-06,
226
+ "loss": 10.1326,
227
+ "step": 1550
228
+ },
229
+ {
230
+ "epoch": 0.34359187727327634,
231
+ "grad_norm": 29.741004943847656,
232
+ "learning_rate": 7.635291361875474e-06,
233
+ "loss": 8.61,
234
+ "step": 1600
235
+ },
236
+ {
237
+ "epoch": 0.3543291234380662,
238
+ "grad_norm": 39.182769775390625,
239
+ "learning_rate": 7.485929504059234e-06,
240
+ "loss": 8.702,
241
+ "step": 1650
242
+ },
243
+ {
244
+ "epoch": 0.3650663696028561,
245
+ "grad_norm": 32.254554748535156,
246
+ "learning_rate": 7.333560345165371e-06,
247
+ "loss": 7.5357,
248
+ "step": 1700
249
+ },
250
+ {
251
+ "epoch": 0.375803615767646,
252
+ "grad_norm": 28.51645851135254,
253
+ "learning_rate": 7.178368210588067e-06,
254
+ "loss": 7.2457,
255
+ "step": 1750
256
+ },
257
+ {
258
+ "epoch": 0.38654086193243586,
259
+ "grad_norm": 28.341947555541992,
260
+ "learning_rate": 7.020540840757124e-06,
261
+ "loss": 9.2959,
262
+ "step": 1800
263
+ },
264
+ {
265
+ "epoch": 0.39727810809722575,
266
+ "grad_norm": 42.67914581298828,
267
+ "learning_rate": 6.860269164022921e-06,
268
+ "loss": 9.1062,
269
+ "step": 1850
270
+ },
271
+ {
272
+ "epoch": 0.40801535426201563,
273
+ "grad_norm": 31.293323516845703,
274
+ "learning_rate": 6.697747065684851e-06,
275
+ "loss": 9.5109,
276
+ "step": 1900
277
+ },
278
+ {
279
+ "epoch": 0.4187526004268055,
280
+ "grad_norm": 35.099021911621094,
281
+ "learning_rate": 6.5331711534426326e-06,
282
+ "loss": 8.1034,
283
+ "step": 1950
284
+ },
285
+ {
286
+ "epoch": 0.42948984659159545,
287
+ "grad_norm": 35.72314453125,
288
+ "learning_rate": 6.366740519554286e-06,
289
+ "loss": 7.9167,
290
+ "step": 2000
291
+ },
292
+ {
293
+ "epoch": 0.44022709275638533,
294
+ "grad_norm": 73.83097076416016,
295
+ "learning_rate": 6.198656499988444e-06,
296
+ "loss": 8.5164,
297
+ "step": 2050
298
+ },
299
+ {
300
+ "epoch": 0.4509643389211752,
301
+ "grad_norm": 30.618099212646484,
302
+ "learning_rate": 6.029122430862373e-06,
303
+ "loss": 9.6928,
304
+ "step": 2100
305
+ },
306
+ {
307
+ "epoch": 0.4617015850859651,
308
+ "grad_norm": 74.77922058105469,
309
+ "learning_rate": 5.858343402460391e-06,
310
+ "loss": 8.1368,
311
+ "step": 2150
312
+ },
313
+ {
314
+ "epoch": 0.472438831250755,
315
+ "grad_norm": 26.513835906982422,
316
+ "learning_rate": 5.68652601113019e-06,
317
+ "loss": 7.5154,
318
+ "step": 2200
319
+ },
320
+ {
321
+ "epoch": 0.48317607741554486,
322
+ "grad_norm": 70.47901916503906,
323
+ "learning_rate": 5.513878109357228e-06,
324
+ "loss": 8.6317,
325
+ "step": 2250
326
+ },
327
+ {
328
+ "epoch": 0.49391332358033474,
329
+ "grad_norm": 33.31165313720703,
330
+ "learning_rate": 5.3406085543195555e-06,
331
+ "loss": 9.8199,
332
+ "step": 2300
333
+ },
334
+ {
335
+ "epoch": 0.5046505697451246,
336
+ "grad_norm": 36.43808364868164,
337
+ "learning_rate": 5.166926955227224e-06,
338
+ "loss": 9.8981,
339
+ "step": 2350
340
+ },
341
+ {
342
+ "epoch": 0.5153878159099146,
343
+ "grad_norm": 35.49153137207031,
344
+ "learning_rate": 4.993043419751933e-06,
345
+ "loss": 7.7103,
346
+ "step": 2400
347
+ },
348
+ {
349
+ "epoch": 0.5261250620747044,
350
+ "grad_norm": 27.446149826049805,
351
+ "learning_rate": 4.8191682998536905e-06,
352
+ "loss": 7.0446,
353
+ "step": 2450
354
+ },
355
+ {
356
+ "epoch": 0.5368623082394943,
357
+ "grad_norm": 35.19398498535156,
358
+ "learning_rate": 4.645511937311934e-06,
359
+ "loss": 8.806,
360
+ "step": 2500
361
+ },
362
+ {
363
+ "epoch": 0.5475995544042842,
364
+ "grad_norm": 77.66211700439453,
365
+ "learning_rate": 4.472284409268976e-06,
366
+ "loss": 10.2757,
367
+ "step": 2550
368
+ },
369
+ {
370
+ "epoch": 0.5583368005690741,
371
+ "grad_norm": 29.25933837890625,
372
+ "learning_rate": 4.299695274093593e-06,
373
+ "loss": 9.8498,
374
+ "step": 2600
375
+ },
376
+ {
377
+ "epoch": 0.569074046733864,
378
+ "grad_norm": 32.54759979248047,
379
+ "learning_rate": 4.1279533178721755e-06,
380
+ "loss": 9.312,
381
+ "step": 2650
382
+ },
383
+ {
384
+ "epoch": 0.5798112928986539,
385
+ "grad_norm": 77.79645538330078,
386
+ "learning_rate": 3.957266301834145e-06,
387
+ "loss": 8.5012,
388
+ "step": 2700
389
+ },
390
+ {
391
+ "epoch": 0.5905485390634437,
392
+ "grad_norm": 30.680482864379883,
393
+ "learning_rate": 3.7878407110171646e-06,
394
+ "loss": 8.1592,
395
+ "step": 2750
396
+ },
397
+ {
398
+ "epoch": 0.6012857852282336,
399
+ "grad_norm": 30.990217208862305,
400
+ "learning_rate": 3.6198815044761847e-06,
401
+ "loss": 9.4135,
402
+ "step": 2800
403
+ },
404
+ {
405
+ "epoch": 0.6120230313930235,
406
+ "grad_norm": 34.311153411865234,
407
+ "learning_rate": 3.4535918673385456e-06,
408
+ "loss": 8.7601,
409
+ "step": 2850
410
+ },
411
+ {
412
+ "epoch": 0.6227602775578134,
413
+ "grad_norm": 34.08210754394531,
414
+ "learning_rate": 3.2891729650050096e-06,
415
+ "loss": 8.4742,
416
+ "step": 2900
417
+ },
418
+ {
419
+ "epoch": 0.6334975237226033,
420
+ "grad_norm": 30.370546340942383,
421
+ "learning_rate": 3.1268236997941535e-06,
422
+ "loss": 7.6472,
423
+ "step": 2950
424
+ },
425
+ {
426
+ "epoch": 0.6442347698873931,
427
+ "grad_norm": 76.85076141357422,
428
+ "learning_rate": 2.966740470324451e-06,
429
+ "loss": 10.3334,
430
+ "step": 3000
431
+ },
432
+ {
433
+ "epoch": 0.654972016052183,
434
+ "grad_norm": 33.31392288208008,
435
+ "learning_rate": 2.8091169339251644e-06,
436
+ "loss": 8.1425,
437
+ "step": 3050
438
+ },
439
+ {
440
+ "epoch": 0.6657092622169729,
441
+ "grad_norm": 28.994285583496094,
442
+ "learning_rate": 2.654143772363455e-06,
443
+ "loss": 8.2618,
444
+ "step": 3100
445
+ },
446
+ {
447
+ "epoch": 0.6764465083817628,
448
+ "grad_norm": 33.96207809448242,
449
+ "learning_rate": 2.502008461171114e-06,
450
+ "loss": 7.9787,
451
+ "step": 3150
452
+ },
453
+ {
454
+ "epoch": 0.6871837545465527,
455
+ "grad_norm": 44.06400680541992,
456
+ "learning_rate": 2.352895042849965e-06,
457
+ "loss": 8.0353,
458
+ "step": 3200
459
+ },
460
+ {
461
+ "epoch": 0.6979210007113426,
462
+ "grad_norm": 35.88554000854492,
463
+ "learning_rate": 2.20698390423032e-06,
464
+ "loss": 9.3106,
465
+ "step": 3250
466
+ },
467
+ {
468
+ "epoch": 0.7086582468761324,
469
+ "grad_norm": 31.703388214111328,
470
+ "learning_rate": 2.0644515582517803e-06,
471
+ "loss": 8.5185,
472
+ "step": 3300
473
+ },
474
+ {
475
+ "epoch": 0.7193954930409223,
476
+ "grad_norm": 34.17527770996094,
477
+ "learning_rate": 1.9254704304304174e-06,
478
+ "loss": 9.1151,
479
+ "step": 3350
480
+ },
481
+ {
482
+ "epoch": 0.7301327392057122,
483
+ "grad_norm": 29.952329635620117,
484
+ "learning_rate": 1.7902086502706256e-06,
485
+ "loss": 7.4807,
486
+ "step": 3400
487
+ },
488
+ {
489
+ "epoch": 0.7408699853705021,
490
+ "grad_norm": 29.618684768676758,
491
+ "learning_rate": 1.658829847873965e-06,
492
+ "loss": 8.402,
493
+ "step": 3450
494
+ },
495
+ {
496
+ "epoch": 0.751607231535292,
497
+ "grad_norm": 35.65748596191406,
498
+ "learning_rate": 1.5314929559910985e-06,
499
+ "loss": 8.7392,
500
+ "step": 3500
501
+ },
502
+ {
503
+ "epoch": 0.7623444777000818,
504
+ "grad_norm": 40.38413619995117,
505
+ "learning_rate": 1.4083520177562154e-06,
506
+ "loss": 6.4324,
507
+ "step": 3550
508
+ },
509
+ {
510
+ "epoch": 0.7730817238648717,
511
+ "grad_norm": 38.58983612060547,
512
+ "learning_rate": 1.2895560003365837e-06,
513
+ "loss": 9.4396,
514
+ "step": 3600
515
+ },
516
+ {
517
+ "epoch": 0.7838189700296616,
518
+ "grad_norm": 33.327510833740234,
519
+ "learning_rate": 1.1752486147226505e-06,
520
+ "loss": 7.8763,
521
+ "step": 3650
522
+ },
523
+ {
524
+ "epoch": 0.7945562161944515,
525
+ "grad_norm": 31.827482223510742,
526
+ "learning_rate": 1.0655681418766772e-06,
527
+ "loss": 8.1159,
528
+ "step": 3700
529
+ },
530
+ {
531
+ "epoch": 0.8052934623592414,
532
+ "grad_norm": 37.83740997314453,
533
+ "learning_rate": 9.60647265450249e-07,
534
+ "loss": 7.1248,
535
+ "step": 3750
536
+ },
537
+ {
538
+ "epoch": 0.8160307085240313,
539
+ "grad_norm": 68.32665252685547,
540
+ "learning_rate": 8.60612911273011e-07,
541
+ "loss": 8.8583,
542
+ "step": 3800
543
+ },
544
+ {
545
+ "epoch": 0.8267679546888211,
546
+ "grad_norm": 28.628252029418945,
547
+ "learning_rate": 7.655860938068071e-07,
548
+ "loss": 6.5486,
549
+ "step": 3850
550
+ },
551
+ {
552
+ "epoch": 0.837505200853611,
553
+ "grad_norm": 35.551815032958984,
554
+ "learning_rate": 6.756817697509755e-07,
555
+ "loss": 8.1337,
556
+ "step": 3900
557
+ },
558
+ {
559
+ "epoch": 0.8482424470184009,
560
+ "grad_norm": 29.21653175354004,
561
+ "learning_rate": 5.910086989758862e-07,
562
+ "loss": 7.0004,
563
+ "step": 3950
564
+ },
565
+ {
566
+ "epoch": 0.8589796931831909,
567
+ "grad_norm": 28.43161392211914,
568
+ "learning_rate": 5.11669312952977e-07,
569
+ "loss": 8.2137,
570
+ "step": 4000
571
+ },
572
+ {
573
+ "epoch": 0.8697169393479808,
574
+ "grad_norm": 27.239362716674805,
575
+ "learning_rate": 4.377595908404225e-07,
576
+ "loss": 7.9611,
577
+ "step": 4050
578
+ },
579
+ {
580
+ "epoch": 0.8804541855127707,
581
+ "grad_norm": 27.20981788635254,
582
+ "learning_rate": 3.693689433743658e-07,
583
+ "loss": 8.2071,
584
+ "step": 4100
585
+ },
586
+ {
587
+ "epoch": 0.8911914316775605,
588
+ "grad_norm": 30.86234474182129,
589
+ "learning_rate": 3.065801047061517e-07,
590
+ "loss": 6.6662,
591
+ "step": 4150
592
+ },
593
+ {
594
+ "epoch": 0.9019286778423504,
595
+ "grad_norm": 72.03483581542969,
596
+ "learning_rate": 2.4946903231642727e-07,
597
+ "loss": 9.2256,
598
+ "step": 4200
599
+ },
600
+ {
601
+ "epoch": 0.9126659240071403,
602
+ "grad_norm": 35.229248046875,
603
+ "learning_rate": 1.9810481512716638e-07,
604
+ "loss": 7.8211,
605
+ "step": 4250
606
+ },
607
+ {
608
+ "epoch": 0.9234031701719302,
609
+ "grad_norm": 29.196678161621094,
610
+ "learning_rate": 1.5254958992280022e-07,
611
+ "loss": 7.9577,
612
+ "step": 4300
613
+ },
614
+ {
615
+ "epoch": 0.9341404163367201,
616
+ "grad_norm": 31.289777755737305,
617
+ "learning_rate": 1.128584661815435e-07,
618
+ "loss": 7.572,
619
+ "step": 4350
620
+ },
621
+ {
622
+ "epoch": 0.94487766250151,
623
+ "grad_norm": 29.68185043334961,
624
+ "learning_rate": 7.907945940786033e-08,
625
+ "loss": 7.5517,
626
+ "step": 4400
627
+ },
628
+ {
629
+ "epoch": 0.9556149086662998,
630
+ "grad_norm": 28.52676773071289,
631
+ "learning_rate": 5.125343304671459e-08,
632
+ "loss": 10.374,
633
+ "step": 4450
634
+ },
635
+ {
636
+ "epoch": 0.9663521548310897,
637
+ "grad_norm": 34.890655517578125,
638
+ "learning_rate": 2.9414049049872883e-08,
639
+ "loss": 7.1905,
640
+ "step": 4500
641
+ },
642
+ {
643
+ "epoch": 0.9770894009958796,
644
+ "grad_norm": 40.517208099365234,
645
+ "learning_rate": 1.35877271540652e-08,
646
+ "loss": 8.6259,
647
+ "step": 4550
648
+ },
649
+ {
650
+ "epoch": 0.9878266471606695,
651
+ "grad_norm": 29.639062881469727,
652
+ "learning_rate": 3.7936129202648106e-09,
653
+ "loss": 6.9152,
654
+ "step": 4600
655
+ },
656
+ {
657
+ "epoch": 0.9985638933254594,
658
+ "grad_norm": 43.505428314208984,
659
+ "learning_rate": 4.3554572743409463e-11,
660
+ "loss": 10.0409,
661
+ "step": 4650
662
+ },
663
+ {
664
+ "epoch": 0.9998523628652342,
665
+ "step": 4656,
666
+ "total_flos": 3.2168639765195784e+19,
667
+ "train_loss": 8.979798909315129,
668
+ "train_runtime": 72260.7648,
669
+ "train_samples_per_second": 4.124,
670
+ "train_steps_per_second": 0.064
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.2168639765195784e+19,
691
+ "train_batch_size": 1,
692
+ "trial_name": null,
693
+ "trial_params": null
694
+ }
VGLLM_Gated_VisionZero80p50_train_small_real/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f368e8efd10a9181a76ba5c03b6b4ba4c0885e68c3604c2f135d2982e0139f4
3
+ size 7544
VGLLM_Gated_VisionZero80p50_train_small_real/vocab.json ADDED
The diff for this file is too large to render. See raw diff