Command line to run stable diffusion

conda activate ldm1
cd ~/prj/stablediffusion/
while read line; do   echo === $line ===;  if [[ $line == "q" || $line == "quit" || $line == "exit" ]]; then         break;     fi;     for (( i=0; i<3; i+=1 )); do         python scripts/txt2img.py --prompt "Based on very cute 3d art \"$line\" /r/MemeEconomy" --seed $RANDOM --ckpt ~/Downloads/v2-1_768-ema-pruned.ckpt --config configs/stable-diffusion/v2-inference-v.yaml --H 768 --W 768;     done >> log.txt 2>&1; done < /dev/stdin

Next - Previous