1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

correct num inference steps

This commit is contained in:
Patrick von Platen
2023-11-24 17:09:26 +00:00
parent b978334d71
commit 2a7f43a73b

View File

@@ -267,7 +267,7 @@ class Kandinsky3Pipeline(DiffusionPipeline, LoraLoaderMixin):
def __call__(
self,
prompt: Union[str, List[str]] = None,
num_inference_steps: int = 100,
num_inference_steps: int = 25,
guidance_scale: float = 3.0,
negative_prompt: Optional[Union[str, List[str]]] = None,
num_images_per_prompt: Optional[int] = 1,