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
Notice that it comes up short of coming near zero.
My modification is still linear but across the full range and still keeping the individual timesteps as multiples of 20 away from 999:
Note that at 25 steps and at a few other step values both schedules result in the same timesteps and same image. In the "Asian woman with fancy bikini" image below with the old scheduler it loses the sky, clouds and sand/sea edge when going from 25 steps to 26 steps. Perhaps due to the lopsided schedule???
Reproduction
For a hack to test my modified scheduler I took:
diffusers/schedulers/scheduling_lcm.py:set_timesteps()
and after the old scheduler created the self.timesteps tensor I just overrode it with:
nSteps = len(self.timesteps)
delta = 999. / nSteps
for i in range(nSteps):
self.timesteps[i] = 999 - 20 * int((i * delta + 10) / 20)
Obviously this is hard coded for the 20 increment delta requirement Simian told me of when I reported this to him.
Logs
No response
System Info
This is the diffusers version with LCM now integrated fully.
Who can help?
No response
The text was updated successfully, but these errors were encountered:
aifartist
changed the title
LCM Scheduler's isn't perfect in uniformly spreading the timesteps across the full range
LCM Scheduler isn't perfect in uniformly spreading the timesteps across the full range
Nov 16, 2023
Describe the bug
Timesteps for nSteps=26 using the current scheduler
Notice that it comes up short of coming near zero.
My modification is still linear but across the full range and still keeping the individual timesteps as multiples of 20 away from 999:
Note that at 25 steps and at a few other step values both schedules result in the same timesteps and same image. In the "Asian woman with fancy bikini" image below with the old scheduler it loses the sky, clouds and sand/sea edge when going from 25 steps to 26 steps. Perhaps due to the lopsided schedule???
Reproduction
For a hack to test my modified scheduler I took:
Obviously this is hard coded for the 20 increment delta requirement Simian told me of when I reported this to him.
Logs
No response
System Info
This is the diffusers version with LCM now integrated fully.
Who can help?
No response
The text was updated successfully, but these errors were encountered: