| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
oh thanks
left a question about dtype
Sorry, something went wrong.
| self._init_step_index(timestep) | ||
|
|
||
| # store old dtype because model_output isn't always the same it seems | ||
| return_dtype = sample.dtype |
There was a problem hiding this comment.
do you mean model_output.dtype isn't always the same as sample.dtype before the upcast?
Sorry, something went wrong.
There was a problem hiding this comment.
Turns out that was because model_output = self.convert_model_output(model_output, sample=sample) ends up creating a shadowed tensor cast to the sample's dtype. I moved the sample upcast after this call so return_type is no longer needed. Outputs are the same.
Sorry, something went wrong.
yes separate issue please:) |
Sorry, something went wrong.
Avoids having to re-use the dtype.
There was a problem hiding this comment.
thanks!
Sorry, something went wrong.
|
can you fix the quality test? |
Sorry, something went wrong.
|
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. |
Sorry, something went wrong.
|
Alright I added a single newline. |
Sorry, something went wrong.
|
thank you! |
Sorry, something went wrong.
Have we created a separate issue for ZeroSNR + Karras? |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Effectively identical to the implementation for EulerDiscrete in #6024
TL;DR:
Demo images

use_karras_sigmas also seems to just generally produce bad/noisy results even without ZSNR so I might not have the config set up correctly?