File size: 430 Bytes
28c838b 300ee94 28c838b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#!/bin/bash
models=(
"p_sd15_canny"
"p_sd15_depth"
"p_sd15_mlsd"
"p_sd15_normalbae"
"p_sd15_openpose"
"p_sd15_scribble"
"p_sd15_seg"
"p_sd15_softedge"
"p_sd15_lineart"
"p_sd15s2_lineart_anime"
"e_sd15_shuffle"
)
# models=("p_sd15_inpaint" "e_sd15_shuffle" "e_sd15_ip2p" "u_sd15_tile")
for model in "${models[@]}"
do
echo $model
python gen_diffusers_image.py $model
done |