Skip to content

Commit

Permalink
Add Perturbed-Attention Guidance toggle. See https://ku-cvlab.github.…
Browse files Browse the repository at this point in the history
  • Loading branch information
FeepingCreature committed Aug 9, 2024
1 parent 2e47b23 commit 0e5d064
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions ai_diffusion/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ class CheckpointInput:
clip_skip: int = 0
v_prediction_zsnr: bool = False
self_attention_guidance: bool = False
perturbed_attention_guidance: bool = False


@dataclass
Expand Down
3 changes: 3 additions & 0 deletions ai_diffusion/comfy_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,9 @@ def apply_ip_adapter_face(
def apply_self_attention_guidance(self, model: Output):
return self.add("SelfAttentionGuidance", 1, model=model, scale=0.5, blur_sigma=2.0)

def apply_perturbed_attention_guidance(self, model: Output):
return self.add("PerturbedAttentionGuidance", 1, model=model)

def inpaint_preprocessor(self, image: Output, mask: Output):
return self.add("InpaintPreprocessor", 1, image=image, mask=mask)

Expand Down
8 changes: 8 additions & 0 deletions ai_diffusion/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ class StyleSettings:
_("Pay more attention to difficult parts of the image. Can improve fine details."),
)

perturbed_attention_guidance = Setting(
"Enable PAG / Perturbed-Attention Guidance",
False,
'Deliberately introduce errors in "difficult" parts to steer away from. Can improve coherence.',
)

preferred_resolution = Setting(
_("Preferred Resolution"), 0, _("Image resolution the checkpoint was trained on")
)
Expand Down Expand Up @@ -116,6 +122,7 @@ class Style:
clip_skip: int = StyleSettings.clip_skip.default
v_prediction_zsnr: bool = StyleSettings.v_prediction_zsnr.default
self_attention_guidance: bool = StyleSettings.self_attention_guidance.default
perturbed_attention_guidance: bool = StyleSettings.perturbed_attention_guidance.default
preferred_resolution: int = StyleSettings.preferred_resolution.default
sampler: str = StyleSettings.sampler.default
sampler_steps: int = StyleSettings.sampler_steps.default
Expand Down Expand Up @@ -185,6 +192,7 @@ def get_models(self):
v_prediction_zsnr=self.v_prediction_zsnr,
loras=[LoraInput.from_dict(l) for l in self.loras],
self_attention_guidance=self.self_attention_guidance,
perturbed_attention_guidance=self.perturbed_attention_guidance,
)
return result

Expand Down
6 changes: 6 additions & 0 deletions ai_diffusion/ui/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,12 @@ def add(name: str, widget: SettingWidget):
SwitchSetting(StyleSettings.self_attention_guidance, parent=self),
)
)
self._checkpoint_advanced_widgets.append(
add(
"perturbed_attention_guidance",
SwitchSetting(StyleSettings.perturbed_attention_guidance, parent=self),
)
)
for widget in self._checkpoint_advanced_widgets:
widget.indent = 1
self._toggle_checkpoint_advanced(False)
Expand Down
3 changes: 3 additions & 0 deletions ai_diffusion/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ def load_checkpoint_with_lora(w: ComfyWorkflow, checkpoint: CheckpointInput, mod
if checkpoint.self_attention_guidance:
model = w.apply_self_attention_guidance(model)

if checkpoint.perturbed_attention_guidance:
model = w.apply_perturbed_attention_guidance(model)

return model, clip, vae


Expand Down

0 comments on commit 0e5d064

Please sign in to comment.