-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrain.sh
41 lines (40 loc) · 1.29 KB
/
train.sh
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
#!/bin/bash
deepspeed llamavid/train/train_mem.py \
--deepspeed ./scripts/zero2_offload.json \
--model_name_or_path ./work_dirs/llama-vid-13b-full-224-video-fps-1 \
--version imgsp_v1 \
--data_path ./data/lambda_train.json \
--video_folder ./data/videos \
--vision_tower ./model_zoo/LAVIS/eva_vit_g.pth \
--image_processor ./llamavid/processor/clip-patch14-224 \
--mm_projector_type mlp2x_gelu \
--mm_vision_select_layer -2 \
--mm_use_im_start_end False \
--mm_use_im_patch_token False \
--image_aspect_ratio pad \
--video_fps 1 \
--video_token 2 \
--bert_type "qformer_pretrain_freeze_all" \
--num_query 32 \
--compress_type "mean" \
--bf16 True \
--output_dir ./work_dirs/henry-vid \
--num_train_epochs 10 \
--per_device_train_batch_size 4 \
--per_device_eval_batch_size 4 \
--gradient_accumulation_steps 1 \
--evaluation_strategy "no" \
--save_strategy "steps" \
--save_steps 100 \
--save_total_limit 4 \
--learning_rate 2e-5 \
--weight_decay 0. \
--warmup_ratio 0.03 \
--lr_scheduler_type "cosine" \
--logging_steps 1 \
--tf32 True \
--model_max_length 2048 \
--gradient_checkpointing True \
--dataloader_num_workers 1 \
--lazy_preprocess True \
--report_to wandb