diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-30 05:47:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 05:47:18 +0000 |
commit | 470f184176440525fadd18ec056cb04f60cd30cb (patch) | |
tree | 46b02a22a3c209019a641b0d8c87422d21352797 /modules/processing.py | |
parent | 5a6e0cfba675c0f11ade7124cbeec1356c77beb2 (diff) | |
parent | 66d038f6a41507af2243ff1f6618a745a092c290 (diff) | |
download | stable-diffusion-webui-gfx803-470f184176440525fadd18ec056cb04f60cd30cb.tar.gz stable-diffusion-webui-gfx803-470f184176440525fadd18ec056cb04f60cd30cb.tar.bz2 stable-diffusion-webui-gfx803-470f184176440525fadd18ec056cb04f60cd30cb.zip |
Merge pull request #3831 from timntorres/3825-save-hypernet-strength-to-info
Save Hypernetwork strength to infotext.
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 947ce6fa..ecaa78e2 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -396,6 +396,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]),
|