diff options
author | timntorres <timothynarcisotorres@gmail.com> | 2022-10-28 06:03:34 +0000 |
---|---|---|
committer | timntorres <timothynarcisotorres@gmail.com> | 2022-10-28 06:03:34 +0000 |
commit | 9e465c8aa5616df4c6723bee007ffd3910404f12 (patch) | |
tree | eaf1ca326c73cd178defd480465c143b98ad9a06 /modules/processing.py | |
parent | 737eb28faca8be2bb996ee0930ec77d1f7ebd939 (diff) | |
download | stable-diffusion-webui-gfx803-9e465c8aa5616df4c6723bee007ffd3910404f12.tar.gz stable-diffusion-webui-gfx803-9e465c8aa5616df4c6723bee007ffd3910404f12.tar.bz2 stable-diffusion-webui-gfx803-9e465c8aa5616df4c6723bee007ffd3910404f12.zip |
Add strength to textinfo.
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py index 4efba946..93066522 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -329,6 +329,7 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments, iteration "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 shared.loaded_hypernetwork.name),
+ "Hypernetwork strength": (None if shared.loaded_hypernetwork is None else shared.opts.sd_hypernetwork_strength),
"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]),
|