Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- added_tokens.json +24 -0
- chat_template.json +3 -0
- config.json +65 -0
- generation_config.json +12 -0
- logs/rank_0000.log +0 -0
- logs/rank_0001.log +157 -0
- logs/rank_0002.log +157 -0
- logs/rank_0003.log +157 -0
- logs/rank_0004.log +157 -0
- logs/rank_0005.log +157 -0
- logs/rank_0006.log +157 -0
- logs/rank_0007.log +157 -0
- merges.txt +0 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +736 -0
- preprocessor_config.json +29 -0
- runs/Jul09_14-02-35_oumi-compute002/events.out.tfevents.1752069998.oumi-compute002.1141189.0 +3 -0
- runs/Jul09_14-55-28_oumi-compute002/events.out.tfevents.1752073113.oumi-compute002.1152358.0 +3 -0
- runs/Jul09_15-17-07_oumi-compute002/events.out.tfevents.1752074401.oumi-compute002.1159828.0 +3 -0
- special_tokens_map.json +31 -0
- telemetry/devices_info.txt +9 -0
- telemetry/telemetry_callback_metrics_rank0000.json +12 -0
- telemetry/telemetry_callback_rank0000.json +39 -0
- telemetry/telemetry_callback_wandb_rank0000.json +5 -0
- telemetry/training_config.yaml +206 -0
- telemetry/world_size.json +4 -0
- tokenizer.json +3 -0
- tokenizer_config.json +210 -0
- trainer_state.json +117 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.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.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{%- for message in messages -%}{%- if loop.first and message['role'] != 'system' -%}{{ '<|im_start|>system\\nYou are a helpful assistant.<|im_end|>\\n' }}{%- endif -%}{{ '<|im_start|>' + message['role'] + '\\n' }}{%- if message['content'] is string -%}{{- message['content'] -}}{%- 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 -%}"
|
| 3 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen2_5_VLForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 151643,
|
| 7 |
+
"eos_token_id": 151645,
|
| 8 |
+
"hidden_act": "silu",
|
| 9 |
+
"hidden_size": 3584,
|
| 10 |
+
"image_token_id": 151655,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 18944,
|
| 13 |
+
"max_position_embeddings": 128000,
|
| 14 |
+
"max_window_layers": 28,
|
| 15 |
+
"model_type": "qwen2_5_vl",
|
| 16 |
+
"num_attention_heads": 28,
|
| 17 |
+
"num_hidden_layers": 28,
|
| 18 |
+
"num_key_value_heads": 4,
|
| 19 |
+
"rms_norm_eps": 1e-06,
|
| 20 |
+
"rope_scaling": {
|
| 21 |
+
"mrope_section": [
|
| 22 |
+
16,
|
| 23 |
+
24,
|
| 24 |
+
24
|
| 25 |
+
],
|
| 26 |
+
"rope_type": "default",
|
| 27 |
+
"type": "default"
|
| 28 |
+
},
|
| 29 |
+
"rope_theta": 1000000.0,
|
| 30 |
+
"sliding_window": 32768,
|
| 31 |
+
"tie_word_embeddings": false,
|
| 32 |
+
"torch_dtype": "bfloat16",
|
| 33 |
+
"transformers_version": "4.51.3",
|
| 34 |
+
"use_cache": false,
|
| 35 |
+
"use_sliding_window": false,
|
| 36 |
+
"video_token_id": 151656,
|
| 37 |
+
"vision_config": {
|
| 38 |
+
"depth": 32,
|
| 39 |
+
"fullatt_block_indexes": [
|
| 40 |
+
7,
|
| 41 |
+
15,
|
| 42 |
+
23,
|
| 43 |
+
31
|
| 44 |
+
],
|
| 45 |
+
"hidden_act": "silu",
|
| 46 |
+
"hidden_size": 1280,
|
| 47 |
+
"in_channels": 3,
|
| 48 |
+
"in_chans": 3,
|
| 49 |
+
"intermediate_size": 3420,
|
| 50 |
+
"model_type": "qwen2_5_vl",
|
| 51 |
+
"num_heads": 16,
|
| 52 |
+
"out_hidden_size": 3584,
|
| 53 |
+
"patch_size": 14,
|
| 54 |
+
"spatial_merge_size": 2,
|
| 55 |
+
"spatial_patch_size": 14,
|
| 56 |
+
"temporal_patch_size": 2,
|
| 57 |
+
"tokens_per_second": 2,
|
| 58 |
+
"torch_dtype": "bfloat16",
|
| 59 |
+
"window_size": 112
|
| 60 |
+
},
|
| 61 |
+
"vision_end_token_id": 151653,
|
| 62 |
+
"vision_start_token_id": 151652,
|
| 63 |
+
"vision_token_id": 151654,
|
| 64 |
+
"vocab_size": 152064
|
| 65 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"repetition_penalty": 1.05,
|
| 10 |
+
"temperature": 1e-06,
|
| 11 |
+
"transformers_version": "4.51.3"
|
| 12 |
+
}
|
logs/rank_0000.log
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
logs/rank_0001.log
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 13:32:43,835][oumi][rank1][pid:1132651][MainThread][INFO]][models.py:433] 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.
|
| 2 |
+
[2025-07-09 13:32:45,405][oumi][rank1][pid:1132651][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 3 |
+
[2025-07-09 13:32:49,854][oumi][rank1][pid:1132651][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 4 |
+
[2025-07-09 13:32:49,854][oumi][rank1][pid:1132651][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 5 |
+
[2025-07-09 13:32:50,450][oumi][rank1][pid:1132651][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 6 |
+
Split: train
|
| 7 |
+
Version: 0.0.0
|
| 8 |
+
Dataset size: 86589729
|
| 9 |
+
Download size: 77602134
|
| 10 |
+
Size: 164191863 bytes
|
| 11 |
+
Rows: 778
|
| 12 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 13 |
+
[2025-07-09 13:32:52,746][oumi][rank1][pid:1132651][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 14 |
+
question object
|
| 15 |
+
answer object
|
| 16 |
+
image_synthesis_code object
|
| 17 |
+
solution object
|
| 18 |
+
image object
|
| 19 |
+
dtype: object
|
| 20 |
+
[2025-07-09 13:33:04,003][oumi][rank1][pid:1132651][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1)
|
| 21 |
+
[2025-07-09 13:33:04,004][oumi][rank1][pid:1132651][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 22 |
+
[2025-07-09 13:33:04,005][oumi][rank1][pid:1132651][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 23 |
+
[2025-07-09 13:33:04,005][oumi][rank1][pid:1132651][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1))...
|
| 24 |
+
[2025-07-09 13:33:04,048][oumi][rank1][pid:1132651][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 25 |
+
[2025-07-09 13:33:07,154][oumi][rank1][pid:1132651][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 26 |
+
[2025-07-09 13:33:07,154][oumi][rank1][pid:1132651][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 27 |
+
[2025-07-09 13:33:07,574][oumi][rank1][pid:1132651][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.549, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 28 |
+
[2025-07-09 13:33:07,780][oumi][rank1][pid:1132651][MainThread][INFO]][train.py:506] Training init time: 24.023s
|
| 29 |
+
[2025-07-09 13:33:07,781][oumi][rank1][pid:1132651][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 30 |
+
[2025-07-09 13:53:48,662][oumi][rank1][pid:1137608][MainThread][INFO]][models.py:433] 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.
|
| 31 |
+
[2025-07-09 13:53:50,199][oumi][rank1][pid:1137608][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 32 |
+
[2025-07-09 13:53:54,736][oumi][rank1][pid:1137608][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 33 |
+
[2025-07-09 13:53:54,736][oumi][rank1][pid:1137608][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 34 |
+
[2025-07-09 13:53:55,283][oumi][rank1][pid:1137608][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 35 |
+
Split: train
|
| 36 |
+
Version: 0.0.0
|
| 37 |
+
Dataset size: 86589729
|
| 38 |
+
Download size: 77602134
|
| 39 |
+
Size: 164191863 bytes
|
| 40 |
+
Rows: 778
|
| 41 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 42 |
+
[2025-07-09 13:53:57,671][oumi][rank1][pid:1137608][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 43 |
+
question object
|
| 44 |
+
answer object
|
| 45 |
+
image_synthesis_code object
|
| 46 |
+
solution object
|
| 47 |
+
image object
|
| 48 |
+
dtype: object
|
| 49 |
+
[2025-07-09 13:54:09,973][oumi][rank1][pid:1137608][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1)
|
| 50 |
+
[2025-07-09 13:54:09,974][oumi][rank1][pid:1137608][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 51 |
+
[2025-07-09 13:54:09,974][oumi][rank1][pid:1137608][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 52 |
+
[2025-07-09 13:54:09,974][oumi][rank1][pid:1137608][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1))...
|
| 53 |
+
[2025-07-09 13:54:10,001][oumi][rank1][pid:1137608][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 54 |
+
[2025-07-09 13:54:13,231][oumi][rank1][pid:1137608][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 55 |
+
[2025-07-09 13:54:13,232][oumi][rank1][pid:1137608][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 56 |
+
[2025-07-09 13:54:13,750][oumi][rank1][pid:1137608][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.48100000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 57 |
+
[2025-07-09 13:54:13,825][oumi][rank1][pid:1137608][MainThread][INFO]][train.py:506] Training init time: 25.227s
|
| 58 |
+
[2025-07-09 13:54:13,825][oumi][rank1][pid:1137608][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 59 |
+
[2025-07-09 14:02:11,522][oumi][rank1][pid:1141190][MainThread][INFO]][models.py:433] 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.
|
| 60 |
+
[2025-07-09 14:02:13,069][oumi][rank1][pid:1141190][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 61 |
+
[2025-07-09 14:02:17,581][oumi][rank1][pid:1141190][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 62 |
+
[2025-07-09 14:02:17,581][oumi][rank1][pid:1141190][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 63 |
+
[2025-07-09 14:02:18,113][oumi][rank1][pid:1141190][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 64 |
+
Split: train
|
| 65 |
+
Version: 0.0.0
|
| 66 |
+
Dataset size: 86589729
|
| 67 |
+
Download size: 77602134
|
| 68 |
+
Size: 164191863 bytes
|
| 69 |
+
Rows: 778
|
| 70 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 71 |
+
[2025-07-09 14:02:20,380][oumi][rank1][pid:1141190][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 72 |
+
question object
|
| 73 |
+
answer object
|
| 74 |
+
image_synthesis_code object
|
| 75 |
+
solution object
|
| 76 |
+
image object
|
| 77 |
+
dtype: object
|
| 78 |
+
[2025-07-09 14:02:31,501][oumi][rank1][pid:1141190][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1)
|
| 79 |
+
[2025-07-09 14:02:31,501][oumi][rank1][pid:1141190][MainThread][INFO]][train.py:402] 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'}
|
| 80 |
+
[2025-07-09 14:02:31,501][oumi][rank1][pid:1141190][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 81 |
+
[2025-07-09 14:02:31,501][oumi][rank1][pid:1141190][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1))...
|
| 82 |
+
[2025-07-09 14:02:31,537][oumi][rank1][pid:1141190][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 83 |
+
[2025-07-09 14:02:34,872][oumi][rank1][pid:1141190][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 84 |
+
[2025-07-09 14:02:34,872][oumi][rank1][pid:1141190][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 85 |
+
[2025-07-09 14:02:35,399][oumi][rank1][pid:1141190][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.53, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 86 |
+
[2025-07-09 14:02:35,478][oumi][rank1][pid:1141190][MainThread][INFO]][train.py:506] Training init time: 24.021s
|
| 87 |
+
[2025-07-09 14:02:35,478][oumi][rank1][pid:1141190][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 88 |
+
[2025-07-09 14:55:03,136][oumi][rank1][pid:1152359][MainThread][INFO]][models.py:433] 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.
|
| 89 |
+
[2025-07-09 14:55:04,715][oumi][rank1][pid:1152359][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 90 |
+
[2025-07-09 14:55:09,245][oumi][rank1][pid:1152359][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 91 |
+
[2025-07-09 14:55:09,245][oumi][rank1][pid:1152359][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 92 |
+
[2025-07-09 14:55:10,669][oumi][rank1][pid:1152359][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 93 |
+
Split: train
|
| 94 |
+
Version: 0.0.0
|
| 95 |
+
Dataset size: 49430293
|
| 96 |
+
Download size: 43750929
|
| 97 |
+
Size: 93181222 bytes
|
| 98 |
+
Rows: 598
|
| 99 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 100 |
+
[2025-07-09 14:55:12,915][oumi][rank1][pid:1152359][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 101 |
+
question object
|
| 102 |
+
answer object
|
| 103 |
+
image_synthesis_code object
|
| 104 |
+
solution object
|
| 105 |
+
image object
|
| 106 |
+
dtype: object
|
| 107 |
+
[2025-07-09 14:55:24,721][oumi][rank1][pid:1152359][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1)
|
| 108 |
+
[2025-07-09 14:55:24,721][oumi][rank1][pid:1152359][MainThread][INFO]][train.py:402] 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'}
|
| 109 |
+
[2025-07-09 14:55:24,721][oumi][rank1][pid:1152359][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 110 |
+
[2025-07-09 14:55:24,721][oumi][rank1][pid:1152359][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1))...
|
| 111 |
+
[2025-07-09 14:55:24,747][oumi][rank1][pid:1152359][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 112 |
+
[2025-07-09 14:55:27,956][oumi][rank1][pid:1152359][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 113 |
+
[2025-07-09 14:55:27,956][oumi][rank1][pid:1152359][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 114 |
+
[2025-07-09 14:55:28,392][oumi][rank1][pid:1152359][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6338.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.402, power_limit_watts=700.0, gpu_utilization=1, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 115 |
+
[2025-07-09 14:55:28,466][oumi][rank1][pid:1152359][MainThread][INFO]][train.py:506] Training init time: 25.399s
|
| 116 |
+
[2025-07-09 14:55:28,466][oumi][rank1][pid:1152359][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 117 |
+
[2025-07-09 15:16:43,473][oumi][rank1][pid:1159829][MainThread][INFO]][models.py:433] 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.
|
| 118 |
+
[2025-07-09 15:16:44,967][oumi][rank1][pid:1159829][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 119 |
+
[2025-07-09 15:16:49,528][oumi][rank1][pid:1159829][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 120 |
+
[2025-07-09 15:16:49,528][oumi][rank1][pid:1159829][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 121 |
+
[2025-07-09 15:16:50,147][oumi][rank1][pid:1159829][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 122 |
+
Split: train
|
| 123 |
+
Version: 0.0.0
|
| 124 |
+
Dataset size: 49430293
|
| 125 |
+
Download size: 43750929
|
| 126 |
+
Size: 93181222 bytes
|
| 127 |
+
Rows: 598
|
| 128 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 129 |
+
[2025-07-09 15:16:52,251][oumi][rank1][pid:1159829][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 130 |
+
question object
|
| 131 |
+
answer object
|
| 132 |
+
image_synthesis_code object
|
| 133 |
+
solution object
|
| 134 |
+
image object
|
| 135 |
+
dtype: object
|
| 136 |
+
[2025-07-09 15:17:03,877][oumi][rank1][pid:1159829][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1)
|
| 137 |
+
[2025-07-09 15:17:03,878][oumi][rank1][pid:1159829][MainThread][INFO]][distributed.py:481] 'FSDP_TRANSFORMER_CLS_TO_WRAP' is set to 'Qwen2_5_VLDecoderLayer' based on 'transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer'.
|
| 138 |
+
[2025-07-09 15:17:03,878][oumi][rank1][pid:1159829][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2_5_VLDecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 139 |
+
[2025-07-09 15:17:03,878][oumi][rank1][pid:1159829][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 140 |
+
[2025-07-09 15:17:03,878][oumi][rank1][pid:1159829][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=1, local_world_size=8, local_rank=1))...
|
| 141 |
+
[2025-07-09 15:17:03,906][oumi][rank1][pid:1159829][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 142 |
+
[2025-07-09 15:17:07,484][oumi][rank1][pid:1159829][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 143 |
+
[2025-07-09 15:17:07,484][oumi][rank1][pid:1159829][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 144 |
+
[2025-07-09 15:17:07,905][oumi][rank1][pid:1159829][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.33, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 145 |
+
[2025-07-09 15:17:07,982][oumi][rank1][pid:1159829][MainThread][INFO]][train.py:506] Training init time: 24.574s
|
| 146 |
+
[2025-07-09 15:17:07,982][oumi][rank1][pid:1159829][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 147 |
+
[2025-07-09 17:00:38,964][oumi][rank1][pid:1159829][MainThread][INFO]][train.py:514] Training is Complete.
|
| 148 |
+
[2025-07-09 17:00:38,970][oumi][rank1][pid:1159829][MainThread][INFO]][device_utils.py:297] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=42828.0, temperature=32, fan_speed=None, fan_speeds=None, power_usage_watts=122.708, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 149 |
+
[2025-07-09 17:00:38,970][oumi][rank1][pid:1159829][MainThread][INFO]][torch_utils.py:136] Peak GPU memory usage: 36.26 GB
|
| 150 |
+
[2025-07-09 17:00:38,970][oumi][rank1][pid:1159829][MainThread][INFO]][train.py:521] Saving final state...
|
| 151 |
+
[2025-07-09 17:00:39,134][oumi][rank1][pid:1159829][MainThread][INFO]][train.py:526] Saving final model...
|
| 152 |
+
[2025-07-09 17:00:39,134][oumi][rank1][pid:1159829][MainThread][INFO]][hf_trainer.py:142] Saving FULL_STATE_DICT for final model checkpoint.
|
| 153 |
+
[2025-07-09 17:01:54,953][oumi][rank1][pid:1159829][MainThread][INFO]][hf_trainer.py:149] Model has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 154 |
+
[2025-07-09 17:01:58,289][oumi][rank1][pid:1159829][MainThread][INFO]][hf_trainer.py:153] Processor config has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 155 |
+
[2025-07-09 17:03:28,865][oumi][rank1][pid:1159829][MainThread][INFO]][train.py:214]
|
| 156 |
+
|
| 157 |
+
» We're always looking for feedback. What's one thing we can improve? https://oumi.ai/feedback
|
logs/rank_0002.log
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 13:32:43,847][oumi][rank2][pid:1132652][MainThread][INFO]][models.py:433] 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.
|
| 2 |
+
[2025-07-09 13:32:45,425][oumi][rank2][pid:1132652][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 3 |
+
[2025-07-09 13:32:49,847][oumi][rank2][pid:1132652][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 4 |
+
[2025-07-09 13:32:49,847][oumi][rank2][pid:1132652][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 5 |
+
[2025-07-09 13:32:50,390][oumi][rank2][pid:1132652][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 6 |
+
Split: train
|
| 7 |
+
Version: 0.0.0
|
| 8 |
+
Dataset size: 86589729
|
| 9 |
+
Download size: 77602134
|
| 10 |
+
Size: 164191863 bytes
|
| 11 |
+
Rows: 778
|
| 12 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 13 |
+
[2025-07-09 13:32:52,711][oumi][rank2][pid:1132652][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 14 |
+
question object
|
| 15 |
+
answer object
|
| 16 |
+
image_synthesis_code object
|
| 17 |
+
solution object
|
| 18 |
+
image object
|
| 19 |
+
dtype: object
|
| 20 |
+
[2025-07-09 13:33:03,995][oumi][rank2][pid:1132652][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2)
|
| 21 |
+
[2025-07-09 13:33:03,996][oumi][rank2][pid:1132652][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 22 |
+
[2025-07-09 13:33:03,996][oumi][rank2][pid:1132652][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 23 |
+
[2025-07-09 13:33:03,996][oumi][rank2][pid:1132652][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2))...
|
| 24 |
+
[2025-07-09 13:33:04,023][oumi][rank2][pid:1132652][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 25 |
+
[2025-07-09 13:33:07,183][oumi][rank2][pid:1132652][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 26 |
+
[2025-07-09 13:33:07,184][oumi][rank2][pid:1132652][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 27 |
+
[2025-07-09 13:33:07,638][oumi][rank2][pid:1132652][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.549, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 28 |
+
[2025-07-09 13:33:07,782][oumi][rank2][pid:1132652][MainThread][INFO]][train.py:506] Training init time: 24.027s
|
| 29 |
+
[2025-07-09 13:33:07,782][oumi][rank2][pid:1132652][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 30 |
+
[2025-07-09 13:53:48,675][oumi][rank2][pid:1137609][MainThread][INFO]][models.py:433] 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.
|
| 31 |
+
[2025-07-09 13:53:50,217][oumi][rank2][pid:1137609][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 32 |
+
[2025-07-09 13:53:54,736][oumi][rank2][pid:1137609][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 33 |
+
[2025-07-09 13:53:54,736][oumi][rank2][pid:1137609][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 34 |
+
[2025-07-09 13:53:55,346][oumi][rank2][pid:1137609][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 35 |
+
Split: train
|
| 36 |
+
Version: 0.0.0
|
| 37 |
+
Dataset size: 86589729
|
| 38 |
+
Download size: 77602134
|
| 39 |
+
Size: 164191863 bytes
|
| 40 |
+
Rows: 778
|
| 41 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 42 |
+
[2025-07-09 13:53:57,690][oumi][rank2][pid:1137609][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 43 |
+
question object
|
| 44 |
+
answer object
|
| 45 |
+
image_synthesis_code object
|
| 46 |
+
solution object
|
| 47 |
+
image object
|
| 48 |
+
dtype: object
|
| 49 |
+
[2025-07-09 13:54:09,980][oumi][rank2][pid:1137609][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2)
|
| 50 |
+
[2025-07-09 13:54:09,980][oumi][rank2][pid:1137609][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 51 |
+
[2025-07-09 13:54:09,981][oumi][rank2][pid:1137609][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 52 |
+
[2025-07-09 13:54:09,981][oumi][rank2][pid:1137609][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2))...
|
| 53 |
+
[2025-07-09 13:54:10,013][oumi][rank2][pid:1137609][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 54 |
+
[2025-07-09 13:54:13,246][oumi][rank2][pid:1137609][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 55 |
+
[2025-07-09 13:54:13,247][oumi][rank2][pid:1137609][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 56 |
+
[2025-07-09 13:54:13,737][oumi][rank2][pid:1137609][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.48100000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 57 |
+
[2025-07-09 13:54:13,841][oumi][rank2][pid:1137609][MainThread][INFO]][train.py:506] Training init time: 25.243s
|
| 58 |
+
[2025-07-09 13:54:13,841][oumi][rank2][pid:1137609][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 59 |
+
[2025-07-09 14:02:11,525][oumi][rank2][pid:1141191][MainThread][INFO]][models.py:433] 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.
|
| 60 |
+
[2025-07-09 14:02:13,044][oumi][rank2][pid:1141191][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 61 |
+
[2025-07-09 14:02:17,598][oumi][rank2][pid:1141191][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 62 |
+
[2025-07-09 14:02:17,598][oumi][rank2][pid:1141191][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 63 |
+
[2025-07-09 14:02:18,162][oumi][rank2][pid:1141191][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 64 |
+
Split: train
|
| 65 |
+
Version: 0.0.0
|
| 66 |
+
Dataset size: 86589729
|
| 67 |
+
Download size: 77602134
|
| 68 |
+
Size: 164191863 bytes
|
| 69 |
+
Rows: 778
|
| 70 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 71 |
+
[2025-07-09 14:02:20,509][oumi][rank2][pid:1141191][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 72 |
+
question object
|
| 73 |
+
answer object
|
| 74 |
+
image_synthesis_code object
|
| 75 |
+
solution object
|
| 76 |
+
image object
|
| 77 |
+
dtype: object
|
| 78 |
+
[2025-07-09 14:02:31,490][oumi][rank2][pid:1141191][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2)
|
| 79 |
+
[2025-07-09 14:02:31,490][oumi][rank2][pid:1141191][MainThread][INFO]][train.py:402] 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'}
|
| 80 |
+
[2025-07-09 14:02:31,490][oumi][rank2][pid:1141191][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 81 |
+
[2025-07-09 14:02:31,490][oumi][rank2][pid:1141191][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2))...
|
| 82 |
+
[2025-07-09 14:02:31,519][oumi][rank2][pid:1141191][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 83 |
+
[2025-07-09 14:02:34,612][oumi][rank2][pid:1141191][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 84 |
+
[2025-07-09 14:02:34,612][oumi][rank2][pid:1141191][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 85 |
+
[2025-07-09 14:02:35,133][oumi][rank2][pid:1141191][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.561, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 86 |
+
[2025-07-09 14:02:35,493][oumi][rank2][pid:1141191][MainThread][INFO]][train.py:506] Training init time: 24.035s
|
| 87 |
+
[2025-07-09 14:02:35,493][oumi][rank2][pid:1141191][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 88 |
+
[2025-07-09 14:55:03,146][oumi][rank2][pid:1152360][MainThread][INFO]][models.py:433] 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.
|
| 89 |
+
[2025-07-09 14:55:04,708][oumi][rank2][pid:1152360][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 90 |
+
[2025-07-09 14:55:09,286][oumi][rank2][pid:1152360][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 91 |
+
[2025-07-09 14:55:09,286][oumi][rank2][pid:1152360][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 92 |
+
[2025-07-09 14:55:10,627][oumi][rank2][pid:1152360][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 93 |
+
Split: train
|
| 94 |
+
Version: 0.0.0
|
| 95 |
+
Dataset size: 49430293
|
| 96 |
+
Download size: 43750929
|
| 97 |
+
Size: 93181222 bytes
|
| 98 |
+
Rows: 598
|
| 99 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 100 |
+
[2025-07-09 14:55:12,898][oumi][rank2][pid:1152360][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 101 |
+
question object
|
| 102 |
+
answer object
|
| 103 |
+
image_synthesis_code object
|
| 104 |
+
solution object
|
| 105 |
+
image object
|
| 106 |
+
dtype: object
|
| 107 |
+
[2025-07-09 14:55:24,724][oumi][rank2][pid:1152360][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2)
|
| 108 |
+
[2025-07-09 14:55:24,725][oumi][rank2][pid:1152360][MainThread][INFO]][train.py:402] 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'}
|
| 109 |
+
[2025-07-09 14:55:24,725][oumi][rank2][pid:1152360][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 110 |
+
[2025-07-09 14:55:24,725][oumi][rank2][pid:1152360][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2))...
|
| 111 |
+
[2025-07-09 14:55:24,821][oumi][rank2][pid:1152360][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 112 |
+
[2025-07-09 14:55:27,954][oumi][rank2][pid:1152360][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 113 |
+
[2025-07-09 14:55:27,954][oumi][rank2][pid:1152360][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 114 |
+
[2025-07-09 14:55:28,414][oumi][rank2][pid:1152360][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6338.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.402, power_limit_watts=700.0, gpu_utilization=1, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 115 |
+
[2025-07-09 14:55:28,462][oumi][rank2][pid:1152360][MainThread][INFO]][train.py:506] Training init time: 25.395s
|
| 116 |
+
[2025-07-09 14:55:28,477][oumi][rank2][pid:1152360][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 117 |
+
[2025-07-09 15:16:43,480][oumi][rank2][pid:1159830][MainThread][INFO]][models.py:433] 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.
|
| 118 |
+
[2025-07-09 15:16:45,066][oumi][rank2][pid:1159830][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 119 |
+
[2025-07-09 15:16:49,619][oumi][rank2][pid:1159830][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 120 |
+
[2025-07-09 15:16:49,619][oumi][rank2][pid:1159830][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 121 |
+
[2025-07-09 15:16:50,266][oumi][rank2][pid:1159830][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 122 |
+
Split: train
|
| 123 |
+
Version: 0.0.0
|
| 124 |
+
Dataset size: 49430293
|
| 125 |
+
Download size: 43750929
|
| 126 |
+
Size: 93181222 bytes
|
| 127 |
+
Rows: 598
|
| 128 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 129 |
+
[2025-07-09 15:16:52,368][oumi][rank2][pid:1159830][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 130 |
+
question object
|
| 131 |
+
answer object
|
| 132 |
+
image_synthesis_code object
|
| 133 |
+
solution object
|
| 134 |
+
image object
|
| 135 |
+
dtype: object
|
| 136 |
+
[2025-07-09 15:17:03,885][oumi][rank2][pid:1159830][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2)
|
| 137 |
+
[2025-07-09 15:17:03,885][oumi][rank2][pid:1159830][MainThread][INFO]][distributed.py:481] 'FSDP_TRANSFORMER_CLS_TO_WRAP' is set to 'Qwen2_5_VLDecoderLayer' based on 'transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer'.
|
| 138 |
+
[2025-07-09 15:17:03,885][oumi][rank2][pid:1159830][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2_5_VLDecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 139 |
+
[2025-07-09 15:17:03,885][oumi][rank2][pid:1159830][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 140 |
+
[2025-07-09 15:17:03,885][oumi][rank2][pid:1159830][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=2, local_world_size=8, local_rank=2))...
|
| 141 |
+
[2025-07-09 15:17:03,924][oumi][rank2][pid:1159830][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 142 |
+
[2025-07-09 15:17:06,935][oumi][rank2][pid:1159830][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 143 |
+
[2025-07-09 15:17:06,935][oumi][rank2][pid:1159830][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 144 |
+
[2025-07-09 15:17:07,335][oumi][rank2][pid:1159830][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.363, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 145 |
+
[2025-07-09 15:17:07,977][oumi][rank2][pid:1159830][MainThread][INFO]][train.py:506] Training init time: 24.566s
|
| 146 |
+
[2025-07-09 15:17:07,977][oumi][rank2][pid:1159830][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 147 |
+
[2025-07-09 17:00:39,124][oumi][rank2][pid:1159830][MainThread][INFO]][train.py:514] Training is Complete.
|
| 148 |
+
[2025-07-09 17:00:39,131][oumi][rank2][pid:1159830][MainThread][INFO]][device_utils.py:297] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=42828.0, temperature=32, fan_speed=None, fan_speeds=None, power_usage_watts=122.926, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 149 |
+
[2025-07-09 17:00:39,131][oumi][rank2][pid:1159830][MainThread][INFO]][torch_utils.py:136] Peak GPU memory usage: 36.25 GB
|
| 150 |
+
[2025-07-09 17:00:39,131][oumi][rank2][pid:1159830][MainThread][INFO]][train.py:521] Saving final state...
|
| 151 |
+
[2025-07-09 17:00:39,135][oumi][rank2][pid:1159830][MainThread][INFO]][train.py:526] Saving final model...
|
| 152 |
+
[2025-07-09 17:00:39,135][oumi][rank2][pid:1159830][MainThread][INFO]][hf_trainer.py:142] Saving FULL_STATE_DICT for final model checkpoint.
|
| 153 |
+
[2025-07-09 17:01:54,948][oumi][rank2][pid:1159830][MainThread][INFO]][hf_trainer.py:149] Model has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 154 |
+
[2025-07-09 17:01:58,584][oumi][rank2][pid:1159830][MainThread][INFO]][hf_trainer.py:153] Processor config has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 155 |
+
[2025-07-09 17:03:28,876][oumi][rank2][pid:1159830][MainThread][INFO]][train.py:214]
|
| 156 |
+
|
| 157 |
+
» We're always looking for feedback. What's one thing we can improve? https://oumi.ai/feedback
|
logs/rank_0003.log
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 13:32:43,852][oumi][rank3][pid:1132653][MainThread][INFO]][models.py:433] 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.
|
| 2 |
+
[2025-07-09 13:32:45,401][oumi][rank3][pid:1132653][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 3 |
+
[2025-07-09 13:32:49,823][oumi][rank3][pid:1132653][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 4 |
+
[2025-07-09 13:32:49,823][oumi][rank3][pid:1132653][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 5 |
+
[2025-07-09 13:32:50,392][oumi][rank3][pid:1132653][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 6 |
+
Split: train
|
| 7 |
+
Version: 0.0.0
|
| 8 |
+
Dataset size: 86589729
|
| 9 |
+
Download size: 77602134
|
| 10 |
+
Size: 164191863 bytes
|
| 11 |
+
Rows: 778
|
| 12 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 13 |
+
[2025-07-09 13:32:52,757][oumi][rank3][pid:1132653][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 14 |
+
question object
|
| 15 |
+
answer object
|
| 16 |
+
image_synthesis_code object
|
| 17 |
+
solution object
|
| 18 |
+
image object
|
| 19 |
+
dtype: object
|
| 20 |
+
[2025-07-09 13:33:04,008][oumi][rank3][pid:1132653][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3)
|
| 21 |
+
[2025-07-09 13:33:04,008][oumi][rank3][pid:1132653][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 22 |
+
[2025-07-09 13:33:04,008][oumi][rank3][pid:1132653][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 23 |
+
[2025-07-09 13:33:04,008][oumi][rank3][pid:1132653][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3))...
|
| 24 |
+
[2025-07-09 13:33:04,066][oumi][rank3][pid:1132653][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 25 |
+
[2025-07-09 13:33:07,090][oumi][rank3][pid:1132653][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 26 |
+
[2025-07-09 13:33:07,091][oumi][rank3][pid:1132653][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 27 |
+
[2025-07-09 13:33:07,595][oumi][rank3][pid:1132653][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.549, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 28 |
+
[2025-07-09 13:33:07,781][oumi][rank3][pid:1132653][MainThread][INFO]][train.py:506] Training init time: 24.027s
|
| 29 |
+
[2025-07-09 13:33:07,782][oumi][rank3][pid:1132653][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 30 |
+
[2025-07-09 13:53:48,672][oumi][rank3][pid:1137610][MainThread][INFO]][models.py:433] 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.
|
| 31 |
+
[2025-07-09 13:53:50,176][oumi][rank3][pid:1137610][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 32 |
+
[2025-07-09 13:53:54,738][oumi][rank3][pid:1137610][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 33 |
+
[2025-07-09 13:53:54,738][oumi][rank3][pid:1137610][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 34 |
+
[2025-07-09 13:53:55,321][oumi][rank3][pid:1137610][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 35 |
+
Split: train
|
| 36 |
+
Version: 0.0.0
|
| 37 |
+
Dataset size: 86589729
|
| 38 |
+
Download size: 77602134
|
| 39 |
+
Size: 164191863 bytes
|
| 40 |
+
Rows: 778
|
| 41 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 42 |
+
[2025-07-09 13:53:57,696][oumi][rank3][pid:1137610][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 43 |
+
question object
|
| 44 |
+
answer object
|
| 45 |
+
image_synthesis_code object
|
| 46 |
+
solution object
|
| 47 |
+
image object
|
| 48 |
+
dtype: object
|
| 49 |
+
[2025-07-09 13:54:09,968][oumi][rank3][pid:1137610][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3)
|
| 50 |
+
[2025-07-09 13:54:09,968][oumi][rank3][pid:1137610][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 51 |
+
[2025-07-09 13:54:09,968][oumi][rank3][pid:1137610][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 52 |
+
[2025-07-09 13:54:09,968][oumi][rank3][pid:1137610][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3))...
|
| 53 |
+
[2025-07-09 13:54:09,997][oumi][rank3][pid:1137610][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 54 |
+
[2025-07-09 13:54:13,202][oumi][rank3][pid:1137610][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 55 |
+
[2025-07-09 13:54:13,213][oumi][rank3][pid:1137610][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 56 |
+
[2025-07-09 13:54:13,742][oumi][rank3][pid:1137610][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.48100000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 57 |
+
[2025-07-09 13:54:13,825][oumi][rank3][pid:1137610][MainThread][INFO]][train.py:506] Training init time: 25.224s
|
| 58 |
+
[2025-07-09 13:54:13,825][oumi][rank3][pid:1137610][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 59 |
+
[2025-07-09 14:02:11,518][oumi][rank3][pid:1141192][MainThread][INFO]][models.py:433] 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.
|
| 60 |
+
[2025-07-09 14:02:13,076][oumi][rank3][pid:1141192][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 61 |
+
[2025-07-09 14:02:17,589][oumi][rank3][pid:1141192][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 62 |
+
[2025-07-09 14:02:17,589][oumi][rank3][pid:1141192][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 63 |
+
[2025-07-09 14:02:18,053][oumi][rank3][pid:1141192][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 64 |
+
Split: train
|
| 65 |
+
Version: 0.0.0
|
| 66 |
+
Dataset size: 86589729
|
| 67 |
+
Download size: 77602134
|
| 68 |
+
Size: 164191863 bytes
|
| 69 |
+
Rows: 778
|
| 70 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 71 |
+
[2025-07-09 14:02:20,422][oumi][rank3][pid:1141192][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 72 |
+
question object
|
| 73 |
+
answer object
|
| 74 |
+
image_synthesis_code object
|
| 75 |
+
solution object
|
| 76 |
+
image object
|
| 77 |
+
dtype: object
|
| 78 |
+
[2025-07-09 14:02:31,489][oumi][rank3][pid:1141192][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3)
|
| 79 |
+
[2025-07-09 14:02:31,489][oumi][rank3][pid:1141192][MainThread][INFO]][train.py:402] 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'}
|
| 80 |
+
[2025-07-09 14:02:31,489][oumi][rank3][pid:1141192][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 81 |
+
[2025-07-09 14:02:31,489][oumi][rank3][pid:1141192][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3))...
|
| 82 |
+
[2025-07-09 14:02:31,517][oumi][rank3][pid:1141192][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 83 |
+
[2025-07-09 14:02:34,788][oumi][rank3][pid:1141192][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 84 |
+
[2025-07-09 14:02:34,788][oumi][rank3][pid:1141192][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 85 |
+
[2025-07-09 14:02:35,378][oumi][rank3][pid:1141192][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.536, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 86 |
+
[2025-07-09 14:02:35,482][oumi][rank3][pid:1141192][MainThread][INFO]][train.py:506] Training init time: 24.020s
|
| 87 |
+
[2025-07-09 14:02:35,482][oumi][rank3][pid:1141192][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 88 |
+
[2025-07-09 14:55:03,122][oumi][rank3][pid:1152361][MainThread][INFO]][models.py:433] 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.
|
| 89 |
+
[2025-07-09 14:55:04,688][oumi][rank3][pid:1152361][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 90 |
+
[2025-07-09 14:55:09,245][oumi][rank3][pid:1152361][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 91 |
+
[2025-07-09 14:55:09,246][oumi][rank3][pid:1152361][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 92 |
+
[2025-07-09 14:55:10,627][oumi][rank3][pid:1152361][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 93 |
+
Split: train
|
| 94 |
+
Version: 0.0.0
|
| 95 |
+
Dataset size: 49430293
|
| 96 |
+
Download size: 43750929
|
| 97 |
+
Size: 93181222 bytes
|
| 98 |
+
Rows: 598
|
| 99 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 100 |
+
[2025-07-09 14:55:12,906][oumi][rank3][pid:1152361][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 101 |
+
question object
|
| 102 |
+
answer object
|
| 103 |
+
image_synthesis_code object
|
| 104 |
+
solution object
|
| 105 |
+
image object
|
| 106 |
+
dtype: object
|
| 107 |
+
[2025-07-09 14:55:24,729][oumi][rank3][pid:1152361][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3)
|
| 108 |
+
[2025-07-09 14:55:24,730][oumi][rank3][pid:1152361][MainThread][INFO]][train.py:402] 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'}
|
| 109 |
+
[2025-07-09 14:55:24,730][oumi][rank3][pid:1152361][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 110 |
+
[2025-07-09 14:55:24,730][oumi][rank3][pid:1152361][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3))...
|
| 111 |
+
[2025-07-09 14:55:24,761][oumi][rank3][pid:1152361][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 112 |
+
[2025-07-09 14:55:27,735][oumi][rank3][pid:1152361][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 113 |
+
[2025-07-09 14:55:27,735][oumi][rank3][pid:1152361][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 114 |
+
[2025-07-09 14:55:28,196][oumi][rank3][pid:1152361][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.405, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 115 |
+
[2025-07-09 14:55:28,462][oumi][rank3][pid:1152361][MainThread][INFO]][train.py:506] Training init time: 25.396s
|
| 116 |
+
[2025-07-09 14:55:28,463][oumi][rank3][pid:1152361][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 117 |
+
[2025-07-09 15:16:43,465][oumi][rank3][pid:1159831][MainThread][INFO]][models.py:433] 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.
|
| 118 |
+
[2025-07-09 15:16:45,058][oumi][rank3][pid:1159831][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 119 |
+
[2025-07-09 15:16:49,520][oumi][rank3][pid:1159831][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 120 |
+
[2025-07-09 15:16:49,520][oumi][rank3][pid:1159831][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 121 |
+
[2025-07-09 15:16:50,184][oumi][rank3][pid:1159831][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 122 |
+
Split: train
|
| 123 |
+
Version: 0.0.0
|
| 124 |
+
Dataset size: 49430293
|
| 125 |
+
Download size: 43750929
|
| 126 |
+
Size: 93181222 bytes
|
| 127 |
+
Rows: 598
|
| 128 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 129 |
+
[2025-07-09 15:16:52,340][oumi][rank3][pid:1159831][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 130 |
+
question object
|
| 131 |
+
answer object
|
| 132 |
+
image_synthesis_code object
|
| 133 |
+
solution object
|
| 134 |
+
image object
|
| 135 |
+
dtype: object
|
| 136 |
+
[2025-07-09 15:17:03,892][oumi][rank3][pid:1159831][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3)
|
| 137 |
+
[2025-07-09 15:17:03,892][oumi][rank3][pid:1159831][MainThread][INFO]][distributed.py:481] 'FSDP_TRANSFORMER_CLS_TO_WRAP' is set to 'Qwen2_5_VLDecoderLayer' based on 'transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer'.
|
| 138 |
+
[2025-07-09 15:17:03,892][oumi][rank3][pid:1159831][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2_5_VLDecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 139 |
+
[2025-07-09 15:17:03,892][oumi][rank3][pid:1159831][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 140 |
+
[2025-07-09 15:17:03,892][oumi][rank3][pid:1159831][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=3, local_world_size=8, local_rank=3))...
|
| 141 |
+
[2025-07-09 15:17:03,922][oumi][rank3][pid:1159831][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 142 |
+
[2025-07-09 15:17:07,479][oumi][rank3][pid:1159831][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 143 |
+
[2025-07-09 15:17:07,479][oumi][rank3][pid:1159831][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 144 |
+
[2025-07-09 15:17:07,903][oumi][rank3][pid:1159831][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.33, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 145 |
+
[2025-07-09 15:17:07,992][oumi][rank3][pid:1159831][MainThread][INFO]][train.py:506] Training init time: 24.580s
|
| 146 |
+
[2025-07-09 15:17:07,992][oumi][rank3][pid:1159831][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 147 |
+
[2025-07-09 17:00:39,057][oumi][rank3][pid:1159831][MainThread][INFO]][train.py:514] Training is Complete.
|
| 148 |
+
[2025-07-09 17:00:39,062][oumi][rank3][pid:1159831][MainThread][INFO]][device_utils.py:297] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=42828.0, temperature=32, fan_speed=None, fan_speeds=None, power_usage_watts=122.837, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 149 |
+
[2025-07-09 17:00:39,062][oumi][rank3][pid:1159831][MainThread][INFO]][torch_utils.py:136] Peak GPU memory usage: 36.26 GB
|
| 150 |
+
[2025-07-09 17:00:39,062][oumi][rank3][pid:1159831][MainThread][INFO]][train.py:521] Saving final state...
|
| 151 |
+
[2025-07-09 17:00:39,136][oumi][rank3][pid:1159831][MainThread][INFO]][train.py:526] Saving final model...
|
| 152 |
+
[2025-07-09 17:00:39,136][oumi][rank3][pid:1159831][MainThread][INFO]][hf_trainer.py:142] Saving FULL_STATE_DICT for final model checkpoint.
|
| 153 |
+
[2025-07-09 17:01:54,955][oumi][rank3][pid:1159831][MainThread][INFO]][hf_trainer.py:149] Model has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 154 |
+
[2025-07-09 17:01:58,449][oumi][rank3][pid:1159831][MainThread][INFO]][hf_trainer.py:153] Processor config has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 155 |
+
[2025-07-09 17:03:28,891][oumi][rank3][pid:1159831][MainThread][INFO]][train.py:214]
|
| 156 |
+
|
| 157 |
+
» We're always looking for feedback. What's one thing we can improve? https://oumi.ai/feedback
|
logs/rank_0004.log
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 13:32:43,844][oumi][rank4][pid:1132654][MainThread][INFO]][models.py:433] 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.
|
| 2 |
+
[2025-07-09 13:32:45,427][oumi][rank4][pid:1132654][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 3 |
+
[2025-07-09 13:32:49,810][oumi][rank4][pid:1132654][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 4 |
+
[2025-07-09 13:32:49,812][oumi][rank4][pid:1132654][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 5 |
+
[2025-07-09 13:32:50,387][oumi][rank4][pid:1132654][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 6 |
+
Split: train
|
| 7 |
+
Version: 0.0.0
|
| 8 |
+
Dataset size: 86589729
|
| 9 |
+
Download size: 77602134
|
| 10 |
+
Size: 164191863 bytes
|
| 11 |
+
Rows: 778
|
| 12 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 13 |
+
[2025-07-09 13:32:52,770][oumi][rank4][pid:1132654][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 14 |
+
question object
|
| 15 |
+
answer object
|
| 16 |
+
image_synthesis_code object
|
| 17 |
+
solution object
|
| 18 |
+
image object
|
| 19 |
+
dtype: object
|
| 20 |
+
[2025-07-09 13:33:04,017][oumi][rank4][pid:1132654][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4)
|
| 21 |
+
[2025-07-09 13:33:04,018][oumi][rank4][pid:1132654][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 22 |
+
[2025-07-09 13:33:04,018][oumi][rank4][pid:1132654][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 23 |
+
[2025-07-09 13:33:04,018][oumi][rank4][pid:1132654][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4))...
|
| 24 |
+
[2025-07-09 13:33:04,051][oumi][rank4][pid:1132654][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 25 |
+
[2025-07-09 13:33:07,260][oumi][rank4][pid:1132654][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 26 |
+
[2025-07-09 13:33:07,260][oumi][rank4][pid:1132654][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 27 |
+
[2025-07-09 13:33:07,631][oumi][rank4][pid:1132654][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.549, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 28 |
+
[2025-07-09 13:33:07,785][oumi][rank4][pid:1132654][MainThread][INFO]][train.py:506] Training init time: 24.029s
|
| 29 |
+
[2025-07-09 13:33:07,785][oumi][rank4][pid:1132654][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 30 |
+
[2025-07-09 13:53:48,645][oumi][rank4][pid:1137611][MainThread][INFO]][models.py:433] 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.
|
| 31 |
+
[2025-07-09 13:53:50,205][oumi][rank4][pid:1137611][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 32 |
+
[2025-07-09 13:53:54,742][oumi][rank4][pid:1137611][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 33 |
+
[2025-07-09 13:53:54,742][oumi][rank4][pid:1137611][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 34 |
+
[2025-07-09 13:53:55,373][oumi][rank4][pid:1137611][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 35 |
+
Split: train
|
| 36 |
+
Version: 0.0.0
|
| 37 |
+
Dataset size: 86589729
|
| 38 |
+
Download size: 77602134
|
| 39 |
+
Size: 164191863 bytes
|
| 40 |
+
Rows: 778
|
| 41 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 42 |
+
[2025-07-09 13:53:57,712][oumi][rank4][pid:1137611][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 43 |
+
question object
|
| 44 |
+
answer object
|
| 45 |
+
image_synthesis_code object
|
| 46 |
+
solution object
|
| 47 |
+
image object
|
| 48 |
+
dtype: object
|
| 49 |
+
[2025-07-09 13:54:09,971][oumi][rank4][pid:1137611][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4)
|
| 50 |
+
[2025-07-09 13:54:09,972][oumi][rank4][pid:1137611][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 51 |
+
[2025-07-09 13:54:09,972][oumi][rank4][pid:1137611][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 52 |
+
[2025-07-09 13:54:09,972][oumi][rank4][pid:1137611][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4))...
|
| 53 |
+
[2025-07-09 13:54:10,006][oumi][rank4][pid:1137611][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 54 |
+
[2025-07-09 13:54:13,147][oumi][rank4][pid:1137611][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 55 |
+
[2025-07-09 13:54:13,147][oumi][rank4][pid:1137611][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 56 |
+
[2025-07-09 13:54:13,728][oumi][rank4][pid:1137611][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.48100000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 57 |
+
[2025-07-09 13:54:13,831][oumi][rank4][pid:1137611][MainThread][INFO]][train.py:506] Training init time: 25.232s
|
| 58 |
+
[2025-07-09 13:54:13,831][oumi][rank4][pid:1137611][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 59 |
+
[2025-07-09 14:02:11,511][oumi][rank4][pid:1141193][MainThread][INFO]][models.py:433] 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.
|
| 60 |
+
[2025-07-09 14:02:13,080][oumi][rank4][pid:1141193][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 61 |
+
[2025-07-09 14:02:17,595][oumi][rank4][pid:1141193][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 62 |
+
[2025-07-09 14:02:17,595][oumi][rank4][pid:1141193][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 63 |
+
[2025-07-09 14:02:18,086][oumi][rank4][pid:1141193][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 64 |
+
Split: train
|
| 65 |
+
Version: 0.0.0
|
| 66 |
+
Dataset size: 86589729
|
| 67 |
+
Download size: 77602134
|
| 68 |
+
Size: 164191863 bytes
|
| 69 |
+
Rows: 778
|
| 70 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 71 |
+
[2025-07-09 14:02:20,431][oumi][rank4][pid:1141193][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 72 |
+
question object
|
| 73 |
+
answer object
|
| 74 |
+
image_synthesis_code object
|
| 75 |
+
solution object
|
| 76 |
+
image object
|
| 77 |
+
dtype: object
|
| 78 |
+
[2025-07-09 14:02:31,504][oumi][rank4][pid:1141193][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4)
|
| 79 |
+
[2025-07-09 14:02:31,504][oumi][rank4][pid:1141193][MainThread][INFO]][train.py:402] 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'}
|
| 80 |
+
[2025-07-09 14:02:31,504][oumi][rank4][pid:1141193][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 81 |
+
[2025-07-09 14:02:31,505][oumi][rank4][pid:1141193][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4))...
|
| 82 |
+
[2025-07-09 14:02:31,540][oumi][rank4][pid:1141193][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 83 |
+
[2025-07-09 14:02:34,964][oumi][rank4][pid:1141193][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 84 |
+
[2025-07-09 14:02:34,964][oumi][rank4][pid:1141193][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 85 |
+
[2025-07-09 14:02:35,352][oumi][rank4][pid:1141193][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.536, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 86 |
+
[2025-07-09 14:02:35,481][oumi][rank4][pid:1141193][MainThread][INFO]][train.py:506] Training init time: 24.021s
|
| 87 |
+
[2025-07-09 14:02:35,481][oumi][rank4][pid:1141193][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 88 |
+
[2025-07-09 14:55:03,139][oumi][rank4][pid:1152362][MainThread][INFO]][models.py:433] 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.
|
| 89 |
+
[2025-07-09 14:55:04,672][oumi][rank4][pid:1152362][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 90 |
+
[2025-07-09 14:55:09,284][oumi][rank4][pid:1152362][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 91 |
+
[2025-07-09 14:55:09,284][oumi][rank4][pid:1152362][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 92 |
+
[2025-07-09 14:55:10,688][oumi][rank4][pid:1152362][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 93 |
+
Split: train
|
| 94 |
+
Version: 0.0.0
|
| 95 |
+
Dataset size: 49430293
|
| 96 |
+
Download size: 43750929
|
| 97 |
+
Size: 93181222 bytes
|
| 98 |
+
Rows: 598
|
| 99 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 100 |
+
[2025-07-09 14:55:12,884][oumi][rank4][pid:1152362][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 101 |
+
question object
|
| 102 |
+
answer object
|
| 103 |
+
image_synthesis_code object
|
| 104 |
+
solution object
|
| 105 |
+
image object
|
| 106 |
+
dtype: object
|
| 107 |
+
[2025-07-09 14:55:24,728][oumi][rank4][pid:1152362][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4)
|
| 108 |
+
[2025-07-09 14:55:24,729][oumi][rank4][pid:1152362][MainThread][INFO]][train.py:402] 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'}
|
| 109 |
+
[2025-07-09 14:55:24,729][oumi][rank4][pid:1152362][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 110 |
+
[2025-07-09 14:55:24,729][oumi][rank4][pid:1152362][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4))...
|
| 111 |
+
[2025-07-09 14:55:24,755][oumi][rank4][pid:1152362][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 112 |
+
[2025-07-09 14:55:27,899][oumi][rank4][pid:1152362][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 113 |
+
[2025-07-09 14:55:27,900][oumi][rank4][pid:1152362][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 114 |
+
[2025-07-09 14:55:28,333][oumi][rank4][pid:1152362][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.39, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 115 |
+
[2025-07-09 14:55:28,462][oumi][rank4][pid:1152362][MainThread][INFO]][train.py:506] Training init time: 25.394s
|
| 116 |
+
[2025-07-09 14:55:28,466][oumi][rank4][pid:1152362][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 117 |
+
[2025-07-09 15:16:43,476][oumi][rank4][pid:1159832][MainThread][INFO]][models.py:433] 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.
|
| 118 |
+
[2025-07-09 15:16:45,016][oumi][rank4][pid:1159832][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 119 |
+
[2025-07-09 15:16:49,573][oumi][rank4][pid:1159832][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 120 |
+
[2025-07-09 15:16:49,573][oumi][rank4][pid:1159832][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 121 |
+
[2025-07-09 15:16:50,096][oumi][rank4][pid:1159832][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 122 |
+
Split: train
|
| 123 |
+
Version: 0.0.0
|
| 124 |
+
Dataset size: 49430293
|
| 125 |
+
Download size: 43750929
|
| 126 |
+
Size: 93181222 bytes
|
| 127 |
+
Rows: 598
|
| 128 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 129 |
+
[2025-07-09 15:16:52,277][oumi][rank4][pid:1159832][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 130 |
+
question object
|
| 131 |
+
answer object
|
| 132 |
+
image_synthesis_code object
|
| 133 |
+
solution object
|
| 134 |
+
image object
|
| 135 |
+
dtype: object
|
| 136 |
+
[2025-07-09 15:17:03,880][oumi][rank4][pid:1159832][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4)
|
| 137 |
+
[2025-07-09 15:17:03,880][oumi][rank4][pid:1159832][MainThread][INFO]][distributed.py:481] 'FSDP_TRANSFORMER_CLS_TO_WRAP' is set to 'Qwen2_5_VLDecoderLayer' based on 'transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer'.
|
| 138 |
+
[2025-07-09 15:17:03,880][oumi][rank4][pid:1159832][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2_5_VLDecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 139 |
+
[2025-07-09 15:17:03,880][oumi][rank4][pid:1159832][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 140 |
+
[2025-07-09 15:17:03,880][oumi][rank4][pid:1159832][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=4, local_world_size=8, local_rank=4))...
|
| 141 |
+
[2025-07-09 15:17:03,912][oumi][rank4][pid:1159832][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 142 |
+
[2025-07-09 15:17:07,075][oumi][rank4][pid:1159832][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 143 |
+
[2025-07-09 15:17:07,076][oumi][rank4][pid:1159832][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 144 |
+
[2025-07-09 15:17:07,360][oumi][rank4][pid:1159832][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.35600000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 145 |
+
[2025-07-09 15:17:07,978][oumi][rank4][pid:1159832][MainThread][INFO]][train.py:506] Training init time: 24.566s
|
| 146 |
+
[2025-07-09 15:17:07,978][oumi][rank4][pid:1159832][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 147 |
+
[2025-07-09 17:00:38,856][oumi][rank4][pid:1159832][MainThread][INFO]][train.py:514] Training is Complete.
|
| 148 |
+
[2025-07-09 17:00:38,872][oumi][rank4][pid:1159832][MainThread][INFO]][device_utils.py:297] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=42828.0, temperature=32, fan_speed=None, fan_speeds=None, power_usage_watts=122.72200000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 149 |
+
[2025-07-09 17:00:38,872][oumi][rank4][pid:1159832][MainThread][INFO]][torch_utils.py:136] Peak GPU memory usage: 36.26 GB
|
| 150 |
+
[2025-07-09 17:00:38,872][oumi][rank4][pid:1159832][MainThread][INFO]][train.py:521] Saving final state...
|
| 151 |
+
[2025-07-09 17:00:39,135][oumi][rank4][pid:1159832][MainThread][INFO]][train.py:526] Saving final model...
|
| 152 |
+
[2025-07-09 17:00:39,135][oumi][rank4][pid:1159832][MainThread][INFO]][hf_trainer.py:142] Saving FULL_STATE_DICT for final model checkpoint.
|
| 153 |
+
[2025-07-09 17:01:54,952][oumi][rank4][pid:1159832][MainThread][INFO]][hf_trainer.py:149] Model has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 154 |
+
[2025-07-09 17:01:58,472][oumi][rank4][pid:1159832][MainThread][INFO]][hf_trainer.py:153] Processor config has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 155 |
+
[2025-07-09 17:03:28,890][oumi][rank4][pid:1159832][MainThread][INFO]][train.py:214]
|
| 156 |
+
|
| 157 |
+
» We're always looking for feedback. What's one thing we can improve? https://oumi.ai/feedback
|
logs/rank_0005.log
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 13:32:43,832][oumi][rank5][pid:1132655][MainThread][INFO]][models.py:433] 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.
|
| 2 |
+
[2025-07-09 13:32:45,244][oumi][rank5][pid:1132655][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 3 |
+
[2025-07-09 13:32:49,695][oumi][rank5][pid:1132655][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 4 |
+
[2025-07-09 13:32:49,698][oumi][rank5][pid:1132655][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 5 |
+
[2025-07-09 13:32:50,317][oumi][rank5][pid:1132655][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 6 |
+
Split: train
|
| 7 |
+
Version: 0.0.0
|
| 8 |
+
Dataset size: 86589729
|
| 9 |
+
Download size: 77602134
|
| 10 |
+
Size: 164191863 bytes
|
| 11 |
+
Rows: 778
|
| 12 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 13 |
+
[2025-07-09 13:32:52,709][oumi][rank5][pid:1132655][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 14 |
+
question object
|
| 15 |
+
answer object
|
| 16 |
+
image_synthesis_code object
|
| 17 |
+
solution object
|
| 18 |
+
image object
|
| 19 |
+
dtype: object
|
| 20 |
+
[2025-07-09 13:33:04,014][oumi][rank5][pid:1132655][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5)
|
| 21 |
+
[2025-07-09 13:33:04,015][oumi][rank5][pid:1132655][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 22 |
+
[2025-07-09 13:33:04,015][oumi][rank5][pid:1132655][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 23 |
+
[2025-07-09 13:33:04,015][oumi][rank5][pid:1132655][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5))...
|
| 24 |
+
[2025-07-09 13:33:04,042][oumi][rank5][pid:1132655][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 25 |
+
[2025-07-09 13:33:07,007][oumi][rank5][pid:1132655][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 26 |
+
[2025-07-09 13:33:07,008][oumi][rank5][pid:1132655][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 27 |
+
[2025-07-09 13:33:07,545][oumi][rank5][pid:1132655][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.55, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 28 |
+
[2025-07-09 13:33:07,790][oumi][rank5][pid:1132655][MainThread][INFO]][train.py:506] Training init time: 24.035s
|
| 29 |
+
[2025-07-09 13:33:07,790][oumi][rank5][pid:1132655][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 30 |
+
[2025-07-09 13:53:48,639][oumi][rank5][pid:1137612][MainThread][INFO]][models.py:433] 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.
|
| 31 |
+
[2025-07-09 13:53:50,200][oumi][rank5][pid:1137612][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 32 |
+
[2025-07-09 13:53:54,740][oumi][rank5][pid:1137612][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 33 |
+
[2025-07-09 13:53:54,741][oumi][rank5][pid:1137612][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 34 |
+
[2025-07-09 13:53:55,252][oumi][rank5][pid:1137612][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 35 |
+
Split: train
|
| 36 |
+
Version: 0.0.0
|
| 37 |
+
Dataset size: 86589729
|
| 38 |
+
Download size: 77602134
|
| 39 |
+
Size: 164191863 bytes
|
| 40 |
+
Rows: 778
|
| 41 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 42 |
+
[2025-07-09 13:53:57,650][oumi][rank5][pid:1137612][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 43 |
+
question object
|
| 44 |
+
answer object
|
| 45 |
+
image_synthesis_code object
|
| 46 |
+
solution object
|
| 47 |
+
image object
|
| 48 |
+
dtype: object
|
| 49 |
+
[2025-07-09 13:54:09,969][oumi][rank5][pid:1137612][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5)
|
| 50 |
+
[2025-07-09 13:54:09,969][oumi][rank5][pid:1137612][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 51 |
+
[2025-07-09 13:54:09,969][oumi][rank5][pid:1137612][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 52 |
+
[2025-07-09 13:54:09,970][oumi][rank5][pid:1137612][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5))...
|
| 53 |
+
[2025-07-09 13:54:09,998][oumi][rank5][pid:1137612][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 54 |
+
[2025-07-09 13:54:13,233][oumi][rank5][pid:1137612][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 55 |
+
[2025-07-09 13:54:13,233][oumi][rank5][pid:1137612][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 56 |
+
[2025-07-09 13:54:13,736][oumi][rank5][pid:1137612][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.48100000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 57 |
+
[2025-07-09 13:54:13,829][oumi][rank5][pid:1137612][MainThread][INFO]][train.py:506] Training init time: 25.232s
|
| 58 |
+
[2025-07-09 13:54:13,829][oumi][rank5][pid:1137612][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 59 |
+
[2025-07-09 14:02:11,508][oumi][rank5][pid:1141194][MainThread][INFO]][models.py:433] 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.
|
| 60 |
+
[2025-07-09 14:02:13,014][oumi][rank5][pid:1141194][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 61 |
+
[2025-07-09 14:02:17,341][oumi][rank5][pid:1141194][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 62 |
+
[2025-07-09 14:02:17,341][oumi][rank5][pid:1141194][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 63 |
+
[2025-07-09 14:02:17,916][oumi][rank5][pid:1141194][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 64 |
+
Split: train
|
| 65 |
+
Version: 0.0.0
|
| 66 |
+
Dataset size: 86589729
|
| 67 |
+
Download size: 77602134
|
| 68 |
+
Size: 164191863 bytes
|
| 69 |
+
Rows: 778
|
| 70 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 71 |
+
[2025-07-09 14:02:20,263][oumi][rank5][pid:1141194][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 72 |
+
question object
|
| 73 |
+
answer object
|
| 74 |
+
image_synthesis_code object
|
| 75 |
+
solution object
|
| 76 |
+
image object
|
| 77 |
+
dtype: object
|
| 78 |
+
[2025-07-09 14:02:31,487][oumi][rank5][pid:1141194][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5)
|
| 79 |
+
[2025-07-09 14:02:31,487][oumi][rank5][pid:1141194][MainThread][INFO]][train.py:402] 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'}
|
| 80 |
+
[2025-07-09 14:02:31,487][oumi][rank5][pid:1141194][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 81 |
+
[2025-07-09 14:02:31,487][oumi][rank5][pid:1141194][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5))...
|
| 82 |
+
[2025-07-09 14:02:31,517][oumi][rank5][pid:1141194][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 83 |
+
[2025-07-09 14:02:34,953][oumi][rank5][pid:1141194][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 84 |
+
[2025-07-09 14:02:34,954][oumi][rank5][pid:1141194][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 85 |
+
[2025-07-09 14:02:35,422][oumi][rank5][pid:1141194][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.53, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 86 |
+
[2025-07-09 14:02:35,480][oumi][rank5][pid:1141194][MainThread][INFO]][train.py:506] Training init time: 24.023s
|
| 87 |
+
[2025-07-09 14:02:35,480][oumi][rank5][pid:1141194][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 88 |
+
[2025-07-09 14:55:03,142][oumi][rank5][pid:1152363][MainThread][INFO]][models.py:433] 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.
|
| 89 |
+
[2025-07-09 14:55:04,642][oumi][rank5][pid:1152363][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 90 |
+
[2025-07-09 14:55:09,246][oumi][rank5][pid:1152363][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 91 |
+
[2025-07-09 14:55:09,246][oumi][rank5][pid:1152363][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 92 |
+
[2025-07-09 14:55:10,629][oumi][rank5][pid:1152363][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 93 |
+
Split: train
|
| 94 |
+
Version: 0.0.0
|
| 95 |
+
Dataset size: 49430293
|
| 96 |
+
Download size: 43750929
|
| 97 |
+
Size: 93181222 bytes
|
| 98 |
+
Rows: 598
|
| 99 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 100 |
+
[2025-07-09 14:55:12,868][oumi][rank5][pid:1152363][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 101 |
+
question object
|
| 102 |
+
answer object
|
| 103 |
+
image_synthesis_code object
|
| 104 |
+
solution object
|
| 105 |
+
image object
|
| 106 |
+
dtype: object
|
| 107 |
+
[2025-07-09 14:55:24,719][oumi][rank5][pid:1152363][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5)
|
| 108 |
+
[2025-07-09 14:55:24,719][oumi][rank5][pid:1152363][MainThread][INFO]][train.py:402] 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'}
|
| 109 |
+
[2025-07-09 14:55:24,720][oumi][rank5][pid:1152363][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 110 |
+
[2025-07-09 14:55:24,720][oumi][rank5][pid:1152363][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5))...
|
| 111 |
+
[2025-07-09 14:55:24,774][oumi][rank5][pid:1152363][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 112 |
+
[2025-07-09 14:55:27,952][oumi][rank5][pid:1152363][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 113 |
+
[2025-07-09 14:55:27,953][oumi][rank5][pid:1152363][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 114 |
+
[2025-07-09 14:55:28,382][oumi][rank5][pid:1152363][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6168.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.402, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 115 |
+
[2025-07-09 14:55:28,467][oumi][rank5][pid:1152363][MainThread][INFO]][train.py:506] Training init time: 25.400s
|
| 116 |
+
[2025-07-09 14:55:28,467][oumi][rank5][pid:1152363][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 117 |
+
[2025-07-09 15:16:43,455][oumi][rank5][pid:1159833][MainThread][INFO]][models.py:433] 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.
|
| 118 |
+
[2025-07-09 15:16:45,014][oumi][rank5][pid:1159833][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 119 |
+
[2025-07-09 15:16:49,590][oumi][rank5][pid:1159833][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 120 |
+
[2025-07-09 15:16:49,590][oumi][rank5][pid:1159833][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 121 |
+
[2025-07-09 15:16:50,159][oumi][rank5][pid:1159833][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 122 |
+
Split: train
|
| 123 |
+
Version: 0.0.0
|
| 124 |
+
Dataset size: 49430293
|
| 125 |
+
Download size: 43750929
|
| 126 |
+
Size: 93181222 bytes
|
| 127 |
+
Rows: 598
|
| 128 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 129 |
+
[2025-07-09 15:16:52,255][oumi][rank5][pid:1159833][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 130 |
+
question object
|
| 131 |
+
answer object
|
| 132 |
+
image_synthesis_code object
|
| 133 |
+
solution object
|
| 134 |
+
image object
|
| 135 |
+
dtype: object
|
| 136 |
+
[2025-07-09 15:17:03,888][oumi][rank5][pid:1159833][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5)
|
| 137 |
+
[2025-07-09 15:17:03,888][oumi][rank5][pid:1159833][MainThread][INFO]][distributed.py:481] 'FSDP_TRANSFORMER_CLS_TO_WRAP' is set to 'Qwen2_5_VLDecoderLayer' based on 'transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer'.
|
| 138 |
+
[2025-07-09 15:17:03,888][oumi][rank5][pid:1159833][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2_5_VLDecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 139 |
+
[2025-07-09 15:17:03,888][oumi][rank5][pid:1159833][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 140 |
+
[2025-07-09 15:17:03,888][oumi][rank5][pid:1159833][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=5, local_world_size=8, local_rank=5))...
|
| 141 |
+
[2025-07-09 15:17:03,921][oumi][rank5][pid:1159833][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 142 |
+
[2025-07-09 15:17:07,368][oumi][rank5][pid:1159833][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 143 |
+
[2025-07-09 15:17:07,373][oumi][rank5][pid:1159833][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 144 |
+
[2025-07-09 15:17:07,811][oumi][rank5][pid:1159833][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.325, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 145 |
+
[2025-07-09 15:17:07,988][oumi][rank5][pid:1159833][MainThread][INFO]][train.py:506] Training init time: 24.579s
|
| 146 |
+
[2025-07-09 15:17:07,988][oumi][rank5][pid:1159833][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 147 |
+
[2025-07-09 17:00:39,093][oumi][rank5][pid:1159833][MainThread][INFO]][train.py:514] Training is Complete.
|
| 148 |
+
[2025-07-09 17:00:39,103][oumi][rank5][pid:1159833][MainThread][INFO]][device_utils.py:297] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=42828.0, temperature=32, fan_speed=None, fan_speeds=None, power_usage_watts=122.837, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 149 |
+
[2025-07-09 17:00:39,104][oumi][rank5][pid:1159833][MainThread][INFO]][torch_utils.py:136] Peak GPU memory usage: 36.26 GB
|
| 150 |
+
[2025-07-09 17:00:39,104][oumi][rank5][pid:1159833][MainThread][INFO]][train.py:521] Saving final state...
|
| 151 |
+
[2025-07-09 17:00:39,135][oumi][rank5][pid:1159833][MainThread][INFO]][train.py:526] Saving final model...
|
| 152 |
+
[2025-07-09 17:00:39,135][oumi][rank5][pid:1159833][MainThread][INFO]][hf_trainer.py:142] Saving FULL_STATE_DICT for final model checkpoint.
|
| 153 |
+
[2025-07-09 17:01:54,948][oumi][rank5][pid:1159833][MainThread][INFO]][hf_trainer.py:149] Model has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 154 |
+
[2025-07-09 17:01:58,383][oumi][rank5][pid:1159833][MainThread][INFO]][hf_trainer.py:153] Processor config has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 155 |
+
[2025-07-09 17:03:28,891][oumi][rank5][pid:1159833][MainThread][INFO]][train.py:214]
|
| 156 |
+
|
| 157 |
+
» We're always looking for feedback. What's one thing we can improve? https://oumi.ai/feedback
|
logs/rank_0006.log
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 13:32:43,824][oumi][rank6][pid:1132656][MainThread][INFO]][models.py:433] 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.
|
| 2 |
+
[2025-07-09 13:32:45,404][oumi][rank6][pid:1132656][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 3 |
+
[2025-07-09 13:32:49,852][oumi][rank6][pid:1132656][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 4 |
+
[2025-07-09 13:32:49,853][oumi][rank6][pid:1132656][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 5 |
+
[2025-07-09 13:32:50,377][oumi][rank6][pid:1132656][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 6 |
+
Split: train
|
| 7 |
+
Version: 0.0.0
|
| 8 |
+
Dataset size: 86589729
|
| 9 |
+
Download size: 77602134
|
| 10 |
+
Size: 164191863 bytes
|
| 11 |
+
Rows: 778
|
| 12 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 13 |
+
[2025-07-09 13:32:52,758][oumi][rank6][pid:1132656][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 14 |
+
question object
|
| 15 |
+
answer object
|
| 16 |
+
image_synthesis_code object
|
| 17 |
+
solution object
|
| 18 |
+
image object
|
| 19 |
+
dtype: object
|
| 20 |
+
[2025-07-09 13:33:04,016][oumi][rank6][pid:1132656][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6)
|
| 21 |
+
[2025-07-09 13:33:04,018][oumi][rank6][pid:1132656][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 22 |
+
[2025-07-09 13:33:04,018][oumi][rank6][pid:1132656][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 23 |
+
[2025-07-09 13:33:04,018][oumi][rank6][pid:1132656][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6))...
|
| 24 |
+
[2025-07-09 13:33:04,048][oumi][rank6][pid:1132656][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 25 |
+
[2025-07-09 13:33:07,264][oumi][rank6][pid:1132656][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 26 |
+
[2025-07-09 13:33:07,265][oumi][rank6][pid:1132656][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 27 |
+
[2025-07-09 13:33:07,740][oumi][rank6][pid:1132656][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.555, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 28 |
+
[2025-07-09 13:33:07,781][oumi][rank6][pid:1132656][MainThread][INFO]][train.py:506] Training init time: 24.022s
|
| 29 |
+
[2025-07-09 13:33:07,781][oumi][rank6][pid:1132656][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 30 |
+
[2025-07-09 13:53:48,665][oumi][rank6][pid:1137613][MainThread][INFO]][models.py:433] 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.
|
| 31 |
+
[2025-07-09 13:53:50,199][oumi][rank6][pid:1137613][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 32 |
+
[2025-07-09 13:53:54,738][oumi][rank6][pid:1137613][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 33 |
+
[2025-07-09 13:53:54,738][oumi][rank6][pid:1137613][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 34 |
+
[2025-07-09 13:53:55,300][oumi][rank6][pid:1137613][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 35 |
+
Split: train
|
| 36 |
+
Version: 0.0.0
|
| 37 |
+
Dataset size: 86589729
|
| 38 |
+
Download size: 77602134
|
| 39 |
+
Size: 164191863 bytes
|
| 40 |
+
Rows: 778
|
| 41 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 42 |
+
[2025-07-09 13:53:57,672][oumi][rank6][pid:1137613][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 43 |
+
question object
|
| 44 |
+
answer object
|
| 45 |
+
image_synthesis_code object
|
| 46 |
+
solution object
|
| 47 |
+
image object
|
| 48 |
+
dtype: object
|
| 49 |
+
[2025-07-09 13:54:09,976][oumi][rank6][pid:1137613][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6)
|
| 50 |
+
[2025-07-09 13:54:09,976][oumi][rank6][pid:1137613][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 51 |
+
[2025-07-09 13:54:09,977][oumi][rank6][pid:1137613][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 52 |
+
[2025-07-09 13:54:09,977][oumi][rank6][pid:1137613][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6))...
|
| 53 |
+
[2025-07-09 13:54:10,003][oumi][rank6][pid:1137613][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 54 |
+
[2025-07-09 13:54:13,253][oumi][rank6][pid:1137613][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 55 |
+
[2025-07-09 13:54:13,253][oumi][rank6][pid:1137613][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 56 |
+
[2025-07-09 13:54:13,738][oumi][rank6][pid:1137613][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.48100000000001, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 57 |
+
[2025-07-09 13:54:13,833][oumi][rank6][pid:1137613][MainThread][INFO]][train.py:506] Training init time: 25.237s
|
| 58 |
+
[2025-07-09 13:54:13,833][oumi][rank6][pid:1137613][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 59 |
+
[2025-07-09 14:02:11,522][oumi][rank6][pid:1141195][MainThread][INFO]][models.py:433] 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.
|
| 60 |
+
[2025-07-09 14:02:13,069][oumi][rank6][pid:1141195][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 61 |
+
[2025-07-09 14:02:17,584][oumi][rank6][pid:1141195][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 62 |
+
[2025-07-09 14:02:17,584][oumi][rank6][pid:1141195][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 63 |
+
[2025-07-09 14:02:18,140][oumi][rank6][pid:1141195][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 64 |
+
Split: train
|
| 65 |
+
Version: 0.0.0
|
| 66 |
+
Dataset size: 86589729
|
| 67 |
+
Download size: 77602134
|
| 68 |
+
Size: 164191863 bytes
|
| 69 |
+
Rows: 778
|
| 70 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 71 |
+
[2025-07-09 14:02:20,471][oumi][rank6][pid:1141195][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 72 |
+
question object
|
| 73 |
+
answer object
|
| 74 |
+
image_synthesis_code object
|
| 75 |
+
solution object
|
| 76 |
+
image object
|
| 77 |
+
dtype: object
|
| 78 |
+
[2025-07-09 14:02:31,498][oumi][rank6][pid:1141195][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6)
|
| 79 |
+
[2025-07-09 14:02:31,499][oumi][rank6][pid:1141195][MainThread][INFO]][train.py:402] 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'}
|
| 80 |
+
[2025-07-09 14:02:31,499][oumi][rank6][pid:1141195][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 81 |
+
[2025-07-09 14:02:31,499][oumi][rank6][pid:1141195][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6))...
|
| 82 |
+
[2025-07-09 14:02:31,524][oumi][rank6][pid:1141195][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 83 |
+
[2025-07-09 14:02:34,783][oumi][rank6][pid:1141195][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 84 |
+
[2025-07-09 14:02:34,790][oumi][rank6][pid:1141195][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 85 |
+
[2025-07-09 14:02:35,255][oumi][rank6][pid:1141195][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.562, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 86 |
+
[2025-07-09 14:02:35,476][oumi][rank6][pid:1141195][MainThread][INFO]][train.py:506] Training init time: 24.015s
|
| 87 |
+
[2025-07-09 14:02:35,477][oumi][rank6][pid:1141195][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 88 |
+
[2025-07-09 14:55:03,129][oumi][rank6][pid:1152364][MainThread][INFO]][models.py:433] 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.
|
| 89 |
+
[2025-07-09 14:55:04,681][oumi][rank6][pid:1152364][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 90 |
+
[2025-07-09 14:55:09,288][oumi][rank6][pid:1152364][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 91 |
+
[2025-07-09 14:55:09,288][oumi][rank6][pid:1152364][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 92 |
+
[2025-07-09 14:55:10,653][oumi][rank6][pid:1152364][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 93 |
+
Split: train
|
| 94 |
+
Version: 0.0.0
|
| 95 |
+
Dataset size: 49430293
|
| 96 |
+
Download size: 43750929
|
| 97 |
+
Size: 93181222 bytes
|
| 98 |
+
Rows: 598
|
| 99 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 100 |
+
[2025-07-09 14:55:12,862][oumi][rank6][pid:1152364][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 101 |
+
question object
|
| 102 |
+
answer object
|
| 103 |
+
image_synthesis_code object
|
| 104 |
+
solution object
|
| 105 |
+
image object
|
| 106 |
+
dtype: object
|
| 107 |
+
[2025-07-09 14:55:24,707][oumi][rank6][pid:1152364][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6)
|
| 108 |
+
[2025-07-09 14:55:24,708][oumi][rank6][pid:1152364][MainThread][INFO]][train.py:402] 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'}
|
| 109 |
+
[2025-07-09 14:55:24,708][oumi][rank6][pid:1152364][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 110 |
+
[2025-07-09 14:55:24,708][oumi][rank6][pid:1152364][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6))...
|
| 111 |
+
[2025-07-09 14:55:24,735][oumi][rank6][pid:1152364][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 112 |
+
[2025-07-09 14:55:27,959][oumi][rank6][pid:1152364][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 113 |
+
[2025-07-09 14:55:27,959][oumi][rank6][pid:1152364][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 114 |
+
[2025-07-09 14:55:28,327][oumi][rank6][pid:1152364][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.39, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 115 |
+
[2025-07-09 14:55:28,470][oumi][rank6][pid:1152364][MainThread][INFO]][train.py:506] Training init time: 25.404s
|
| 116 |
+
[2025-07-09 14:55:28,470][oumi][rank6][pid:1152364][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 117 |
+
[2025-07-09 15:16:43,459][oumi][rank6][pid:1159834][MainThread][INFO]][models.py:433] 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.
|
| 118 |
+
[2025-07-09 15:16:44,932][oumi][rank6][pid:1159834][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 119 |
+
[2025-07-09 15:16:49,575][oumi][rank6][pid:1159834][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 120 |
+
[2025-07-09 15:16:49,575][oumi][rank6][pid:1159834][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 121 |
+
[2025-07-09 15:16:50,122][oumi][rank6][pid:1159834][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 122 |
+
Split: train
|
| 123 |
+
Version: 0.0.0
|
| 124 |
+
Dataset size: 49430293
|
| 125 |
+
Download size: 43750929
|
| 126 |
+
Size: 93181222 bytes
|
| 127 |
+
Rows: 598
|
| 128 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 129 |
+
[2025-07-09 15:16:52,286][oumi][rank6][pid:1159834][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 130 |
+
question object
|
| 131 |
+
answer object
|
| 132 |
+
image_synthesis_code object
|
| 133 |
+
solution object
|
| 134 |
+
image object
|
| 135 |
+
dtype: object
|
| 136 |
+
[2025-07-09 15:17:03,878][oumi][rank6][pid:1159834][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6)
|
| 137 |
+
[2025-07-09 15:17:03,878][oumi][rank6][pid:1159834][MainThread][INFO]][distributed.py:481] 'FSDP_TRANSFORMER_CLS_TO_WRAP' is set to 'Qwen2_5_VLDecoderLayer' based on 'transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer'.
|
| 138 |
+
[2025-07-09 15:17:03,878][oumi][rank6][pid:1159834][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2_5_VLDecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 139 |
+
[2025-07-09 15:17:03,878][oumi][rank6][pid:1159834][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 140 |
+
[2025-07-09 15:17:03,878][oumi][rank6][pid:1159834][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=6, local_world_size=8, local_rank=6))...
|
| 141 |
+
[2025-07-09 15:17:03,907][oumi][rank6][pid:1159834][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 142 |
+
[2025-07-09 15:17:07,408][oumi][rank6][pid:1159834][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 143 |
+
[2025-07-09 15:17:07,417][oumi][rank6][pid:1159834][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 144 |
+
[2025-07-09 15:17:07,907][oumi][rank6][pid:1159834][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.33, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 145 |
+
[2025-07-09 15:17:07,978][oumi][rank6][pid:1159834][MainThread][INFO]][train.py:506] Training init time: 24.570s
|
| 146 |
+
[2025-07-09 15:17:07,978][oumi][rank6][pid:1159834][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 147 |
+
[2025-07-09 17:00:39,131][oumi][rank6][pid:1159834][MainThread][INFO]][train.py:514] Training is Complete.
|
| 148 |
+
[2025-07-09 17:00:39,133][oumi][rank6][pid:1159834][MainThread][INFO]][device_utils.py:297] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=42828.0, temperature=32, fan_speed=None, fan_speeds=None, power_usage_watts=122.926, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 149 |
+
[2025-07-09 17:00:39,133][oumi][rank6][pid:1159834][MainThread][INFO]][torch_utils.py:136] Peak GPU memory usage: 36.26 GB
|
| 150 |
+
[2025-07-09 17:00:39,133][oumi][rank6][pid:1159834][MainThread][INFO]][train.py:521] Saving final state...
|
| 151 |
+
[2025-07-09 17:00:39,134][oumi][rank6][pid:1159834][MainThread][INFO]][train.py:526] Saving final model...
|
| 152 |
+
[2025-07-09 17:00:39,134][oumi][rank6][pid:1159834][MainThread][INFO]][hf_trainer.py:142] Saving FULL_STATE_DICT for final model checkpoint.
|
| 153 |
+
[2025-07-09 17:01:54,948][oumi][rank6][pid:1159834][MainThread][INFO]][hf_trainer.py:149] Model has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 154 |
+
[2025-07-09 17:01:58,558][oumi][rank6][pid:1159834][MainThread][INFO]][hf_trainer.py:153] Processor config has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 155 |
+
[2025-07-09 17:03:28,891][oumi][rank6][pid:1159834][MainThread][INFO]][train.py:214]
|
| 156 |
+
|
| 157 |
+
» We're always looking for feedback. What's one thing we can improve? https://oumi.ai/feedback
|
logs/rank_0007.log
ADDED
|
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[2025-07-09 13:32:43,828][oumi][rank7][pid:1132657][MainThread][INFO]][models.py:433] 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.
|
| 2 |
+
[2025-07-09 13:32:45,271][oumi][rank7][pid:1132657][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 3 |
+
[2025-07-09 13:32:49,688][oumi][rank7][pid:1132657][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 4 |
+
[2025-07-09 13:32:49,688][oumi][rank7][pid:1132657][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 5 |
+
[2025-07-09 13:32:50,318][oumi][rank7][pid:1132657][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 6 |
+
Split: train
|
| 7 |
+
Version: 0.0.0
|
| 8 |
+
Dataset size: 86589729
|
| 9 |
+
Download size: 77602134
|
| 10 |
+
Size: 164191863 bytes
|
| 11 |
+
Rows: 778
|
| 12 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 13 |
+
[2025-07-09 13:32:52,640][oumi][rank7][pid:1132657][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 14 |
+
question object
|
| 15 |
+
answer object
|
| 16 |
+
image_synthesis_code object
|
| 17 |
+
solution object
|
| 18 |
+
image object
|
| 19 |
+
dtype: object
|
| 20 |
+
[2025-07-09 13:33:03,997][oumi][rank7][pid:1132657][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7)
|
| 21 |
+
[2025-07-09 13:33:03,998][oumi][rank7][pid:1132657][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 22 |
+
[2025-07-09 13:33:03,998][oumi][rank7][pid:1132657][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 23 |
+
[2025-07-09 13:33:03,998][oumi][rank7][pid:1132657][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7))...
|
| 24 |
+
[2025-07-09 13:33:04,028][oumi][rank7][pid:1132657][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 25 |
+
[2025-07-09 13:33:07,155][oumi][rank7][pid:1132657][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 26 |
+
[2025-07-09 13:33:07,156][oumi][rank7][pid:1132657][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 27 |
+
[2025-07-09 13:33:07,624][oumi][rank7][pid:1132657][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.549, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 28 |
+
[2025-07-09 13:33:07,789][oumi][rank7][pid:1132657][MainThread][INFO]][train.py:506] Training init time: 24.034s
|
| 29 |
+
[2025-07-09 13:33:07,789][oumi][rank7][pid:1132657][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 30 |
+
[2025-07-09 13:53:48,658][oumi][rank7][pid:1137614][MainThread][INFO]][models.py:433] 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.
|
| 31 |
+
[2025-07-09 13:53:50,195][oumi][rank7][pid:1137614][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 32 |
+
[2025-07-09 13:53:54,740][oumi][rank7][pid:1137614][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 33 |
+
[2025-07-09 13:53:54,740][oumi][rank7][pid:1137614][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 34 |
+
[2025-07-09 13:53:55,253][oumi][rank7][pid:1137614][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 35 |
+
Split: train
|
| 36 |
+
Version: 0.0.0
|
| 37 |
+
Dataset size: 86589729
|
| 38 |
+
Download size: 77602134
|
| 39 |
+
Size: 164191863 bytes
|
| 40 |
+
Rows: 778
|
| 41 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 42 |
+
[2025-07-09 13:53:57,621][oumi][rank7][pid:1137614][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 43 |
+
question object
|
| 44 |
+
answer object
|
| 45 |
+
image_synthesis_code object
|
| 46 |
+
solution object
|
| 47 |
+
image object
|
| 48 |
+
dtype: object
|
| 49 |
+
[2025-07-09 13:54:09,979][oumi][rank7][pid:1137614][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7)
|
| 50 |
+
[2025-07-09 13:54:09,979][oumi][rank7][pid:1137614][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2DecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 51 |
+
[2025-07-09 13:54:09,979][oumi][rank7][pid:1137614][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 52 |
+
[2025-07-09 13:54:09,979][oumi][rank7][pid:1137614][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7))...
|
| 53 |
+
[2025-07-09 13:54:10,007][oumi][rank7][pid:1137614][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 54 |
+
[2025-07-09 13:54:13,249][oumi][rank7][pid:1137614][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 55 |
+
[2025-07-09 13:54:13,250][oumi][rank7][pid:1137614][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 56 |
+
[2025-07-09 13:54:13,773][oumi][rank7][pid:1137614][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.486, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 57 |
+
[2025-07-09 13:54:13,825][oumi][rank7][pid:1137614][MainThread][INFO]][train.py:506] Training init time: 25.226s
|
| 58 |
+
[2025-07-09 13:54:13,825][oumi][rank7][pid:1137614][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 59 |
+
[2025-07-09 14:02:11,503][oumi][rank7][pid:1141196][MainThread][INFO]][models.py:433] 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.
|
| 60 |
+
[2025-07-09 14:02:13,029][oumi][rank7][pid:1141196][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 61 |
+
[2025-07-09 14:02:17,485][oumi][rank7][pid:1141196][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 62 |
+
[2025-07-09 14:02:17,485][oumi][rank7][pid:1141196][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/GAIR_LIMO_img_v1'
|
| 63 |
+
[2025-07-09 14:02:17,929][oumi][rank7][pid:1141196][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 64 |
+
Split: train
|
| 65 |
+
Version: 0.0.0
|
| 66 |
+
Dataset size: 86589729
|
| 67 |
+
Download size: 77602134
|
| 68 |
+
Size: 164191863 bytes
|
| 69 |
+
Rows: 778
|
| 70 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 71 |
+
[2025-07-09 14:02:20,292][oumi][rank7][pid:1141196][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (778, 5). Columns:
|
| 72 |
+
question object
|
| 73 |
+
answer object
|
| 74 |
+
image_synthesis_code object
|
| 75 |
+
solution object
|
| 76 |
+
image object
|
| 77 |
+
dtype: object
|
| 78 |
+
[2025-07-09 14:02:31,485][oumi][rank7][pid:1141196][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7)
|
| 79 |
+
[2025-07-09 14:02:31,485][oumi][rank7][pid:1141196][MainThread][INFO]][train.py:402] 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'}
|
| 80 |
+
[2025-07-09 14:02:31,485][oumi][rank7][pid:1141196][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 81 |
+
[2025-07-09 14:02:31,486][oumi][rank7][pid:1141196][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7))...
|
| 82 |
+
[2025-07-09 14:02:31,514][oumi][rank7][pid:1141196][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 83 |
+
[2025-07-09 14:02:34,931][oumi][rank7][pid:1141196][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 84 |
+
[2025-07-09 14:02:34,931][oumi][rank7][pid:1141196][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 85 |
+
[2025-07-09 14:02:35,430][oumi][rank7][pid:1141196][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.53, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 86 |
+
[2025-07-09 14:02:35,487][oumi][rank7][pid:1141196][MainThread][INFO]][train.py:506] Training init time: 24.028s
|
| 87 |
+
[2025-07-09 14:02:35,487][oumi][rank7][pid:1141196][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 88 |
+
[2025-07-09 14:55:03,125][oumi][rank7][pid:1152365][MainThread][INFO]][models.py:433] 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.
|
| 89 |
+
[2025-07-09 14:55:04,721][oumi][rank7][pid:1152365][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 90 |
+
[2025-07-09 14:55:09,250][oumi][rank7][pid:1152365][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 91 |
+
[2025-07-09 14:55:09,250][oumi][rank7][pid:1152365][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 92 |
+
[2025-07-09 14:55:10,699][oumi][rank7][pid:1152365][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 93 |
+
Split: train
|
| 94 |
+
Version: 0.0.0
|
| 95 |
+
Dataset size: 49430293
|
| 96 |
+
Download size: 43750929
|
| 97 |
+
Size: 93181222 bytes
|
| 98 |
+
Rows: 598
|
| 99 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 100 |
+
[2025-07-09 14:55:12,898][oumi][rank7][pid:1152365][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 101 |
+
question object
|
| 102 |
+
answer object
|
| 103 |
+
image_synthesis_code object
|
| 104 |
+
solution object
|
| 105 |
+
image object
|
| 106 |
+
dtype: object
|
| 107 |
+
[2025-07-09 14:55:24,715][oumi][rank7][pid:1152365][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7)
|
| 108 |
+
[2025-07-09 14:55:24,715][oumi][rank7][pid:1152365][MainThread][INFO]][train.py:402] 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'}
|
| 109 |
+
[2025-07-09 14:55:24,716][oumi][rank7][pid:1152365][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 110 |
+
[2025-07-09 14:55:24,716][oumi][rank7][pid:1152365][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7))...
|
| 111 |
+
[2025-07-09 14:55:24,819][oumi][rank7][pid:1152365][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 112 |
+
[2025-07-09 14:55:28,005][oumi][rank7][pid:1152365][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 113 |
+
[2025-07-09 14:55:28,006][oumi][rank7][pid:1152365][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 114 |
+
[2025-07-09 14:55:28,381][oumi][rank7][pid:1152365][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6338.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.402, power_limit_watts=700.0, gpu_utilization=1, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 115 |
+
[2025-07-09 14:55:28,462][oumi][rank7][pid:1152365][MainThread][INFO]][train.py:506] Training init time: 25.395s
|
| 116 |
+
[2025-07-09 14:55:28,462][oumi][rank7][pid:1152365][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 117 |
+
[2025-07-09 15:16:43,460][oumi][rank7][pid:1159835][MainThread][INFO]][models.py:433] 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.
|
| 118 |
+
[2025-07-09 15:16:45,053][oumi][rank7][pid:1159835][MainThread][INFO]][models.py:479] Using the chat template 'qwen2-vl-instruct' specified in model config for model 'Qwen/Qwen2.5-VL-7B-Instruct'.
|
| 119 |
+
[2025-07-09 15:16:49,587][oumi][rank7][pid:1159835][MainThread][WARNING]][data.py:66] Using torchdata preprocessing pipeline. This is currently in beta and may not be stable.
|
| 120 |
+
[2025-07-09 15:16:49,587][oumi][rank7][pid:1159835][MainThread][INFO]][base_map_dataset.py:91] Creating map dataset (type: HuggingFaceVisionDataset)... dataset_name: 'penfever/limo-vis-mid-resize'
|
| 121 |
+
[2025-07-09 15:16:50,101][oumi][rank7][pid:1159835][MainThread][INFO]][base_map_dataset.py:487] Dataset Info:
|
| 122 |
+
Split: train
|
| 123 |
+
Version: 0.0.0
|
| 124 |
+
Dataset size: 49430293
|
| 125 |
+
Download size: 43750929
|
| 126 |
+
Size: 93181222 bytes
|
| 127 |
+
Rows: 598
|
| 128 |
+
Columns: ['question', 'answer', 'image_synthesis_code', 'solution', 'image']
|
| 129 |
+
[2025-07-09 15:16:52,280][oumi][rank7][pid:1159835][MainThread][INFO]][base_map_dataset.py:426] Loaded DataFrame with shape: (598, 5). Columns:
|
| 130 |
+
question object
|
| 131 |
+
answer object
|
| 132 |
+
image_synthesis_code object
|
| 133 |
+
solution object
|
| 134 |
+
image object
|
| 135 |
+
dtype: object
|
| 136 |
+
[2025-07-09 15:17:03,895][oumi][rank7][pid:1159835][MainThread][INFO]][distributed.py:303] Initialized distributed (True): DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7)
|
| 137 |
+
[2025-07-09 15:17:03,895][oumi][rank7][pid:1159835][MainThread][INFO]][distributed.py:481] 'FSDP_TRANSFORMER_CLS_TO_WRAP' is set to 'Qwen2_5_VLDecoderLayer' based on 'transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer'.
|
| 138 |
+
[2025-07-09 15:17:03,895][oumi][rank7][pid:1159835][MainThread][INFO]][train.py:402] 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': 'FULL_SHARD', 'FSDP_OFFLOAD_PARAMS': 'false', 'FSDP_BACKWARD_PREFETCH': 'BACKWARD_PRE', 'FSDP_FORWARD_PREFETCH': 'true', 'FSDP_STATE_DICT_TYPE': 'FULL_STATE_DICT', 'FSDP_AUTO_WRAP_POLICY': 'TRANSFORMER_BASED_WRAP', 'FSDP_MIN_NUM_PARAMS': '100000', 'FSDP_TRANSFORMER_CLS_TO_WRAP': 'Qwen2_5_VLDecoderLayer', 'FSDP_SYNC_MODULE_STATES': 'true', 'FSDP_ACTIVATION_CHECKPOINTING': 'true'}
|
| 139 |
+
[2025-07-09 15:17:03,895][oumi][rank7][pid:1159835][MainThread][INFO]][models.py:219] Accelerate FSDP run detected! Setting device_map to None.
|
| 140 |
+
[2025-07-09 15:17:03,895][oumi][rank7][pid:1159835][MainThread][INFO]][models.py:228] Building model using device_map: None (DeviceRankInfo(world_size=8, rank=7, local_world_size=8, local_rank=7))...
|
| 141 |
+
[2025-07-09 15:17:03,924][oumi][rank7][pid:1159835][MainThread][INFO]][models.py:300] Using model class: <class 'transformers.models.auto.modeling_auto.AutoModelForVision2Seq'> to instantiate model.
|
| 142 |
+
[2025-07-09 15:17:07,428][oumi][rank7][pid:1159835][MainThread][INFO]][torch_profiler_utils.py:164] PROF: Torch Profiler disabled!
|
| 143 |
+
[2025-07-09 15:17:07,428][oumi][rank7][pid:1159835][MainThread][WARNING]][callbacks.py:72] MFU logging requires packed datasets. Skipping MFU callbacks.
|
| 144 |
+
[2025-07-09 15:17:07,856][oumi][rank7][pid:1159835][MainThread][INFO]][device_utils.py:297] GPU Metrics Before Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=6166.0, temperature=31, fan_speed=None, fan_speeds=None, power_usage_watts=122.33, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 145 |
+
[2025-07-09 15:17:07,982][oumi][rank7][pid:1159835][MainThread][INFO]][train.py:506] Training init time: 24.575s
|
| 146 |
+
[2025-07-09 15:17:07,982][oumi][rank7][pid:1159835][MainThread][INFO]][train.py:507] Starting training... (TrainerType.TRL_SFT, transformers: 4.51.3)
|
| 147 |
+
[2025-07-09 17:00:39,022][oumi][rank7][pid:1159835][MainThread][INFO]][train.py:514] Training is Complete.
|
| 148 |
+
[2025-07-09 17:00:39,027][oumi][rank7][pid:1159835][MainThread][INFO]][device_utils.py:297] GPU Metrics After Training: GPU runtime info: NVidiaGpuRuntimeInfo(device_index=0, device_count=8, used_memory_mb=42828.0, temperature=32, fan_speed=None, fan_speeds=None, power_usage_watts=122.837, power_limit_watts=700.0, gpu_utilization=0, memory_utilization=0, performance_state=0, clock_speed_graphics=1980, clock_speed_sm=1980, clock_speed_memory=2619).
|
| 149 |
+
[2025-07-09 17:00:39,027][oumi][rank7][pid:1159835][MainThread][INFO]][torch_utils.py:136] Peak GPU memory usage: 36.26 GB
|
| 150 |
+
[2025-07-09 17:00:39,027][oumi][rank7][pid:1159835][MainThread][INFO]][train.py:521] Saving final state...
|
| 151 |
+
[2025-07-09 17:00:39,135][oumi][rank7][pid:1159835][MainThread][INFO]][train.py:526] Saving final model...
|
| 152 |
+
[2025-07-09 17:00:39,135][oumi][rank7][pid:1159835][MainThread][INFO]][hf_trainer.py:142] Saving FULL_STATE_DICT for final model checkpoint.
|
| 153 |
+
[2025-07-09 17:01:54,957][oumi][rank7][pid:1159835][MainThread][INFO]][hf_trainer.py:149] Model has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 154 |
+
[2025-07-09 17:01:58,650][oumi][rank7][pid:1159835][MainThread][INFO]][hf_trainer.py:153] Processor config has been saved at output/qwen2_5_vl_7b_limo_vis
|
| 155 |
+
[2025-07-09 17:03:28,908][oumi][rank7][pid:1159835][MainThread][INFO]][train.py:214]
|
| 156 |
+
|
| 157 |
+
» 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:b4b39025cc73539dc1591007c12c021a04f193f9d23244b52299a931e19fc0a3
|
| 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:3c16e51d30a854756e60d670eae891deb3296a579b3346ad609b2eb0b6b684ac
|
| 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:f6d8cef2edd97457b74a4f6446cdb30db6bf6bb73aa2c49c6b3df3cca1c48085
|
| 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:743f131ebdf4ab2f5181fd192a78ea993490fdfb466ba1ace58242e01151abf6
|
| 3 |
+
size 1691924384
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,736 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 16584333312
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 20 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 31 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 32 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 33 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 34 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 35 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 36 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 42 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 43 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 44 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 45 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 46 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 47 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 48 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 52 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 53 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 54 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 55 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 56 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 57 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 58 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 59 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 60 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 64 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 65 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 66 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 67 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 68 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 69 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 70 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 71 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 72 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 75 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 76 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 77 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 78 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 79 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 80 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 81 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 82 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 83 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 84 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 85 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 86 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 87 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 88 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 89 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 90 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 91 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 92 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 93 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 94 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 95 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 96 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 97 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 98 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 99 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 100 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 101 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 102 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 103 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 104 |
+
"model.layers.16.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 105 |
+
"model.layers.16.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 106 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 107 |
+
"model.layers.16.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 108 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 109 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 110 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 111 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 112 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 113 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 114 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 115 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 116 |
+
"model.layers.17.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 117 |
+
"model.layers.17.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 118 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 119 |
+
"model.layers.17.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 120 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 121 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 122 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 123 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 124 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 125 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 126 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 127 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 128 |
+
"model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 129 |
+
"model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 130 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 131 |
+
"model.layers.18.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 132 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 133 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 134 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 135 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 136 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 137 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 138 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 139 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 140 |
+
"model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 141 |
+
"model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 142 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 143 |
+
"model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 144 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 145 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 146 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 147 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 148 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 149 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 150 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 151 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 152 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 153 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 154 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 155 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 156 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 157 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 158 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 159 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 160 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 161 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 162 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 163 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 164 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 165 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 166 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 167 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 168 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 169 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 170 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 171 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 172 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 173 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 174 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 175 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 176 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 177 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 178 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 179 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 180 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 181 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 182 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 183 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 184 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 185 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 186 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 187 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 188 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 189 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 190 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 191 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 192 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 193 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 194 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 195 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 196 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 197 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 198 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 199 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 200 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 201 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 202 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 203 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 204 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 205 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 206 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 207 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 208 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 209 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 210 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 211 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 212 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 213 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 214 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 215 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 216 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 217 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 218 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 219 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 220 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 221 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 222 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 223 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 224 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 225 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 226 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 227 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 228 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 229 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 230 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 231 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 232 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 233 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 234 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 235 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 236 |
+
"model.layers.26.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 237 |
+
"model.layers.26.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 238 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 239 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 240 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 241 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 242 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 243 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 244 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 245 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 246 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 247 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 248 |
+
"model.layers.27.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 249 |
+
"model.layers.27.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
| 250 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
|
| 251 |
+
"model.layers.27.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
|
| 252 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
| 253 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00004-of-00004.safetensors",
|
| 254 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
|
| 255 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
|
| 256 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00004-of-00004.safetensors",
|
| 257 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
|
| 258 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00004-of-00004.safetensors",
|
| 259 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
|
| 260 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 261 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 273 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 274 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 275 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 276 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 277 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 278 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 279 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 280 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 281 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 282 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 283 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 284 |
+
"model.layers.5.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 285 |
+
"model.layers.5.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 286 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 287 |
+
"model.layers.5.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 288 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 289 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 290 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 291 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 292 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 293 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 294 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 295 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 296 |
+
"model.layers.6.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 297 |
+
"model.layers.6.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 298 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 299 |
+
"model.layers.6.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 300 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 301 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 302 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 303 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 304 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 305 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 306 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 307 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 308 |
+
"model.layers.7.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 309 |
+
"model.layers.7.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 310 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 311 |
+
"model.layers.7.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 312 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 313 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 314 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 315 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 316 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 317 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 318 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 319 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 320 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 321 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 322 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 323 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 324 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 325 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 326 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 327 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 328 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 329 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 330 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 331 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 332 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 333 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 334 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 335 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 336 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 337 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 338 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 339 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 340 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 341 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 342 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 343 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 344 |
+
"model.norm.weight": "model-00004-of-00004.safetensors",
|
| 345 |
+
"visual.blocks.0.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 346 |
+
"visual.blocks.0.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 347 |
+
"visual.blocks.0.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 348 |
+
"visual.blocks.0.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 349 |
+
"visual.blocks.0.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 350 |
+
"visual.blocks.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 351 |
+
"visual.blocks.0.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 352 |
+
"visual.blocks.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 353 |
+
"visual.blocks.0.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 354 |
+
"visual.blocks.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 355 |
+
"visual.blocks.0.norm1.weight": "model-00001-of-00004.safetensors",
|
| 356 |
+
"visual.blocks.0.norm2.weight": "model-00001-of-00004.safetensors",
|
| 357 |
+
"visual.blocks.1.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 358 |
+
"visual.blocks.1.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 359 |
+
"visual.blocks.1.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 360 |
+
"visual.blocks.1.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 361 |
+
"visual.blocks.1.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 362 |
+
"visual.blocks.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 363 |
+
"visual.blocks.1.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 364 |
+
"visual.blocks.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 365 |
+
"visual.blocks.1.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 366 |
+
"visual.blocks.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 367 |
+
"visual.blocks.1.norm1.weight": "model-00001-of-00004.safetensors",
|
| 368 |
+
"visual.blocks.1.norm2.weight": "model-00001-of-00004.safetensors",
|
| 369 |
+
"visual.blocks.10.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 370 |
+
"visual.blocks.10.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 371 |
+
"visual.blocks.10.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 372 |
+
"visual.blocks.10.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 373 |
+
"visual.blocks.10.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 374 |
+
"visual.blocks.10.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 375 |
+
"visual.blocks.10.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 376 |
+
"visual.blocks.10.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 377 |
+
"visual.blocks.10.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 378 |
+
"visual.blocks.10.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 379 |
+
"visual.blocks.10.norm1.weight": "model-00001-of-00004.safetensors",
|
| 380 |
+
"visual.blocks.10.norm2.weight": "model-00001-of-00004.safetensors",
|
| 381 |
+
"visual.blocks.11.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 382 |
+
"visual.blocks.11.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 383 |
+
"visual.blocks.11.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 384 |
+
"visual.blocks.11.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 385 |
+
"visual.blocks.11.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 386 |
+
"visual.blocks.11.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 387 |
+
"visual.blocks.11.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 388 |
+
"visual.blocks.11.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 389 |
+
"visual.blocks.11.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 390 |
+
"visual.blocks.11.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 391 |
+
"visual.blocks.11.norm1.weight": "model-00001-of-00004.safetensors",
|
| 392 |
+
"visual.blocks.11.norm2.weight": "model-00001-of-00004.safetensors",
|
| 393 |
+
"visual.blocks.12.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 394 |
+
"visual.blocks.12.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 395 |
+
"visual.blocks.12.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 396 |
+
"visual.blocks.12.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 397 |
+
"visual.blocks.12.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 398 |
+
"visual.blocks.12.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 399 |
+
"visual.blocks.12.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 400 |
+
"visual.blocks.12.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 401 |
+
"visual.blocks.12.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 402 |
+
"visual.blocks.12.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 403 |
+
"visual.blocks.12.norm1.weight": "model-00001-of-00004.safetensors",
|
| 404 |
+
"visual.blocks.12.norm2.weight": "model-00001-of-00004.safetensors",
|
| 405 |
+
"visual.blocks.13.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 406 |
+
"visual.blocks.13.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 407 |
+
"visual.blocks.13.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 408 |
+
"visual.blocks.13.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 409 |
+
"visual.blocks.13.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 410 |
+
"visual.blocks.13.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 411 |
+
"visual.blocks.13.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 412 |
+
"visual.blocks.13.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 413 |
+
"visual.blocks.13.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 414 |
+
"visual.blocks.13.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 415 |
+
"visual.blocks.13.norm1.weight": "model-00001-of-00004.safetensors",
|
| 416 |
+
"visual.blocks.13.norm2.weight": "model-00001-of-00004.safetensors",
|
| 417 |
+
"visual.blocks.14.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 418 |
+
"visual.blocks.14.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 419 |
+
"visual.blocks.14.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 420 |
+
"visual.blocks.14.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 421 |
+
"visual.blocks.14.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 422 |
+
"visual.blocks.14.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 423 |
+
"visual.blocks.14.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 424 |
+
"visual.blocks.14.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 425 |
+
"visual.blocks.14.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 426 |
+
"visual.blocks.14.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 427 |
+
"visual.blocks.14.norm1.weight": "model-00001-of-00004.safetensors",
|
| 428 |
+
"visual.blocks.14.norm2.weight": "model-00001-of-00004.safetensors",
|
| 429 |
+
"visual.blocks.15.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 430 |
+
"visual.blocks.15.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 431 |
+
"visual.blocks.15.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 432 |
+
"visual.blocks.15.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 433 |
+
"visual.blocks.15.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 434 |
+
"visual.blocks.15.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 435 |
+
"visual.blocks.15.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 436 |
+
"visual.blocks.15.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 437 |
+
"visual.blocks.15.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 438 |
+
"visual.blocks.15.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 439 |
+
"visual.blocks.15.norm1.weight": "model-00001-of-00004.safetensors",
|
| 440 |
+
"visual.blocks.15.norm2.weight": "model-00001-of-00004.safetensors",
|
| 441 |
+
"visual.blocks.16.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 442 |
+
"visual.blocks.16.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 443 |
+
"visual.blocks.16.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 444 |
+
"visual.blocks.16.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 445 |
+
"visual.blocks.16.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 446 |
+
"visual.blocks.16.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 447 |
+
"visual.blocks.16.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 448 |
+
"visual.blocks.16.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 449 |
+
"visual.blocks.16.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 450 |
+
"visual.blocks.16.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 451 |
+
"visual.blocks.16.norm1.weight": "model-00001-of-00004.safetensors",
|
| 452 |
+
"visual.blocks.16.norm2.weight": "model-00001-of-00004.safetensors",
|
| 453 |
+
"visual.blocks.17.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 454 |
+
"visual.blocks.17.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 455 |
+
"visual.blocks.17.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 456 |
+
"visual.blocks.17.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 457 |
+
"visual.blocks.17.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 458 |
+
"visual.blocks.17.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 459 |
+
"visual.blocks.17.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 460 |
+
"visual.blocks.17.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 461 |
+
"visual.blocks.17.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 462 |
+
"visual.blocks.17.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 463 |
+
"visual.blocks.17.norm1.weight": "model-00001-of-00004.safetensors",
|
| 464 |
+
"visual.blocks.17.norm2.weight": "model-00001-of-00004.safetensors",
|
| 465 |
+
"visual.blocks.18.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 466 |
+
"visual.blocks.18.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 467 |
+
"visual.blocks.18.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 468 |
+
"visual.blocks.18.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 469 |
+
"visual.blocks.18.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 470 |
+
"visual.blocks.18.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 471 |
+
"visual.blocks.18.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 472 |
+
"visual.blocks.18.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 473 |
+
"visual.blocks.18.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 474 |
+
"visual.blocks.18.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 475 |
+
"visual.blocks.18.norm1.weight": "model-00001-of-00004.safetensors",
|
| 476 |
+
"visual.blocks.18.norm2.weight": "model-00001-of-00004.safetensors",
|
| 477 |
+
"visual.blocks.19.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 478 |
+
"visual.blocks.19.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 479 |
+
"visual.blocks.19.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 480 |
+
"visual.blocks.19.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 481 |
+
"visual.blocks.19.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 482 |
+
"visual.blocks.19.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 483 |
+
"visual.blocks.19.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 484 |
+
"visual.blocks.19.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 485 |
+
"visual.blocks.19.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 486 |
+
"visual.blocks.19.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 487 |
+
"visual.blocks.19.norm1.weight": "model-00001-of-00004.safetensors",
|
| 488 |
+
"visual.blocks.19.norm2.weight": "model-00001-of-00004.safetensors",
|
| 489 |
+
"visual.blocks.2.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 490 |
+
"visual.blocks.2.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 491 |
+
"visual.blocks.2.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 492 |
+
"visual.blocks.2.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 493 |
+
"visual.blocks.2.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 494 |
+
"visual.blocks.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 495 |
+
"visual.blocks.2.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 496 |
+
"visual.blocks.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 497 |
+
"visual.blocks.2.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 498 |
+
"visual.blocks.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 499 |
+
"visual.blocks.2.norm1.weight": "model-00001-of-00004.safetensors",
|
| 500 |
+
"visual.blocks.2.norm2.weight": "model-00001-of-00004.safetensors",
|
| 501 |
+
"visual.blocks.20.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 502 |
+
"visual.blocks.20.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 503 |
+
"visual.blocks.20.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 504 |
+
"visual.blocks.20.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 505 |
+
"visual.blocks.20.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 506 |
+
"visual.blocks.20.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 507 |
+
"visual.blocks.20.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 508 |
+
"visual.blocks.20.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 509 |
+
"visual.blocks.20.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 510 |
+
"visual.blocks.20.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 511 |
+
"visual.blocks.20.norm1.weight": "model-00001-of-00004.safetensors",
|
| 512 |
+
"visual.blocks.20.norm2.weight": "model-00001-of-00004.safetensors",
|
| 513 |
+
"visual.blocks.21.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 514 |
+
"visual.blocks.21.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 515 |
+
"visual.blocks.21.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 516 |
+
"visual.blocks.21.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 517 |
+
"visual.blocks.21.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 518 |
+
"visual.blocks.21.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 519 |
+
"visual.blocks.21.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 520 |
+
"visual.blocks.21.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 521 |
+
"visual.blocks.21.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 522 |
+
"visual.blocks.21.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 523 |
+
"visual.blocks.21.norm1.weight": "model-00001-of-00004.safetensors",
|
| 524 |
+
"visual.blocks.21.norm2.weight": "model-00001-of-00004.safetensors",
|
| 525 |
+
"visual.blocks.22.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 526 |
+
"visual.blocks.22.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 527 |
+
"visual.blocks.22.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 528 |
+
"visual.blocks.22.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 529 |
+
"visual.blocks.22.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 530 |
+
"visual.blocks.22.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 531 |
+
"visual.blocks.22.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 532 |
+
"visual.blocks.22.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 533 |
+
"visual.blocks.22.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 534 |
+
"visual.blocks.22.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 535 |
+
"visual.blocks.22.norm1.weight": "model-00001-of-00004.safetensors",
|
| 536 |
+
"visual.blocks.22.norm2.weight": "model-00001-of-00004.safetensors",
|
| 537 |
+
"visual.blocks.23.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 538 |
+
"visual.blocks.23.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 539 |
+
"visual.blocks.23.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 540 |
+
"visual.blocks.23.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 541 |
+
"visual.blocks.23.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 542 |
+
"visual.blocks.23.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 543 |
+
"visual.blocks.23.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 544 |
+
"visual.blocks.23.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 545 |
+
"visual.blocks.23.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 546 |
+
"visual.blocks.23.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 547 |
+
"visual.blocks.23.norm1.weight": "model-00001-of-00004.safetensors",
|
| 548 |
+
"visual.blocks.23.norm2.weight": "model-00001-of-00004.safetensors",
|
| 549 |
+
"visual.blocks.24.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 550 |
+
"visual.blocks.24.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 551 |
+
"visual.blocks.24.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 552 |
+
"visual.blocks.24.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 553 |
+
"visual.blocks.24.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 554 |
+
"visual.blocks.24.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 555 |
+
"visual.blocks.24.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 556 |
+
"visual.blocks.24.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 557 |
+
"visual.blocks.24.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 558 |
+
"visual.blocks.24.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 559 |
+
"visual.blocks.24.norm1.weight": "model-00001-of-00004.safetensors",
|
| 560 |
+
"visual.blocks.24.norm2.weight": "model-00001-of-00004.safetensors",
|
| 561 |
+
"visual.blocks.25.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 562 |
+
"visual.blocks.25.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 563 |
+
"visual.blocks.25.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 564 |
+
"visual.blocks.25.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 565 |
+
"visual.blocks.25.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 566 |
+
"visual.blocks.25.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 567 |
+
"visual.blocks.25.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 568 |
+
"visual.blocks.25.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 569 |
+
"visual.blocks.25.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 570 |
+
"visual.blocks.25.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 571 |
+
"visual.blocks.25.norm1.weight": "model-00001-of-00004.safetensors",
|
| 572 |
+
"visual.blocks.25.norm2.weight": "model-00001-of-00004.safetensors",
|
| 573 |
+
"visual.blocks.26.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 574 |
+
"visual.blocks.26.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 575 |
+
"visual.blocks.26.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 576 |
+
"visual.blocks.26.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 577 |
+
"visual.blocks.26.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 578 |
+
"visual.blocks.26.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 579 |
+
"visual.blocks.26.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 580 |
+
"visual.blocks.26.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 581 |
+
"visual.blocks.26.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 582 |
+
"visual.blocks.26.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 583 |
+
"visual.blocks.26.norm1.weight": "model-00001-of-00004.safetensors",
|
| 584 |
+
"visual.blocks.26.norm2.weight": "model-00001-of-00004.safetensors",
|
| 585 |
+
"visual.blocks.27.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 586 |
+
"visual.blocks.27.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 587 |
+
"visual.blocks.27.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 588 |
+
"visual.blocks.27.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 589 |
+
"visual.blocks.27.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 590 |
+
"visual.blocks.27.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 591 |
+
"visual.blocks.27.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 592 |
+
"visual.blocks.27.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 593 |
+
"visual.blocks.27.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 594 |
+
"visual.blocks.27.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 595 |
+
"visual.blocks.27.norm1.weight": "model-00001-of-00004.safetensors",
|
| 596 |
+
"visual.blocks.27.norm2.weight": "model-00001-of-00004.safetensors",
|
| 597 |
+
"visual.blocks.28.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 598 |
+
"visual.blocks.28.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 599 |
+
"visual.blocks.28.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 600 |
+
"visual.blocks.28.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 601 |
+
"visual.blocks.28.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 602 |
+
"visual.blocks.28.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 603 |
+
"visual.blocks.28.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 604 |
+
"visual.blocks.28.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 605 |
+
"visual.blocks.28.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 606 |
+
"visual.blocks.28.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 607 |
+
"visual.blocks.28.norm1.weight": "model-00001-of-00004.safetensors",
|
| 608 |
+
"visual.blocks.28.norm2.weight": "model-00001-of-00004.safetensors",
|
| 609 |
+
"visual.blocks.29.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 610 |
+
"visual.blocks.29.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 611 |
+
"visual.blocks.29.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 612 |
+
"visual.blocks.29.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 613 |
+
"visual.blocks.29.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 614 |
+
"visual.blocks.29.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 615 |
+
"visual.blocks.29.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 616 |
+
"visual.blocks.29.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 617 |
+
"visual.blocks.29.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 618 |
+
"visual.blocks.29.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 619 |
+
"visual.blocks.29.norm1.weight": "model-00001-of-00004.safetensors",
|
| 620 |
+
"visual.blocks.29.norm2.weight": "model-00001-of-00004.safetensors",
|
| 621 |
+
"visual.blocks.3.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 622 |
+
"visual.blocks.3.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 623 |
+
"visual.blocks.3.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 624 |
+
"visual.blocks.3.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 625 |
+
"visual.blocks.3.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 626 |
+
"visual.blocks.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 627 |
+
"visual.blocks.3.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 628 |
+
"visual.blocks.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 629 |
+
"visual.blocks.3.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 630 |
+
"visual.blocks.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 631 |
+
"visual.blocks.3.norm1.weight": "model-00001-of-00004.safetensors",
|
| 632 |
+
"visual.blocks.3.norm2.weight": "model-00001-of-00004.safetensors",
|
| 633 |
+
"visual.blocks.30.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 634 |
+
"visual.blocks.30.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 635 |
+
"visual.blocks.30.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 636 |
+
"visual.blocks.30.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 637 |
+
"visual.blocks.30.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 638 |
+
"visual.blocks.30.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 639 |
+
"visual.blocks.30.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 640 |
+
"visual.blocks.30.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 641 |
+
"visual.blocks.30.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 642 |
+
"visual.blocks.30.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 643 |
+
"visual.blocks.30.norm1.weight": "model-00001-of-00004.safetensors",
|
| 644 |
+
"visual.blocks.30.norm2.weight": "model-00001-of-00004.safetensors",
|
| 645 |
+
"visual.blocks.31.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 646 |
+
"visual.blocks.31.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 647 |
+
"visual.blocks.31.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 648 |
+
"visual.blocks.31.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 649 |
+
"visual.blocks.31.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 650 |
+
"visual.blocks.31.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 651 |
+
"visual.blocks.31.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 652 |
+
"visual.blocks.31.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 653 |
+
"visual.blocks.31.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 654 |
+
"visual.blocks.31.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 655 |
+
"visual.blocks.31.norm1.weight": "model-00001-of-00004.safetensors",
|
| 656 |
+
"visual.blocks.31.norm2.weight": "model-00001-of-00004.safetensors",
|
| 657 |
+
"visual.blocks.4.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 658 |
+
"visual.blocks.4.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 659 |
+
"visual.blocks.4.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 660 |
+
"visual.blocks.4.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 661 |
+
"visual.blocks.4.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 662 |
+
"visual.blocks.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 663 |
+
"visual.blocks.4.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 664 |
+
"visual.blocks.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 665 |
+
"visual.blocks.4.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 666 |
+
"visual.blocks.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 667 |
+
"visual.blocks.4.norm1.weight": "model-00001-of-00004.safetensors",
|
| 668 |
+
"visual.blocks.4.norm2.weight": "model-00001-of-00004.safetensors",
|
| 669 |
+
"visual.blocks.5.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 670 |
+
"visual.blocks.5.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 671 |
+
"visual.blocks.5.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 672 |
+
"visual.blocks.5.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 673 |
+
"visual.blocks.5.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 674 |
+
"visual.blocks.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 675 |
+
"visual.blocks.5.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 676 |
+
"visual.blocks.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 677 |
+
"visual.blocks.5.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 678 |
+
"visual.blocks.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 679 |
+
"visual.blocks.5.norm1.weight": "model-00001-of-00004.safetensors",
|
| 680 |
+
"visual.blocks.5.norm2.weight": "model-00001-of-00004.safetensors",
|
| 681 |
+
"visual.blocks.6.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 682 |
+
"visual.blocks.6.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 683 |
+
"visual.blocks.6.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 684 |
+
"visual.blocks.6.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 685 |
+
"visual.blocks.6.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 686 |
+
"visual.blocks.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 687 |
+
"visual.blocks.6.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 688 |
+
"visual.blocks.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 689 |
+
"visual.blocks.6.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 690 |
+
"visual.blocks.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 691 |
+
"visual.blocks.6.norm1.weight": "model-00001-of-00004.safetensors",
|
| 692 |
+
"visual.blocks.6.norm2.weight": "model-00001-of-00004.safetensors",
|
| 693 |
+
"visual.blocks.7.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 694 |
+
"visual.blocks.7.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 695 |
+
"visual.blocks.7.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 696 |
+
"visual.blocks.7.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 697 |
+
"visual.blocks.7.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 698 |
+
"visual.blocks.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 699 |
+
"visual.blocks.7.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 700 |
+
"visual.blocks.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 701 |
+
"visual.blocks.7.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 702 |
+
"visual.blocks.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 703 |
+
"visual.blocks.7.norm1.weight": "model-00001-of-00004.safetensors",
|
| 704 |
+
"visual.blocks.7.norm2.weight": "model-00001-of-00004.safetensors",
|
| 705 |
+
"visual.blocks.8.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 706 |
+
"visual.blocks.8.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 707 |
+
"visual.blocks.8.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 708 |
+
"visual.blocks.8.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 709 |
+
"visual.blocks.8.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 710 |
+
"visual.blocks.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 711 |
+
"visual.blocks.8.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 712 |
+
"visual.blocks.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 713 |
+
"visual.blocks.8.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 714 |
+
"visual.blocks.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 715 |
+
"visual.blocks.8.norm1.weight": "model-00001-of-00004.safetensors",
|
| 716 |
+
"visual.blocks.8.norm2.weight": "model-00001-of-00004.safetensors",
|
| 717 |
+
"visual.blocks.9.attn.proj.bias": "model-00001-of-00004.safetensors",
|
| 718 |
+
"visual.blocks.9.attn.proj.weight": "model-00001-of-00004.safetensors",
|
| 719 |
+
"visual.blocks.9.attn.qkv.bias": "model-00001-of-00004.safetensors",
|
| 720 |
+
"visual.blocks.9.attn.qkv.weight": "model-00001-of-00004.safetensors",
|
| 721 |
+
"visual.blocks.9.mlp.down_proj.bias": "model-00001-of-00004.safetensors",
|
| 722 |
+
"visual.blocks.9.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 723 |
+
"visual.blocks.9.mlp.gate_proj.bias": "model-00001-of-00004.safetensors",
|
| 724 |
+
"visual.blocks.9.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 725 |
+
"visual.blocks.9.mlp.up_proj.bias": "model-00001-of-00004.safetensors",
|
| 726 |
+
"visual.blocks.9.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 727 |
+
"visual.blocks.9.norm1.weight": "model-00001-of-00004.safetensors",
|
| 728 |
+
"visual.blocks.9.norm2.weight": "model-00001-of-00004.safetensors",
|
| 729 |
+
"visual.merger.ln_q.weight": "model-00001-of-00004.safetensors",
|
| 730 |
+
"visual.merger.mlp.0.bias": "model-00001-of-00004.safetensors",
|
| 731 |
+
"visual.merger.mlp.0.weight": "model-00001-of-00004.safetensors",
|
| 732 |
+
"visual.merger.mlp.2.bias": "model-00001-of-00004.safetensors",
|
| 733 |
+
"visual.merger.mlp.2.weight": "model-00001-of-00004.safetensors",
|
| 734 |
+
"visual.patch_embed.proj.weight": "model-00001-of-00004.safetensors"
|
| 735 |
+
}
|
| 736 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_convert_rgb": true,
|
| 3 |
+
"do_normalize": true,
|
| 4 |
+
"do_rescale": true,
|
| 5 |
+
"do_resize": true,
|
| 6 |
+
"image_mean": [
|
| 7 |
+
0.48145466,
|
| 8 |
+
0.4578275,
|
| 9 |
+
0.40821073
|
| 10 |
+
],
|
| 11 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 12 |
+
"image_std": [
|
| 13 |
+
0.26862954,
|
| 14 |
+
0.26130258,
|
| 15 |
+
0.27577711
|
| 16 |
+
],
|
| 17 |
+
"max_pixels": 12845056,
|
| 18 |
+
"merge_size": 2,
|
| 19 |
+
"min_pixels": 3136,
|
| 20 |
+
"patch_size": 14,
|
| 21 |
+
"processor_class": "Qwen2_5_VLProcessor",
|
| 22 |
+
"resample": 3,
|
| 23 |
+
"rescale_factor": 0.00392156862745098,
|
| 24 |
+
"size": {
|
| 25 |
+
"longest_edge": 12845056,
|
| 26 |
+
"shortest_edge": 3136
|
| 27 |
+
},
|
| 28 |
+
"temporal_patch_size": 2
|
| 29 |
+
}
|
runs/Jul09_14-02-35_oumi-compute002/events.out.tfevents.1752069998.oumi-compute002.1141189.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c2fe8292b359f7a7dac102e6cb0afd40194325f04c321c0a7a1da77d96ef445
|
| 3 |
+
size 6313
|
runs/Jul09_14-55-28_oumi-compute002/events.out.tfevents.1752073113.oumi-compute002.1152358.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:889f9cfa6732da7bc9588e265577310b05b19dd155122a738ea3d6c7d6e12466
|
| 3 |
+
size 6314
|
runs/Jul09_15-17-07_oumi-compute002/events.out.tfevents.1752074401.oumi-compute002.1159828.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbae9df3fc32959ab14cc92e5b8109c0e6afcbfa2951fd73d8e19d0b7c950622
|
| 3 |
+
size 9679
|
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,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
CPU cores: 208 CUDA devices: 8
|
| 2 |
+
device(0)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 75.08GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
| 3 |
+
device(1)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 78.67GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
| 4 |
+
device(2)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 78.67GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
| 5 |
+
device(3)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 78.67GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
| 6 |
+
device(4)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 78.67GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
| 7 |
+
device(5)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 78.67GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
| 8 |
+
device(6)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 78.67GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
| 9 |
+
device(7)='NVIDIA H100 80GB HBM3' Capability: (9, 0) Memory: [Total: 79.19GiB Free: 78.67GiB Allocated: 0.0GiB Cached: 0.0GiB]
|
telemetry/telemetry_callback_metrics_rank0000.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"train_runtime": 6016.1372,
|
| 3 |
+
"train_samples_per_second": 0.499,
|
| 4 |
+
"train_steps_per_second": 0.062,
|
| 5 |
+
"train_tokens_per_second": 176.962,
|
| 6 |
+
"total_flos": 1.0562823256014848e+17,
|
| 7 |
+
"train_loss": 0.14466818872839213,
|
| 8 |
+
"num_tokens": 18179240.0,
|
| 9 |
+
"mean_token_accuracy": 1.0,
|
| 10 |
+
"epoch": 5.0,
|
| 11 |
+
"num_input_tokens_seen": 18179240
|
| 12 |
+
}
|
telemetry/telemetry_callback_rank0000.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"hostname": "oumi-compute002",
|
| 3 |
+
"total_time": 6190.429405291099,
|
| 4 |
+
"timers": {
|
| 5 |
+
"epochs": {
|
| 6 |
+
"count": 5.0,
|
| 7 |
+
"mean": 1202.3129667625763,
|
| 8 |
+
"median": 1212.103585831821,
|
| 9 |
+
"std_dev": 23.461924971061983,
|
| 10 |
+
"min": 1162.4669050513767,
|
| 11 |
+
"max": 1221.4198807748035,
|
| 12 |
+
"total": 6011.564833812881,
|
| 13 |
+
"percentage": 97.11062739322513
|
| 14 |
+
},
|
| 15 |
+
"microsteps": {
|
| 16 |
+
"count": 373.0,
|
| 17 |
+
"mean": 12.383987677070104,
|
| 18 |
+
"median": 12.148281179368496,
|
| 19 |
+
"std_dev": 2.9678382288473095,
|
| 20 |
+
"min": 5.08648740593344,
|
| 21 |
+
"max": 24.33762474078685,
|
| 22 |
+
"total": 4619.227403547149,
|
| 23 |
+
"percentage": 74.61885276648162
|
| 24 |
+
},
|
| 25 |
+
"steps": {
|
| 26 |
+
"count": 373.0,
|
| 27 |
+
"mean": 12.383898228439365,
|
| 28 |
+
"median": 12.148281924892217,
|
| 29 |
+
"std_dev": 2.9679568977165727,
|
| 30 |
+
"min": 5.086486792191863,
|
| 31 |
+
"max": 24.337625022046268,
|
| 32 |
+
"total": 4619.194039207883,
|
| 33 |
+
"percentage": 74.6183138000048
|
| 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": "fniivj34",
|
| 3 |
+
"name": "output/qwen2_5_vl_7b_limo_vis",
|
| 4 |
+
"url": "https://wandb.ai/nyu-dice-lab/huggingface/runs/fniivj34"
|
| 5 |
+
}
|
telemetry/training_config.yaml
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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: penfever/limo-vis-mid-resize
|
| 10 |
+
image_column: image
|
| 11 |
+
question_column: question
|
| 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_async_dataset: false
|
| 32 |
+
use_torchdata: true
|
| 33 |
+
test:
|
| 34 |
+
datasets: []
|
| 35 |
+
collator_name: null
|
| 36 |
+
collator_kwargs: {}
|
| 37 |
+
pack: false
|
| 38 |
+
stream: false
|
| 39 |
+
target_col: null
|
| 40 |
+
mixture_strategy: first_exhausted
|
| 41 |
+
seed: null
|
| 42 |
+
use_async_dataset: false
|
| 43 |
+
use_torchdata: null
|
| 44 |
+
validation:
|
| 45 |
+
datasets: []
|
| 46 |
+
collator_name: null
|
| 47 |
+
collator_kwargs: {}
|
| 48 |
+
pack: false
|
| 49 |
+
stream: false
|
| 50 |
+
target_col: null
|
| 51 |
+
mixture_strategy: first_exhausted
|
| 52 |
+
seed: null
|
| 53 |
+
use_async_dataset: false
|
| 54 |
+
use_torchdata: null
|
| 55 |
+
model:
|
| 56 |
+
model_name: Qwen/Qwen2.5-VL-7B-Instruct
|
| 57 |
+
adapter_model: null
|
| 58 |
+
tokenizer_name: null
|
| 59 |
+
tokenizer_pad_token: null
|
| 60 |
+
tokenizer_kwargs: {}
|
| 61 |
+
processor_kwargs: {}
|
| 62 |
+
model_max_length: 16384
|
| 63 |
+
load_pretrained_weights: true
|
| 64 |
+
trust_remote_code: true
|
| 65 |
+
torch_dtype_str: bfloat16
|
| 66 |
+
compile: false
|
| 67 |
+
chat_template: qwen2-vl-instruct
|
| 68 |
+
attn_implementation: flash_attention_2
|
| 69 |
+
device_map: auto
|
| 70 |
+
model_kwargs: {}
|
| 71 |
+
enable_liger_kernel: false
|
| 72 |
+
shard_for_eval: false
|
| 73 |
+
freeze_layers: []
|
| 74 |
+
model_revision: null
|
| 75 |
+
training:
|
| 76 |
+
use_peft: false
|
| 77 |
+
trainer_type: TRL_SFT
|
| 78 |
+
enable_gradient_checkpointing: true
|
| 79 |
+
gradient_checkpointing_kwargs:
|
| 80 |
+
use_reentrant: false
|
| 81 |
+
output_dir: output/qwen2_5_vl_7b_limo_vis
|
| 82 |
+
per_device_train_batch_size: 1
|
| 83 |
+
per_device_eval_batch_size: 8
|
| 84 |
+
gradient_accumulation_steps: 1
|
| 85 |
+
max_steps: 375
|
| 86 |
+
num_train_epochs: 5
|
| 87 |
+
save_epoch: false
|
| 88 |
+
save_steps: 0
|
| 89 |
+
save_final_model: true
|
| 90 |
+
seed: 42
|
| 91 |
+
data_seed: 42
|
| 92 |
+
use_deterministic: false
|
| 93 |
+
full_determinism: false
|
| 94 |
+
run_name: null
|
| 95 |
+
metrics_function: null
|
| 96 |
+
reward_functions: null
|
| 97 |
+
grpo:
|
| 98 |
+
model_init_kwargs: {}
|
| 99 |
+
max_prompt_length: null
|
| 100 |
+
max_completion_length: null
|
| 101 |
+
num_generations: null
|
| 102 |
+
temperature: 0.9
|
| 103 |
+
remove_unused_columns: false
|
| 104 |
+
repetition_penalty: 1.0
|
| 105 |
+
use_vllm: false
|
| 106 |
+
vllm_mode: null
|
| 107 |
+
vllm_gpu_memory_utilization: 0.9
|
| 108 |
+
vllm_dtype: null
|
| 109 |
+
vllm_max_model_len: null
|
| 110 |
+
epsilon: 0.2
|
| 111 |
+
log_completions: false
|
| 112 |
+
log_level: info
|
| 113 |
+
dep_log_level: warning
|
| 114 |
+
enable_wandb: true
|
| 115 |
+
enable_mlflow: false
|
| 116 |
+
enable_tensorboard: true
|
| 117 |
+
logging_strategy: steps
|
| 118 |
+
logging_dir: null
|
| 119 |
+
logging_steps: 50
|
| 120 |
+
logging_first_step: false
|
| 121 |
+
eval_strategy: 'no'
|
| 122 |
+
eval_steps: 500
|
| 123 |
+
learning_rate: 2.0e-05
|
| 124 |
+
lr_scheduler_type: cosine
|
| 125 |
+
lr_scheduler_kwargs: {}
|
| 126 |
+
warmup_ratio: 0.03
|
| 127 |
+
warmup_steps: null
|
| 128 |
+
optimizer: adamw_torch_fused
|
| 129 |
+
weight_decay: 0.01
|
| 130 |
+
adam_beta1: 0.9
|
| 131 |
+
adam_beta2: 0.999
|
| 132 |
+
adam_epsilon: 1.0e-08
|
| 133 |
+
sgd_momentum: 0.0
|
| 134 |
+
mixed_precision_dtype: NONE
|
| 135 |
+
compile: false
|
| 136 |
+
include_performance_metrics: true
|
| 137 |
+
include_alternative_mfu_metrics: false
|
| 138 |
+
log_model_summary: false
|
| 139 |
+
resume_from_checkpoint: null
|
| 140 |
+
try_resume_from_last_checkpoint: false
|
| 141 |
+
dataloader_num_workers: 64
|
| 142 |
+
dataloader_persistent_workers: false
|
| 143 |
+
dataloader_prefetch_factor: 32
|
| 144 |
+
dataloader_main_process_only: null
|
| 145 |
+
ddp_find_unused_parameters: false
|
| 146 |
+
max_grad_norm: 1.0
|
| 147 |
+
trainer_kwargs:
|
| 148 |
+
max_seq_length: 16384
|
| 149 |
+
remove_unused_columns: false
|
| 150 |
+
dataset_kwargs:
|
| 151 |
+
skip_prepare_dataset: true
|
| 152 |
+
verl_config_overrides: {}
|
| 153 |
+
profiler:
|
| 154 |
+
save_dir: null
|
| 155 |
+
enable_cpu_profiling: false
|
| 156 |
+
enable_cuda_profiling: false
|
| 157 |
+
record_shapes: false
|
| 158 |
+
profile_memory: false
|
| 159 |
+
with_stack: false
|
| 160 |
+
with_flops: false
|
| 161 |
+
with_modules: false
|
| 162 |
+
row_limit: 50
|
| 163 |
+
schedule:
|
| 164 |
+
enable_schedule: false
|
| 165 |
+
wait: 0
|
| 166 |
+
warmup: 1
|
| 167 |
+
active: 3
|
| 168 |
+
repeat: 1
|
| 169 |
+
skip_first: 1
|
| 170 |
+
telemetry:
|
| 171 |
+
telemetry_dir: telemetry
|
| 172 |
+
collect_telemetry_for_all_ranks: false
|
| 173 |
+
track_gpu_temperature: false
|
| 174 |
+
empty_device_cache_steps: 1
|
| 175 |
+
nccl_default_timeout_minutes: null
|
| 176 |
+
label_ignore_index: null
|
| 177 |
+
peft:
|
| 178 |
+
lora_r: 8
|
| 179 |
+
lora_alpha: 8
|
| 180 |
+
lora_dropout: 0.0
|
| 181 |
+
lora_target_modules: null
|
| 182 |
+
lora_modules_to_save: null
|
| 183 |
+
lora_bias: none
|
| 184 |
+
lora_init_weights: DEFAULT
|
| 185 |
+
lora_task_type: CAUSAL_LM
|
| 186 |
+
q_lora: false
|
| 187 |
+
q_lora_bits: 4
|
| 188 |
+
bnb_4bit_quant_type: fp4
|
| 189 |
+
llm_int8_skip_modules: null
|
| 190 |
+
use_bnb_nested_quant: false
|
| 191 |
+
bnb_4bit_quant_storage: uint8
|
| 192 |
+
bnb_4bit_compute_dtype: float32
|
| 193 |
+
peft_save_mode: ADAPTER_ONLY
|
| 194 |
+
fsdp:
|
| 195 |
+
enable_fsdp: true
|
| 196 |
+
sharding_strategy: FULL_SHARD
|
| 197 |
+
cpu_offload: false
|
| 198 |
+
mixed_precision: null
|
| 199 |
+
backward_prefetch: BACKWARD_PRE
|
| 200 |
+
forward_prefetch: true
|
| 201 |
+
use_orig_params: true
|
| 202 |
+
state_dict_type: FULL_STATE_DICT
|
| 203 |
+
auto_wrap_policy: TRANSFORMER_BASED_WRAP
|
| 204 |
+
min_num_params: 100000
|
| 205 |
+
transformer_layer_cls: transformers.models.qwen2_5_vl.modeling_qwen2_5_vl.Qwen2_5_VLDecoderLayer
|
| 206 |
+
sync_module_states: true
|
telemetry/world_size.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"LOCAL_WORLD_SIZE": 8,
|
| 3 |
+
"WORLD_SIZE": 8
|
| 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,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"chat_template": "{% set image_count = namespace(value=0) %}{% set video_count = namespace(value=0) %}{%- for message in messages -%}{%- if loop.first and message['role'] != 'system' -%}{{ '<|im_start|>system\\nYou are a helpful assistant.<|im_end|>\\n' }}{%- endif -%}{{ '<|im_start|>' + message['role'] + '\\n' }}{%- if message['content'] is string -%}{{- message['content'] -}}{%- 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 -%}",
|
| 199 |
+
"clean_up_tokenization_spaces": false,
|
| 200 |
+
"eos_token": "<|im_end|>",
|
| 201 |
+
"errors": "replace",
|
| 202 |
+
"extra_special_tokens": {},
|
| 203 |
+
"model_max_length": 16384,
|
| 204 |
+
"pad_token": "<|endoftext|>",
|
| 205 |
+
"padding_side": "right",
|
| 206 |
+
"processor_class": "Qwen2_5_VLProcessor",
|
| 207 |
+
"split_special_tokens": false,
|
| 208 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 209 |
+
"unk_token": null
|
| 210 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 5.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 375,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.6666666666666666,
|
| 14 |
+
"grad_norm": 9.75,
|
| 15 |
+
"learning_rate": 1.9491669984901377e-05,
|
| 16 |
+
"loss": 0.6663,
|
| 17 |
+
"mean_token_accuracy": 0.8282047653198242,
|
| 18 |
+
"num_input_tokens_seen": 2327984,
|
| 19 |
+
"num_tokens": 2327984.0,
|
| 20 |
+
"step": 50
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"epoch": 1.3333333333333333,
|
| 24 |
+
"grad_norm": 17.25,
|
| 25 |
+
"learning_rate": 1.72967916579403e-05,
|
| 26 |
+
"loss": 0.3542,
|
| 27 |
+
"mean_token_accuracy": 0.9049889421463013,
|
| 28 |
+
"num_input_tokens_seen": 5204816,
|
| 29 |
+
"num_tokens": 5204816.0,
|
| 30 |
+
"step": 100
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"epoch": 2.0,
|
| 34 |
+
"grad_norm": 3.25,
|
| 35 |
+
"learning_rate": 1.3756762552443555e-05,
|
| 36 |
+
"loss": 0.0478,
|
| 37 |
+
"mean_token_accuracy": 0.9875464010238647,
|
| 38 |
+
"num_input_tokens_seen": 7271696,
|
| 39 |
+
"num_tokens": 7271696.0,
|
| 40 |
+
"step": 150
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"epoch": 2.6666666666666665,
|
| 44 |
+
"grad_norm": 2.171875,
|
| 45 |
+
"learning_rate": 9.524180841762577e-06,
|
| 46 |
+
"loss": 0.014,
|
| 47 |
+
"mean_token_accuracy": 0.9964023971557617,
|
| 48 |
+
"num_input_tokens_seen": 9599680,
|
| 49 |
+
"num_tokens": 9599680.0,
|
| 50 |
+
"step": 200
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"epoch": 3.3333333333333335,
|
| 54 |
+
"grad_norm": 0.00946044921875,
|
| 55 |
+
"learning_rate": 5.379315560596038e-06,
|
| 56 |
+
"loss": 0.0023,
|
| 57 |
+
"mean_token_accuracy": 0.9995168459415436,
|
| 58 |
+
"num_input_tokens_seen": 12476512,
|
| 59 |
+
"num_tokens": 12476512.0,
|
| 60 |
+
"step": 250
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"epoch": 4.0,
|
| 64 |
+
"grad_norm": 0.169921875,
|
| 65 |
+
"learning_rate": 2.0862653732958914e-06,
|
| 66 |
+
"loss": 0.0002,
|
| 67 |
+
"mean_token_accuracy": 0.9999828958511352,
|
| 68 |
+
"num_input_tokens_seen": 14543392,
|
| 69 |
+
"num_tokens": 14543392.0,
|
| 70 |
+
"step": 300
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"epoch": 4.666666666666667,
|
| 74 |
+
"grad_norm": 0.0380859375,
|
| 75 |
+
"learning_rate": 2.520983216615047e-07,
|
| 76 |
+
"loss": 0.0001,
|
| 77 |
+
"mean_token_accuracy": 1.0,
|
| 78 |
+
"num_input_tokens_seen": 16871376,
|
| 79 |
+
"num_tokens": 16871376.0,
|
| 80 |
+
"step": 350
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"epoch": 5.0,
|
| 84 |
+
"mean_token_accuracy": 1.0,
|
| 85 |
+
"num_input_tokens_seen": 18179240,
|
| 86 |
+
"num_tokens": 18179240.0,
|
| 87 |
+
"step": 375,
|
| 88 |
+
"total_flos": 1.0562823256014848e+17,
|
| 89 |
+
"train_loss": 0.14466818872839213,
|
| 90 |
+
"train_runtime": 6016.1372,
|
| 91 |
+
"train_samples_per_second": 0.499,
|
| 92 |
+
"train_steps_per_second": 0.062,
|
| 93 |
+
"train_tokens_per_second": 176.962
|
| 94 |
+
}
|
| 95 |
+
],
|
| 96 |
+
"logging_steps": 50,
|
| 97 |
+
"max_steps": 375,
|
| 98 |
+
"num_input_tokens_seen": 18179240,
|
| 99 |
+
"num_train_epochs": 5,
|
| 100 |
+
"save_steps": 0,
|
| 101 |
+
"stateful_callbacks": {
|
| 102 |
+
"TrainerControl": {
|
| 103 |
+
"args": {
|
| 104 |
+
"should_epoch_stop": false,
|
| 105 |
+
"should_evaluate": false,
|
| 106 |
+
"should_log": false,
|
| 107 |
+
"should_save": false,
|
| 108 |
+
"should_training_stop": false
|
| 109 |
+
},
|
| 110 |
+
"attributes": {}
|
| 111 |
+
}
|
| 112 |
+
},
|
| 113 |
+
"total_flos": 1.0562823256014848e+17,
|
| 114 |
+
"train_batch_size": 1,
|
| 115 |
+
"trial_name": null,
|
| 116 |
+
"trial_params": null
|
| 117 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c8953db37e2e7554c2e72fff1c08c2f46abb56ee771d6021e97fde32145b7cb
|
| 3 |
+
size 6097
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|