Skip to content

Commit

Permalink
remove minimum step count for AYS (#6137)
Browse files Browse the repository at this point in the history
The 10 step minimum for the AYS scheduler is pointless, it works well at lower steps, like 8 steps, or even 4 steps.

For example with LCM or DMD2.

Example here: https://i.ibb.co/56CSPMj/image.png
  • Loading branch information
TechnoByteJS authored Dec 21, 2024
1 parent 1419dee commit 341667c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comfy_extras/nodes_align_your_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AlignYourStepsScheduler:
def INPUT_TYPES(s):
return {"required":
{"model_type": (["SD1", "SDXL", "SVD"], ),
"steps": ("INT", {"default": 10, "min": 10, "max": 10000}),
"steps": ("INT", {"default": 10, "min": 1, "max": 10000}),
"denoise": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}),
}
}
Expand Down

0 comments on commit 341667c

Please sign in to comment.