mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-04-29 10:41:25 +00:00
Perturbed Attention Guidance Integrated
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
import gradio as gr
|
||||
import ldm_patched.modules.samplers
|
||||
|
||||
from modules import scripts
|
||||
from modules_forge.unet_patcher import copy_and_update_model_options
|
||||
|
||||
|
||||
class PerturbedAttentionGuidanceForForge(scripts.Script):
|
||||
sorting_priority = 13
|
||||
|
||||
def title(self):
|
||||
return "Perturbed Attention Guidance Integrated"
|
||||
|
||||
def show(self, is_img2img):
|
||||
return scripts.AlwaysVisible
|
||||
|
||||
def ui(self, *args, **kwargs):
|
||||
with gr.Accordion(open=False, label=self.title()):
|
||||
enabled = gr.Checkbox(label='Enabled', value=False)
|
||||
scale = gr.Slider(label='Scale', minimum=0.0, maximum=100.0, step=0.1, value=3.0)
|
||||
|
||||
return enabled, scale
|
||||
|
||||
def process_before_every_sampling(self, p, *script_args, **kwargs):
|
||||
enabled, scale = script_args
|
||||
|
||||
if not enabled:
|
||||
return
|
||||
|
||||
unet = p.sd_model.forge_objects.unet.clone()
|
||||
|
||||
def attn_proc(q, k, v, to):
|
||||
return v
|
||||
|
||||
def post_cfg_function(args):
|
||||
model, cond_denoised, cond, denoised, sigma, x = \
|
||||
args["model"], args["cond_denoised"], args["cond"], args["denoised"], args["sigma"], args["input"]
|
||||
|
||||
new_options = copy_and_update_model_options(args["model_options"], attn_proc, "attn1", "middle", 0)
|
||||
|
||||
if scale == 0:
|
||||
return denoised
|
||||
|
||||
degraded, _ = ldm_patched.modules.samplers.calc_cond_uncond_batch(model, cond, None, x, sigma, new_options)
|
||||
|
||||
return denoised + (cond_denoised - degraded) * scale
|
||||
|
||||
unet.set_model_sampler_post_cfg_function(post_cfg_function)
|
||||
|
||||
p.sd_model.forge_objects.unet = unet
|
||||
|
||||
p.extra_generation_params.update(dict(
|
||||
PerturbedAttentionGuidance_enabled=enabled,
|
||||
PerturbedAttentionGuidance_scale=scale,
|
||||
))
|
||||
|
||||
return
|
||||
Reference in New Issue
Block a user