(self, x_t, t, v)
| 136 | return dm_xt |
| 137 | |
| 138 | def predict_start_from_z_and_v(self, x_t, t, v): |
| 139 | return ( |
| 140 | extract_into_tensor(self.sqrt_alphas_cumprod, t, x_t.shape) * x_t - |
| 141 | extract_into_tensor(self.sqrt_one_minus_alphas_cumprod, t, x_t.shape) * v |
| 142 | ) |
| 143 | |
| 144 | def predict_eps_from_z_and_v(self, x_t, t, v): |
| 145 | return ( |
no test coverage detected