feat: add capability to repeatedly run the upscaler in a row (#174)

* Add in upscale repeater logic

---------

Co-authored-by: leejet <leejet714@gmail.com>
This commit is contained in:
Sean Bailey
2024-02-24 08:31:01 -05:00
committed by GitHub
parent b6368868d9
commit 193fb620b1
3 changed files with 32 additions and 12 deletions

View File

@@ -173,10 +173,11 @@ public:
if (version == VERSION_XL) {
scale_factor = 0.13025f;
if (vae_path.size() == 0 && taesd_path.size() == 0) {
LOG_WARN("!!!It looks like you are using SDXL model. "
"If you find that the generated images are completely black, "
"try specifying SDXL VAE FP16 Fix with the --vae parameter. "
"You can find it here: https://huggingface.co/madebyollin/sdxl-vae-fp16-fix/blob/main/sdxl_vae.safetensors");
LOG_WARN(
"!!!It looks like you are using SDXL model. "
"If you find that the generated images are completely black, "
"try specifying SDXL VAE FP16 Fix with the --vae parameter. "
"You can find it here: https://huggingface.co/madebyollin/sdxl-vae-fp16-fix/blob/main/sdxl_vae.safetensors");
}
}