diff options
author | timntorres <timothynarcisotorres@gmail.com> | 2022-10-21 09:17:26 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-21 13:52:24 +0000 |
commit | fccad18a59e3c2c33fefbbb1763c6a87a3a68eba (patch) | |
tree | 2b8b155e40d44a690e963ebc80cfb11d7b09eeaf /modules/processing.py | |
parent | 19818f023cfafc472c6c241cab0b72896a168481 (diff) | |
download | stable-diffusion-webui-gfx803-fccad18a59e3c2c33fefbbb1763c6a87a3a68eba.tar.gz stable-diffusion-webui-gfx803-fccad18a59e3c2c33fefbbb1763c6a87a3a68eba.tar.bz2 stable-diffusion-webui-gfx803-fccad18a59e3c2c33fefbbb1763c6a87a3a68eba.zip |
Refer to Hypernet's name, sensibly, by its name variable.
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index f0852cd5..ff1ec4c9 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -304,7 +304,7 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments, iteration "Size": f"{p.width}x{p.height}",
"Model hash": getattr(p, 'sd_model_hash', None if not opts.add_model_hash_to_info or not shared.sd_model.sd_model_hash else shared.sd_model.sd_model_hash),
"Model": (None if not opts.add_model_name_to_info or not shared.sd_model.sd_checkpoint_info.model_name else shared.sd_model.sd_checkpoint_info.model_name.replace(',', '').replace(':', '')),
- "Hypernet": (None if shared.loaded_hypernetwork is None else os.path.splitext(os.path.basename(shared.loaded_hypernetwork.filename))[0]),
+ "Hypernet": (None if shared.loaded_hypernetwork is None else shared.loaded_hypernetwork.name),
"Batch size": (None if p.batch_size < 2 else p.batch_size),
"Batch pos": (None if p.batch_size < 2 else position_in_batch),
"Variation seed": (None if p.subseed_strength == 0 else all_subseeds[index]),
|