Spaces:
Paused
Paused
replace stable diffusion url with sd legacy one
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -36,7 +36,8 @@ RUN pip install -q https://download.pytorch.org/whl/cu121/xformers-0.0.22.post7-
|
|
36 |
RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/akhaliq/RetinaFace-R50/resolve/main/RetinaFace-R50.pth -d $HOME/app/annotator/ckpts -o RetinaFace-R50.pth
|
37 |
|
38 |
# Define base model URL
|
39 |
-
|
|
|
40 |
ENV BaseModelDir=$HOME/app/checkpoints/stable-diffusion-v1-5
|
41 |
|
42 |
RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M ${BaseModelUrl}/raw/main/model_index.json -d ${BaseModelDir} -o model_index.json
|
|
|
36 |
RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/akhaliq/RetinaFace-R50/resolve/main/RetinaFace-R50.pth -d $HOME/app/annotator/ckpts -o RetinaFace-R50.pth
|
37 |
|
38 |
# Define base model URL
|
39 |
+
|
40 |
+
ENV BaseModelUrl=https://huggingface.co/stable-diffusion-v1-5/stable-diffusion-v1-5
|
41 |
ENV BaseModelDir=$HOME/app/checkpoints/stable-diffusion-v1-5
|
42 |
|
43 |
RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M ${BaseModelUrl}/raw/main/model_index.json -d ${BaseModelDir} -o model_index.json
|