diff options
author | Acncagua Slt <acncagua@gmail.com> | 2023-05-03 00:44:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 00:44:16 +0900 |
commit | efe98ca0900bdf1098a5a957f576b86e4ddebbea (patch) | |
tree | 3dd6fac2a09612569f93905d935a56254d48c2b7 | |
parent | 5ab7f213bec2f816f9c5644becb32eb72c8ffb89 (diff) |
Initialize the upscalers
Add modelloader.load_upscalers to def initialize()
-rw-r--r-- | webui.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -185,6 +185,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")
|