nickyreinert-vml
commited on
Commit
·
1e547fd
1
Parent(s):
29cefb0
return of the "none" option for auto encoer
Browse files- README.md +8 -1
- appConfig.json +1 -0
README.md
CHANGED
@@ -75,4 +75,11 @@ Adapters allow you to modify or control the output, e.g. apply specific styles.
|
|
75 |
|
76 |
# Customization
|
77 |
|
78 |
-
Update the file ```appConfig.json``` to add more models. Some models need you to accept their license agreement before you can access them, like https://huggingface.co/stabilityai/stable-diffusion-3-medium.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
# Customization
|
77 |
|
78 |
+
Update the file ```appConfig.json``` to add more models. Some models need you to accept their license agreement before you can access them, like https://huggingface.co/stabilityai/stable-diffusion-3-medium.
|
79 |
+
|
80 |
+
# Troubleshooting
|
81 |
+
## Result is a black image
|
82 |
+
Some parameters lead to black images, deactivate them, one by one, and re-run the whole process:
|
83 |
+
- safety checker
|
84 |
+
- attention slicing
|
85 |
+
- a or the wrong auto encoder
|
appConfig.json
CHANGED
@@ -65,6 +65,7 @@
|
|
65 |
],
|
66 |
"refiners": ["stabilityai/stable-diffusion-xl-refiner-1.0"],
|
67 |
"auto_encoders": {
|
|
|
68 |
"stabilityai/sdxl-vae": "finetuned auto encoder for stable diffusion models, see https://huggingface.co/stabilityai/sdxl-vae",
|
69 |
"madebyollin/sdxl-vae-fp16-fix": "stable diffusion models encoder with fp16 precision, see https://huggingface.co/madebyollin/sdxl-vae-fp16-fix",
|
70 |
"stabilityai/sd-vae-ft-mse": "works best with CompVis/stable-diffusion-v1-4, see https://huggingface.co/stabilityai/sd-vae-ft-mse"
|
|
|
65 |
],
|
66 |
"refiners": ["stabilityai/stable-diffusion-xl-refiner-1.0"],
|
67 |
"auto_encoders": {
|
68 |
+
"None": "",
|
69 |
"stabilityai/sdxl-vae": "finetuned auto encoder for stable diffusion models, see https://huggingface.co/stabilityai/sdxl-vae",
|
70 |
"madebyollin/sdxl-vae-fp16-fix": "stable diffusion models encoder with fp16 precision, see https://huggingface.co/madebyollin/sdxl-vae-fp16-fix",
|
71 |
"stabilityai/sd-vae-ft-mse": "works best with CompVis/stable-diffusion-v1-4, see https://huggingface.co/stabilityai/sd-vae-ft-mse"
|