-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathrun.sh
73 lines (71 loc) · 1.8 KB
/
run.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
WANDB_KEY=
_DATA_DIR=
_SAVE_DIR=
# Fine-tune ShowUI
deepspeed --include localhost:1 --master_port 5678 train.py \
--wandb_key=$WANDB_KEY \
--model_id='showlab/ShowUI-2B' \
--version='showlab/ShowUI-2B' \
--dataset_dir=$_DATA_DIR \
--log_base_dir=$_SAVE_DIR \
--epochs=50 \
--steps_per_epoch=100 \
--batch_size=1 \
--grad_accumulation_steps=2 \
--model_max_length=8192 \
--exp_id="debug" \
--train_ratio="1" \
--train_dataset="showui" \
--train_json="hf_train" \
--val_dataset="screenspot" \
--precision="bf16" \
--attn_imple="sdpa" \
--workers=0 \
--lora_r=32 \
--lora_alpha=64 \
--min_visual_tokens=256 \
--max_visual_tokens=1344 \
--num_turn=100 \
--crop_min=0.5 \
--crop_max=1.5 \
--random_sample \
--record_sample \
--lr=0.0001 \
--uniform_prompt \
--ds_zero="zero2" \
--gradient_checkpointing \
--lm_skip_ratio=0.5 \
--lm_skip_layer='[1,28,0]'
# Fine-tune Qwen2VL
# deepspeed --include localhost:1 --master_port 5678 train.py \
# --wandb_key=$WANDB_KEY \
# --model_id='Qwen/Qwen2-VL-2B-Instruct' \
# --version='Qwen/Qwen2-VL-2B-Instruct' \
# --dataset_dir=$_DATA_DIR \
# --log_base_dir=$_SAVE_DIR \
# --epochs=50 \
# --steps_per_epoch=100 \
# --batch_size=1 \
# --grad_accumulation_steps=2 \
# --model_max_length=8192 \
# --exp_id="debug" \
# --train_ratio="1" \
# --train_dataset="showui" \
# --train_json="hf_train" \
# --val_dataset="screenspot" \
# --precision="bf16" \
# --attn_imple="sdpa" \
# --workers=4 \
# --lora_r=32 \
# --lora_alpha=64 \
# --min_visual_tokens=256 \
# --max_visual_tokens=1344 \
# --num_turn=100 \
# --crop_min=0.5 \
# --crop_max=1.5 \
# --random_sample \
# --record_sample \
# --lr=0.0001 \
# --uniform_prompt \
# --ds_zero="zero2" \
# --gradient_checkpointing