You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I am using the customfluxfill function and want to use the Euler scheduler (EulerAncestralDiscreteScheduler) in my code. However, I am encountering the following error:
Reproduction
from diffusers.schedulers import EulerDiscreteScheduler
Logs
ValueError: The current scheduler class <class 'diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteScheduler'> 's set_timesteps does not support custom sigmas schedules. Please check whether you are using the correct scheduler.
I am using Diffusers, not ComfyUI. Does this mean I cannot use a custom sigma schedule with this particular scheduler? Or is there a workaround to make it work?"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Describe the bug
I am using the customfluxfill function and want to use the Euler scheduler (EulerAncestralDiscreteScheduler) in my code. However, I am encountering the following error:
Reproduction
from diffusers.schedulers import EulerDiscreteScheduler
SAMPLER_MAP = {
"Euler": lambda config: EulerDiscreteScheduler.from_config(config)
}
Logs
ValueError: The current scheduler class <class 'diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteScheduler'> 's set_timesteps does not support custom sigmas schedules. Please check whether you are using the correct scheduler.
I am using Diffusers, not ComfyUI. Does this mean I cannot use a custom sigma schedule with this particular scheduler? Or is there a workaround to make it work?"
Beta Was this translation helpful? Give feedback.
All reactions