-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathMiniMax-H3-Pruned-Ref2VA.sh
More file actions
45 lines (43 loc) · 2.03 KB
/
Copy pathMiniMax-H3-Pruned-Ref2VA.sh
File metadata and controls
45 lines (43 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
modelscope download --dataset DiffSynth-Studio/diffsynth_example_dataset --include "minimax_h3/MiniMax-H3-Pruned-Ref2VA/*" --local_dir ./data/diffsynth_example_dataset
# stage 1 (data process)
accelerate launch examples/minimax_h3/model_training/train.py \
--dataset_base_path data/diffsynth_example_dataset/minimax_h3/MiniMax-H3-Pruned-Ref2VA \
--dataset_metadata_path data/diffsynth_example_dataset/minimax_h3/MiniMax-H3-Pruned-Ref2VA/metadata.json \
--data_file_keys "video,input_audio,references" \
--extra_inputs "input_audio,references" \
--height 480 \
--width 832 \
--num_frames 124 \
--dataset_repeat 1 \
--model_id_with_origin_paths "MiniMax/MiniMax-H3:Ref2VA/text_encoder/model*.safetensors,MiniMax/MiniMax-H3:Ref2VA/video_vae/source/model.safetensors,MiniMax/MiniMax-H3:Ref2VA/audio_vae/model.safetensors" \
--processor_path "MiniMax/MiniMax-H3:Ref2VA/processor/" \
--learning_rate 1e-4 \
--num_epochs 1 \
--remove_prefix_in_ckpt "pipe.dit." \
--output_path "./models/train/MiniMax-H3-Ref2VA-split-cache" \
--lora_base_model "dit" \
--lora_target_modules "attn.qkv_proj,attn.out_proj,mlp.fc1,mlp.fc2" \
--lora_rank 32 \
--use_gradient_checkpointing \
--task "sft:data_process"
# stage 2 (train)
accelerate launch examples/minimax_h3/model_training/train.py \
--dataset_base_path ./models/train/MiniMax-H3-Ref2VA-split-cache \
--data_file_keys "video,input_audio,references" \
--extra_inputs "input_audio,references" \
--height 480 \
--width 832 \
--num_frames 124 \
--dataset_repeat 100 \
--model_id_with_origin_paths "Comfy-Org/MiniMax-H3:diffusion_models/minimax_h3_ref2va_pruned_bf16.safetensors" \
--processor_path "MiniMax/MiniMax-H3:Ref2VA/processor/" \
--learning_rate 1e-4 \
--num_epochs 5 \
--remove_prefix_in_ckpt "pipe.dit." \
--output_path "./models/train/MiniMax-H3-Ref2VA-split" \
--lora_base_model "dit" \
--lora_target_modules "attn.qkv_proj,attn.out_proj,mlp.fc1,mlp.fc2" \
--lora_rank 32 \
--use_gradient_checkpointing \
--find_unused_parameters \
--task "sft:train"