yosubshin commited on
Commit
cb6da0f
·
verified ·
1 Parent(s): 37300c7

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
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.jinja ADDED
@@ -0,0 +1 @@
 
 
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\nYou are a helpful assistant.<|im_end|>\n' }}{%- endif -%}{{ '<|im_start|>' + message['role'] + '\n' }}{%- if message['content'] is string -%}{{- message['content'] -}}{%- elif message['content'] is iterable -%}{%- for item in message['content'] -%}{%- if item['type'].startswith('image') -%}{%- set image_count.value = image_count.value + 1 -%}{%- if add_vision_id -%}{{ 'Picture ' + image_count.value + ': ' }}{%- endif -%}{{ '<|vision_start|><|image_pad|><|vision_end|>' }}{%- elif item['type'].startswith('video') -%}{%- set video_count.value = video_count.value + 1 -%}{%- if add_vision_id -%}{{ 'Video ' + video_count.value + ': ' }}{%- endif -%}{{ '<|vision_start|><|video_pad|><|vision_end|>' }}{%- elif item['type']=='text' -%}{{- item['text'] if 'text' in item else item['content'] -}}{%- endif -%}{%- endfor -%}{%- endif -%}{{ '<|im_end|>\n' }}{%- endfor -%}{%- if add_generation_prompt -%}{{- '<|im_start|>assistant\n' -}}{%- endif -%}
config.json ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2_5_VLForConditionalGeneration"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 3584,
11
+ "image_token_id": 151655,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 18944,
14
+ "max_position_embeddings": 128000,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen2_5_vl",
17
+ "num_attention_heads": 28,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 4,
20
+ "rms_norm_eps": 1e-06,
21
+ "rope_scaling": {
22
+ "mrope_section": [
23
+ 16,
24
+ 24,
25
+ 24
26
+ ],
27
+ "rope_type": "default",
28
+ "type": "default"
29
+ },
30
+ "rope_theta": 1000000.0,
31
+ "sliding_window": 32768,
32
+ "text_config": {
33
+ "_name_or_path": "Qwen/Qwen2.5-VL-7B-Instruct",
34
+ "architectures": [
35
+ "Qwen2_5_VLForConditionalGeneration"
36
+ ],
37
+ "attention_dropout": 0.0,
38
+ "dtype": "bfloat16",
39
+ "eos_token_id": 151645,
40
+ "hidden_act": "silu",
41
+ "hidden_size": 3584,
42
+ "initializer_range": 0.02,
43
+ "intermediate_size": 18944,
44
+ "layer_types": [
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention",
51
+ "full_attention",
52
+ "full_attention",
53
+ "full_attention",
54
+ "full_attention",
55
+ "full_attention",
56
+ "full_attention",
57
+ "full_attention",
58
+ "full_attention",
59
+ "full_attention",
60
+ "full_attention",
61
+ "full_attention",
62
+ "full_attention",
63
+ "full_attention",
64
+ "full_attention",
65
+ "full_attention",
66
+ "full_attention",
67
+ "full_attention",
68
+ "full_attention",
69
+ "full_attention",
70
+ "full_attention",
71
+ "full_attention",
72
+ "full_attention"
73
+ ],
74
+ "max_position_embeddings": 128000,
75
+ "max_window_layers": 28,
76
+ "model_type": "qwen2_5_vl_text",
77
+ "num_attention_heads": 28,
78
+ "num_hidden_layers": 28,
79
+ "num_key_value_heads": 4,
80
+ "pad_token_id": 151643,
81
+ "rms_norm_eps": 1e-06,
82
+ "rope_scaling": {
83
+ "mrope_section": [
84
+ 16,
85
+ 24,
86
+ 24
87
+ ],
88
+ "rope_type": "default",
89
+ "type": "default"
90
+ },
91
+ "rope_theta": 1000000.0,
92
+ "sliding_window": null,
93
+ "use_cache": false,
94
+ "use_sliding_window": false,
95
+ "vision_token_id": 151654,
96
+ "vocab_size": 152064
97
+ },
98
+ "tie_word_embeddings": false,
99
+ "transformers_version": "4.57.2",
100
+ "use_cache": true,
101
+ "use_sliding_window": false,
102
+ "video_token_id": 151656,
103
+ "vision_config": {
104
+ "depth": 32,
105
+ "dtype": "bfloat16",
106
+ "fullatt_block_indexes": [
107
+ 7,
108
+ 15,
109
+ 23,
110
+ 31
111
+ ],
112
+ "hidden_act": "silu",
113
+ "hidden_size": 1280,
114
+ "in_channels": 3,
115
+ "in_chans": 3,
116
+ "initializer_range": 0.02,
117
+ "intermediate_size": 3420,
118
+ "model_type": "qwen2_5_vl",
119
+ "num_heads": 16,
120
+ "out_hidden_size": 3584,
121
+ "patch_size": 14,
122
+ "spatial_merge_size": 2,
123
+ "spatial_patch_size": 14,
124
+ "temporal_patch_size": 2,
125
+ "tokens_per_second": 2,
126
+ "window_size": 112
127
+ },
128
+ "vision_end_token_id": 151653,
129
+ "vision_start_token_id": 151652,
130
+ "vision_token_id": 151654,
131
+ "vocab_size": 152064
132
+ }
generation_config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151643
6
+ ],
7
+ "pad_token_id": 151643,
8
+ "repetition_penalty": 1.05,
9
+ "temperature": 1e-06,
10
+ "transformers_version": "4.57.2"
11
+ }
logs/rank_0000.log ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [2025-12-04 22:08:17,625][oumi][rank0][pid:4158][MainThread][INFO]][train.py:318] Training config saved to /contents/qwen2_5_vl_7b_walton_random_500_1/telemetry/training_config.yaml
2
+ [2025-12-04 22:08:17,791][oumi][rank0][pid:4158][MainThread][INFO]][models.py:469] Setting tokenizer to use the 'right' padding side for model 'Qwen/Qwen2.5-VL-7B-Instruct'. The 'right' padding side is configured as the default value for this model type.
3
+ [2025-12-04 22:08:22,444][oumi][rank0][pid:4158][MainThread][INFO]][train.py:348] Set `training.trainer_kwargs.remove_unused_columns=False` for VLM training with TRL_SFT trainer.
4
+ [2025-12-04 22:08:22,560][oumi][rank0][pid:4158][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
5
+ [2025-12-04 22:08:22,562][oumi][rank0][pid:4158][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'yosubshin/WaltonMultimodalColdStart-random-500-1'
6
+ [2025-12-04 22:08:28,897][oumi][rank0][pid:4158][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
7
+ Split: train
8
+ Version: 0.0.0
9
+ Dataset size: 9237866
10
+ Download size: 7853429
11
+ Size: 17091295 bytes
12
+ Rows: 500
13
+ Columns: ['image', 'problem', 'solution']
14
+ [2025-12-04 22:08:29,449][oumi][rank0][pid:4158][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (500, 3). Columns:
15
+ image object
16
+ problem object
17
+ solution object
18
+ dtype: object
19
+ [2025-12-04 22:08:32,293][oumi][rank0][pid:4158][MainThread][INFO]][train.py:449] Set Accelerate environment variables for FSDP: {'ACCELERATE_DYNAMO_BACKEND': 'NO', 'ACCELERATE_DYNAMO_MODE': 'default', 'ACCELERATE_DYNAMO_USE_FULLGRAPH': 'False', 'ACCELERATE_DYNAMO_USE_DYNAMIC': 'False', 'FSDP_CPU_RAM_EFFICIENT_LOADING': 'true', 'FSDP_USE_ORIG_PARAMS': 'true', 'ACCELERATE_USE_FSDP': 'true', 'FSDP_SHARDING_STRATEGY': 'HYBRID_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'ACCELERATE_MIXED_PRECISION': 'bf16', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'SIZE_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
20
+ [2025-12-04 22:08:32,296][oumi][rank0][pid:4158][MainThread][INFO]][models.py:251] Accelerate FSDP run detected! Setting device_map to None.
21
+ [2025-12-04 22:08:32,297][oumi][rank0][pid:4158][MainThread][INFO]][models.py:260] Building model using device_map: None (DeviceRankInfo(world_size=1, rank=0, local_world_size=1, local_rank=0))...
22
+ [2025-12-04 22:08:32,412][oumi][rank0][pid:4158][MainThread][INFO]][models.py:336] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
23
+ [2025-12-04 22:09:12,370][oumi][rank0][pid:4158][MainThread][INFO]][torch_utils.py:288]
24
+ Model Parameters Summary:
25
+ 🔢 Total parameters: 8,292,166,656
26
+ 🔗 Embedding parameters: 544,997,376
27
+ 🎯 Trainable parameters: 8,292,166,656
28
+ 🔒 Frozen parameters: 0 (0.00%)
29
+
30
+ [2025-12-04 22:09:12,951][oumi][rank0][pid:4158][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
31
+ [2025-12-04 22:09:12,953][oumi][rank0][pid:4158][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
32
+ [2025-12-04 22:09:18,713][oumi][rank0][pid:4158][MainThread][INFO]][device_utils.py:343] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=1, used_memory_mb=17186.0, temperature=30, fan_speed=None, fan_speeds=None, power_usage_watts=61.819, power_limit_watts=400.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1155, clock_speed_sm=1155, clock_speed_memory=1593).
33
+ [2025-12-04 22:09:18,716][oumi][rank0][pid:4158][MainThread][INFO]][train.py:558] Training init time: 61.151s
34
+ [2025-12-04 22:09:18,717][oumi][rank0][pid:4158][MainThread][INFO]][train.py:559] Starting training... (TrainerType.TRL_SFT, transformers: 4.57.2)
35
+ [2025-12-04 22:14:27,502][oumi][rank0][pid:4158][MainThread][INFO]][device_utils.py:343] On epoch end: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=1, used_memory_mb=69996.0, temperature=56, fan_speed=None, fan_speeds=None, power_usage_watts=382.858, power_limit_watts=400.0, gpu_utilization=89, memory_utilization=46, performance_state=0, clock_speed_graphics=1410, clock_speed_sm=1410, clock_speed_memory=1593).
36
+ [2025-12-04 22:14:27,515][oumi][rank0][pid:4158][MainThread][INFO]][telemetry_callback.py:242] Saving telemetry callback summary to /contents/qwen2_5_vl_7b_walton_random_500_1/telemetry/telemetry_callback_rank0000.json...
37
+ [2025-12-04 22:14:27,583][oumi][rank0][pid:4158][MainThread][INFO]][train.py:566] Training is Complete.
38
+ [2025-12-04 22:14:27,589][oumi][rank0][pid:4158][MainThread][INFO]][device_utils.py:343] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=1, used_memory_mb=69996.0, temperature=51, fan_speed=None, fan_speeds=None, power_usage_watts=93.419, power_limit_watts=400.0, gpu_utilization=89, memory_utilization=46, performance_state=0, clock_speed_graphics=1410, clock_speed_sm=1410, clock_speed_memory=1593).
39
+ [2025-12-04 22:14:27,592][oumi][rank0][pid:4158][MainThread][INFO]][torch_utils.py:135] Peak GPU memory usage: 67.98 GB
40
+ [2025-12-04 22:14:27,593][oumi][rank0][pid:4158][MainThread][INFO]][train.py:573] Saving final state...
41
+ [2025-12-04 22:14:27,598][oumi][rank0][pid:4158][MainThread][INFO]][train.py:578] Saving final model...
42
+ [2025-12-04 22:15:23,013][oumi][rank0][pid:4158][MainThread][INFO]][hf_trainer.py:127] Model has been saved at /contents/qwen2_5_vl_7b_walton_random_500_1
43
+ [2025-12-04 22:15:23,859][oumi][rank0][pid:4158][MainThread][INFO]][hf_trainer.py:131] Processor config has been saved at /contents/qwen2_5_vl_7b_walton_random_500_1
44
+ [2025-12-04 22:15:23,862][oumi][rank0][pid:4158][MainThread][INFO]][train.py:230]
45
+
46
+ » We're always looking for feedback. What's one thing we can improve? https://oumi.ai/feedback
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b8d48a125502ada01ede6418f87d27eeb9dfcabbaf0d71db7418faacf34e270
3
+ size 4968243304
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfe6018e0ae4e22a3801e9a4ba290f1d213f9a8671f4092516f1472451878669
3
+ size 4991495816
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d06ef5705ac08133834de476673eec34c461e0e7ff77642cae7055e1952d1b9f
3
+ size 4932751040
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b01d30f5c729f9ac0e57a905b66d5afac19a52a37978880ee9e6a472ed0862d1
3
+ size 1691924384
model.safetensors.index.json ADDED
@@ -0,0 +1,737 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 8292166656,
4
+ "total_size": 16584333312
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00004-of-00004.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
17
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
18
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
19
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
20
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
21
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
22
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
23
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
24
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
25
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
26
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
27
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
28
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
29
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
30
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
31
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
32
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
33
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
34
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
35
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
36
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
37
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
38
+ "model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
39
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
40
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
41
+ "model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
42
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
43
+ "model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
44
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
45
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
46
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
47
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
48
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
49
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
50
+ "model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
51
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
52
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
53
+ "model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
54
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
55
+ "model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
56
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
57
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
58
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
59
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
60
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
61
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
62
+ "model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
63
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
64
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
65
+ "model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
66
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
67
+ "model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
68
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
69
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
70
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
71
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
72
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
73
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
74
+ "model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
75
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
76
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
77
+ "model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
78
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
79
+ "model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
80
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
81
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
82
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
83
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
84
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
85
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
86
+ "model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
87
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
88
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
89
+ "model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
90
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
91
+ "model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
92
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
93
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
94
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
95
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
96
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
97
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
98
+ "model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
99
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
100
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
101
+ "model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
102
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
103
+ "model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
104
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
105
+ "model.layers.16.input_layernorm.weight": "model-00003-of-00004.safetensors",
106
+ "model.layers.16.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
107
+ "model.layers.16.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
108
+ "model.layers.16.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
109
+ "model.layers.16.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
110
+ "model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
111
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
112
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
113
+ "model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
114
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
115
+ "model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
116
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
117
+ "model.layers.17.input_layernorm.weight": "model-00003-of-00004.safetensors",
118
+ "model.layers.17.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
119
+ "model.layers.17.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
120
+ "model.layers.17.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
121
+ "model.layers.17.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
122
+ "model.layers.17.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
123
+ "model.layers.17.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
124
+ "model.layers.17.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
125
+ "model.layers.17.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
126
+ "model.layers.17.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
127
+ "model.layers.17.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
128
+ "model.layers.17.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
129
+ "model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
130
+ "model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
131
+ "model.layers.18.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
132
+ "model.layers.18.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
133
+ "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
134
+ "model.layers.18.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
135
+ "model.layers.18.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
136
+ "model.layers.18.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
137
+ "model.layers.18.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
138
+ "model.layers.18.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
139
+ "model.layers.18.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
140
+ "model.layers.18.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
141
+ "model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
142
+ "model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
143
+ "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
144
+ "model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
145
+ "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
146
+ "model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
147
+ "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
148
+ "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
149
+ "model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
150
+ "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
151
+ "model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
152
+ "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
153
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
154
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
155
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
156
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
157
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
158
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
159
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
160
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
161
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
162
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
163
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
164
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
165
+ "model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
166
+ "model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
167
+ "model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
168
+ "model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
169
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
170
+ "model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
171
+ "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
172
+ "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
173
+ "model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
174
+ "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
175
+ "model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
176
+ "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
177
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
178
+ "model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
179
+ "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
180
+ "model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
181
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
182
+ "model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
183
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
184
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
185
+ "model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
186
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
187
+ "model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
188
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
189
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
190
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
191
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
192
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
193
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
194
+ "model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
195
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
196
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
197
+ "model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
198
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
199
+ "model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
200
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
201
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
202
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
203
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
204
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
205
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
206
+ "model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
207
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
208
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
209
+ "model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
210
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
211
+ "model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
212
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
213
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
214
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
215
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
216
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
217
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
218
+ "model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
219
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
220
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
221
+ "model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
222
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
223
+ "model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
224
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
225
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
226
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
227
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
228
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
229
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
230
+ "model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
231
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
232
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
233
+ "model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
234
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
235
+ "model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
236
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
237
+ "model.layers.26.input_layernorm.weight": "model-00004-of-00004.safetensors",
238
+ "model.layers.26.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
239
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
240
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
241
+ "model.layers.26.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
242
+ "model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
243
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
244
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
245
+ "model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
246
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
247
+ "model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
248
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
249
+ "model.layers.27.input_layernorm.weight": "model-00004-of-00004.safetensors",
250
+ "model.layers.27.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
251
+ "model.layers.27.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
252
+ "model.layers.27.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
253
+ "model.layers.27.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
254
+ "model.layers.27.self_attn.k_proj.bias": "model-00004-of-00004.safetensors",
255
+ "model.layers.27.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
256
+ "model.layers.27.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
257
+ "model.layers.27.self_attn.q_proj.bias": "model-00004-of-00004.safetensors",
258
+ "model.layers.27.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
259
+ "model.layers.27.self_attn.v_proj.bias": "model-00004-of-00004.safetensors",
260
+ "model.layers.27.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
261
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
262
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
263
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
264
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
265
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
266
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
267
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
268
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
269
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
270
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
271
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
272
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
273
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
274
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
275
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
276
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
277
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
278
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
279
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
280
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
281
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
282
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
283
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
284
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
285
+ "model.layers.5.input_layernorm.weight": "model-00002-of-00004.safetensors",
286
+ "model.layers.5.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
287
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
288
+ "model.layers.5.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
289
+ "model.layers.5.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
290
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
291
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
292
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
293
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
294
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
295
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
296
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
297
+ "model.layers.6.input_layernorm.weight": "model-00002-of-00004.safetensors",
298
+ "model.layers.6.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
299
+ "model.layers.6.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
300
+ "model.layers.6.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
301
+ "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
302
+ "model.layers.6.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
303
+ "model.layers.6.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
304
+ "model.layers.6.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
305
+ "model.layers.6.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
306
+ "model.layers.6.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
307
+ "model.layers.6.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
308
+ "model.layers.6.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
309
+ "model.layers.7.input_layernorm.weight": "model-00002-of-00004.safetensors",
310
+ "model.layers.7.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
311
+ "model.layers.7.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
312
+ "model.layers.7.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
313
+ "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
314
+ "model.layers.7.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
315
+ "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
316
+ "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
317
+ "model.layers.7.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
318
+ "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
319
+ "model.layers.7.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
320
+ "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
321
+ "model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
322
+ "model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
323
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
324
+ "model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
325
+ "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
326
+ "model.layers.8.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
327
+ "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
328
+ "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
329
+ "model.layers.8.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
330
+ "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
331
+ "model.layers.8.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
332
+ "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
333
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
334
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
335
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
336
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
337
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
338
+ "model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
339
+ "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
340
+ "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
341
+ "model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
342
+ "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
343
+ "model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
344
+ "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
345
+ "model.norm.weight": "model-00004-of-00004.safetensors",
346
+ "visual.blocks.0.attn.proj.bias": "model-00001-of-00004.safetensors",
347
+ "visual.blocks.0.attn.proj.weight": "model-00001-of-00004.safetensors",
348
+ "visual.blocks.0.attn.qkv.bias": "model-00001-of-00004.safetensors",
349
+ "visual.blocks.0.attn.qkv.weight": "model-00001-of-00004.safetensors",
350
+ "visual.blocks.0.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
351
+ "visual.blocks.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
352
+ "visual.blocks.0.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
353
+ "visual.blocks.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
354
+ "visual.blocks.0.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
355
+ "visual.blocks.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
356
+ "visual.blocks.0.norm1.weight": "model-00001-of-00004.safetensors",
357
+ "visual.blocks.0.norm2.weight": "model-00001-of-00004.safetensors",
358
+ "visual.blocks.1.attn.proj.bias": "model-00001-of-00004.safetensors",
359
+ "visual.blocks.1.attn.proj.weight": "model-00001-of-00004.safetensors",
360
+ "visual.blocks.1.attn.qkv.bias": "model-00001-of-00004.safetensors",
361
+ "visual.blocks.1.attn.qkv.weight": "model-00001-of-00004.safetensors",
362
+ "visual.blocks.1.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
363
+ "visual.blocks.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
364
+ "visual.blocks.1.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
365
+ "visual.blocks.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
366
+ "visual.blocks.1.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
367
+ "visual.blocks.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
368
+ "visual.blocks.1.norm1.weight": "model-00001-of-00004.safetensors",
369
+ "visual.blocks.1.norm2.weight": "model-00001-of-00004.safetensors",
370
+ "visual.blocks.10.attn.proj.bias": "model-00001-of-00004.safetensors",
371
+ "visual.blocks.10.attn.proj.weight": "model-00001-of-00004.safetensors",
372
+ "visual.blocks.10.attn.qkv.bias": "model-00001-of-00004.safetensors",
373
+ "visual.blocks.10.attn.qkv.weight": "model-00001-of-00004.safetensors",
374
+ "visual.blocks.10.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
375
+ "visual.blocks.10.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
376
+ "visual.blocks.10.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
377
+ "visual.blocks.10.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
378
+ "visual.blocks.10.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
379
+ "visual.blocks.10.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
380
+ "visual.blocks.10.norm1.weight": "model-00001-of-00004.safetensors",
381
+ "visual.blocks.10.norm2.weight": "model-00001-of-00004.safetensors",
382
+ "visual.blocks.11.attn.proj.bias": "model-00001-of-00004.safetensors",
383
+ "visual.blocks.11.attn.proj.weight": "model-00001-of-00004.safetensors",
384
+ "visual.blocks.11.attn.qkv.bias": "model-00001-of-00004.safetensors",
385
+ "visual.blocks.11.attn.qkv.weight": "model-00001-of-00004.safetensors",
386
+ "visual.blocks.11.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
387
+ "visual.blocks.11.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
388
+ "visual.blocks.11.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
389
+ "visual.blocks.11.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
390
+ "visual.blocks.11.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
391
+ "visual.blocks.11.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
392
+ "visual.blocks.11.norm1.weight": "model-00001-of-00004.safetensors",
393
+ "visual.blocks.11.norm2.weight": "model-00001-of-00004.safetensors",
394
+ "visual.blocks.12.attn.proj.bias": "model-00001-of-00004.safetensors",
395
+ "visual.blocks.12.attn.proj.weight": "model-00001-of-00004.safetensors",
396
+ "visual.blocks.12.attn.qkv.bias": "model-00001-of-00004.safetensors",
397
+ "visual.blocks.12.attn.qkv.weight": "model-00001-of-00004.safetensors",
398
+ "visual.blocks.12.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
399
+ "visual.blocks.12.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
400
+ "visual.blocks.12.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
401
+ "visual.blocks.12.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
402
+ "visual.blocks.12.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
403
+ "visual.blocks.12.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
404
+ "visual.blocks.12.norm1.weight": "model-00001-of-00004.safetensors",
405
+ "visual.blocks.12.norm2.weight": "model-00001-of-00004.safetensors",
406
+ "visual.blocks.13.attn.proj.bias": "model-00001-of-00004.safetensors",
407
+ "visual.blocks.13.attn.proj.weight": "model-00001-of-00004.safetensors",
408
+ "visual.blocks.13.attn.qkv.bias": "model-00001-of-00004.safetensors",
409
+ "visual.blocks.13.attn.qkv.weight": "model-00001-of-00004.safetensors",
410
+ "visual.blocks.13.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
411
+ "visual.blocks.13.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
412
+ "visual.blocks.13.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
413
+ "visual.blocks.13.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
414
+ "visual.blocks.13.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
415
+ "visual.blocks.13.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
416
+ "visual.blocks.13.norm1.weight": "model-00001-of-00004.safetensors",
417
+ "visual.blocks.13.norm2.weight": "model-00001-of-00004.safetensors",
418
+ "visual.blocks.14.attn.proj.bias": "model-00001-of-00004.safetensors",
419
+ "visual.blocks.14.attn.proj.weight": "model-00001-of-00004.safetensors",
420
+ "visual.blocks.14.attn.qkv.bias": "model-00001-of-00004.safetensors",
421
+ "visual.blocks.14.attn.qkv.weight": "model-00001-of-00004.safetensors",
422
+ "visual.blocks.14.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
423
+ "visual.blocks.14.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
424
+ "visual.blocks.14.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
425
+ "visual.blocks.14.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
426
+ "visual.blocks.14.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
427
+ "visual.blocks.14.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
428
+ "visual.blocks.14.norm1.weight": "model-00001-of-00004.safetensors",
429
+ "visual.blocks.14.norm2.weight": "model-00001-of-00004.safetensors",
430
+ "visual.blocks.15.attn.proj.bias": "model-00001-of-00004.safetensors",
431
+ "visual.blocks.15.attn.proj.weight": "model-00001-of-00004.safetensors",
432
+ "visual.blocks.15.attn.qkv.bias": "model-00001-of-00004.safetensors",
433
+ "visual.blocks.15.attn.qkv.weight": "model-00001-of-00004.safetensors",
434
+ "visual.blocks.15.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
435
+ "visual.blocks.15.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
436
+ "visual.blocks.15.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
437
+ "visual.blocks.15.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
438
+ "visual.blocks.15.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
439
+ "visual.blocks.15.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
440
+ "visual.blocks.15.norm1.weight": "model-00001-of-00004.safetensors",
441
+ "visual.blocks.15.norm2.weight": "model-00001-of-00004.safetensors",
442
+ "visual.blocks.16.attn.proj.bias": "model-00001-of-00004.safetensors",
443
+ "visual.blocks.16.attn.proj.weight": "model-00001-of-00004.safetensors",
444
+ "visual.blocks.16.attn.qkv.bias": "model-00001-of-00004.safetensors",
445
+ "visual.blocks.16.attn.qkv.weight": "model-00001-of-00004.safetensors",
446
+ "visual.blocks.16.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
447
+ "visual.blocks.16.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
448
+ "visual.blocks.16.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
449
+ "visual.blocks.16.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
450
+ "visual.blocks.16.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
451
+ "visual.blocks.16.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
452
+ "visual.blocks.16.norm1.weight": "model-00001-of-00004.safetensors",
453
+ "visual.blocks.16.norm2.weight": "model-00001-of-00004.safetensors",
454
+ "visual.blocks.17.attn.proj.bias": "model-00001-of-00004.safetensors",
455
+ "visual.blocks.17.attn.proj.weight": "model-00001-of-00004.safetensors",
456
+ "visual.blocks.17.attn.qkv.bias": "model-00001-of-00004.safetensors",
457
+ "visual.blocks.17.attn.qkv.weight": "model-00001-of-00004.safetensors",
458
+ "visual.blocks.17.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
459
+ "visual.blocks.17.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
460
+ "visual.blocks.17.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
461
+ "visual.blocks.17.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
462
+ "visual.blocks.17.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
463
+ "visual.blocks.17.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
464
+ "visual.blocks.17.norm1.weight": "model-00001-of-00004.safetensors",
465
+ "visual.blocks.17.norm2.weight": "model-00001-of-00004.safetensors",
466
+ "visual.blocks.18.attn.proj.bias": "model-00001-of-00004.safetensors",
467
+ "visual.blocks.18.attn.proj.weight": "model-00001-of-00004.safetensors",
468
+ "visual.blocks.18.attn.qkv.bias": "model-00001-of-00004.safetensors",
469
+ "visual.blocks.18.attn.qkv.weight": "model-00001-of-00004.safetensors",
470
+ "visual.blocks.18.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
471
+ "visual.blocks.18.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
472
+ "visual.blocks.18.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
473
+ "visual.blocks.18.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
474
+ "visual.blocks.18.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
475
+ "visual.blocks.18.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
476
+ "visual.blocks.18.norm1.weight": "model-00001-of-00004.safetensors",
477
+ "visual.blocks.18.norm2.weight": "model-00001-of-00004.safetensors",
478
+ "visual.blocks.19.attn.proj.bias": "model-00001-of-00004.safetensors",
479
+ "visual.blocks.19.attn.proj.weight": "model-00001-of-00004.safetensors",
480
+ "visual.blocks.19.attn.qkv.bias": "model-00001-of-00004.safetensors",
481
+ "visual.blocks.19.attn.qkv.weight": "model-00001-of-00004.safetensors",
482
+ "visual.blocks.19.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
483
+ "visual.blocks.19.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
484
+ "visual.blocks.19.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
485
+ "visual.blocks.19.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
486
+ "visual.blocks.19.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
487
+ "visual.blocks.19.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
488
+ "visual.blocks.19.norm1.weight": "model-00001-of-00004.safetensors",
489
+ "visual.blocks.19.norm2.weight": "model-00001-of-00004.safetensors",
490
+ "visual.blocks.2.attn.proj.bias": "model-00001-of-00004.safetensors",
491
+ "visual.blocks.2.attn.proj.weight": "model-00001-of-00004.safetensors",
492
+ "visual.blocks.2.attn.qkv.bias": "model-00001-of-00004.safetensors",
493
+ "visual.blocks.2.attn.qkv.weight": "model-00001-of-00004.safetensors",
494
+ "visual.blocks.2.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
495
+ "visual.blocks.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
496
+ "visual.blocks.2.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
497
+ "visual.blocks.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
498
+ "visual.blocks.2.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
499
+ "visual.blocks.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
500
+ "visual.blocks.2.norm1.weight": "model-00001-of-00004.safetensors",
501
+ "visual.blocks.2.norm2.weight": "model-00001-of-00004.safetensors",
502
+ "visual.blocks.20.attn.proj.bias": "model-00001-of-00004.safetensors",
503
+ "visual.blocks.20.attn.proj.weight": "model-00001-of-00004.safetensors",
504
+ "visual.blocks.20.attn.qkv.bias": "model-00001-of-00004.safetensors",
505
+ "visual.blocks.20.attn.qkv.weight": "model-00001-of-00004.safetensors",
506
+ "visual.blocks.20.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
507
+ "visual.blocks.20.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
508
+ "visual.blocks.20.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
509
+ "visual.blocks.20.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
510
+ "visual.blocks.20.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
511
+ "visual.blocks.20.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
512
+ "visual.blocks.20.norm1.weight": "model-00001-of-00004.safetensors",
513
+ "visual.blocks.20.norm2.weight": "model-00001-of-00004.safetensors",
514
+ "visual.blocks.21.attn.proj.bias": "model-00001-of-00004.safetensors",
515
+ "visual.blocks.21.attn.proj.weight": "model-00001-of-00004.safetensors",
516
+ "visual.blocks.21.attn.qkv.bias": "model-00001-of-00004.safetensors",
517
+ "visual.blocks.21.attn.qkv.weight": "model-00001-of-00004.safetensors",
518
+ "visual.blocks.21.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
519
+ "visual.blocks.21.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
520
+ "visual.blocks.21.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
521
+ "visual.blocks.21.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
522
+ "visual.blocks.21.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
523
+ "visual.blocks.21.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
524
+ "visual.blocks.21.norm1.weight": "model-00001-of-00004.safetensors",
525
+ "visual.blocks.21.norm2.weight": "model-00001-of-00004.safetensors",
526
+ "visual.blocks.22.attn.proj.bias": "model-00001-of-00004.safetensors",
527
+ "visual.blocks.22.attn.proj.weight": "model-00001-of-00004.safetensors",
528
+ "visual.blocks.22.attn.qkv.bias": "model-00001-of-00004.safetensors",
529
+ "visual.blocks.22.attn.qkv.weight": "model-00001-of-00004.safetensors",
530
+ "visual.blocks.22.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
531
+ "visual.blocks.22.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
532
+ "visual.blocks.22.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
533
+ "visual.blocks.22.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
534
+ "visual.blocks.22.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
535
+ "visual.blocks.22.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
536
+ "visual.blocks.22.norm1.weight": "model-00001-of-00004.safetensors",
537
+ "visual.blocks.22.norm2.weight": "model-00001-of-00004.safetensors",
538
+ "visual.blocks.23.attn.proj.bias": "model-00001-of-00004.safetensors",
539
+ "visual.blocks.23.attn.proj.weight": "model-00001-of-00004.safetensors",
540
+ "visual.blocks.23.attn.qkv.bias": "model-00001-of-00004.safetensors",
541
+ "visual.blocks.23.attn.qkv.weight": "model-00001-of-00004.safetensors",
542
+ "visual.blocks.23.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
543
+ "visual.blocks.23.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
544
+ "visual.blocks.23.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
545
+ "visual.blocks.23.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
546
+ "visual.blocks.23.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
547
+ "visual.blocks.23.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
548
+ "visual.blocks.23.norm1.weight": "model-00001-of-00004.safetensors",
549
+ "visual.blocks.23.norm2.weight": "model-00001-of-00004.safetensors",
550
+ "visual.blocks.24.attn.proj.bias": "model-00001-of-00004.safetensors",
551
+ "visual.blocks.24.attn.proj.weight": "model-00001-of-00004.safetensors",
552
+ "visual.blocks.24.attn.qkv.bias": "model-00001-of-00004.safetensors",
553
+ "visual.blocks.24.attn.qkv.weight": "model-00001-of-00004.safetensors",
554
+ "visual.blocks.24.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
555
+ "visual.blocks.24.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
556
+ "visual.blocks.24.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
557
+ "visual.blocks.24.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
558
+ "visual.blocks.24.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
559
+ "visual.blocks.24.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
560
+ "visual.blocks.24.norm1.weight": "model-00001-of-00004.safetensors",
561
+ "visual.blocks.24.norm2.weight": "model-00001-of-00004.safetensors",
562
+ "visual.blocks.25.attn.proj.bias": "model-00001-of-00004.safetensors",
563
+ "visual.blocks.25.attn.proj.weight": "model-00001-of-00004.safetensors",
564
+ "visual.blocks.25.attn.qkv.bias": "model-00001-of-00004.safetensors",
565
+ "visual.blocks.25.attn.qkv.weight": "model-00001-of-00004.safetensors",
566
+ "visual.blocks.25.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
567
+ "visual.blocks.25.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
568
+ "visual.blocks.25.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
569
+ "visual.blocks.25.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
570
+ "visual.blocks.25.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
571
+ "visual.blocks.25.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
572
+ "visual.blocks.25.norm1.weight": "model-00001-of-00004.safetensors",
573
+ "visual.blocks.25.norm2.weight": "model-00001-of-00004.safetensors",
574
+ "visual.blocks.26.attn.proj.bias": "model-00001-of-00004.safetensors",
575
+ "visual.blocks.26.attn.proj.weight": "model-00001-of-00004.safetensors",
576
+ "visual.blocks.26.attn.qkv.bias": "model-00001-of-00004.safetensors",
577
+ "visual.blocks.26.attn.qkv.weight": "model-00001-of-00004.safetensors",
578
+ "visual.blocks.26.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
579
+ "visual.blocks.26.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
580
+ "visual.blocks.26.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
581
+ "visual.blocks.26.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
582
+ "visual.blocks.26.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
583
+ "visual.blocks.26.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
584
+ "visual.blocks.26.norm1.weight": "model-00001-of-00004.safetensors",
585
+ "visual.blocks.26.norm2.weight": "model-00001-of-00004.safetensors",
586
+ "visual.blocks.27.attn.proj.bias": "model-00001-of-00004.safetensors",
587
+ "visual.blocks.27.attn.proj.weight": "model-00001-of-00004.safetensors",
588
+ "visual.blocks.27.attn.qkv.bias": "model-00001-of-00004.safetensors",
589
+ "visual.blocks.27.attn.qkv.weight": "model-00001-of-00004.safetensors",
590
+ "visual.blocks.27.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
591
+ "visual.blocks.27.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
592
+ "visual.blocks.27.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
593
+ "visual.blocks.27.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
594
+ "visual.blocks.27.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
595
+ "visual.blocks.27.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
596
+ "visual.blocks.27.norm1.weight": "model-00001-of-00004.safetensors",
597
+ "visual.blocks.27.norm2.weight": "model-00001-of-00004.safetensors",
598
+ "visual.blocks.28.attn.proj.bias": "model-00001-of-00004.safetensors",
599
+ "visual.blocks.28.attn.proj.weight": "model-00001-of-00004.safetensors",
600
+ "visual.blocks.28.attn.qkv.bias": "model-00001-of-00004.safetensors",
601
+ "visual.blocks.28.attn.qkv.weight": "model-00001-of-00004.safetensors",
602
+ "visual.blocks.28.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
603
+ "visual.blocks.28.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
604
+ "visual.blocks.28.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
605
+ "visual.blocks.28.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
606
+ "visual.blocks.28.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
607
+ "visual.blocks.28.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
608
+ "visual.blocks.28.norm1.weight": "model-00001-of-00004.safetensors",
609
+ "visual.blocks.28.norm2.weight": "model-00001-of-00004.safetensors",
610
+ "visual.blocks.29.attn.proj.bias": "model-00001-of-00004.safetensors",
611
+ "visual.blocks.29.attn.proj.weight": "model-00001-of-00004.safetensors",
612
+ "visual.blocks.29.attn.qkv.bias": "model-00001-of-00004.safetensors",
613
+ "visual.blocks.29.attn.qkv.weight": "model-00001-of-00004.safetensors",
614
+ "visual.blocks.29.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
615
+ "visual.blocks.29.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
616
+ "visual.blocks.29.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
617
+ "visual.blocks.29.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
618
+ "visual.blocks.29.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
619
+ "visual.blocks.29.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
620
+ "visual.blocks.29.norm1.weight": "model-00001-of-00004.safetensors",
621
+ "visual.blocks.29.norm2.weight": "model-00001-of-00004.safetensors",
622
+ "visual.blocks.3.attn.proj.bias": "model-00001-of-00004.safetensors",
623
+ "visual.blocks.3.attn.proj.weight": "model-00001-of-00004.safetensors",
624
+ "visual.blocks.3.attn.qkv.bias": "model-00001-of-00004.safetensors",
625
+ "visual.blocks.3.attn.qkv.weight": "model-00001-of-00004.safetensors",
626
+ "visual.blocks.3.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
627
+ "visual.blocks.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
628
+ "visual.blocks.3.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
629
+ "visual.blocks.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
630
+ "visual.blocks.3.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
631
+ "visual.blocks.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
632
+ "visual.blocks.3.norm1.weight": "model-00001-of-00004.safetensors",
633
+ "visual.blocks.3.norm2.weight": "model-00001-of-00004.safetensors",
634
+ "visual.blocks.30.attn.proj.bias": "model-00001-of-00004.safetensors",
635
+ "visual.blocks.30.attn.proj.weight": "model-00001-of-00004.safetensors",
636
+ "visual.blocks.30.attn.qkv.bias": "model-00001-of-00004.safetensors",
637
+ "visual.blocks.30.attn.qkv.weight": "model-00001-of-00004.safetensors",
638
+ "visual.blocks.30.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
639
+ "visual.blocks.30.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
640
+ "visual.blocks.30.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
641
+ "visual.blocks.30.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
642
+ "visual.blocks.30.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
643
+ "visual.blocks.30.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
644
+ "visual.blocks.30.norm1.weight": "model-00001-of-00004.safetensors",
645
+ "visual.blocks.30.norm2.weight": "model-00001-of-00004.safetensors",
646
+ "visual.blocks.31.attn.proj.bias": "model-00001-of-00004.safetensors",
647
+ "visual.blocks.31.attn.proj.weight": "model-00001-of-00004.safetensors",
648
+ "visual.blocks.31.attn.qkv.bias": "model-00001-of-00004.safetensors",
649
+ "visual.blocks.31.attn.qkv.weight": "model-00001-of-00004.safetensors",
650
+ "visual.blocks.31.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
651
+ "visual.blocks.31.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
652
+ "visual.blocks.31.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
653
+ "visual.blocks.31.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
654
+ "visual.blocks.31.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
655
+ "visual.blocks.31.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
656
+ "visual.blocks.31.norm1.weight": "model-00001-of-00004.safetensors",
657
+ "visual.blocks.31.norm2.weight": "model-00001-of-00004.safetensors",
658
+ "visual.blocks.4.attn.proj.bias": "model-00001-of-00004.safetensors",
659
+ "visual.blocks.4.attn.proj.weight": "model-00001-of-00004.safetensors",
660
+ "visual.blocks.4.attn.qkv.bias": "model-00001-of-00004.safetensors",
661
+ "visual.blocks.4.attn.qkv.weight": "model-00001-of-00004.safetensors",
662
+ "visual.blocks.4.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
663
+ "visual.blocks.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
664
+ "visual.blocks.4.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
665
+ "visual.blocks.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
666
+ "visual.blocks.4.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
667
+ "visual.blocks.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
668
+ "visual.blocks.4.norm1.weight": "model-00001-of-00004.safetensors",
669
+ "visual.blocks.4.norm2.weight": "model-00001-of-00004.safetensors",
670
+ "visual.blocks.5.attn.proj.bias": "model-00001-of-00004.safetensors",
671
+ "visual.blocks.5.attn.proj.weight": "model-00001-of-00004.safetensors",
672
+ "visual.blocks.5.attn.qkv.bias": "model-00001-of-00004.safetensors",
673
+ "visual.blocks.5.attn.qkv.weight": "model-00001-of-00004.safetensors",
674
+ "visual.blocks.5.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
675
+ "visual.blocks.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
676
+ "visual.blocks.5.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
677
+ "visual.blocks.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
678
+ "visual.blocks.5.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
679
+ "visual.blocks.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
680
+ "visual.blocks.5.norm1.weight": "model-00001-of-00004.safetensors",
681
+ "visual.blocks.5.norm2.weight": "model-00001-of-00004.safetensors",
682
+ "visual.blocks.6.attn.proj.bias": "model-00001-of-00004.safetensors",
683
+ "visual.blocks.6.attn.proj.weight": "model-00001-of-00004.safetensors",
684
+ "visual.blocks.6.attn.qkv.bias": "model-00001-of-00004.safetensors",
685
+ "visual.blocks.6.attn.qkv.weight": "model-00001-of-00004.safetensors",
686
+ "visual.blocks.6.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
687
+ "visual.blocks.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
688
+ "visual.blocks.6.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
689
+ "visual.blocks.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
690
+ "visual.blocks.6.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
691
+ "visual.blocks.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
692
+ "visual.blocks.6.norm1.weight": "model-00001-of-00004.safetensors",
693
+ "visual.blocks.6.norm2.weight": "model-00001-of-00004.safetensors",
694
+ "visual.blocks.7.attn.proj.bias": "model-00001-of-00004.safetensors",
695
+ "visual.blocks.7.attn.proj.weight": "model-00001-of-00004.safetensors",
696
+ "visual.blocks.7.attn.qkv.bias": "model-00001-of-00004.safetensors",
697
+ "visual.blocks.7.attn.qkv.weight": "model-00001-of-00004.safetensors",
698
+ "visual.blocks.7.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
699
+ "visual.blocks.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
700
+ "visual.blocks.7.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
701
+ "visual.blocks.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
702
+ "visual.blocks.7.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
703
+ "visual.blocks.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
704
+ "visual.blocks.7.norm1.weight": "model-00001-of-00004.safetensors",
705
+ "visual.blocks.7.norm2.weight": "model-00001-of-00004.safetensors",
706
+ "visual.blocks.8.attn.proj.bias": "model-00001-of-00004.safetensors",
707
+ "visual.blocks.8.attn.proj.weight": "model-00001-of-00004.safetensors",
708
+ "visual.blocks.8.attn.qkv.bias": "model-00001-of-00004.safetensors",
709
+ "visual.blocks.8.attn.qkv.weight": "model-00001-of-00004.safetensors",
710
+ "visual.blocks.8.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
711
+ "visual.blocks.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
712
+ "visual.blocks.8.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
713
+ "visual.blocks.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
714
+ "visual.blocks.8.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
715
+ "visual.blocks.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
716
+ "visual.blocks.8.norm1.weight": "model-00001-of-00004.safetensors",
717
+ "visual.blocks.8.norm2.weight": "model-00001-of-00004.safetensors",
718
+ "visual.blocks.9.attn.proj.bias": "model-00001-of-00004.safetensors",
719
+ "visual.blocks.9.attn.proj.weight": "model-00001-of-00004.safetensors",
720
+ "visual.blocks.9.attn.qkv.bias": "model-00001-of-00004.safetensors",
721
+ "visual.blocks.9.attn.qkv.weight": "model-00001-of-00004.safetensors",
722
+ "visual.blocks.9.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
723
+ "visual.blocks.9.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
724
+ "visual.blocks.9.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
725
+ "visual.blocks.9.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
726
+ "visual.blocks.9.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
727
+ "visual.blocks.9.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
728
+ "visual.blocks.9.norm1.weight": "model-00001-of-00004.safetensors",
729
+ "visual.blocks.9.norm2.weight": "model-00001-of-00004.safetensors",
730
+ "visual.merger.ln_q.weight": "model-00001-of-00004.safetensors",
731
+ "visual.merger.mlp.0.bias": "model-00001-of-00004.safetensors",
732
+ "visual.merger.mlp.0.weight": "model-00001-of-00004.safetensors",
733
+ "visual.merger.mlp.2.bias": "model-00001-of-00004.safetensors",
734
+ "visual.merger.mlp.2.weight": "model-00001-of-00004.safetensors",
735
+ "visual.patch_embed.proj.weight": "model-00001-of-00004.safetensors"
736
+ }
737
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "disable_grouping": null,
7
+ "do_center_crop": null,
8
+ "do_convert_rgb": true,
9
+ "do_normalize": true,
10
+ "do_pad": null,
11
+ "do_rescale": true,
12
+ "do_resize": true,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_processor_type": "Qwen2VLImageProcessorFast",
19
+ "image_std": [
20
+ 0.26862954,
21
+ 0.26130258,
22
+ 0.27577711
23
+ ],
24
+ "input_data_format": null,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_pixels": 3136,
28
+ "pad_size": null,
29
+ "patch_size": 14,
30
+ "processor_class": "Qwen2_5_VLProcessor",
31
+ "resample": 3,
32
+ "rescale_factor": 0.00392156862745098,
33
+ "return_tensors": null,
34
+ "size": {
35
+ "longest_edge": 12845056,
36
+ "shortest_edge": 3136
37
+ },
38
+ "temporal_patch_size": 2
39
+ }
runs/Dec04_22-09-12_6165b55eed88/events.out.tfevents.1764886209.6165b55eed88.4158.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71937f0ce877592f41e1be51b83a5adc2c2ee5688e2e2fab5ffe7c5a1cb21d80
3
+ size 65742
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
+ }
telemetry/devices_info.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ CPU cores: 12 CUDA devices: 1
2
+ device(0)='NVIDIA A100-SXM4-80GB' Capability: (8, 0) Memory: [Total: 79.32GiB Free: 78.9GiB Allocated: 0.0GiB Cached: 0.0GiB]
telemetry/telemetry_callback_metrics_rank0000.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "train_runtime": 298.5529,
3
+ "train_samples_per_second": 1.675,
4
+ "train_steps_per_second": 1.675,
5
+ "train_tokens_per_second": 2758.017,
6
+ "total_flos": 1.972943710728192e+16,
7
+ "train_loss": 0.3892666745185852,
8
+ "epoch": 1.0,
9
+ "num_input_tokens_seen": 424444
10
+ }
telemetry/telemetry_callback_rank0000.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "hostname": "6165b55eed88",
3
+ "total_time": 314.55871530499996,
4
+ "timers": {
5
+ "epochs": {
6
+ "count": 1.0,
7
+ "mean": 257.66958669400003,
8
+ "median": 257.66958669400003,
9
+ "std_dev": 0,
10
+ "min": 257.66958669400003,
11
+ "max": 257.66958669400003,
12
+ "total": 257.66958669400003,
13
+ "percentage": 81.91462329828009
14
+ },
15
+ "microsteps": {
16
+ "count": 498.0,
17
+ "mean": 0.4020090631485908,
18
+ "median": 0.37922136950004415,
19
+ "std_dev": 0.07505460587743448,
20
+ "min": 0.31015944900002523,
21
+ "max": 0.7942700079998986,
22
+ "total": 200.20051344799822,
23
+ "percentage": 63.64487890722765
24
+ },
25
+ "steps": {
26
+ "count": 498.0,
27
+ "mean": 0.4020103719718869,
28
+ "median": 0.3792217589999609,
29
+ "std_dev": 0.07505424005098268,
30
+ "min": 0.3101598060000015,
31
+ "max": 0.7942724639999597,
32
+ "total": 200.20116524199966,
33
+ "percentage": 63.64508611623816
34
+ }
35
+ },
36
+ "cuda_timers": {},
37
+ "gpu_memory": [],
38
+ "gpu_temperature": {}
39
+ }
telemetry/telemetry_callback_wandb_rank0000.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "id": "0eqxl02b",
3
+ "name": "radiant-fire-125",
4
+ "url": "https://wandb.ai/video-sync/huggingface/runs/0eqxl02b"
5
+ }
telemetry/training_config.yaml ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ data:
2
+ train:
3
+ datasets:
4
+ - dataset_name: hf_vision
5
+ dataset_path: null
6
+ subset: null
7
+ split: train
8
+ dataset_kwargs:
9
+ hf_dataset_path: yosubshin/WaltonMultimodalColdStart-random-500-1
10
+ image_column: image
11
+ question_column: problem
12
+ answer_column: solution
13
+ return_tensors: true
14
+ processor_name: Qwen/Qwen2.5-VL-7B-Instruct
15
+ return_conversations: true
16
+ sample_count: null
17
+ mixture_proportion: null
18
+ shuffle: true
19
+ seed: 42
20
+ shuffle_buffer_size: 1000
21
+ trust_remote_code: true
22
+ transform_num_workers: auto
23
+ collator_name: vision_language_sft
24
+ collator_kwargs:
25
+ process_individually: true
26
+ pack: false
27
+ stream: false
28
+ target_col: null
29
+ mixture_strategy: first_exhausted
30
+ seed: null
31
+ use_torchdata: true
32
+ test:
33
+ datasets: []
34
+ collator_name: null
35
+ collator_kwargs: {}
36
+ pack: false
37
+ stream: false
38
+ target_col: null
39
+ mixture_strategy: first_exhausted
40
+ seed: null
41
+ use_torchdata: null
42
+ validation:
43
+ datasets: []
44
+ collator_name: null
45
+ collator_kwargs: {}
46
+ pack: false
47
+ stream: false
48
+ target_col: null
49
+ mixture_strategy: first_exhausted
50
+ seed: null
51
+ use_torchdata: null
52
+ model:
53
+ model_name: Qwen/Qwen2.5-VL-7B-Instruct
54
+ adapter_model: null
55
+ tokenizer_name: null
56
+ tokenizer_pad_token: null
57
+ tokenizer_kwargs: {}
58
+ processor_kwargs: {}
59
+ model_max_length: 10000
60
+ load_pretrained_weights: true
61
+ trust_remote_code: true
62
+ torch_dtype_str: bfloat16
63
+ compile: false
64
+ chat_template: qwen2-vl-instruct
65
+ chat_template_kwargs: null
66
+ attn_implementation: flash_attention_2
67
+ device_map: auto
68
+ model_kwargs: {}
69
+ enable_liger_kernel: false
70
+ shard_for_eval: false
71
+ freeze_layers: []
72
+ model_revision: null
73
+ training:
74
+ use_peft: false
75
+ trainer_type: TRL_SFT
76
+ enable_gradient_checkpointing: true
77
+ gradient_checkpointing_kwargs:
78
+ use_reentrant: false
79
+ output_dir: /contents/qwen2_5_vl_7b_walton_random_500_1
80
+ per_device_train_batch_size: 1
81
+ per_device_eval_batch_size: 8
82
+ gradient_accumulation_steps: 1
83
+ max_steps: -1
84
+ num_train_epochs: 1
85
+ save_epoch: false
86
+ save_steps: 0
87
+ save_final_model: true
88
+ seed: 42
89
+ data_seed: 42
90
+ use_deterministic: false
91
+ full_determinism: false
92
+ run_name: null
93
+ metrics_function: null
94
+ reward_functions: null
95
+ grpo:
96
+ model_init_kwargs: {}
97
+ max_prompt_length: null
98
+ max_completion_length: null
99
+ num_generations: null
100
+ temperature: 0.9
101
+ remove_unused_columns: false
102
+ repetition_penalty: 1.0
103
+ use_vllm: false
104
+ vllm_mode: null
105
+ vllm_gpu_memory_utilization: 0.9
106
+ epsilon: 0.2
107
+ log_completions: false
108
+ rollout_function: null
109
+ gkd:
110
+ teacher_model_name_or_path: null
111
+ teacher_model_init_kwargs:
112
+ dtype: auto
113
+ temperature: 0.9
114
+ lmbda: 0.5
115
+ beta: 0.5
116
+ max_new_tokens: 128
117
+ disable_dropout: true
118
+ seq_kd: false
119
+ log_level: info
120
+ dep_log_level: warning
121
+ log_examples: false
122
+ enable_wandb: true
123
+ enable_mlflow: false
124
+ enable_tensorboard: true
125
+ logging_strategy: steps
126
+ logging_dir: null
127
+ logging_steps: 5
128
+ logging_first_step: false
129
+ eval_strategy: 'no'
130
+ eval_steps: 500
131
+ learning_rate: 2.0e-05
132
+ lr_scheduler_type: cosine
133
+ lr_scheduler_kwargs: {}
134
+ warmup_ratio: 0.03
135
+ warmup_steps: null
136
+ optimizer: adamw_torch_fused
137
+ weight_decay: 0.01
138
+ adam_beta1: 0.9
139
+ adam_beta2: 0.999
140
+ adam_epsilon: 1.0e-08
141
+ sgd_momentum: 0.0
142
+ mixed_precision_dtype: NONE
143
+ compile: false
144
+ include_performance_metrics: true
145
+ include_alternative_mfu_metrics: false
146
+ log_model_summary: false
147
+ resume_from_checkpoint: null
148
+ try_resume_from_last_checkpoint: false
149
+ dataloader_num_workers: 2
150
+ dataloader_persistent_workers: false
151
+ dataloader_prefetch_factor: 8
152
+ dataloader_main_process_only: false
153
+ ddp_find_unused_parameters: false
154
+ max_grad_norm: 1.0
155
+ trainer_kwargs:
156
+ max_length: 10000
157
+ remove_unused_columns: false
158
+ dataset_kwargs:
159
+ skip_prepare_dataset: true
160
+ verl_config_overrides: {}
161
+ profiler:
162
+ save_dir: null
163
+ enable_cpu_profiling: false
164
+ enable_cuda_profiling: false
165
+ record_shapes: false
166
+ profile_memory: false
167
+ with_stack: false
168
+ with_flops: false
169
+ with_modules: false
170
+ row_limit: 50
171
+ schedule:
172
+ enable_schedule: false
173
+ wait: 0
174
+ warmup: 1
175
+ active: 3
176
+ repeat: 1
177
+ skip_first: 1
178
+ telemetry:
179
+ telemetry_dir: telemetry
180
+ collect_telemetry_for_all_ranks: false
181
+ track_gpu_temperature: false
182
+ empty_device_cache_steps: 1
183
+ nccl_default_timeout_minutes: null
184
+ label_ignore_index: null
185
+ peft:
186
+ lora_r: 8
187
+ lora_alpha: 8
188
+ lora_dropout: 0.0
189
+ lora_target_modules: null
190
+ lora_target_parameters: null
191
+ lora_modules_to_save: null
192
+ lora_bias: none
193
+ lora_init_weights: DEFAULT
194
+ lora_task_type: CAUSAL_LM
195
+ q_lora: false
196
+ q_lora_bits: 4
197
+ bnb_4bit_quant_type: fp4
198
+ llm_int8_skip_modules: null
199
+ use_bnb_nested_quant: false
200
+ bnb_4bit_quant_storage: uint8
201
+ bnb_4bit_compute_dtype: float32
202
+ peft_save_mode: ADAPTER_ONLY
203
+ fsdp:
204
+ enable_fsdp: true
205
+ sharding_strategy: HYBRID_SHARD
206
+ cpu_offload: false
207
+ mixed_precision: bf16
208
+ backward_prefetch: BACKWARD_PRE
209
+ forward_prefetch: true
210
+ use_orig_params: null
211
+ state_dict_type: FULL_STATE_DICT
212
+ auto_wrap_policy: SIZE_BASED_WRAP
213
+ min_num_params: 100000
214
+ transformer_layer_cls: null
215
+ sync_module_states: true
216
+ deepspeed:
217
+ enable_deepspeed: false
218
+ deepspeed_config_path: null
219
+ zero_stage: ZERO_0
220
+ offload_optimizer: null
221
+ offload_param: null
222
+ precision: null
223
+ overlap_comm: false
224
+ contiguous_gradients: true
225
+ reduce_bucket_size: 500000000
226
+ allgather_bucket_size: 500000000
227
+ allgather_partitions: true
228
+ reduce_scatter: true
229
+ round_robin_gradients: false
230
+ stage3_prefetch_bucket_size: 50000000
231
+ stage3_param_persistence_threshold: 100000
232
+ stage3_max_live_parameters: 1000000000
233
+ stage3_max_reuse_distance: 1000000000
234
+ stage3_gather_16bit_weights_on_model_save: false
235
+ sub_group_size: 1000000000
236
+ train_batch_size: auto
237
+ train_micro_batch_size_per_gpu: auto
238
+ gradient_accumulation_steps: auto
239
+ gradient_clipping: auto
240
+ zero_allow_untested_optimizer: true
241
+ zero_force_ds_cpu_optimizer: true
242
+ activation_checkpointing: {}
243
+ memory_efficient_linear: false
244
+ steps_per_print: 10
245
+ wall_clock_breakdown: false
telemetry/world_size.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "LOCAL_WORLD_SIZE": 1,
3
+ "WORLD_SIZE": 1
4
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
3
+ size 11421896
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
+ "clean_up_tokenization_spaces": false,
199
+ "eos_token": "<|im_end|>",
200
+ "errors": "replace",
201
+ "extra_special_tokens": {},
202
+ "model_max_length": 10000,
203
+ "pad_token": "<|endoftext|>",
204
+ "padding_side": "right",
205
+ "processor_class": "Qwen2_5_VLProcessor",
206
+ "split_special_tokens": false,
207
+ "tokenizer_class": "Qwen2Tokenizer",
208
+ "unk_token": null
209
+ }
trainer_state.json ADDED
@@ -0,0 +1,1345 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 500,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.2098822593688965,
14
+ "epoch": 0.01,
15
+ "grad_norm": 42.0,
16
+ "learning_rate": 5.333333333333334e-06,
17
+ "loss": 1.2171,
18
+ "mean_token_accuracy": 0.8310450196266175,
19
+ "num_input_tokens_seen": 4781,
20
+ "num_tokens": 4781.0,
21
+ "step": 5,
22
+ "train_runtime": 45.8999,
23
+ "train_tokens_per_second": 104.161
24
+ },
25
+ {
26
+ "entropy": 0.6481770157814026,
27
+ "epoch": 0.02,
28
+ "grad_norm": 5.65625,
29
+ "learning_rate": 1.2e-05,
30
+ "loss": 0.6354,
31
+ "mean_token_accuracy": 0.8989984631538391,
32
+ "num_input_tokens_seen": 8956,
33
+ "num_tokens": 8956.0,
34
+ "step": 10,
35
+ "train_runtime": 48.3641,
36
+ "train_tokens_per_second": 185.179
37
+ },
38
+ {
39
+ "entropy": 1.4211748957633972,
40
+ "epoch": 0.03,
41
+ "grad_norm": 16.125,
42
+ "learning_rate": 1.866666666666667e-05,
43
+ "loss": 0.5623,
44
+ "mean_token_accuracy": 0.8859113693237305,
45
+ "num_input_tokens_seen": 12206,
46
+ "num_tokens": 12206.0,
47
+ "step": 15,
48
+ "train_runtime": 50.75,
49
+ "train_tokens_per_second": 240.512
50
+ },
51
+ {
52
+ "entropy": 1.6534127473831177,
53
+ "epoch": 0.04,
54
+ "grad_norm": 24.125,
55
+ "learning_rate": 1.9996643536268202e-05,
56
+ "loss": 0.5616,
57
+ "mean_token_accuracy": 0.8681243538856507,
58
+ "num_input_tokens_seen": 15256,
59
+ "num_tokens": 15256.0,
60
+ "step": 20,
61
+ "train_runtime": 53.0284,
62
+ "train_tokens_per_second": 287.695
63
+ },
64
+ {
65
+ "entropy": 1.156516921520233,
66
+ "epoch": 0.05,
67
+ "grad_norm": 10.5625,
68
+ "learning_rate": 1.9983011763899674e-05,
69
+ "loss": 0.9336,
70
+ "mean_token_accuracy": 0.7931149959564209,
71
+ "num_input_tokens_seen": 19115,
72
+ "num_tokens": 19115.0,
73
+ "step": 25,
74
+ "train_runtime": 55.4933,
75
+ "train_tokens_per_second": 344.456
76
+ },
77
+ {
78
+ "entropy": 1.7109876096248626,
79
+ "epoch": 0.06,
80
+ "grad_norm": 31.375,
81
+ "learning_rate": 1.995890919075519e-05,
82
+ "loss": 0.419,
83
+ "mean_token_accuracy": 0.8940125346183777,
84
+ "num_input_tokens_seen": 23042,
85
+ "num_tokens": 23042.0,
86
+ "step": 30,
87
+ "train_runtime": 57.958,
88
+ "train_tokens_per_second": 397.564
89
+ },
90
+ {
91
+ "entropy": 1.2635510742664338,
92
+ "epoch": 0.07,
93
+ "grad_norm": 37.75,
94
+ "learning_rate": 1.9924361097105624e-05,
95
+ "loss": 0.4631,
96
+ "mean_token_accuracy": 0.8700049161911011,
97
+ "num_input_tokens_seen": 27231,
98
+ "num_tokens": 27231.0,
99
+ "step": 35,
100
+ "train_runtime": 60.4425,
101
+ "train_tokens_per_second": 450.527
102
+ },
103
+ {
104
+ "entropy": 1.7808212399482728,
105
+ "epoch": 0.08,
106
+ "grad_norm": 9.125,
107
+ "learning_rate": 1.987940371913044e-05,
108
+ "loss": 0.4037,
109
+ "mean_token_accuracy": 0.8829172015190124,
110
+ "num_input_tokens_seen": 30038,
111
+ "num_tokens": 30038.0,
112
+ "step": 40,
113
+ "train_runtime": 62.6525,
114
+ "train_tokens_per_second": 479.439
115
+ },
116
+ {
117
+ "entropy": 0.542309308052063,
118
+ "epoch": 0.09,
119
+ "grad_norm": 226.0,
120
+ "learning_rate": 1.9824084210910924e-05,
121
+ "loss": 0.2899,
122
+ "mean_token_accuracy": 0.9064181089401245,
123
+ "num_input_tokens_seen": 35933,
124
+ "num_tokens": 35933.0,
125
+ "step": 45,
126
+ "train_runtime": 65.4796,
127
+ "train_tokens_per_second": 548.766
128
+ },
129
+ {
130
+ "entropy": 1.5936108112335206,
131
+ "epoch": 0.1,
132
+ "grad_norm": 10.125,
133
+ "learning_rate": 1.9758460594972068e-05,
134
+ "loss": 0.3814,
135
+ "mean_token_accuracy": 0.8922946691513062,
136
+ "num_input_tokens_seen": 39538,
137
+ "num_tokens": 39538.0,
138
+ "step": 50,
139
+ "train_runtime": 67.8868,
140
+ "train_tokens_per_second": 582.411
141
+ },
142
+ {
143
+ "entropy": 0.33137865364551544,
144
+ "epoch": 0.11,
145
+ "grad_norm": 6.0625,
146
+ "learning_rate": 1.9682601701424958e-05,
147
+ "loss": 0.2417,
148
+ "mean_token_accuracy": 0.9260695338249206,
149
+ "num_input_tokens_seen": 45125,
150
+ "num_tokens": 45125.0,
151
+ "step": 55,
152
+ "train_runtime": 70.6806,
153
+ "train_tokens_per_second": 638.435
154
+ },
155
+ {
156
+ "entropy": 2.0804291367530823,
157
+ "epoch": 0.12,
158
+ "grad_norm": 6.0,
159
+ "learning_rate": 1.9596587095773496e-05,
160
+ "loss": 0.3692,
161
+ "mean_token_accuracy": 0.888221287727356,
162
+ "num_input_tokens_seen": 49426,
163
+ "num_tokens": 49426.0,
164
+ "step": 60,
165
+ "train_runtime": 73.2615,
166
+ "train_tokens_per_second": 674.652
167
+ },
168
+ {
169
+ "entropy": 2.3786060571670533,
170
+ "epoch": 0.13,
171
+ "grad_norm": 52.25,
172
+ "learning_rate": 1.950050699546116e-05,
173
+ "loss": 0.5333,
174
+ "mean_token_accuracy": 0.844174611568451,
175
+ "num_input_tokens_seen": 52776,
176
+ "num_tokens": 52776.0,
177
+ "step": 65,
178
+ "train_runtime": 75.5797,
179
+ "train_tokens_per_second": 698.283
180
+ },
181
+ {
182
+ "entropy": 3.5936172008514404,
183
+ "epoch": 0.14,
184
+ "grad_norm": 10.4375,
185
+ "learning_rate": 1.9394462175245382e-05,
186
+ "loss": 0.3433,
187
+ "mean_token_accuracy": 0.9040402054786683,
188
+ "num_input_tokens_seen": 58224,
189
+ "num_tokens": 58224.0,
190
+ "step": 70,
191
+ "train_runtime": 78.4088,
192
+ "train_tokens_per_second": 742.57
193
+ },
194
+ {
195
+ "entropy": 3.5159372806549074,
196
+ "epoch": 0.15,
197
+ "grad_norm": 8.5,
198
+ "learning_rate": 1.9278563861498726e-05,
199
+ "loss": 0.4922,
200
+ "mean_token_accuracy": 0.8572691679000854,
201
+ "num_input_tokens_seen": 61751,
202
+ "num_tokens": 61751.0,
203
+ "step": 75,
204
+ "train_runtime": 80.8265,
205
+ "train_tokens_per_second": 763.995
206
+ },
207
+ {
208
+ "entropy": 2.106823134422302,
209
+ "epoch": 0.16,
210
+ "grad_norm": 9.0,
211
+ "learning_rate": 1.91529336155478e-05,
212
+ "loss": 0.3312,
213
+ "mean_token_accuracy": 0.8902272701263427,
214
+ "num_input_tokens_seen": 66370,
215
+ "num_tokens": 66370.0,
216
+ "step": 80,
217
+ "train_runtime": 83.4413,
218
+ "train_tokens_per_second": 795.409
219
+ },
220
+ {
221
+ "entropy": 2.849087345600128,
222
+ "epoch": 0.17,
223
+ "grad_norm": 4.34375,
224
+ "learning_rate": 1.9017703206172187e-05,
225
+ "loss": 0.3891,
226
+ "mean_token_accuracy": 0.8769482135772705,
227
+ "num_input_tokens_seen": 71825,
228
+ "num_tokens": 71825.0,
229
+ "step": 85,
230
+ "train_runtime": 86.2703,
231
+ "train_tokens_per_second": 832.558
232
+ },
233
+ {
234
+ "entropy": 0.9910945057868957,
235
+ "epoch": 0.18,
236
+ "grad_norm": 4.375,
237
+ "learning_rate": 1.8873014471397225e-05,
238
+ "loss": 0.2142,
239
+ "mean_token_accuracy": 0.9370332717895508,
240
+ "num_input_tokens_seen": 78620,
241
+ "num_tokens": 78620.0,
242
+ "step": 90,
243
+ "train_runtime": 89.3207,
244
+ "train_tokens_per_second": 880.199
245
+ },
246
+ {
247
+ "entropy": 1.6270696818828583,
248
+ "epoch": 0.19,
249
+ "grad_norm": 15.6875,
250
+ "learning_rate": 1.871901916972547e-05,
251
+ "loss": 0.2867,
252
+ "mean_token_accuracy": 0.91047682762146,
253
+ "num_input_tokens_seen": 81646,
254
+ "num_tokens": 81646.0,
255
+ "step": 95,
256
+ "train_runtime": 91.6169,
257
+ "train_tokens_per_second": 891.167
258
+ },
259
+ {
260
+ "entropy": 2.038286340236664,
261
+ "epoch": 0.2,
262
+ "grad_norm": 5.1875,
263
+ "learning_rate": 1.8555878820963014e-05,
264
+ "loss": 0.2827,
265
+ "mean_token_accuracy": 0.9124228358268738,
266
+ "num_input_tokens_seen": 85808,
267
+ "num_tokens": 85808.0,
268
+ "step": 100,
269
+ "train_runtime": 94.1424,
270
+ "train_tokens_per_second": 911.47
271
+ },
272
+ {
273
+ "entropy": 1.9634060263633728,
274
+ "epoch": 0.21,
275
+ "grad_norm": 34.0,
276
+ "learning_rate": 1.8383764536807486e-05,
277
+ "loss": 0.4848,
278
+ "mean_token_accuracy": 0.8574860453605652,
279
+ "num_input_tokens_seen": 89581,
280
+ "num_tokens": 89581.0,
281
+ "step": 105,
282
+ "train_runtime": 96.5271,
283
+ "train_tokens_per_second": 928.04
284
+ },
285
+ {
286
+ "entropy": 1.775536298751831,
287
+ "epoch": 0.22,
288
+ "grad_norm": 5.40625,
289
+ "learning_rate": 1.8202856841375517e-05,
290
+ "loss": 0.3573,
291
+ "mean_token_accuracy": 0.8958765864372253,
292
+ "num_input_tokens_seen": 92352,
293
+ "num_tokens": 92352.0,
294
+ "step": 110,
295
+ "train_runtime": 98.7649,
296
+ "train_tokens_per_second": 935.069
297
+ },
298
+ {
299
+ "entropy": 1.5104227304458617,
300
+ "epoch": 0.23,
301
+ "grad_norm": 8.6875,
302
+ "learning_rate": 1.8013345481857903e-05,
303
+ "loss": 0.3306,
304
+ "mean_token_accuracy": 0.8874430656433105,
305
+ "num_input_tokens_seen": 97262,
306
+ "num_tokens": 97262.0,
307
+ "step": 115,
308
+ "train_runtime": 101.4721,
309
+ "train_tokens_per_second": 958.51
310
+ },
311
+ {
312
+ "entropy": 1.6048516988754273,
313
+ "epoch": 0.24,
314
+ "grad_norm": 6.75,
315
+ "learning_rate": 1.7815429229500946e-05,
316
+ "loss": 0.2865,
317
+ "mean_token_accuracy": 0.9133572459220887,
318
+ "num_input_tokens_seen": 101680,
319
+ "num_tokens": 101680.0,
320
+ "step": 120,
321
+ "train_runtime": 104.0352,
322
+ "train_tokens_per_second": 977.361
323
+ },
324
+ {
325
+ "entropy": 1.5413621544837952,
326
+ "epoch": 0.25,
327
+ "grad_norm": 9.5,
328
+ "learning_rate": 1.7609315671122912e-05,
329
+ "loss": 0.4193,
330
+ "mean_token_accuracy": 0.8804891586303711,
331
+ "num_input_tokens_seen": 105845,
332
+ "num_tokens": 105845.0,
333
+ "step": 125,
334
+ "train_runtime": 106.5596,
335
+ "train_tokens_per_second": 993.293
336
+ },
337
+ {
338
+ "entropy": 0.7295441627502441,
339
+ "epoch": 0.26,
340
+ "grad_norm": 5.5,
341
+ "learning_rate": 1.739522099138411e-05,
342
+ "loss": 0.2694,
343
+ "mean_token_accuracy": 0.9172501802444458,
344
+ "num_input_tokens_seen": 110058,
345
+ "num_tokens": 110058.0,
346
+ "step": 130,
347
+ "train_runtime": 109.0787,
348
+ "train_tokens_per_second": 1008.978
349
+ },
350
+ {
351
+ "entropy": 0.8994132578372955,
352
+ "epoch": 0.27,
353
+ "grad_norm": 7.65625,
354
+ "learning_rate": 1.7173369746039026e-05,
355
+ "loss": 0.3696,
356
+ "mean_token_accuracy": 0.8766513228416443,
357
+ "num_input_tokens_seen": 115609,
358
+ "num_tokens": 115609.0,
359
+ "step": 135,
360
+ "train_runtime": 111.8977,
361
+ "train_tokens_per_second": 1033.167
362
+ },
363
+ {
364
+ "entropy": 1.00724515914917,
365
+ "epoch": 0.28,
366
+ "grad_norm": 9.625,
367
+ "learning_rate": 1.6943994626408365e-05,
368
+ "loss": 0.3011,
369
+ "mean_token_accuracy": 0.9135396718978882,
370
+ "num_input_tokens_seen": 119642,
371
+ "num_tokens": 119642.0,
372
+ "step": 140,
373
+ "train_runtime": 114.4392,
374
+ "train_tokens_per_second": 1045.464
375
+ },
376
+ {
377
+ "entropy": 0.5401971220970154,
378
+ "epoch": 0.29,
379
+ "grad_norm": 42.75,
380
+ "learning_rate": 1.6707336215317968e-05,
381
+ "loss": 0.334,
382
+ "mean_token_accuracy": 0.8978281736373901,
383
+ "num_input_tokens_seen": 124260,
384
+ "num_tokens": 124260.0,
385
+ "step": 145,
386
+ "train_runtime": 117.0247,
387
+ "train_tokens_per_second": 1061.827
388
+ },
389
+ {
390
+ "entropy": 0.5970407903194428,
391
+ "epoch": 0.3,
392
+ "grad_norm": 17.875,
393
+ "learning_rate": 1.646364273476067e-05,
394
+ "loss": 0.3841,
395
+ "mean_token_accuracy": 0.8826762557029724,
396
+ "num_input_tokens_seen": 129260,
397
+ "num_tokens": 129260.0,
398
+ "step": 150,
399
+ "train_runtime": 119.7547,
400
+ "train_tokens_per_second": 1079.373
401
+ },
402
+ {
403
+ "entropy": 0.6529799103736877,
404
+ "epoch": 0.31,
405
+ "grad_norm": 5.8125,
406
+ "learning_rate": 1.6213169785545688e-05,
407
+ "loss": 0.4827,
408
+ "mean_token_accuracy": 0.8586708188056946,
409
+ "num_input_tokens_seen": 132550,
410
+ "num_tokens": 132550.0,
411
+ "step": 155,
412
+ "train_runtime": 122.083,
413
+ "train_tokens_per_second": 1085.737
414
+ },
415
+ {
416
+ "entropy": 0.8556781709194183,
417
+ "epoch": 0.32,
418
+ "grad_norm": 12.6875,
419
+ "learning_rate": 1.5956180079208684e-05,
420
+ "loss": 0.3258,
421
+ "mean_token_accuracy": 0.899234139919281,
422
+ "num_input_tokens_seen": 137016,
423
+ "num_tokens": 137016.0,
424
+ "step": 160,
425
+ "train_runtime": 124.7137,
426
+ "train_tokens_per_second": 1098.644
427
+ },
428
+ {
429
+ "entropy": 1.3605871438980102,
430
+ "epoch": 0.33,
431
+ "grad_norm": 14.6875,
432
+ "learning_rate": 1.5692943162463628e-05,
433
+ "loss": 0.4556,
434
+ "mean_token_accuracy": 0.8675174951553345,
435
+ "num_input_tokens_seen": 140162,
436
+ "num_tokens": 140162.0,
437
+ "step": 165,
438
+ "train_runtime": 127.0736,
439
+ "train_tokens_per_second": 1102.998
440
+ },
441
+ {
442
+ "entropy": 1.3584325790405274,
443
+ "epoch": 0.34,
444
+ "grad_norm": 11.125,
445
+ "learning_rate": 1.5423735134485537e-05,
446
+ "loss": 0.3785,
447
+ "mean_token_accuracy": 0.884908127784729,
448
+ "num_input_tokens_seen": 144154,
449
+ "num_tokens": 144154.0,
450
+ "step": 170,
451
+ "train_runtime": 129.5953,
452
+ "train_tokens_per_second": 1112.34
453
+ },
454
+ {
455
+ "entropy": 1.1947744607925415,
456
+ "epoch": 0.35,
457
+ "grad_norm": 11.125,
458
+ "learning_rate": 1.5148838357320537e-05,
459
+ "loss": 0.5116,
460
+ "mean_token_accuracy": 0.8327634334564209,
461
+ "num_input_tokens_seen": 147793,
462
+ "num_tokens": 147793.0,
463
+ "step": 175,
464
+ "train_runtime": 132.0069,
465
+ "train_tokens_per_second": 1119.586
466
+ },
467
+ {
468
+ "entropy": 0.691273283958435,
469
+ "epoch": 0.36,
470
+ "grad_norm": 8.6875,
471
+ "learning_rate": 1.4868541159727097e-05,
472
+ "loss": 0.4557,
473
+ "mean_token_accuracy": 0.869376790523529,
474
+ "num_input_tokens_seen": 151710,
475
+ "num_tokens": 151710.0,
476
+ "step": 180,
477
+ "train_runtime": 134.5176,
478
+ "train_tokens_per_second": 1127.808
479
+ },
480
+ {
481
+ "entropy": 0.6039592266082764,
482
+ "epoch": 0.37,
483
+ "grad_norm": 6.53125,
484
+ "learning_rate": 1.4583137534758968e-05,
485
+ "loss": 0.3602,
486
+ "mean_token_accuracy": 0.8929054975509644,
487
+ "num_input_tokens_seen": 156235,
488
+ "num_tokens": 156235.0,
489
+ "step": 185,
490
+ "train_runtime": 137.1479,
491
+ "train_tokens_per_second": 1139.172
492
+ },
493
+ {
494
+ "entropy": 1.1752222299575805,
495
+ "epoch": 0.38,
496
+ "grad_norm": 7.59375,
497
+ "learning_rate": 1.429292683140706e-05,
498
+ "loss": 0.3343,
499
+ "mean_token_accuracy": 0.9040075540542603,
500
+ "num_input_tokens_seen": 160384,
501
+ "num_tokens": 160384.0,
502
+ "step": 190,
503
+ "train_runtime": 139.7132,
504
+ "train_tokens_per_second": 1147.952
505
+ },
506
+ {
507
+ "entropy": 0.49049092233181,
508
+ "epoch": 0.39,
509
+ "grad_norm": 15.3125,
510
+ "learning_rate": 1.3998213440623691e-05,
511
+ "loss": 0.2802,
512
+ "mean_token_accuracy": 0.9056740045547486,
513
+ "num_input_tokens_seen": 165232,
514
+ "num_tokens": 165232.0,
515
+ "step": 195,
516
+ "train_runtime": 142.3929,
517
+ "train_tokens_per_second": 1160.395
518
+ },
519
+ {
520
+ "entropy": 0.45642663538455963,
521
+ "epoch": 0.4,
522
+ "grad_norm": 3.84375,
523
+ "learning_rate": 1.3699306476058523e-05,
524
+ "loss": 0.243,
525
+ "mean_token_accuracy": 0.924269187450409,
526
+ "num_input_tokens_seen": 169212,
527
+ "num_tokens": 169212.0,
528
+ "step": 200,
529
+ "train_runtime": 144.8837,
530
+ "train_tokens_per_second": 1167.916
531
+ },
532
+ {
533
+ "entropy": 0.6119729101657867,
534
+ "epoch": 0.41,
535
+ "grad_norm": 13.75,
536
+ "learning_rate": 1.3396519449841006e-05,
537
+ "loss": 0.3785,
538
+ "mean_token_accuracy": 0.8857461333274841,
539
+ "num_input_tokens_seen": 173680,
540
+ "num_tokens": 173680.0,
541
+ "step": 205,
542
+ "train_runtime": 147.502,
543
+ "train_tokens_per_second": 1177.475
544
+ },
545
+ {
546
+ "entropy": 0.3425890028476715,
547
+ "epoch": 0.42,
548
+ "grad_norm": 2.71875,
549
+ "learning_rate": 1.3090169943749475e-05,
550
+ "loss": 0.3554,
551
+ "mean_token_accuracy": 0.8928213953971863,
552
+ "num_input_tokens_seen": 178944,
553
+ "num_tokens": 178944.0,
554
+ "step": 210,
555
+ "train_runtime": 150.2217,
556
+ "train_tokens_per_second": 1191.2
557
+ },
558
+ {
559
+ "entropy": 0.47310497164726256,
560
+ "epoch": 0.43,
561
+ "grad_norm": 6.6875,
562
+ "learning_rate": 1.2780579276111702e-05,
563
+ "loss": 0.3294,
564
+ "mean_token_accuracy": 0.8975471615791321,
565
+ "num_input_tokens_seen": 184031,
566
+ "num_tokens": 184031.0,
567
+ "step": 215,
568
+ "train_runtime": 152.9698,
569
+ "train_tokens_per_second": 1203.054
570
+ },
571
+ {
572
+ "entropy": 0.4975893020629883,
573
+ "epoch": 0.44,
574
+ "grad_norm": 14.6875,
575
+ "learning_rate": 1.2468072164786342e-05,
576
+ "loss": 0.4125,
577
+ "mean_token_accuracy": 0.8858692884445191,
578
+ "num_input_tokens_seen": 188268,
579
+ "num_tokens": 188268.0,
580
+ "step": 220,
581
+ "train_runtime": 155.6411,
582
+ "train_tokens_per_second": 1209.629
583
+ },
584
+ {
585
+ "entropy": 0.9669841468334198,
586
+ "epoch": 0.45,
587
+ "grad_norm": 6.96875,
588
+ "learning_rate": 1.215297638657875e-05,
589
+ "loss": 0.4774,
590
+ "mean_token_accuracy": 0.8559552788734436,
591
+ "num_input_tokens_seen": 193510,
592
+ "num_tokens": 193510.0,
593
+ "step": 225,
594
+ "train_runtime": 158.4801,
595
+ "train_tokens_per_second": 1221.037
596
+ },
597
+ {
598
+ "entropy": 1.1044464826583862,
599
+ "epoch": 0.46,
600
+ "grad_norm": 31.75,
601
+ "learning_rate": 1.1835622433448361e-05,
602
+ "loss": 0.4524,
603
+ "mean_token_accuracy": 0.8517592191696167,
604
+ "num_input_tokens_seen": 197386,
605
+ "num_tokens": 197386.0,
606
+ "step": 230,
607
+ "train_runtime": 160.9307,
608
+ "train_tokens_per_second": 1226.528
609
+ },
610
+ {
611
+ "entropy": 0.7312864840030671,
612
+ "epoch": 0.47,
613
+ "grad_norm": 6.84375,
614
+ "learning_rate": 1.151634316586828e-05,
615
+ "loss": 0.4799,
616
+ "mean_token_accuracy": 0.8530717253684997,
617
+ "num_input_tokens_seen": 201250,
618
+ "num_tokens": 201250.0,
619
+ "step": 235,
620
+ "train_runtime": 163.4728,
621
+ "train_tokens_per_second": 1231.092
622
+ },
623
+ {
624
+ "entropy": 0.9152665376663208,
625
+ "epoch": 0.48,
626
+ "grad_norm": 9.75,
627
+ "learning_rate": 1.119547346370059e-05,
628
+ "loss": 0.5162,
629
+ "mean_token_accuracy": 0.8369959235191345,
630
+ "num_input_tokens_seen": 204456,
631
+ "num_tokens": 204456.0,
632
+ "step": 240,
633
+ "train_runtime": 165.817,
634
+ "train_tokens_per_second": 1233.022
635
+ },
636
+ {
637
+ "entropy": 0.3133948802947998,
638
+ "epoch": 0.49,
639
+ "grad_norm": 3.65625,
640
+ "learning_rate": 1.087334987495364e-05,
641
+ "loss": 0.2908,
642
+ "mean_token_accuracy": 0.9040228486061096,
643
+ "num_input_tokens_seen": 211253,
644
+ "num_tokens": 211253.0,
645
+ "step": 245,
646
+ "train_runtime": 168.8822,
647
+ "train_tokens_per_second": 1250.89
648
+ },
649
+ {
650
+ "entropy": 1.0434356153011322,
651
+ "epoch": 0.5,
652
+ "grad_norm": 19.625,
653
+ "learning_rate": 1.055031026278965e-05,
654
+ "loss": 0.3272,
655
+ "mean_token_accuracy": 0.887370252609253,
656
+ "num_input_tokens_seen": 216724,
657
+ "num_tokens": 216724.0,
658
+ "step": 250,
659
+ "train_runtime": 171.7262,
660
+ "train_tokens_per_second": 1262.033
661
+ },
662
+ {
663
+ "entropy": 0.2794555306434631,
664
+ "epoch": 0.51,
665
+ "grad_norm": 4.875,
666
+ "learning_rate": 1.02266934511529e-05,
667
+ "loss": 0.2826,
668
+ "mean_token_accuracy": 0.9088755249977112,
669
+ "num_input_tokens_seen": 222416,
670
+ "num_tokens": 222416.0,
671
+ "step": 255,
672
+ "train_runtime": 174.5262,
673
+ "train_tokens_per_second": 1274.399
674
+ },
675
+ {
676
+ "entropy": 0.3180317282676697,
677
+ "epoch": 0.52,
678
+ "grad_norm": 4.71875,
679
+ "learning_rate": 9.90283886939023e-06,
680
+ "loss": 0.2928,
681
+ "mean_token_accuracy": 0.9024029850959778,
682
+ "num_input_tokens_seen": 227244,
683
+ "num_tokens": 227244.0,
684
+ "step": 260,
685
+ "train_runtime": 177.1886,
686
+ "train_tokens_per_second": 1282.498
687
+ },
688
+ {
689
+ "entropy": 0.6288993656635284,
690
+ "epoch": 0.53,
691
+ "grad_norm": 10.125,
692
+ "learning_rate": 9.579086196236483e-06,
693
+ "loss": 0.5484,
694
+ "mean_token_accuracy": 0.8212805986404419,
695
+ "num_input_tokens_seen": 230180,
696
+ "num_tokens": 230180.0,
697
+ "step": 265,
698
+ "train_runtime": 179.4447,
699
+ "train_tokens_per_second": 1282.735
700
+ },
701
+ {
702
+ "entropy": 0.6958479404449462,
703
+ "epoch": 0.54,
704
+ "grad_norm": 8.3125,
705
+ "learning_rate": 9.255775003538462e-06,
706
+ "loss": 0.4021,
707
+ "mean_token_accuracy": 0.8744520783424378,
708
+ "num_input_tokens_seen": 233108,
709
+ "num_tokens": 233108.0,
710
+ "step": 270,
711
+ "train_runtime": 181.7241,
712
+ "train_tokens_per_second": 1282.758
713
+ },
714
+ {
715
+ "entropy": 0.6523207008838654,
716
+ "epoch": 0.55,
717
+ "grad_norm": 3.359375,
718
+ "learning_rate": 8.933244400090937e-06,
719
+ "loss": 0.2467,
720
+ "mean_token_accuracy": 0.9232385158538818,
721
+ "num_input_tokens_seen": 239685,
722
+ "num_tokens": 239685.0,
723
+ "step": 275,
724
+ "train_runtime": 184.7242,
725
+ "train_tokens_per_second": 1297.529
726
+ },
727
+ {
728
+ "entropy": 0.670277139544487,
729
+ "epoch": 0.56,
730
+ "grad_norm": 10.375,
731
+ "learning_rate": 8.611832675958335e-06,
732
+ "loss": 0.4696,
733
+ "mean_token_accuracy": 0.856619131565094,
734
+ "num_input_tokens_seen": 243110,
735
+ "num_tokens": 243110.0,
736
+ "step": 280,
737
+ "train_runtime": 187.1388,
738
+ "train_tokens_per_second": 1299.089
739
+ },
740
+ {
741
+ "entropy": 0.5471946001052856,
742
+ "epoch": 0.57,
743
+ "grad_norm": 55.0,
744
+ "learning_rate": 8.291876947655197e-06,
745
+ "loss": 0.4469,
746
+ "mean_token_accuracy": 0.8535593390464783,
747
+ "num_input_tokens_seen": 247528,
748
+ "num_tokens": 247528.0,
749
+ "step": 285,
750
+ "train_runtime": 189.7769,
751
+ "train_tokens_per_second": 1304.311
752
+ },
753
+ {
754
+ "entropy": 0.3831256806850433,
755
+ "epoch": 0.58,
756
+ "grad_norm": 5.125,
757
+ "learning_rate": 7.9737128045575e-06,
758
+ "loss": 0.334,
759
+ "mean_token_accuracy": 0.8906423330307007,
760
+ "num_input_tokens_seen": 252416,
761
+ "num_tokens": 252416.0,
762
+ "step": 290,
763
+ "train_runtime": 192.4368,
764
+ "train_tokens_per_second": 1311.683
765
+ },
766
+ {
767
+ "entropy": 0.39651446640491483,
768
+ "epoch": 0.59,
769
+ "grad_norm": 12.625,
770
+ "learning_rate": 7.657673956915735e-06,
771
+ "loss": 0.332,
772
+ "mean_token_accuracy": 0.9020482778549195,
773
+ "num_input_tokens_seen": 257998,
774
+ "num_tokens": 257998.0,
775
+ "step": 295,
776
+ "train_runtime": 195.2753,
777
+ "train_tokens_per_second": 1321.201
778
+ },
779
+ {
780
+ "entropy": 0.4273271858692169,
781
+ "epoch": 0.6,
782
+ "grad_norm": 6.15625,
783
+ "learning_rate": 7.344091885838949e-06,
784
+ "loss": 0.3462,
785
+ "mean_token_accuracy": 0.8952762126922608,
786
+ "num_input_tokens_seen": 262326,
787
+ "num_tokens": 262326.0,
788
+ "step": 300,
789
+ "train_runtime": 197.861,
790
+ "train_tokens_per_second": 1325.81
791
+ },
792
+ {
793
+ "entropy": 0.29413761496543883,
794
+ "epoch": 0.61,
795
+ "grad_norm": 6.6875,
796
+ "learning_rate": 7.033295495616834e-06,
797
+ "loss": 0.2557,
798
+ "mean_token_accuracy": 0.9186268091201782,
799
+ "num_input_tokens_seen": 267582,
800
+ "num_tokens": 267582.0,
801
+ "step": 305,
802
+ "train_runtime": 200.6458,
803
+ "train_tokens_per_second": 1333.604
804
+ },
805
+ {
806
+ "entropy": 0.8326136410236359,
807
+ "epoch": 0.62,
808
+ "grad_norm": 4.375,
809
+ "learning_rate": 6.725610768744535e-06,
810
+ "loss": 0.4105,
811
+ "mean_token_accuracy": 0.8623612403869629,
812
+ "num_input_tokens_seen": 272200,
813
+ "num_tokens": 272200.0,
814
+ "step": 310,
815
+ "train_runtime": 203.284,
816
+ "train_tokens_per_second": 1339.013
817
+ },
818
+ {
819
+ "entropy": 0.5061671316623688,
820
+ "epoch": 0.63,
821
+ "grad_norm": 11.625,
822
+ "learning_rate": 6.421360424012039e-06,
823
+ "loss": 0.388,
824
+ "mean_token_accuracy": 0.8867331266403198,
825
+ "num_input_tokens_seen": 275904,
826
+ "num_tokens": 275904.0,
827
+ "step": 315,
828
+ "train_runtime": 205.7058,
829
+ "train_tokens_per_second": 1341.256
830
+ },
831
+ {
832
+ "entropy": 0.46229581236839296,
833
+ "epoch": 0.64,
834
+ "grad_norm": 5.09375,
835
+ "learning_rate": 6.120863578016736e-06,
836
+ "loss": 0.3408,
837
+ "mean_token_accuracy": 0.8920576095581054,
838
+ "num_input_tokens_seen": 279452,
839
+ "num_tokens": 279452.0,
840
+ "step": 320,
841
+ "train_runtime": 208.0951,
842
+ "train_tokens_per_second": 1342.905
843
+ },
844
+ {
845
+ "entropy": 0.38839916586875917,
846
+ "epoch": 0.65,
847
+ "grad_norm": 3.421875,
848
+ "learning_rate": 5.82443541045415e-06,
849
+ "loss": 0.3633,
850
+ "mean_token_accuracy": 0.8919775366783143,
851
+ "num_input_tokens_seen": 282480,
852
+ "num_tokens": 282480.0,
853
+ "step": 325,
854
+ "train_runtime": 210.4335,
855
+ "train_tokens_per_second": 1342.372
856
+ },
857
+ {
858
+ "entropy": 0.4262740671634674,
859
+ "epoch": 0.66,
860
+ "grad_norm": 6.96875,
861
+ "learning_rate": 5.5323868335379775e-06,
862
+ "loss": 0.1888,
863
+ "mean_token_accuracy": 0.9332632660865784,
864
+ "num_input_tokens_seen": 286126,
865
+ "num_tokens": 286126.0,
866
+ "step": 330,
867
+ "train_runtime": 212.9061,
868
+ "train_tokens_per_second": 1343.907
869
+ },
870
+ {
871
+ "entropy": 0.5601199686527252,
872
+ "epoch": 0.67,
873
+ "grad_norm": 9.9375,
874
+ "learning_rate": 5.245024165896126e-06,
875
+ "loss": 0.3555,
876
+ "mean_token_accuracy": 0.8886765837669373,
877
+ "num_input_tokens_seen": 289732,
878
+ "num_tokens": 289732.0,
879
+ "step": 335,
880
+ "train_runtime": 215.3015,
881
+ "train_tokens_per_second": 1345.704
882
+ },
883
+ {
884
+ "entropy": 0.5852712333202362,
885
+ "epoch": 0.68,
886
+ "grad_norm": 3.8125,
887
+ "learning_rate": 4.9626488112847384e-06,
888
+ "loss": 0.3912,
889
+ "mean_token_accuracy": 0.8769573211669922,
890
+ "num_input_tokens_seen": 295490,
891
+ "num_tokens": 295490.0,
892
+ "step": 340,
893
+ "train_runtime": 218.1472,
894
+ "train_tokens_per_second": 1354.544
895
+ },
896
+ {
897
+ "entropy": 0.8315090477466583,
898
+ "epoch": 0.69,
899
+ "grad_norm": 14.0,
900
+ "learning_rate": 4.685556942457296e-06,
901
+ "loss": 0.568,
902
+ "mean_token_accuracy": 0.8297129511833191,
903
+ "num_input_tokens_seen": 299015,
904
+ "num_tokens": 299015.0,
905
+ "step": 345,
906
+ "train_runtime": 220.5146,
907
+ "train_tokens_per_second": 1355.987
908
+ },
909
+ {
910
+ "entropy": 0.7352282881736756,
911
+ "epoch": 0.7,
912
+ "grad_norm": 4.875,
913
+ "learning_rate": 4.414039190520308e-06,
914
+ "loss": 0.4531,
915
+ "mean_token_accuracy": 0.8616520643234253,
916
+ "num_input_tokens_seen": 301596,
917
+ "num_tokens": 301596.0,
918
+ "step": 350,
919
+ "train_runtime": 222.7275,
920
+ "train_tokens_per_second": 1354.103
921
+ },
922
+ {
923
+ "entropy": 0.8405511379241943,
924
+ "epoch": 0.71,
925
+ "grad_norm": 8.5,
926
+ "learning_rate": 4.14838034010138e-06,
927
+ "loss": 0.3854,
928
+ "mean_token_accuracy": 0.8817270874977112,
929
+ "num_input_tokens_seen": 304601,
930
+ "num_tokens": 304601.0,
931
+ "step": 355,
932
+ "train_runtime": 225.0321,
933
+ "train_tokens_per_second": 1353.589
934
+ },
935
+ {
936
+ "entropy": 0.5560254514217376,
937
+ "epoch": 0.72,
938
+ "grad_norm": 8.375,
939
+ "learning_rate": 3.888859030649498e-06,
940
+ "loss": 0.379,
941
+ "mean_token_accuracy": 0.8813069701194763,
942
+ "num_input_tokens_seen": 307944,
943
+ "num_tokens": 307944.0,
944
+ "step": 360,
945
+ "train_runtime": 227.4633,
946
+ "train_tokens_per_second": 1353.818
947
+ },
948
+ {
949
+ "entropy": 0.5684987097978592,
950
+ "epoch": 0.73,
951
+ "grad_norm": 5.8125,
952
+ "learning_rate": 3.63574746418072e-06,
953
+ "loss": 0.329,
954
+ "mean_token_accuracy": 0.8944082856178284,
955
+ "num_input_tokens_seen": 311082,
956
+ "num_tokens": 311082.0,
957
+ "step": 365,
958
+ "train_runtime": 229.7563,
959
+ "train_tokens_per_second": 1353.965
960
+ },
961
+ {
962
+ "entropy": 0.5046725153923035,
963
+ "epoch": 0.74,
964
+ "grad_norm": 15.6875,
965
+ "learning_rate": 3.3893111197758276e-06,
966
+ "loss": 0.3795,
967
+ "mean_token_accuracy": 0.8841215133666992,
968
+ "num_input_tokens_seen": 314566,
969
+ "num_tokens": 314566.0,
970
+ "step": 370,
971
+ "train_runtime": 232.0872,
972
+ "train_tokens_per_second": 1355.379
973
+ },
974
+ {
975
+ "entropy": 0.4979218304157257,
976
+ "epoch": 0.75,
977
+ "grad_norm": 10.375,
978
+ "learning_rate": 3.1498084751294523e-06,
979
+ "loss": 0.3802,
980
+ "mean_token_accuracy": 0.8899975538253784,
981
+ "num_input_tokens_seen": 318700,
982
+ "num_tokens": 318700.0,
983
+ "step": 375,
984
+ "train_runtime": 234.621,
985
+ "train_tokens_per_second": 1358.361
986
+ },
987
+ {
988
+ "entropy": 0.9946581959724426,
989
+ "epoch": 0.76,
990
+ "grad_norm": 7.75,
991
+ "learning_rate": 2.9174907354426696e-06,
992
+ "loss": 0.4987,
993
+ "mean_token_accuracy": 0.8541815996170044,
994
+ "num_input_tokens_seen": 321552,
995
+ "num_tokens": 321552.0,
996
+ "step": 380,
997
+ "train_runtime": 236.909,
998
+ "train_tokens_per_second": 1357.281
999
+ },
1000
+ {
1001
+ "entropy": 0.5532813727855682,
1002
+ "epoch": 0.77,
1003
+ "grad_norm": 7.0625,
1004
+ "learning_rate": 2.692601569943407e-06,
1005
+ "loss": 0.3382,
1006
+ "mean_token_accuracy": 0.8951536297798157,
1007
+ "num_input_tokens_seen": 323895,
1008
+ "num_tokens": 323895.0,
1009
+ "step": 385,
1010
+ "train_runtime": 239.1019,
1011
+ "train_tokens_per_second": 1354.632
1012
+ },
1013
+ {
1014
+ "entropy": 0.8350813835859299,
1015
+ "epoch": 0.78,
1016
+ "grad_norm": 13.1875,
1017
+ "learning_rate": 2.475376856311097e-06,
1018
+ "loss": 0.466,
1019
+ "mean_token_accuracy": 0.863529098033905,
1020
+ "num_input_tokens_seen": 331802,
1021
+ "num_tokens": 331802.0,
1022
+ "step": 390,
1023
+ "train_runtime": 242.4637,
1024
+ "train_tokens_per_second": 1368.461
1025
+ },
1026
+ {
1027
+ "entropy": 0.6075281083583832,
1028
+ "epoch": 0.79,
1029
+ "grad_norm": 13.125,
1030
+ "learning_rate": 2.266044433273562e-06,
1031
+ "loss": 0.302,
1032
+ "mean_token_accuracy": 0.9050341606140136,
1033
+ "num_input_tokens_seen": 336078,
1034
+ "num_tokens": 336078.0,
1035
+ "step": 395,
1036
+ "train_runtime": 245.0273,
1037
+ "train_tokens_per_second": 1371.594
1038
+ },
1039
+ {
1040
+ "entropy": 0.6790629208087922,
1041
+ "epoch": 0.8,
1042
+ "grad_norm": 6.90625,
1043
+ "learning_rate": 2.064823861635633e-06,
1044
+ "loss": 0.3397,
1045
+ "mean_token_accuracy": 0.8993703126907349,
1046
+ "num_input_tokens_seen": 342134,
1047
+ "num_tokens": 342134.0,
1048
+ "step": 400,
1049
+ "train_runtime": 248.0414,
1050
+ "train_tokens_per_second": 1379.342
1051
+ },
1052
+ {
1053
+ "entropy": 0.5511207699775695,
1054
+ "epoch": 0.81,
1055
+ "grad_norm": 12.3125,
1056
+ "learning_rate": 1.8719261939902023e-06,
1057
+ "loss": 0.2637,
1058
+ "mean_token_accuracy": 0.9192676782608032,
1059
+ "num_input_tokens_seen": 346820,
1060
+ "num_tokens": 346820.0,
1061
+ "step": 405,
1062
+ "train_runtime": 250.6779,
1063
+ "train_tokens_per_second": 1383.529
1064
+ },
1065
+ {
1066
+ "entropy": 0.5205666542053222,
1067
+ "epoch": 0.82,
1068
+ "grad_norm": 6.65625,
1069
+ "learning_rate": 1.687553753353195e-06,
1070
+ "loss": 0.3645,
1071
+ "mean_token_accuracy": 0.8808952808380127,
1072
+ "num_input_tokens_seen": 351616,
1073
+ "num_tokens": 351616.0,
1074
+ "step": 410,
1075
+ "train_runtime": 253.312,
1076
+ "train_tokens_per_second": 1388.075
1077
+ },
1078
+ {
1079
+ "entropy": 0.6745355784893036,
1080
+ "epoch": 0.83,
1081
+ "grad_norm": 6.5,
1082
+ "learning_rate": 1.511899920954656e-06,
1083
+ "loss": 0.3404,
1084
+ "mean_token_accuracy": 0.8947509765625,
1085
+ "num_input_tokens_seen": 355522,
1086
+ "num_tokens": 355522.0,
1087
+ "step": 415,
1088
+ "train_runtime": 255.8146,
1089
+ "train_tokens_per_second": 1389.764
1090
+ },
1091
+ {
1092
+ "entropy": 0.4722595751285553,
1093
+ "epoch": 0.84,
1094
+ "grad_norm": 14.3125,
1095
+ "learning_rate": 1.3451489334085555e-06,
1096
+ "loss": 0.4371,
1097
+ "mean_token_accuracy": 0.8792779207229614,
1098
+ "num_input_tokens_seen": 359166,
1099
+ "num_tokens": 359166.0,
1100
+ "step": 420,
1101
+ "train_runtime": 258.2177,
1102
+ "train_tokens_per_second": 1390.943
1103
+ },
1104
+ {
1105
+ "entropy": 0.9886871218681336,
1106
+ "epoch": 0.85,
1107
+ "grad_norm": 5.25,
1108
+ "learning_rate": 1.1874756894740137e-06,
1109
+ "loss": 0.4125,
1110
+ "mean_token_accuracy": 0.8851464509963989,
1111
+ "num_input_tokens_seen": 364544,
1112
+ "num_tokens": 364544.0,
1113
+ "step": 425,
1114
+ "train_runtime": 261.0586,
1115
+ "train_tokens_per_second": 1396.407
1116
+ },
1117
+ {
1118
+ "entropy": 0.9293424725532532,
1119
+ "epoch": 0.86,
1120
+ "grad_norm": 5.21875,
1121
+ "learning_rate": 1.0390455666106547e-06,
1122
+ "loss": 0.3954,
1123
+ "mean_token_accuracy": 0.8745028972625732,
1124
+ "num_input_tokens_seen": 370002,
1125
+ "num_tokens": 370002.0,
1126
+ "step": 430,
1127
+ "train_runtime": 263.9087,
1128
+ "train_tokens_per_second": 1402.007
1129
+ },
1130
+ {
1131
+ "entropy": 0.5260325253009797,
1132
+ "epoch": 0.87,
1133
+ "grad_norm": 10.4375,
1134
+ "learning_rate": 9.000142475204965e-07,
1135
+ "loss": 0.2916,
1136
+ "mean_token_accuracy": 0.9067874073982238,
1137
+ "num_input_tokens_seen": 375736,
1138
+ "num_tokens": 375736.0,
1139
+ "step": 435,
1140
+ "train_runtime": 266.7797,
1141
+ "train_tokens_per_second": 1408.413
1142
+ },
1143
+ {
1144
+ "entropy": 0.5771724641323089,
1145
+ "epoch": 0.88,
1146
+ "grad_norm": 4.96875,
1147
+ "learning_rate": 7.705275568582848e-07,
1148
+ "loss": 0.3105,
1149
+ "mean_token_accuracy": 0.908876633644104,
1150
+ "num_input_tokens_seen": 379930,
1151
+ "num_tokens": 379930.0,
1152
+ "step": 440,
1153
+ "train_runtime": 269.3582,
1154
+ "train_tokens_per_second": 1410.501
1155
+ },
1156
+ {
1157
+ "entropy": 0.5990758180618286,
1158
+ "epoch": 0.89,
1159
+ "grad_norm": 12.0,
1160
+ "learning_rate": 6.507213082815745e-07,
1161
+ "loss": 0.3247,
1162
+ "mean_token_accuracy": 0.8999800682067871,
1163
+ "num_input_tokens_seen": 383068,
1164
+ "num_tokens": 383068.0,
1165
+ "step": 445,
1166
+ "train_runtime": 271.6586,
1167
+ "train_tokens_per_second": 1410.108
1168
+ },
1169
+ {
1170
+ "entropy": 0.3203736484050751,
1171
+ "epoch": 0.9,
1172
+ "grad_norm": 4.34375,
1173
+ "learning_rate": 5.407211620009545e-07,
1174
+ "loss": 0.3401,
1175
+ "mean_token_accuracy": 0.8904389262199401,
1176
+ "num_input_tokens_seen": 388016,
1177
+ "num_tokens": 388016.0,
1178
+ "step": 450,
1179
+ "train_runtime": 274.3517,
1180
+ "train_tokens_per_second": 1414.301
1181
+ },
1182
+ {
1183
+ "entropy": 0.36918359696865083,
1184
+ "epoch": 0.91,
1185
+ "grad_norm": 4.375,
1186
+ "learning_rate": 4.406424929798403e-07,
1187
+ "loss": 0.2458,
1188
+ "mean_token_accuracy": 0.9116828203201294,
1189
+ "num_input_tokens_seen": 392392,
1190
+ "num_tokens": 392392.0,
1191
+ "step": 455,
1192
+ "train_runtime": 276.8995,
1193
+ "train_tokens_per_second": 1417.092
1194
+ },
1195
+ {
1196
+ "entropy": 0.6511303842067718,
1197
+ "epoch": 0.92,
1198
+ "grad_norm": 6.5625,
1199
+ "learning_rate": 3.5059026992206645e-07,
1200
+ "loss": 0.4391,
1201
+ "mean_token_accuracy": 0.8760095119476319,
1202
+ "num_input_tokens_seen": 395760,
1203
+ "num_tokens": 395760.0,
1204
+ "step": 460,
1205
+ "train_runtime": 279.2527,
1206
+ "train_tokens_per_second": 1417.211
1207
+ },
1208
+ {
1209
+ "entropy": 0.7154091179370881,
1210
+ "epoch": 0.93,
1211
+ "grad_norm": 10.125,
1212
+ "learning_rate": 2.706589451742181e-07,
1213
+ "loss": 0.3676,
1214
+ "mean_token_accuracy": 0.8919078826904296,
1215
+ "num_input_tokens_seen": 398977,
1216
+ "num_tokens": 398977.0,
1217
+ "step": 465,
1218
+ "train_runtime": 281.5974,
1219
+ "train_tokens_per_second": 1416.835
1220
+ },
1221
+ {
1222
+ "entropy": 0.4087792098522186,
1223
+ "epoch": 0.94,
1224
+ "grad_norm": 4.15625,
1225
+ "learning_rate": 2.009323556581566e-07,
1226
+ "loss": 0.3225,
1227
+ "mean_token_accuracy": 0.8970118045806885,
1228
+ "num_input_tokens_seen": 402758,
1229
+ "num_tokens": 402758.0,
1230
+ "step": 470,
1231
+ "train_runtime": 284.0365,
1232
+ "train_tokens_per_second": 1417.98
1233
+ },
1234
+ {
1235
+ "entropy": 0.8475154399871826,
1236
+ "epoch": 0.95,
1237
+ "grad_norm": 6.15625,
1238
+ "learning_rate": 1.4148363493766803e-07,
1239
+ "loss": 0.2751,
1240
+ "mean_token_accuracy": 0.9305037021636963,
1241
+ "num_input_tokens_seen": 405718,
1242
+ "num_tokens": 405718.0,
1243
+ "step": 475,
1244
+ "train_runtime": 286.3033,
1245
+ "train_tokens_per_second": 1417.092
1246
+ },
1247
+ {
1248
+ "entropy": 0.8792379856109619,
1249
+ "epoch": 0.96,
1250
+ "grad_norm": 7.84375,
1251
+ "learning_rate": 9.237513651145224e-08,
1252
+ "loss": 0.3242,
1253
+ "mean_token_accuracy": 0.886387574672699,
1254
+ "num_input_tokens_seen": 409156,
1255
+ "num_tokens": 409156.0,
1256
+ "step": 480,
1257
+ "train_runtime": 288.6685,
1258
+ "train_tokens_per_second": 1417.39
1259
+ },
1260
+ {
1261
+ "entropy": 0.6999157905578614,
1262
+ "epoch": 0.97,
1263
+ "grad_norm": 10.5,
1264
+ "learning_rate": 5.365836841291439e-08,
1265
+ "loss": 0.4644,
1266
+ "mean_token_accuracy": 0.8499702572822571,
1267
+ "num_input_tokens_seen": 411896,
1268
+ "num_tokens": 411896.0,
1269
+ "step": 485,
1270
+ "train_runtime": 290.8465,
1271
+ "train_tokens_per_second": 1416.197
1272
+ },
1273
+ {
1274
+ "entropy": 0.5511339485645295,
1275
+ "epoch": 0.98,
1276
+ "grad_norm": 4.75,
1277
+ "learning_rate": 2.537393918535358e-08,
1278
+ "loss": 0.3121,
1279
+ "mean_token_accuracy": 0.9038938760757447,
1280
+ "num_input_tokens_seen": 416390,
1281
+ "num_tokens": 416390.0,
1282
+ "step": 490,
1283
+ "train_runtime": 293.4783,
1284
+ "train_tokens_per_second": 1418.81
1285
+ },
1286
+ {
1287
+ "entropy": 0.8974492073059082,
1288
+ "epoch": 0.99,
1289
+ "grad_norm": 23.5,
1290
+ "learning_rate": 7.551515289203615e-09,
1291
+ "loss": 0.2867,
1292
+ "mean_token_accuracy": 0.9067962288856506,
1293
+ "num_input_tokens_seen": 420619,
1294
+ "num_tokens": 420619.0,
1295
+ "step": 495,
1296
+ "train_runtime": 296.0593,
1297
+ "train_tokens_per_second": 1420.725
1298
+ },
1299
+ {
1300
+ "entropy": 0.7672029852867126,
1301
+ "epoch": 1.0,
1302
+ "grad_norm": 29.75,
1303
+ "learning_rate": 2.0978998601206558e-10,
1304
+ "loss": 0.4602,
1305
+ "mean_token_accuracy": 0.8477967858314515,
1306
+ "num_input_tokens_seen": 424444,
1307
+ "num_tokens": 424444.0,
1308
+ "step": 500,
1309
+ "train_runtime": 298.5337,
1310
+ "train_tokens_per_second": 1421.763
1311
+ },
1312
+ {
1313
+ "epoch": 1.0,
1314
+ "num_input_tokens_seen": 424444,
1315
+ "step": 500,
1316
+ "total_flos": 1.972943710728192e+16,
1317
+ "train_loss": 0.3892666745185852,
1318
+ "train_runtime": 298.5529,
1319
+ "train_samples_per_second": 1.675,
1320
+ "train_steps_per_second": 1.675,
1321
+ "train_tokens_per_second": 2758.017
1322
+ }
1323
+ ],
1324
+ "logging_steps": 5,
1325
+ "max_steps": 500,
1326
+ "num_input_tokens_seen": 424444,
1327
+ "num_train_epochs": 1,
1328
+ "save_steps": 0,
1329
+ "stateful_callbacks": {
1330
+ "TrainerControl": {
1331
+ "args": {
1332
+ "should_epoch_stop": false,
1333
+ "should_evaluate": false,
1334
+ "should_log": false,
1335
+ "should_save": false,
1336
+ "should_training_stop": false
1337
+ },
1338
+ "attributes": {}
1339
+ }
1340
+ },
1341
+ "total_flos": 1.972943710728192e+16,
1342
+ "train_batch_size": 1,
1343
+ "trial_name": null,
1344
+ "trial_params": null
1345
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fecb476f6e32b58071a12f031b6e22b6f84db2cf2477b0ab37ac362e5a69726
3
+ size 6353
video_preprocessor_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "do_center_crop": null,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "do_sample_frames": false,
12
+ "fps": null,
13
+ "image_mean": [
14
+ 0.48145466,
15
+ 0.4578275,
16
+ 0.40821073
17
+ ],
18
+ "image_std": [
19
+ 0.26862954,
20
+ 0.26130258,
21
+ 0.27577711
22
+ ],
23
+ "input_data_format": null,
24
+ "max_frames": 768,
25
+ "max_pixels": 12845056,
26
+ "merge_size": 2,
27
+ "min_frames": 4,
28
+ "min_pixels": 3136,
29
+ "num_frames": null,
30
+ "pad_size": null,
31
+ "patch_size": 14,
32
+ "processor_class": "Qwen2_5_VLProcessor",
33
+ "resample": 3,
34
+ "rescale_factor": 0.00392156862745098,
35
+ "return_metadata": false,
36
+ "size": {
37
+ "longest_edge": 12845056,
38
+ "shortest_edge": 3136
39
+ },
40
+ "temporal_patch_size": 2,
41
+ "video_metadata": null,
42
+ "video_processor_type": "Qwen2VLVideoProcessor"
43
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff