mirror of https://github.com/hpcaitech/ColossalAI
20 lines
555 B
Bash
20 lines
555 B
Bash
|
export MODEL_NAME="CompVis/stable-diffusion-v1-4"
|
||
|
export INSTANCE_DIR="input"
|
||
|
export OUTPUT_DIR="output"
|
||
|
HF_DATASETS_OFFLINE=1
|
||
|
TRANSFORMERS_OFFLINE=1
|
||
|
DIFFUSERS_OFFLINE=1
|
||
|
|
||
|
accelerate launch train_dreambooth.py \
|
||
|
--pretrained_model_name_or_path=$MODEL_NAME \
|
||
|
--instance_data_dir=$INSTANCE_DIR \
|
||
|
--output_dir=$OUTPUT_DIR \
|
||
|
--instance_prompt="a photo of sks dog" \
|
||
|
--resolution=512 \
|
||
|
--train_batch_size=1 \
|
||
|
--gradient_accumulation_steps=1 \
|
||
|
--learning_rate=5e-6 \
|
||
|
--lr_scheduler="constant" \
|
||
|
--lr_warmup_steps=0 \
|
||
|
--max_train_steps=400
|