SuhaoYu1020 commited on
Commit
a495fc6
·
verified ·
1 Parent(s): 31578ab

holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu: holdout, DiT+TextDecoder, scratch-2B: 88.7%

Browse files
Files changed (11) hide show
  1. .gitattributes +1 -0
  2. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/meta.json +1 -0
  3. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/chat_template.jinja +7 -0
  4. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/processor_config.json +63 -0
  5. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/tokenizer.json +3 -0
  6. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/tokenizer_config.json +16 -0
  7. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/text_encoder/config.json +110 -0
  8. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/text_encoder/generation_config.json +14 -0
  9. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/text_encoder/model.safetensors +3 -0
  10. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/transformer/config.json +20 -0
  11. holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/transformer/diffusion_pytorch_model.safetensors +3 -0
.gitattributes CHANGED
@@ -38,3 +38,4 @@ noemit-2x2/arith_multidigit_noemit_puremse_mseDITandTE_pretrained_10ep_1gpu/proc
38
  seeds/arith_multidigit_noemit_puremse_mseDITandTE_scratch2B_eb2lr1e4_10ep_1gpu_seed44/processor/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
  seeds/arith_multidigit_noemit_puremse_mseDITandTE_scratch2B_eb2lr1e4_10ep_1gpu_seed45/processor/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
  t2i/qwenimage_t2i_arith_multidigit_noemit_MSEonly_trainMMDiTandTE_ViTfrozen_embedfrozen_scratchDiT2B_10ep_1gpu/tokenizer/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
38
  seeds/arith_multidigit_noemit_puremse_mseDITandTE_scratch2B_eb2lr1e4_10ep_1gpu_seed44/processor/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
  seeds/arith_multidigit_noemit_puremse_mseDITandTE_scratch2B_eb2lr1e4_10ep_1gpu_seed45/processor/tokenizer.json filter=lfs diff=lfs merge=lfs -text
40
  t2i/qwenimage_t2i_arith_multidigit_noemit_MSEonly_trainMMDiTandTE_ViTfrozen_embedfrozen_scratchDiT2B_10ep_1gpu/tokenizer/tokenizer.json filter=lfs diff=lfs merge=lfs -text
41
+ holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/tokenizer.json filter=lfs diff=lfs merge=lfs -text
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/meta.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"global_step": 45000, "freeze_te": false}
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/chat_template.jinja ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{% for message in messages %}{% if loop.first and message['role'] != 'system' %}<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ {% endif %}<|im_start|>{{ message['role'] }}
4
+ {% if message['content'] is string %}{{ message['content'] }}<|im_end|>
5
+ {% 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|>
6
+ {% endif %}{% endfor %}{% if add_generation_prompt %}<|im_start|>assistant
7
+ {% endif %}
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "do_convert_rgb": true,
6
+ "do_normalize": true,
7
+ "do_rescale": true,
8
+ "do_resize": true,
9
+ "image_mean": [
10
+ 0.48145466,
11
+ 0.4578275,
12
+ 0.40821073
13
+ ],
14
+ "image_processor_type": "Qwen2VLImageProcessor",
15
+ "image_std": [
16
+ 0.26862954,
17
+ 0.26130258,
18
+ 0.27577711
19
+ ],
20
+ "merge_size": 2,
21
+ "patch_size": 14,
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "longest_edge": 12845056,
26
+ "shortest_edge": 3136
27
+ },
28
+ "temporal_patch_size": 2
29
+ },
30
+ "processor_class": "Qwen2VLProcessor",
31
+ "video_processor": {
32
+ "data_format": "channels_first",
33
+ "default_to_square": true,
34
+ "do_convert_rgb": true,
35
+ "do_normalize": true,
36
+ "do_rescale": true,
37
+ "do_resize": true,
38
+ "do_sample_frames": false,
39
+ "image_mean": [
40
+ 0.48145466,
41
+ 0.4578275,
42
+ 0.40821073
43
+ ],
44
+ "image_std": [
45
+ 0.26862954,
46
+ 0.26130258,
47
+ 0.27577711
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 14,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 12845056,
58
+ "shortest_edge": 3136
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen2VLVideoProcessor"
62
+ }
63
+ }
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a7aabe7a3b44651592a99607bb33066e6965260336be9218cccd53af161491d
3
+ size 11422060
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/processor/tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "is_local": true,
9
+ "local_files_only": true,
10
+ "model_max_length": 131072,
11
+ "pad_token": "<|endoftext|>",
12
+ "processor_class": "Qwen2VLProcessor",
13
+ "split_special_tokens": false,
14
+ "tokenizer_class": "Qwen2Tokenizer",
15
+ "unk_token": null
16
+ }
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/text_encoder/config.json ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "dtype": "bfloat16",
6
+ "image_token_id": 151655,
7
+ "model_type": "qwen2_5_vl",
8
+ "text_config": {
9
+ "architectures": [
10
+ "Qwen2_5_VLForConditionalGeneration"
11
+ ],
12
+ "attention_dropout": 0.0,
13
+ "bos_token_id": 151643,
14
+ "dtype": "bfloat16",
15
+ "eos_token_id": 151645,
16
+ "hidden_act": "silu",
17
+ "hidden_size": 3584,
18
+ "image_token_id": null,
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 18944,
21
+ "layer_types": [
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention",
43
+ "full_attention",
44
+ "full_attention",
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention"
50
+ ],
51
+ "max_position_embeddings": 128000,
52
+ "max_window_layers": 28,
53
+ "model_type": "qwen2_5_vl_text",
54
+ "num_attention_heads": 28,
55
+ "num_hidden_layers": 28,
56
+ "num_key_value_heads": 4,
57
+ "pad_token_id": null,
58
+ "rms_norm_eps": 1e-06,
59
+ "rope_parameters": {
60
+ "mrope_section": [
61
+ 16,
62
+ 24,
63
+ 24
64
+ ],
65
+ "rope_theta": 1000000.0,
66
+ "rope_type": "default",
67
+ "type": "default"
68
+ },
69
+ "sliding_window": null,
70
+ "use_cache": true,
71
+ "use_sliding_window": false,
72
+ "video_token_id": null,
73
+ "vision_end_token_id": 151653,
74
+ "vision_start_token_id": 151652,
75
+ "vision_token_id": 151654,
76
+ "vocab_size": 152064
77
+ },
78
+ "tie_word_embeddings": false,
79
+ "transformers_version": "5.8.0",
80
+ "use_cache": false,
81
+ "video_token_id": 151656,
82
+ "vision_config": {
83
+ "depth": 32,
84
+ "dtype": "bfloat16",
85
+ "fullatt_block_indexes": [
86
+ 7,
87
+ 15,
88
+ 23,
89
+ 31
90
+ ],
91
+ "hidden_act": "silu",
92
+ "hidden_size": 1280,
93
+ "in_channels": 3,
94
+ "in_chans": 3,
95
+ "initializer_range": 0.02,
96
+ "intermediate_size": 3420,
97
+ "model_type": "qwen2_5_vl_vision",
98
+ "num_heads": 16,
99
+ "out_hidden_size": 3584,
100
+ "patch_size": 14,
101
+ "spatial_merge_size": 2,
102
+ "spatial_patch_size": 14,
103
+ "temporal_patch_size": 2,
104
+ "tokens_per_second": 2,
105
+ "window_size": 112
106
+ },
107
+ "vision_end_token_id": 151653,
108
+ "vision_start_token_id": 151652,
109
+ "vision_token_id": 151654
110
+ }
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/text_encoder/generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 0.1,
11
+ "top_k": 1,
12
+ "top_p": 0.001,
13
+ "transformers_version": "5.8.0"
14
+ }
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/text_encoder/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b6b0aaad0573eb18e1aaa47063f393dbb866916afde79ffaf88b61fc0633a02
3
+ size 16584415608
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/transformer/config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "QwenImageTransformer2DModel",
3
+ "_diffusers_version": "0.39.0.dev0",
4
+ "attention_head_dim": 128,
5
+ "axes_dims_rope": [
6
+ 16,
7
+ 56,
8
+ 56
9
+ ],
10
+ "guidance_embeds": false,
11
+ "in_channels": 64,
12
+ "joint_attention_dim": 3584,
13
+ "num_attention_heads": 12,
14
+ "num_layers": 24,
15
+ "out_channels": 16,
16
+ "patch_size": 2,
17
+ "use_additional_t_cond": false,
18
+ "use_layer3d_rope": false,
19
+ "zero_cond_t": false
20
+ }
holdout/arith_multidigit_holdout_noemit_MSEonly_trainMMDiTandTextDecoder_ViTfrozen_embedfrozen_scratch2B_10ep_1gpu/transformer/diffusion_pytorch_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1232b6219345866b6b440e27cc725db4934e078dcf238de1d70498f4cc6e4a80
3
+ size 4105561640