mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-08 08:34:21 +01:00
Adding embeddings volume for auto textual inversion
This commit is contained in:
parent
09366ed955
commit
497cb66f63
|
|
@ -16,6 +16,7 @@ This repository provides multiple UIs for you to play around with stable diffusi
|
|||
- 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 |
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ services:
|
|||
- *v1
|
||||
- *v2
|
||||
- ./services/AUTOMATIC1111/config.json:/stable-diffusion-webui/config.json
|
||||
- ./embeddings:/stable-diffusion-webui/embeddings
|
||||
environment:
|
||||
- CLI_ARGS=--allow-code --medvram
|
||||
|
||||
|
|
|
|||
4
embeddings/.gitignore
vendored
Normal file
4
embeddings/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# Ignore everything in this directory
|
||||
*
|
||||
# Except this file
|
||||
!.gitignore
|
||||
Loading…
Reference in a new issue