-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Fix beta and exponential sigmas + add tests #9954
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
that was fast! :) |
@vladmandic could you confirm if this is working for you? @hlky this is extraordinarily fast! Thank you so much! |
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the fix!
ca157b7
to
f60e096
Compare
Also fixes incorrect ordering in some schedulers. |
That was a rigorous test, thanks! Wonder what did you use for the collage? :D |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks @hlky!
looked like there were some issues that you fixed here that did not get caught in our previous tests or @vladmandic 's test, I will try to make & run a more complete slow-test on my end and then merge
@@ -347,11 +347,33 @@ def set_timesteps(self, num_inference_steps: int, device: Union[str, torch.devic | |||
) | |||
sigmas = np.concatenate([sigmas, [sigma_last]]).astype(np.float32) | |||
elif self.config.use_exponential_sigmas: | |||
sigmas = self._convert_to_exponential(in_sigmas=sigmas, num_inference_steps=self.num_inference_steps) | |||
log_sigmas = np.log(sigmas) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ohh so it looked like it was wrong before, thank!
* Fix beta and exponential sigmas + add tests --------- Co-authored-by: Sayak Paul <spsayakpaul@gmail.com>
What does this PR do?
log_sigmas
moved out ofkarras
branch_convert_to_exponential
and_convert_to_beta
returnnp.ndarray
for consistency with_convert_to_karras
and other codenum_inference_steps
for input to_convert_to_exponential
and_convert_to_beta
, not all schedulers updateself.num_inference_steps
Fixes #9951
Who can review?
Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.
@yiyixuxu @vladmandic