HyperbolicCurve commited on
Commit
51b9977
·
verified ·
1 Parent(s): 2edf240

Upload folder using huggingface_hub

Browse files
added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
chat_template.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
+ }
config.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGenerationWithGenerative"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "eos_token_id": 151645,
8
+ "generative_encoder_feature_dim": 2048,
9
+ "generative_encoder_freeze": true,
10
+ "generative_encoder_path": "data/models/Wan2.1-T2V-1.3B",
11
+ "generative_encoder_tower_type": "wan_t2v_online",
12
+ "generative_fusion_method": "token_gated_residual",
13
+ "generative_fusion_num_layers": 1,
14
+ "generative_merger_type": "mlp",
15
+ "generative_vision_tower_task": "t2v-1.3B",
16
+ "hidden_act": "silu",
17
+ "hidden_size": 3584,
18
+ "image_token_id": 151655,
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 18944,
21
+ "max_position_embeddings": 128000,
22
+ "max_window_layers": 28,
23
+ "model_type": "qwen2_5_vl",
24
+ "num_attention_heads": 28,
25
+ "num_hidden_layers": 28,
26
+ "num_key_value_heads": 4,
27
+ "rms_norm_eps": 1e-06,
28
+ "rope_scaling": {
29
+ "mrope_section": [
30
+ 16,
31
+ 24,
32
+ 24
33
+ ],
34
+ "rope_type": "default",
35
+ "type": "default"
36
+ },
37
+ "rope_theta": 1000000.0,
38
+ "sliding_window": 32768,
39
+ "tie_word_embeddings": false,
40
+ "torch_dtype": "bfloat16",
41
+ "transformers_version": "4.50.0",
42
+ "use_cache": true,
43
+ "use_generative_encoder": true,
44
+ "use_sliding_window": false,
45
+ "video_token_id": 151656,
46
+ "vision_config": {
47
+ "depth": 32,
48
+ "fullatt_block_indexes": [
49
+ 7,
50
+ 15,
51
+ 23,
52
+ 31
53
+ ],
54
+ "hidden_act": "silu",
55
+ "hidden_size": 1280,
56
+ "in_channels": 3,
57
+ "in_chans": 3,
58
+ "intermediate_size": 3420,
59
+ "model_type": "qwen2_5_vl",
60
+ "num_heads": 16,
61
+ "out_hidden_size": 3584,
62
+ "patch_size": 14,
63
+ "spatial_merge_size": 2,
64
+ "spatial_patch_size": 14,
65
+ "temporal_patch_size": 2,
66
+ "tokens_per_second": 2,
67
+ "torch_dtype": "bfloat16",
68
+ "window_size": 112
69
+ },
70
+ "vision_end_token_id": 151653,
71
+ "vision_start_token_id": 151652,
72
+ "vision_token_id": 151654,
73
+ "vocab_size": 152064
74
+ }
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
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac79615ea1bd0fb840a60445bfbac8668426c36deae0f5f2ff5205459bcc0a94
3
+ size 4271000068
model-00002-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2dc2237f7a36117af767737fa5f643cfdf16608467632ff55eede834967e36c
3
+ size 4877660776
model-00003-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2515944f76269943f5b9f5731f32ece403b2357531397b1a5c4763de373ecbf3
3
+ size 4932751008
model-00004-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:312054b451fce97527ca36494d8b8c413067ce30273726978989647832bd10e5
3
+ size 4330865200
model-00005-of-00005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34afd9ac44a3984f9c34ea11a73c798ebbbe12f9e3094e4cd4d11551ceddcb09
3
+ size 1089994880
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
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
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer_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
+ }
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.9998389434691577,
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.010737102056155044,
14
+ "grad_norm": 59.99636459350586,
15
+ "learning_rate": 3.5714285714285718e-06,
16
+ "loss": 12.7755,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.02147420411231009,
21
+ "grad_norm": 47.23111343383789,
22
+ "learning_rate": 7.1428571428571436e-06,
23
+ "loss": 7.8117,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.03221130616846513,
28
+ "grad_norm": 47.798980712890625,
29
+ "learning_rate": 9.999879015387978e-06,
30
+ "loss": 7.1417,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.04294840822462018,
35
+ "grad_norm": 37.97929763793945,
36
+ "learning_rate": 9.995645168701038e-06,
37
+ "loss": 5.285,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.05368551028077522,
42
+ "grad_norm": 46.82593536376953,
43
+ "learning_rate": 9.98536794504998e-06,
44
+ "loss": 5.5196,
45
+ "step": 250
46
+ },
47
+ {
48
+ "epoch": 0.06442261233693027,
49
+ "grad_norm": 47.67216873168945,
50
+ "learning_rate": 9.969059777090564e-06,
51
+ "loss": 5.5595,
52
+ "step": 300
53
+ },
54
+ {
55
+ "epoch": 0.0751597143930853,
56
+ "grad_norm": 47.013511657714844,
57
+ "learning_rate": 9.946740393286928e-06,
58
+ "loss": 5.0251,
59
+ "step": 350
60
+ },
61
+ {
62
+ "epoch": 0.08589681644924035,
63
+ "grad_norm": 24.63237190246582,
64
+ "learning_rate": 9.918436794045507e-06,
65
+ "loss": 4.7625,
66
+ "step": 400
67
+ },
68
+ {
69
+ "epoch": 0.09663391850539539,
70
+ "grad_norm": 22.05866813659668,
71
+ "learning_rate": 9.884183219051837e-06,
72
+ "loss": 5.1414,
73
+ "step": 450
74
+ },
75
+ {
76
+ "epoch": 0.10737102056155044,
77
+ "grad_norm": 21.014677047729492,
78
+ "learning_rate": 9.844021105849837e-06,
79
+ "loss": 3.8645,
80
+ "step": 500
81
+ },
82
+ {
83
+ "epoch": 0.11810812261770548,
84
+ "grad_norm": 43.38600540161133,
85
+ "learning_rate": 9.797999039713586e-06,
86
+ "loss": 4.6035,
87
+ "step": 550
88
+ },
89
+ {
90
+ "epoch": 0.12884522467386053,
91
+ "grad_norm": 22.228700637817383,
92
+ "learning_rate": 9.746172694872332e-06,
93
+ "loss": 4.1814,
94
+ "step": 600
95
+ },
96
+ {
97
+ "epoch": 0.13958232673001558,
98
+ "grad_norm": 23.762821197509766,
99
+ "learning_rate": 9.688604767159736e-06,
100
+ "loss": 4.6889,
101
+ "step": 650
102
+ },
103
+ {
104
+ "epoch": 0.1503194287861706,
105
+ "grad_norm": 20.935850143432617,
106
+ "learning_rate": 9.62536489816892e-06,
107
+ "loss": 4.8945,
108
+ "step": 700
109
+ },
110
+ {
111
+ "epoch": 0.16105653084232566,
112
+ "grad_norm": 19.82425880432129,
113
+ "learning_rate": 9.556529591005001e-06,
114
+ "loss": 4.494,
115
+ "step": 750
116
+ },
117
+ {
118
+ "epoch": 0.1717936328984807,
119
+ "grad_norm": 22.668556213378906,
120
+ "learning_rate": 9.482182117737066e-06,
121
+ "loss": 4.4041,
122
+ "step": 800
123
+ },
124
+ {
125
+ "epoch": 0.18253073495463573,
126
+ "grad_norm": 22.826379776000977,
127
+ "learning_rate": 9.402412418661541e-06,
128
+ "loss": 4.8089,
129
+ "step": 850
130
+ },
131
+ {
132
+ "epoch": 0.19326783701079078,
133
+ "grad_norm": 19.665138244628906,
134
+ "learning_rate": 9.317316993498788e-06,
135
+ "loss": 4.232,
136
+ "step": 900
137
+ },
138
+ {
139
+ "epoch": 0.20400493906694583,
140
+ "grad_norm": 21.231645584106445,
141
+ "learning_rate": 9.226998784654606e-06,
142
+ "loss": 3.7319,
143
+ "step": 950
144
+ },
145
+ {
146
+ "epoch": 0.21474204112310089,
147
+ "grad_norm": 37.30881118774414,
148
+ "learning_rate": 9.131567052687811e-06,
149
+ "loss": 4.4938,
150
+ "step": 1000
151
+ },
152
+ {
153
+ "epoch": 0.2254791431792559,
154
+ "grad_norm": 23.012168884277344,
155
+ "learning_rate": 9.03113724413456e-06,
156
+ "loss": 4.9744,
157
+ "step": 1050
158
+ },
159
+ {
160
+ "epoch": 0.23621624523541096,
161
+ "grad_norm": 25.494842529296875,
162
+ "learning_rate": 8.925830851849338e-06,
163
+ "loss": 3.9475,
164
+ "step": 1100
165
+ },
166
+ {
167
+ "epoch": 0.246953347291566,
168
+ "grad_norm": 21.22249412536621,
169
+ "learning_rate": 8.815775268031514e-06,
170
+ "loss": 4.3448,
171
+ "step": 1150
172
+ },
173
+ {
174
+ "epoch": 0.25769044934772106,
175
+ "grad_norm": 40.145023345947266,
176
+ "learning_rate": 8.701103630115303e-06,
177
+ "loss": 4.4259,
178
+ "step": 1200
179
+ },
180
+ {
181
+ "epoch": 0.2684275514038761,
182
+ "grad_norm": 17.972578048706055,
183
+ "learning_rate": 8.581954659709549e-06,
184
+ "loss": 4.7292,
185
+ "step": 1250
186
+ },
187
+ {
188
+ "epoch": 0.27916465346003116,
189
+ "grad_norm": 19.54686737060547,
190
+ "learning_rate": 8.458472494782169e-06,
191
+ "loss": 4.4949,
192
+ "step": 1300
193
+ },
194
+ {
195
+ "epoch": 0.2899017555161862,
196
+ "grad_norm": 39.886653900146484,
197
+ "learning_rate": 8.330806515292271e-06,
198
+ "loss": 4.1289,
199
+ "step": 1350
200
+ },
201
+ {
202
+ "epoch": 0.3006388575723412,
203
+ "grad_norm": 19.24032974243164,
204
+ "learning_rate": 8.199111162480871e-06,
205
+ "loss": 4.6771,
206
+ "step": 1400
207
+ },
208
+ {
209
+ "epoch": 0.3113759596284963,
210
+ "grad_norm": 18.134519577026367,
211
+ "learning_rate": 8.063545752038854e-06,
212
+ "loss": 3.7991,
213
+ "step": 1450
214
+ },
215
+ {
216
+ "epoch": 0.3221130616846513,
217
+ "grad_norm": 25.192407608032227,
218
+ "learning_rate": 7.924274281378153e-06,
219
+ "loss": 3.6166,
220
+ "step": 1500
221
+ },
222
+ {
223
+ "epoch": 0.33285016374080634,
224
+ "grad_norm": 22.86334800720215,
225
+ "learning_rate": 7.781465231239318e-06,
226
+ "loss": 5.0183,
227
+ "step": 1550
228
+ },
229
+ {
230
+ "epoch": 0.3435872657969614,
231
+ "grad_norm": 17.691837310791016,
232
+ "learning_rate": 7.635291361875474e-06,
233
+ "loss": 4.2544,
234
+ "step": 1600
235
+ },
236
+ {
237
+ "epoch": 0.35432436785311644,
238
+ "grad_norm": 21.726091384887695,
239
+ "learning_rate": 7.485929504059234e-06,
240
+ "loss": 4.2973,
241
+ "step": 1650
242
+ },
243
+ {
244
+ "epoch": 0.36506146990927146,
245
+ "grad_norm": 17.235157012939453,
246
+ "learning_rate": 7.333560345165371e-06,
247
+ "loss": 3.714,
248
+ "step": 1700
249
+ },
250
+ {
251
+ "epoch": 0.37579857196542654,
252
+ "grad_norm": 16.26618194580078,
253
+ "learning_rate": 7.178368210588067e-06,
254
+ "loss": 3.5892,
255
+ "step": 1750
256
+ },
257
+ {
258
+ "epoch": 0.38653567402158157,
259
+ "grad_norm": 14.692360877990723,
260
+ "learning_rate": 7.020540840757124e-06,
261
+ "loss": 4.577,
262
+ "step": 1800
263
+ },
264
+ {
265
+ "epoch": 0.39727277607773664,
266
+ "grad_norm": 20.708250045776367,
267
+ "learning_rate": 6.860269164022921e-06,
268
+ "loss": 4.4776,
269
+ "step": 1850
270
+ },
271
+ {
272
+ "epoch": 0.40800987813389167,
273
+ "grad_norm": 17.772565841674805,
274
+ "learning_rate": 6.697747065684851e-06,
275
+ "loss": 4.6948,
276
+ "step": 1900
277
+ },
278
+ {
279
+ "epoch": 0.4187469801900467,
280
+ "grad_norm": 17.883790969848633,
281
+ "learning_rate": 6.5331711534426326e-06,
282
+ "loss": 4.0064,
283
+ "step": 1950
284
+ },
285
+ {
286
+ "epoch": 0.42948408224620177,
287
+ "grad_norm": 20.181188583374023,
288
+ "learning_rate": 6.366740519554286e-06,
289
+ "loss": 3.9072,
290
+ "step": 2000
291
+ },
292
+ {
293
+ "epoch": 0.4402211843023568,
294
+ "grad_norm": 37.15888214111328,
295
+ "learning_rate": 6.198656499988444e-06,
296
+ "loss": 4.2209,
297
+ "step": 2050
298
+ },
299
+ {
300
+ "epoch": 0.4509582863585118,
301
+ "grad_norm": 17.573535919189453,
302
+ "learning_rate": 6.029122430862373e-06,
303
+ "loss": 4.8097,
304
+ "step": 2100
305
+ },
306
+ {
307
+ "epoch": 0.4616953884146669,
308
+ "grad_norm": 38.13616943359375,
309
+ "learning_rate": 5.858343402460391e-06,
310
+ "loss": 4.0292,
311
+ "step": 2150
312
+ },
313
+ {
314
+ "epoch": 0.4724324904708219,
315
+ "grad_norm": 17.187131881713867,
316
+ "learning_rate": 5.68652601113019e-06,
317
+ "loss": 3.7332,
318
+ "step": 2200
319
+ },
320
+ {
321
+ "epoch": 0.48316959252697694,
322
+ "grad_norm": 35.56867599487305,
323
+ "learning_rate": 5.513878109357228e-06,
324
+ "loss": 4.2786,
325
+ "step": 2250
326
+ },
327
+ {
328
+ "epoch": 0.493906694583132,
329
+ "grad_norm": 18.53168487548828,
330
+ "learning_rate": 5.3406085543195555e-06,
331
+ "loss": 4.8574,
332
+ "step": 2300
333
+ },
334
+ {
335
+ "epoch": 0.504643796639287,
336
+ "grad_norm": 20.49349594116211,
337
+ "learning_rate": 5.166926955227224e-06,
338
+ "loss": 4.9073,
339
+ "step": 2350
340
+ },
341
+ {
342
+ "epoch": 0.5153808986954421,
343
+ "grad_norm": 19.841901779174805,
344
+ "learning_rate": 4.993043419751933e-06,
345
+ "loss": 3.827,
346
+ "step": 2400
347
+ },
348
+ {
349
+ "epoch": 0.5261180007515971,
350
+ "grad_norm": 19.35201644897461,
351
+ "learning_rate": 4.8191682998536905e-06,
352
+ "loss": 3.4893,
353
+ "step": 2450
354
+ },
355
+ {
356
+ "epoch": 0.5368551028077522,
357
+ "grad_norm": 21.604345321655273,
358
+ "learning_rate": 4.645511937311934e-06,
359
+ "loss": 4.367,
360
+ "step": 2500
361
+ },
362
+ {
363
+ "epoch": 0.5475922048639073,
364
+ "grad_norm": 40.630821228027344,
365
+ "learning_rate": 4.472284409268976e-06,
366
+ "loss": 5.0816,
367
+ "step": 2550
368
+ },
369
+ {
370
+ "epoch": 0.5583293069200623,
371
+ "grad_norm": 18.870628356933594,
372
+ "learning_rate": 4.299695274093593e-06,
373
+ "loss": 4.8803,
374
+ "step": 2600
375
+ },
376
+ {
377
+ "epoch": 0.5690664089762173,
378
+ "grad_norm": 21.05728530883789,
379
+ "learning_rate": 4.1279533178721755e-06,
380
+ "loss": 4.6022,
381
+ "step": 2650
382
+ },
383
+ {
384
+ "epoch": 0.5798035110323724,
385
+ "grad_norm": 39.68675231933594,
386
+ "learning_rate": 3.957266301834145e-06,
387
+ "loss": 4.212,
388
+ "step": 2700
389
+ },
390
+ {
391
+ "epoch": 0.5905406130885275,
392
+ "grad_norm": 17.26553726196289,
393
+ "learning_rate": 3.7878407110171646e-06,
394
+ "loss": 4.0448,
395
+ "step": 2750
396
+ },
397
+ {
398
+ "epoch": 0.6012777151446824,
399
+ "grad_norm": 21.71043586730957,
400
+ "learning_rate": 3.6198815044761847e-06,
401
+ "loss": 4.6691,
402
+ "step": 2800
403
+ },
404
+ {
405
+ "epoch": 0.6120148172008375,
406
+ "grad_norm": 21.753311157226562,
407
+ "learning_rate": 3.4535918673385456e-06,
408
+ "loss": 4.3453,
409
+ "step": 2850
410
+ },
411
+ {
412
+ "epoch": 0.6227519192569926,
413
+ "grad_norm": 18.6822452545166,
414
+ "learning_rate": 3.2891729650050096e-06,
415
+ "loss": 4.2042,
416
+ "step": 2900
417
+ },
418
+ {
419
+ "epoch": 0.6334890213131475,
420
+ "grad_norm": 18.38760757446289,
421
+ "learning_rate": 3.1268236997941535e-06,
422
+ "loss": 3.8025,
423
+ "step": 2950
424
+ },
425
+ {
426
+ "epoch": 0.6442261233693026,
427
+ "grad_norm": 39.5139045715332,
428
+ "learning_rate": 2.966740470324451e-06,
429
+ "loss": 5.1229,
430
+ "step": 3000
431
+ },
432
+ {
433
+ "epoch": 0.6549632254254577,
434
+ "grad_norm": 20.45186424255371,
435
+ "learning_rate": 2.8091169339251644e-06,
436
+ "loss": 4.0329,
437
+ "step": 3050
438
+ },
439
+ {
440
+ "epoch": 0.6657003274816127,
441
+ "grad_norm": 18.005401611328125,
442
+ "learning_rate": 2.654143772363455e-06,
443
+ "loss": 4.0975,
444
+ "step": 3100
445
+ },
446
+ {
447
+ "epoch": 0.6764374295377678,
448
+ "grad_norm": 21.24009895324707,
449
+ "learning_rate": 2.502008461171114e-06,
450
+ "loss": 3.9577,
451
+ "step": 3150
452
+ },
453
+ {
454
+ "epoch": 0.6871745315939228,
455
+ "grad_norm": 18.686386108398438,
456
+ "learning_rate": 2.352895042849965e-06,
457
+ "loss": 3.9965,
458
+ "step": 3200
459
+ },
460
+ {
461
+ "epoch": 0.6979116336500778,
462
+ "grad_norm": 24.032150268554688,
463
+ "learning_rate": 2.20698390423032e-06,
464
+ "loss": 4.6225,
465
+ "step": 3250
466
+ },
467
+ {
468
+ "epoch": 0.7086487357062329,
469
+ "grad_norm": 18.239240646362305,
470
+ "learning_rate": 2.0644515582517803e-06,
471
+ "loss": 4.2193,
472
+ "step": 3300
473
+ },
474
+ {
475
+ "epoch": 0.719385837762388,
476
+ "grad_norm": 21.52141571044922,
477
+ "learning_rate": 1.9254704304304174e-06,
478
+ "loss": 4.5206,
479
+ "step": 3350
480
+ },
481
+ {
482
+ "epoch": 0.7301229398185429,
483
+ "grad_norm": 20.970258712768555,
484
+ "learning_rate": 1.7902086502706256e-06,
485
+ "loss": 3.7111,
486
+ "step": 3400
487
+ },
488
+ {
489
+ "epoch": 0.740860041874698,
490
+ "grad_norm": 17.317781448364258,
491
+ "learning_rate": 1.658829847873965e-06,
492
+ "loss": 4.1838,
493
+ "step": 3450
494
+ },
495
+ {
496
+ "epoch": 0.7515971439308531,
497
+ "grad_norm": 19.438854217529297,
498
+ "learning_rate": 1.5314929559910985e-06,
499
+ "loss": 4.3512,
500
+ "step": 3500
501
+ },
502
+ {
503
+ "epoch": 0.762334245987008,
504
+ "grad_norm": 26.218725204467773,
505
+ "learning_rate": 1.4083520177562154e-06,
506
+ "loss": 3.1841,
507
+ "step": 3550
508
+ },
509
+ {
510
+ "epoch": 0.7730713480431631,
511
+ "grad_norm": 26.113292694091797,
512
+ "learning_rate": 1.2895560003365837e-06,
513
+ "loss": 4.6759,
514
+ "step": 3600
515
+ },
516
+ {
517
+ "epoch": 0.7838084500993182,
518
+ "grad_norm": 20.18511962890625,
519
+ "learning_rate": 1.1752486147226505e-06,
520
+ "loss": 3.9116,
521
+ "step": 3650
522
+ },
523
+ {
524
+ "epoch": 0.7945455521554733,
525
+ "grad_norm": 21.312776565551758,
526
+ "learning_rate": 1.0655681418766772e-06,
527
+ "loss": 4.0108,
528
+ "step": 3700
529
+ },
530
+ {
531
+ "epoch": 0.8052826542116283,
532
+ "grad_norm": 23.473669052124023,
533
+ "learning_rate": 9.60647265450249e-07,
534
+ "loss": 3.5384,
535
+ "step": 3750
536
+ },
537
+ {
538
+ "epoch": 0.8160197562677833,
539
+ "grad_norm": 34.65909957885742,
540
+ "learning_rate": 8.60612911273011e-07,
541
+ "loss": 4.4025,
542
+ "step": 3800
543
+ },
544
+ {
545
+ "epoch": 0.8267568583239384,
546
+ "grad_norm": 18.83558464050293,
547
+ "learning_rate": 7.655860938068071e-07,
548
+ "loss": 3.2632,
549
+ "step": 3850
550
+ },
551
+ {
552
+ "epoch": 0.8374939603800934,
553
+ "grad_norm": 21.728172302246094,
554
+ "learning_rate": 6.756817697509755e-07,
555
+ "loss": 4.0358,
556
+ "step": 3900
557
+ },
558
+ {
559
+ "epoch": 0.8482310624362485,
560
+ "grad_norm": 18.24883460998535,
561
+ "learning_rate": 5.910086989758862e-07,
562
+ "loss": 3.4722,
563
+ "step": 3950
564
+ },
565
+ {
566
+ "epoch": 0.8589681644924035,
567
+ "grad_norm": 16.885324478149414,
568
+ "learning_rate": 5.11669312952977e-07,
569
+ "loss": 4.0926,
570
+ "step": 4000
571
+ },
572
+ {
573
+ "epoch": 0.8697052665485585,
574
+ "grad_norm": 16.516597747802734,
575
+ "learning_rate": 4.377595908404225e-07,
576
+ "loss": 3.9504,
577
+ "step": 4050
578
+ },
579
+ {
580
+ "epoch": 0.8804423686047136,
581
+ "grad_norm": 17.790292739868164,
582
+ "learning_rate": 3.693689433743658e-07,
583
+ "loss": 4.0759,
584
+ "step": 4100
585
+ },
586
+ {
587
+ "epoch": 0.8911794706608687,
588
+ "grad_norm": 18.888835906982422,
589
+ "learning_rate": 3.065801047061517e-07,
590
+ "loss": 3.3214,
591
+ "step": 4150
592
+ },
593
+ {
594
+ "epoch": 0.9019165727170236,
595
+ "grad_norm": 36.61859893798828,
596
+ "learning_rate": 2.4946903231642727e-07,
597
+ "loss": 4.5779,
598
+ "step": 4200
599
+ },
600
+ {
601
+ "epoch": 0.9126536747731787,
602
+ "grad_norm": 21.771671295166016,
603
+ "learning_rate": 1.9810481512716638e-07,
604
+ "loss": 3.8909,
605
+ "step": 4250
606
+ },
607
+ {
608
+ "epoch": 0.9233907768293338,
609
+ "grad_norm": 19.28317642211914,
610
+ "learning_rate": 1.5254958992280022e-07,
611
+ "loss": 3.9403,
612
+ "step": 4300
613
+ },
614
+ {
615
+ "epoch": 0.9341278788854888,
616
+ "grad_norm": 16.99443817138672,
617
+ "learning_rate": 1.128584661815435e-07,
618
+ "loss": 3.7742,
619
+ "step": 4350
620
+ },
621
+ {
622
+ "epoch": 0.9448649809416438,
623
+ "grad_norm": 20.192611694335938,
624
+ "learning_rate": 7.907945940786033e-08,
625
+ "loss": 3.7403,
626
+ "step": 4400
627
+ },
628
+ {
629
+ "epoch": 0.9556020829977989,
630
+ "grad_norm": 18.506389617919922,
631
+ "learning_rate": 5.125343304671459e-08,
632
+ "loss": 5.146,
633
+ "step": 4450
634
+ },
635
+ {
636
+ "epoch": 0.9663391850539539,
637
+ "grad_norm": 20.306739807128906,
638
+ "learning_rate": 2.9414049049872883e-08,
639
+ "loss": 3.5826,
640
+ "step": 4500
641
+ },
642
+ {
643
+ "epoch": 0.977076287110109,
644
+ "grad_norm": 22.654619216918945,
645
+ "learning_rate": 1.35877271540652e-08,
646
+ "loss": 4.2733,
647
+ "step": 4550
648
+ },
649
+ {
650
+ "epoch": 0.987813389166264,
651
+ "grad_norm": 18.207374572753906,
652
+ "learning_rate": 3.7936129202648106e-09,
653
+ "loss": 3.4258,
654
+ "step": 4600
655
+ },
656
+ {
657
+ "epoch": 0.9985504912224191,
658
+ "grad_norm": 25.076688766479492,
659
+ "learning_rate": 4.3554572743409463e-11,
660
+ "loss": 4.9966,
661
+ "step": 4650
662
+ },
663
+ {
664
+ "epoch": 0.9998389434691577,
665
+ "step": 4656,
666
+ "total_flos": 3.3921983034765083e+19,
667
+ "train_loss": 4.446265889606934,
668
+ "train_runtime": 69353.2916,
669
+ "train_samples_per_second": 4.297,
670
+ "train_steps_per_second": 0.067
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.3921983034765083e+19,
691
+ "train_batch_size": 1,
692
+ "trial_name": null,
693
+ "trial_params": null
694
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7454ecd284e6b089675899ac343b1ef1cf679304623a5c1f5e3d7f279080ef18
3
+ size 7352
vocab.json ADDED
The diff for this file is too large to render. See raw diff