From 19f940207622ed82d887289aa53b88713b6094f3 Mon Sep 17 00:00:00 2001 From: Abdullah Barhoum Date: Tue, 30 Aug 2022 21:40:02 +0200 Subject: [PATCH] Update Core to fe76828926653f979263b4c9d0bf7acc75f4aad2 --- README.md | 2 +- build/Dockerfile | 37 ++++++++++++++++++------------------- docker-compose.yml | 2 +- 3 files changed, 20 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index dadff46..fba1aa9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ docker compose build you can let it build in the background while you download the different models -- [Stable Diffusion v1.4 (4GB)](https://drive.yerf.org/wl/?id=EBfTrmcCCUAGaQBXVIj5lJmEhjoP1tgl), rename to `model.ckpt` +- [Stable Diffusion v1.4 (4GB)](https://www.googleapis.com/storage/v1/b/aai-blog-files/o/sd-v1-4.ckpt?alt=media), rename to `model.ckpt` - (Optional) [GFPGANv1.3.pth (333MB)](https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth) to improve generated faces. - (Optional) [RealESRGAN_x4plus.pth (64MB)](https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth) and [RealESRGAN_x4plus_anime_6B.pth (18MB)](https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.2.4/RealESRGAN_x4plus_anime_6B.pth) for super-sampling. diff --git a/build/Dockerfile b/build/Dockerfile index cb3c467..ab50506 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -13,27 +13,26 @@ RUN apt-get update && apt install fonts-dejavu-core && apt-get clean # Note: don't update the sha of previous versions because the install will take forever # instead, update the repo state in a later step -RUN cd stable-diffusion && git pull && git reset --hard c0c2a7c0d55561cfb6f42a3681346b9b70749ff1 && \ +RUN cd stable-diffusion && git pull && git reset --hard fe76828926653f979263b4c9d0bf7acc75f4aad2 && \ conda env update --file environment.yaml --name base && conda clean -a -y # download dev UI version, update the sha below in case you want some other version -RUN <