controlnet_dev / gen_compare /gen_diffusers_image.sh
takuma104's picture
using DDIM
8f7d6bc
raw history blame
No virus
181 Bytes
#!/bin/bash
models=("canny" "normal" "depth" "openpose" "hed" "scribble" "mlsd" "seg")
for model in "${models[@]}"
do
echo $model
python gen_diffusers_image.py $model
done