Skip to content

Commit

Permalink
correct num inference steps
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickvonplaten committed Nov 24, 2023
1 parent b978334 commit 2a7f43a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/diffusers/pipelines/kandinsky3/kandinsky3_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def check_inputs(
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,
Expand Down

0 comments on commit 2a7f43a

Please sign in to comment.