add missing VAEs to initial diffuser models

This commit is contained in:
Lincoln Stein 2023-01-26 00:25:39 -05:00
parent 61403fe306
commit 7b2c0d12a3
2 changed files with 8 additions and 0 deletions

View File

@ -41,6 +41,8 @@ waifu-diffusion-1.4:
description: Latest waifu diffusion 1.4 (diffusers version)
format: diffusers
repo_id: hakurei/waifu-diffusion
vae:
repo_id: stabilityai/sd-vae-ft-mse
recommended: True
waifu-diffusion-1.3:
description: Stable Diffusion 1.4 fine tuned on anime-styled images (ckpt version) (4.27 GB)
@ -77,6 +79,8 @@ anything-4.0:
description: High-quality, highly detailed anime style images with just a few prompts
format: diffusers
repo_id: andite/anything-v4.0
vae:
repo_id: stabilityai/sd-vae-ft-mse
recommended: False
papercut-1.0:
description: SD 1.5 fine-tuned for papercut art (use "PaperCut" in your prompts) (2.13 GB)

View File

@ -52,6 +52,8 @@ manager, please follow these steps:
3. From within the InvokeAI top-level directory, create and activate a virtual
environment named `invokeai`:
** WOULDN'T WE WANT TO PUT THE VENV INSIDE THE ROOTDIR RATHER THAN THE REPO? **
```bash
python -m venv invokeai
source invokeai/bin/activate
@ -119,6 +121,8 @@ manager, please follow these steps:
6. Run PIP
THIS IS WRONG?... should be pip install invokeai --use-pep517 .
```bash
pip --python invokeai install --use-pep517 .
```