mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fb7a9f37e4
Set temporary instructions to use the branch that can currently be containerized.
10 lines
190 B
Bash
Executable File
10 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /stable-diffusion
|
|
|
|
if [ $# -eq 0 ]; then
|
|
python3 scripts/dream.py --full_precision -o /data
|
|
# bash
|
|
else
|
|
python3 scripts/dream.py --full_precision -o /data "$@"
|
|
fi |