aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortimntorres <timothynarcisotorres@gmail.com>2022-10-27 23:03:34 -0700
committertimntorres <timothynarcisotorres@gmail.com>2022-10-27 23:03:34 -0700
commit9e465c8aa5616df4c6723bee007ffd3910404f12 (patch)
treeeaf1ca326c73cd178defd480465c143b98ad9a06
parent737eb28faca8be2bb996ee0930ec77d1f7ebd939 (diff)
Add strength to textinfo.
-rw-r--r--modules/processing.py1
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]),