diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-09 07:31:47 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-09 07:31:47 +0000 |
commit | 4e569fd888f8e3c5632a072d51abbb6e4d17abd6 (patch) | |
tree | f0acd3c6f64313ee92a1b83e2b2b4f6906d772d5 | |
parent | c77c89cc83c618472ad352cf8a28fde28c3a1377 (diff) | |
download | stable-diffusion-webui-gfx803-4e569fd888f8e3c5632a072d51abbb6e4d17abd6.tar.gz stable-diffusion-webui-gfx803-4e569fd888f8e3c5632a072d51abbb6e4d17abd6.tar.bz2 stable-diffusion-webui-gfx803-4e569fd888f8e3c5632a072d51abbb6e4d17abd6.zip |
fixed incorrect message about loading config; thanks anon!
-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 18fb8c2e..2101b18d 100644 --- a/modules/sd_models.py +++ b/modules/sd_models.py @@ -169,7 +169,7 @@ def load_model(): checkpoint_info = select_checkpoint()
if checkpoint_info.config != shared.cmd_opts.config:
- print(f"Loading config from: {shared.cmd_opts.config}")
+ print(f"Loading config from: {checkpoint_info.config}")
sd_config = OmegaConf.load(checkpoint_info.config)
sd_model = instantiate_from_config(sd_config.model)
|