Denoise at the final step, which is equivalent to solve the ODE from lambda_s to infty by first-order discretization.
(self, x, s)
| 547 | return timesteps_outer, orders |
| 548 | |
| 549 | def denoise_to_zero_fn(self, x, s): |
| 550 | """ |
| 551 | Denoise at the final step, which is equivalent to solve the ODE from lambda_s to infty by first-order discretization. |
| 552 | """ |
| 553 | return self.data_prediction_fn(x, s) |
| 554 | |
| 555 | def dpm_solver_first_update(self, x, s, t, model_s=None, return_intermediate=False): |
| 556 | """ |
no test coverage detected