(x)
| 318 | model_log_variance = _extract_into_tensor(model_log_variance, t, x.shape) |
| 319 | |
| 320 | def process_xstart(x): |
| 321 | if denoised_fn is not None: |
| 322 | x = denoised_fn(x) |
| 323 | if clip_denoised: |
| 324 | return x.clamp(-1, 1) |
| 325 | return x |
| 326 | |
| 327 | if self.model_mean_type == "x_prev": |
| 328 | pred_xstart = process_xstart( |
nothing calls this directly
no outgoing calls
no test coverage detected