-
I have a promt describing a picture with a face with leaves in green palette. I'd like to use AND_PERP to change her eyes color to golden. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
An alternative solution could be to simply use prompt editing: I just started working on #25, which is all that is missing to have the full SEGA implementation (semantic guidance). IIUC, SEGA would work well for your use case. I intend to implement this in prompt fusion with the following syntax:
So in other words, it will allow to dynamically change the composable diffusion prompts at runtime. One optimization that needs to be done currently is simplifying the way prompts are written. Instead of having to type
it will be possible to type
or something like that. |
Beta Was this translation helpful? Give feedback.
AND_PERP
will change the entire image. I think<your prompt> AND_TOPK <your prompt again>, golden eyes
would work better. You will likely have a better result if you repeat your full prompt in different sub prompts. The reason is that each sub prompt tries to describe the entire picture, not just a specific feature.An alternative solution could be to simply use prompt editing:
<your prompt> [:, golden eyes:0.4]
.I just started working on #25, which is all that is missing to have the full SEGA implementation (semantic guidance). IIUC, SEGA would work well for your use case.
I intend to implement this in prompt fusion with the following syntax: