We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 729e6c6 commit 5337162Copy full SHA for 5337162
src/diffusers/guiders/perturbed_attention_guidance.py
@@ -72,6 +72,7 @@ class PerturbedAttentionGuidance(SkipLayerGuidance):
72
# for each model architecture.
73
74
def __init__(
75
+ self,
76
guidance_scale: float = 7.5,
77
perturbed_guidance_scale: float = 2.8,
78
perturbed_guidance_start: float = 0.01,
@@ -106,6 +107,7 @@ def __init__(
106
107
skip_layer_guidance_start=perturbed_guidance_start,
108
skip_layer_guidance_stop=perturbed_guidance_stop,
109
skip_layer_guidance_layers=perturbed_guidance_layers,
110
+ skip_layer_config=skip_layer_config,
111
guidance_rescale=guidance_rescale,
112
use_original_formulation=use_original_formulation,
113
start=start,
0 commit comments