diff options
author | MalumaDev <piano.lu92@gmail.com> | 2022-10-15 13:59:37 +0000 |
---|---|---|
committer | MalumaDev <piano.lu92@gmail.com> | 2022-10-15 13:59:37 +0000 |
commit | 37d7ffb415cd8c69b3c0bb5f61844dde0b169f78 (patch) | |
tree | bc23d469afc9f6ef1ecf9a1c15f7554e3d7ff5b5 /modules/txt2img.py | |
parent | bb57f30c2de46cfca5419ad01738a41705f96cc3 (diff) | |
download | stable-diffusion-webui-gfx803-37d7ffb415cd8c69b3c0bb5f61844dde0b169f78.tar.gz stable-diffusion-webui-gfx803-37d7ffb415cd8c69b3c0bb5f61844dde0b169f78.tar.bz2 stable-diffusion-webui-gfx803-37d7ffb415cd8c69b3c0bb5f61844dde0b169f78.zip |
fix to tokens lenght, addend embs generator, add new features to edit the embedding before the generation using text
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index 78342024..eedcdfe0 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -13,7 +13,11 @@ def txt2img(prompt: str, negative_prompt: str, prompt_style: str, prompt_style2: aesthetic_lr=0,
aesthetic_weight=0, aesthetic_steps=0,
aesthetic_imgs=None,
- aesthetic_slerp=False, *args):
+ aesthetic_slerp=False,
+ aesthetic_imgs_text="",
+ aesthetic_slerp_angle=0.15,
+ aesthetic_text_negative=False,
+ *args):
p = StableDiffusionProcessingTxt2Img(
sd_model=shared.sd_model,
outpath_samples=opts.outdir_samples or opts.outdir_txt2img_samples,
@@ -47,7 +51,9 @@ def txt2img(prompt: str, negative_prompt: str, prompt_style: str, prompt_style2: processed = modules.scripts.scripts_txt2img.run(p, *args)
if processed is None:
- processed = process_images(p, aesthetic_lr, aesthetic_weight, aesthetic_steps, aesthetic_imgs, aesthetic_slerp)
+ processed = process_images(p, aesthetic_lr, aesthetic_weight, aesthetic_steps, aesthetic_imgs, aesthetic_slerp,aesthetic_imgs_text,
+ aesthetic_slerp_angle,
+ aesthetic_text_negative)
shared.total_tqdm.clear()
|