(self, x_t, t, v)
| 279 | ) |
| 280 | |
| 281 | def predict_eps_from_z_and_v(self, x_t, t, v): |
| 282 | return ( |
| 283 | extract_into_tensor(self.sqrt_alphas_cumprod, t, x_t.shape) * v + |
| 284 | extract_into_tensor(self.sqrt_one_minus_alphas_cumprod, t, x_t.shape) * x_t |
| 285 | ) |
| 286 | |
| 287 | def predict_eps_from_xstart(self, x_t, t, pred_xstart): |
| 288 | return ( |
nothing calls this directly
no test coverage detected