diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-08 12:03:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 12:03:59 +0000 |
commit | b3a44385b182496964a969e66f7f3b35e25b98b1 (patch) | |
tree | 3083965d496a9857c1c71c389540f165e5531417 /webui.py | |
parent | 6a5901a3fd5bab8d5d5933f56d1f0f991535793d (diff) | |
parent | 1bebb50da977dfb93d78ae161e0f28d332f408ea (diff) | |
download | stable-diffusion-webui-gfx803-b3a44385b182496964a969e66f7f3b35e25b98b1.tar.gz stable-diffusion-webui-gfx803-b3a44385b182496964a969e66f7f3b35e25b98b1.tar.bz2 stable-diffusion-webui-gfx803-b3a44385b182496964a969e66f7f3b35e25b98b1.zip |
Merge pull request #10025 from acncagua/Upscaler_initialization
Initialize the upscalers
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -187,6 +187,9 @@ def initialize(): modules.scripts.load_scripts()
startup_timer.record("load scripts")
+ modelloader.load_upscalers()
+ #startup_timer.record("load upscalers") #Is this necessary? I don't know.
+
modules.sd_vae.refresh_vae_list()
startup_timer.record("refresh VAE")
|