mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
11 lines
285 B
Bash
Executable File
11 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
ln -sf /data/sd-v1-4.ckpt /stable-diffusion/models/ldm/stable-diffusion-v1/model.ckpt
|
|
cd /stable-diffusion
|
|
conda activate ldm
|
|
|
|
if [ $# -eq 0 ]; then
|
|
python3 scripts/dream.py --full_precision -o /data
|
|
else
|
|
python3 scripts/dream.py --full_precision -o /data "$@"
|
|
fi
|