mirror of
				https://github.com/AbdBarho/stable-diffusion-webui-docker.git
				synced 2025-10-31 02:03:32 -04:00 
			
		
		
		
	[BREAKING] Rename UIs (#254)
Rename the UIs in docker compose to their new names Changes folder names Changes output folder structure Closes issue #263 Adds `sygil-sl` instead of docker compose flag.
This commit is contained in:
		| @@ -3,3 +3,4 @@ | |||||||
| set -Eeuo pipefail | set -Eeuo pipefail | ||||||
|  |  | ||||||
| find services -name "*.sh" -exec git update-index --chmod=+x {} \; | find services -name "*.sh" -exec git update-index --chmod=+x {} \; | ||||||
|  | find .devscripts -name "*.sh" -exec git update-index --chmod=+x {} \; | ||||||
|   | |||||||
							
								
								
									
										9
									
								
								.devscripts/migratev3tov4.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										9
									
								
								.devscripts/migratev3tov4.sh
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,9 @@ | |||||||
|  | #!/bin/bash | ||||||
|  |  | ||||||
|  | set -Eeuo pipefail | ||||||
|  |  | ||||||
|  | echo "Moving everything in output to output/old..." | ||||||
|  | mv output old | ||||||
|  | mkdir output | ||||||
|  | mv old/.gitignore output | ||||||
|  | mv old output | ||||||
							
								
								
									
										28
									
								
								.github/ISSUE_TEMPLATE/bug.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										28
									
								
								.github/ISSUE_TEMPLATE/bug.md
									
									
									
									
										vendored
									
									
								
							| @@ -1,10 +1,9 @@ | |||||||
| --- | --- | ||||||
| name: Bug | name: Bug | ||||||
| about: Report a bug | about: Report a bug | ||||||
| title: '' | title: "" | ||||||
| labels: bug | labels: bug | ||||||
| assignees: '' | assignees: "" | ||||||
|  |  | ||||||
| --- | --- | ||||||
|  |  | ||||||
| <!--  PLEASE FILL THIS OUT, IT WILL MAKE BOTH OF OUR LIVES EASIER --> | <!--  PLEASE FILL THIS OUT, IT WILL MAKE BOTH OF OUR LIVES EASIER --> | ||||||
| @@ -14,28 +13,27 @@ assignees: '' | |||||||
| - [ ] It is not in the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/FAQ), I checked. | - [ ] It is not in the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/FAQ), I checked. | ||||||
| - [ ] It is not in the [issues](https://github.com/AbdBarho/stable-diffusion-webui-docker/issues?q=), I searched. | - [ ] It is not in the [issues](https://github.com/AbdBarho/stable-diffusion-webui-docker/issues?q=), I searched. | ||||||
|  |  | ||||||
|  |  | ||||||
| **Describe the bug** | **Describe the bug** | ||||||
|  |  | ||||||
| <!--  tried to run the app, my cat exploded --> | <!--  tried to run the app, my cat exploded --> | ||||||
|  |  | ||||||
|  |  | ||||||
| **Which UI** | **Which UI** | ||||||
|  |  | ||||||
| hlky or auto or auto-cpu or lstein? | auto or auto-cpu or invoke or sygil? | ||||||
|  |  | ||||||
|  |  | ||||||
| **Hardware / Software** | **Hardware / Software** | ||||||
|  - OS: [e.g. Windows 10 / Ubuntu ] |  | ||||||
|  - OS version: <!--  on windows, use the command `winver` to find out, on ubuntu `lsb_release -d`  --> | - OS: [e.g. Windows 10 / Ubuntu 22.04] | ||||||
|  - WSL version (if applicable): <!-- get using `wsl -l -v` --> | - OS version: <!--  on windows, use the command `winver` to find out, on ubuntu `lsb_release -d`  --> | ||||||
|  - Docker Version: <!--  get using `docker version` --> | - WSL version (if applicable): <!-- get using `wsl -l -v` --> | ||||||
|  - Docker compose version: <!--  get using `docker compose version` --> | - Docker Version: <!--  get using `docker version` --> | ||||||
|  - Repo version: <!-- tag, commit sha, or "from master" --> | - Docker compose version: <!--  get using `docker compose version` --> | ||||||
|  - RAM: | - Repo version: <!-- tag, commit sha, or "from master" --> | ||||||
|  - GPU/VRAM: | - RAM: | ||||||
|  | - GPU/VRAM: | ||||||
|  |  | ||||||
| **Steps to Reproduce** | **Steps to Reproduce** | ||||||
|  |  | ||||||
| 1. Go to '...' | 1. Go to '...' | ||||||
| 2. Click on '....' | 2. Click on '....' | ||||||
| 3. Scroll down to '....' | 3. Scroll down to '....' | ||||||
|   | |||||||
							
								
								
									
										5
									
								
								.github/workflows/docker.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										5
									
								
								.github/workflows/docker.yml
									
									
									
									
										vendored
									
									
								
							| @@ -14,12 +14,11 @@ jobs: | |||||||
|       matrix: |       matrix: | ||||||
|         profile: |         profile: | ||||||
|           - auto |           - auto | ||||||
|           - hlky |           - sygil | ||||||
|           - lstein |           - invoke | ||||||
|           - download |           - download | ||||||
|     runs-on: ubuntu-latest |     runs-on: ubuntu-latest | ||||||
|     name: ${{ matrix.profile }} |     name: ${{ matrix.profile }} | ||||||
|     steps: |     steps: | ||||||
|       - uses: actions/checkout@v3 |       - uses: actions/checkout@v3 | ||||||
|       # better caching? |  | ||||||
|       - run: docker compose --profile ${{ matrix.profile }} build --progress plain |       - run: docker compose --profile ${{ matrix.profile }} build --progress plain | ||||||
|   | |||||||
							
								
								
									
										36
									
								
								.github/workflows/xformers.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										36
									
								
								.github/workflows/xformers.yml
									
									
									
									
										vendored
									
									
								
							| @@ -1,36 +0,0 @@ | |||||||
| name: Build Xformers |  | ||||||
|  |  | ||||||
| on: |  | ||||||
|   workflow_dispatch: {} |  | ||||||
|  |  | ||||||
| jobs: |  | ||||||
|   build: |  | ||||||
|     runs-on: ubuntu-latest |  | ||||||
|     timeout-minutes: 180 |  | ||||||
|     container: |  | ||||||
|       image: python:3.10-slim |  | ||||||
|       env: |  | ||||||
|         DEBIAN_FRONTEND: noninteractive |  | ||||||
|         XFORMERS_DISABLE_FLASH_ATTN: 1 |  | ||||||
|         FORCE_CUDA: 1 |  | ||||||
|         TORCH_CUDA_ARCH_LIST: "6.0;6.1;6.2;7.0;7.2;7.5;8.0;8.6" |  | ||||||
|         NVCC_FLAGS: --use_fast_math -DXFORMERS_MEM_EFF_ATTENTION_DISABLE_BACKWARD |  | ||||||
|         MAX_JOBS: 4 |  | ||||||
|     steps: |  | ||||||
|       - run: | |  | ||||||
|           apt-get update |  | ||||||
|           apt-get install gpg wget git -y |  | ||||||
|           wget https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/cuda-keyring_1.0-1_all.deb |  | ||||||
|           dpkg -i cuda-keyring_1.0-1_all.deb |  | ||||||
|           apt-get update |  | ||||||
|           apt-get install cuda-nvcc-11-8 cuda-libraries-dev-11-8 -y |  | ||||||
|  |  | ||||||
|           export PIP_CACHE_DIR=$(pwd)/cache |  | ||||||
|           pip install ninja install torch --extra-index-url https://download.pytorch.org/whl/cu113 |  | ||||||
|  |  | ||||||
|           pip wheel --wheel-dir=data git+https://github.com/facebookresearch/xformers.git@3633e1afc7bffbe61957f04e7bb1a742ee910ace#egg=xformers |  | ||||||
|       - name: Artifacts |  | ||||||
|         uses: actions/upload-artifact@v3 |  | ||||||
|         with: |  | ||||||
|           name: xformers |  | ||||||
|           path: data/xformers-0.0.14.dev0-cp310-cp310-linux_x86_64.whl |  | ||||||
							
								
								
									
										13
									
								
								LICENSE
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								LICENSE
									
									
									
									
									
								
							| @@ -87,16 +87,3 @@ processes, such as predicting an individual will commit fraud/crime | |||||||
| commitment (e.g. by text profiling, drawing causal relationships between | commitment (e.g. by text profiling, drawing causal relationships between | ||||||
| assertions made in documents, indiscriminate and arbitrarily-targeted | assertions made in documents, indiscriminate and arbitrarily-targeted | ||||||
| use). | use). | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| By using this software, you also agree to the following licenses: |  | ||||||
| https://github.com/CompVis/stable-diffusion/blob/main/LICENSE |  | ||||||
| https://github.com/sd-webui/stable-diffusion-webui/blob/master/LICENSE |  | ||||||
| https://github.com/invoke-ai/InvokeAI/blob/main/LICENSE |  | ||||||
| https://github.com/cszn/BSRGAN/blob/main/LICENSE |  | ||||||
| https://github.com/sczhou/CodeFormer/blob/master/LICENSE |  | ||||||
| https://github.com/TencentARC/GFPGAN/blob/master/LICENSE |  | ||||||
| https://github.com/xinntao/Real-ESRGAN/blob/master/LICENSE |  | ||||||
| https://github.com/xinntao/ESRGAN/blob/master/LICENSE |  | ||||||
| https://github.com/cszn/SCUNet/blob/main/LICENSE |  | ||||||
|   | |||||||
							
								
								
									
										65
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										65
									
								
								README.md
									
									
									
									
									
								
							| @@ -2,68 +2,41 @@ | |||||||
|  |  | ||||||
| Run Stable Diffusion on your machine with a nice UI without any hassle! | Run Stable Diffusion on your machine with a nice UI without any hassle! | ||||||
|  |  | ||||||
|  |  | ||||||
| ## Setup & Usage | ## Setup & Usage | ||||||
|  |  | ||||||
| Visit the wiki for [Setup](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Setup) and [Usage](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Usage) instructions, checkout the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/FAQ) page if you face any problems, or create a new issue! | Visit the wiki for [Setup](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Setup) and [Usage](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Usage) instructions, checkout the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/FAQ) page if you face any problems, or create a new issue! | ||||||
|  |  | ||||||
|  |  | ||||||
| ## Contributing |  | ||||||
|  |  | ||||||
| Contributions are welcome! **Create a discussion first of what the problem is and what you want to contribute (before you implement anything)** |  | ||||||
| ## Features | ## Features | ||||||
|  |  | ||||||
| This repository provides multiple UIs for you to play around with stable diffusion: | This repository provides multiple UIs for you to play around with stable diffusion: | ||||||
|  |  | ||||||
| ### AUTOMATIC1111 | ### [AUTOMATIC1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui) | ||||||
|  |  | ||||||
| [AUTOMATIC1111's fork](https://github.com/AUTOMATIC1111/stable-diffusion-webui) is imho the most feature rich yet elegant UI: | [Full feature list here](https://github.com/AUTOMATIC1111/stable-diffusion-webui-feature-showcase), Screenshots: | ||||||
|  |  | ||||||
| - Text to image, with many samplers and even negative prompts! |  | ||||||
| - Image to image, with masking, cropping, in-painting, out-painting, variations. |  | ||||||
| - GFPGAN, RealESRGAN, LDSR, CodeFormer. |  | ||||||
| - Loopback, prompt weighting, prompt matrix, X/Y plot |  | ||||||
| - Live preview of the generated images. |  | ||||||
| - Highly optimized 4GB GPU support, or even CPU only! |  | ||||||
| - Textual inversion allows you to use pretrained textual inversion embeddings |  | ||||||
| - [Full feature list here](https://github.com/AUTOMATIC1111/stable-diffusion-webui-feature-showcase) |  | ||||||
|  |  | ||||||
| | Text to image                                                                                              | Image to image                                                                                             | Extras                                                                                                     | | | Text to image                                                                                              | Image to image                                                                                             | Extras                                                                                                     | | ||||||
| | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | ||||||
| |  |  |  | | |  |  |  | | ||||||
|  |  | ||||||
| ### hlky (sd-webui / sygil-webui) | ### [InvokeAI (lstein)](https://github.com/invoke-ai/InvokeAI) | ||||||
|  |  | ||||||
| [hlky's fork](https://github.com/Sygil-Dev/sygil-webui) is one of the most popular UIs, with many features: | [Full feature list here](https://github.com/invoke-ai/InvokeAI#features), Screenshots: | ||||||
|  |  | ||||||
| - Text to image, with many samplers |  | ||||||
| - Image to image, with masking, cropping, in-painting, variations. |  | ||||||
| - GFPGAN, RealESRGAN, LDSR, GoBig, GoLatent |  | ||||||
| - Loopback, prompt weighting |  | ||||||
| - 6GB or even 4GB GPU support! |  | ||||||
| - [Full feature list here](https://github.com/Sygil-Dev/sygil-webui/blob/master/README.md) |  | ||||||
|  |  | ||||||
| Screenshots: |  | ||||||
|  |  | ||||||
| | Text to image                                                                                              | Image to image                                                                                             | Image Lab                                                                                                  | |  | ||||||
| | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | |  | ||||||
| |  |  |  | |  | ||||||
|  |  | ||||||
|  |  | ||||||
|  |  | ||||||
| ### lstein (InvokeAI) |  | ||||||
|  |  | ||||||
| [lstein's fork](https://github.com/invoke-ai/InvokeAI) is one of the earliest with a wonderful WebUI. |  | ||||||
| - Text to image, with many samplers |  | ||||||
| - Image to image |  | ||||||
| - 4GB GPU support |  | ||||||
| - More coming! |  | ||||||
| - [Full feature list here](https://github.com/invoke-ai/InvokeAI#features) |  | ||||||
|  |  | ||||||
| | Text to image                                                                                              | Image to image                                                                                             | Extras                                                                                                     | | | Text to image                                                                                              | Image to image                                                                                             | Extras                                                                                                     | | ||||||
| | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | ||||||
| |  |  |  | | |  |  |  | | ||||||
|  |  | ||||||
|  | ### [Sygil (sd-webui / hlky)](https://github.com/Sygil-Dev/sygil-webui) | ||||||
|  |  | ||||||
|  | [Full feature list here](https://github.com/Sygil-Dev/sygil-webui/blob/master/README.md), Screenshots: | ||||||
|  |  | ||||||
|  | | Text to image                                                                                              | Image to image                                                                                             | Image Lab                                                                                                  | | ||||||
|  | | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | ||||||
|  | |  |  |  | | ||||||
|  |  | ||||||
|  | ## Contributing | ||||||
|  |  | ||||||
|  | Contributions are welcome! **Create a discussion first of what the problem is and what you want to contribute (before you implement anything)** | ||||||
|  |  | ||||||
| ## Disclaimer | ## Disclaimer | ||||||
|  |  | ||||||
| @@ -75,10 +48,8 @@ This license of this software forbids you from sharing any content that violates | |||||||
|  |  | ||||||
| Special thanks to everyone behind these awesome projects, without them, none of this would have been possible: | Special thanks to everyone behind these awesome projects, without them, none of this would have been possible: | ||||||
|  |  | ||||||
| - [hlky/stable-diffusion-webui](https://github.com/hlky/stable-diffusion-webui) |  | ||||||
| - [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) | - [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) | ||||||
| - [lstein/stable-diffusion](https://github.com/lstein/stable-diffusion) | - [InvokeAI](https://github.com/invoke-ai/InvokeAI) | ||||||
|  | - [Sygil-webui](https://github.com/Sygil-Dev/sygil-webui) | ||||||
| - [CompVis/stable-diffusion](https://github.com/CompVis/stable-diffusion) | - [CompVis/stable-diffusion](https://github.com/CompVis/stable-diffusion) | ||||||
| - [hlky/sd-enable-textual-inversion](https://github.com/hlky/sd-enable-textual-inversion) | - and many many more. | ||||||
| - [devilismyfriend/latent-diffusion](https://github.com/devilismyfriend/latent-diffusion) |  | ||||||
| - [Hafiidz/latent-diffusion](https://github.com/Hafiidz/latent-diffusion) |  | ||||||
|   | |||||||
| @@ -27,7 +27,7 @@ services: | |||||||
|     <<: *base_service |     <<: *base_service | ||||||
|     profiles: ["auto"] |     profiles: ["auto"] | ||||||
|     build: ./services/AUTOMATIC1111 |     build: ./services/AUTOMATIC1111 | ||||||
|     image: sd-auto:19 |     image: sd-auto:20 | ||||||
|     environment: |     environment: | ||||||
|       - CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access |       - CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access | ||||||
|  |  | ||||||
| @@ -38,20 +38,26 @@ services: | |||||||
|     environment: |     environment: | ||||||
|       - CLI_ARGS=--no-half --precision full |       - CLI_ARGS=--no-half --precision full | ||||||
|  |  | ||||||
|   hlky: |   sygil: &sygil | ||||||
|     <<: *base_service |     <<: *base_service | ||||||
|     profiles: ["hlky"] |     profiles: ["sygil"] | ||||||
|     build: ./services/hlky/ |     build: ./services/sygil/ | ||||||
|     image: sd-hlky:11 |     image: sd-sygil:12 | ||||||
|     environment: |     environment: | ||||||
|       - CLI_ARGS=--optimized-turbo |       - CLI_ARGS=--optimized-turbo | ||||||
|       - USE_STREAMLIT=0 |       - USE_STREAMLIT=0 | ||||||
|  |  | ||||||
|   lstein: |   sygil-sl: | ||||||
|  |     <<: *sygil | ||||||
|  |     environment: | ||||||
|  |       - USE_STREAMLIT=1 | ||||||
|  |  | ||||||
|  |  | ||||||
|  |   invoke: | ||||||
|     <<: *base_service |     <<: *base_service | ||||||
|     profiles: ["lstein"] |     profiles: ["invoke"] | ||||||
|     build: ./services/lstein/ |     build: ./services/invoke/ | ||||||
|     image: sd-lstein:9 |     image: sd-invoke:10 | ||||||
|     environment: |     environment: | ||||||
|       - PRELOAD=true |       - PRELOAD=true | ||||||
|       - CLI_ARGS= |       - CLI_ARGS= | ||||||
|   | |||||||
| @@ -1,8 +1,8 @@ | |||||||
| { | { | ||||||
|   "outdir_samples": "/output", |   "outdir_samples": "", | ||||||
|   "outdir_txt2img_samples": "/output/txt2img-images", |   "outdir_txt2img_samples": "/output/txt2img", | ||||||
|   "outdir_img2img_samples": "/output/img2img-images", |   "outdir_img2img_samples": "/output/img2img", | ||||||
|   "outdir_extras_samples": "/output/extras-images", |   "outdir_extras_samples": "/output/extras", | ||||||
|   "outdir_txt2img_grids": "/output/txt2img-grids", |   "outdir_txt2img_grids": "/output/txt2img-grids", | ||||||
|   "outdir_img2img_grids": "/output/img2img-grids", |   "outdir_img2img_grids": "/output/img2img-grids", | ||||||
|   "outdir_save": "/output/saved", |   "outdir_save": "/output/saved", | ||||||
|   | |||||||
| @@ -52,8 +52,6 @@ for to_path in "${!MOUNTS[@]}"; do | |||||||
|   echo Mounted $(basename "${from_path}") |   echo Mounted $(basename "${from_path}") | ||||||
| done | done | ||||||
|  |  | ||||||
| mkdir -p /output/saved /output/txt2img-images/ /output/img2img-images /output/extras-images/ /output/grids/ /output/txt2img-grids/ /output/img2img-grids/ |  | ||||||
|  |  | ||||||
| if [ -f "/data/config/auto/startup.sh" ]; then | if [ -f "/data/config/auto/startup.sh" ]; then | ||||||
|   pushd ${ROOT} |   pushd ${ROOT} | ||||||
|   . /data/config/auto/startup.sh |   . /data/config/auto/startup.sh | ||||||
|   | |||||||
| @@ -32,7 +32,7 @@ cd /usr/lib/x86_64-linux-gnu/pkgconfig/ | |||||||
| ln -sf opencv4.pc opencv.pc | ln -sf opencv4.pc opencv.pc | ||||||
| EOF | EOF | ||||||
| 
 | 
 | ||||||
| ARG BRANCH=main SHA=5c31feb3a1096d437c94b6e1c3224eb7a7224a85 | ARG BRANCH=main SHA=38cd968130e386d188bdef68f9fbfbbbfabb2da0 | ||||||
| RUN <<EOF | RUN <<EOF | ||||||
| git fetch | git fetch | ||||||
| git reset --hard | git reset --hard | ||||||
| @@ -54,6 +54,5 @@ EOF | |||||||
| ENV ROOT=/stable-diffusion PYTHONPATH="${PYTHONPATH}:${ROOT}" PRELOAD=false CLI_ARGS="" | ENV ROOT=/stable-diffusion PYTHONPATH="${PYTHONPATH}:${ROOT}" PRELOAD=false CLI_ARGS="" | ||||||
| EXPOSE 7860 | EXPOSE 7860 | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
| ENTRYPOINT ["/docker/entrypoint.sh"] | ENTRYPOINT ["/docker/entrypoint.sh"] | ||||||
| CMD python3 -u scripts/invoke.py --web --host 0.0.0.0 --port 7860 --config /docker/models.yaml --root_dir ${ROOT} --outdir /output ${CLI_ARGS} | CMD python3 -u scripts/invoke.py --web --host 0.0.0.0 --port 7860 --config /docker/models.yaml --root_dir ${ROOT} --outdir /output/invoke ${CLI_ARGS} | ||||||
| @@ -20,6 +20,8 @@ MOUNTS["${ROOT}/models/openai/clip-vit-large-patch14"]=/data/.cache/huggingface/ | |||||||
| MOUNTS["${ROOT}/models/CompVis/stable-diffusion-safety-checker"]=/data/.cache/huggingface/transformers/ | MOUNTS["${ROOT}/models/CompVis/stable-diffusion-safety-checker"]=/data/.cache/huggingface/transformers/ | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | MOUNTS["${ROOT}/embeddings"]=/data/embeddings/ | ||||||
|  | 
 | ||||||
| # hacks | # hacks | ||||||
| MOUNTS["${ROOT}/models/clipseg"]=/data/.cache/invoke/clipseg/ | MOUNTS["${ROOT}/models/clipseg"]=/data/.cache/invoke/clipseg/ | ||||||
| 
 | 
 | ||||||
| @@ -1,10 +1,11 @@ | |||||||
|  | # https://github.com/Sygil-Dev/sygil-webui/blob/master/configs/webui/webui_streamlit.yaml | ||||||
| general: | general: | ||||||
|   version: 1.24.6 |   version: 1.24.6 | ||||||
|   outdir: /output |   outdir: /output | ||||||
|   default_model: "Stable Diffusion v1.5" |   default_model: "Stable Diffusion v1.5" | ||||||
|   default_model_path: /data/StableDiffusion/v1-5-pruned-emaonly.ckpt |   default_model_path: /data/StableDiffusion/v1-5-pruned-emaonly.ckpt | ||||||
|   outdir_txt2img: /output/txt2img-samples |   outdir_txt2img: /output/txt2img | ||||||
|   outdir_img2img: /output/img2img-samples |   outdir_img2img: /output/img2img | ||||||
|   outdir_img2txt: /output/img2txt |   outdir_img2txt: /output/img2txt | ||||||
|   optimized: True |   optimized: True | ||||||
|   optimized_turbo: True |   optimized_turbo: True | ||||||
		Reference in New Issue
	
	Block a user