Unverified Commit eb2ef316 authored by YiYi Xu's avatar YiYi Xu Committed by GitHub
Browse files

fix default value for attend-and-excite (#3099)

* fix default
parent 5c9dd0af
...@@ -724,7 +724,7 @@ class StableDiffusionAttendAndExcitePipeline(DiffusionPipeline, TextualInversion ...@@ -724,7 +724,7 @@ class StableDiffusionAttendAndExcitePipeline(DiffusionPipeline, TextualInversion
max_iter_to_alter: int = 25, max_iter_to_alter: int = 25,
thresholds: dict = {0: 0.05, 10: 0.5, 20: 0.8}, thresholds: dict = {0: 0.05, 10: 0.5, 20: 0.8},
scale_factor: int = 20, scale_factor: int = 20,
attn_res: Optional[Tuple[int]] = None, attn_res: Optional[Tuple[int]] = (16, 16),
): ):
r""" r"""
Function invoked when calling the pipeline for generation. Function invoked when calling the pipeline for generation.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment