diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-05 16:46:20 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-05 16:46:20 +0000 |
commit | 6ad666e4794a57dd65790dd6a259d5d4330d45ed (patch) | |
tree | 56cc5ff31c5c0c76a8bd92e8320e77d9eabd39f9 /modules/sd_models.py | |
parent | 80d639a440929e9effe4620ce74333de283e7efc (diff) | |
download | stable-diffusion-webui-gfx803-6ad666e4794a57dd65790dd6a259d5d4330d45ed.tar.gz stable-diffusion-webui-gfx803-6ad666e4794a57dd65790dd6a259d5d4330d45ed.tar.bz2 stable-diffusion-webui-gfx803-6ad666e4794a57dd65790dd6a259d5d4330d45ed.zip |
more changes for #13865: fix formatting, rename the function, add comment and add a readme entry
Diffstat (limited to 'modules/sd_models.py')
-rw-r--r-- | modules/sd_models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_models.py b/modules/sd_models.py index 1036a3b1..841402e8 100644 --- a/modules/sd_models.py +++ b/modules/sd_models.py @@ -357,7 +357,7 @@ def load_model_weights(model, checkpoint_info: CheckpointInfo, state_dict, timer sd_models_xl.extend_sdxl(model)
if model.is_ssd:
- sd_hijack.model_hijack.conv_ssd(model)
+ sd_hijack.model_hijack.convert_sdxl_to_ssd(model)
if shared.opts.sd_checkpoint_cache > 0:
# cache newly loaded model
|