diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 14:54:04 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 14:54:04 +0000 |
commit | b1707553cf70d74fad08c62cfca5a2bdfee936b7 (patch) | |
tree | 2da7b9c59acd1f61a169f84f404ae8fe440ed79a /modules/txt2img.py | |
parent | 003b60b94e42e21e9213b286b6a51a222db1076a (diff) | |
download | stable-diffusion-webui-gfx803-b1707553cf70d74fad08c62cfca5a2bdfee936b7.tar.gz stable-diffusion-webui-gfx803-b1707553cf70d74fad08c62cfca5a2bdfee936b7.tar.bz2 stable-diffusion-webui-gfx803-b1707553cf70d74fad08c62cfca5a2bdfee936b7.zip |
added resize seeds and variation seeds features
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index 410a7a7b..606421ea 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -6,7 +6,7 @@ import modules.processing as processing from modules.ui import plaintext_to_html
-def txt2img(prompt: str, negative_prompt: str, steps: int, sampler_index: int, restore_faces: bool, tiling: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, height: int, width: int, *args):
+def txt2img(prompt: str, negative_prompt: str, steps: int, sampler_index: int, restore_faces: bool, tiling: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, subseed: int, subseed_strength: float, seed_resize_from_h: int, seed_resize_from_w: int, height: int, width: int, *args):
p = StableDiffusionProcessingTxt2Img(
sd_model=shared.sd_model,
outpath_samples=opts.outdir_samples or opts.outdir_txt2img_samples,
@@ -14,6 +14,10 @@ def txt2img(prompt: str, negative_prompt: str, steps: int, sampler_index: int, r prompt=prompt,
negative_prompt=negative_prompt,
seed=seed,
+ subseed=subseed,
+ subseed_strength=subseed_strength,
+ seed_resize_from_h=seed_resize_from_h,
+ seed_resize_from_w=seed_resize_from_w,
sampler_index=sampler_index,
batch_size=batch_size,
n_iter=n_iter,
|