-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Description
E.g. if 20 inference steps are to be performed, is it possible to run the first 10 steps with one prompt and the second 10 steps with another? lpw_stable_diffusion
seems to change the effective prompt every inference step, doesn't it?
This question is motivated by the observation that some words in the prompt affect not only the points they are suggested to. For example, adding bad anatomy
and extra limb
to the negative prompt sometimes vanished the effect of flat_colors
tag in positive prompt.
For example, I daresay that trying to draw perfect eyes
is totally useless for the first 5-10 steps or inference; and vice versa, on the 18th step of 20 it is too late to correct bad anatomy
, amputee
, floating limbs
and even to try to make cowboy_shot
. I may be wrong (and I'll be glad to be corrected if neural networks do not work this way ), but I have to admit that I haven't managed to check this on my own.
Maybe there is a native way to run the pipeline twice consequently on the same image , something like
result = pipe(prompt = prompt, guidance_scale=7.5).pipe(prompt = another_prompt, guidance_scale=7.5)
?