Merge pull request #440 from LuChengTHU/main
Browse filesadd dpm-solver support (much faster than plms)
Former-commit-id: 5a00c4f8db6c05c3e55a4d25c913796c15006e67
ldm/models/diffusion/dpm_solver/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
from .sampler import DPMSolverSampler
|
ldm/models/diffusion/dpm_solver/dpm_solver.py
ADDED
|
@@ -0,0 +1,1184 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import torch
|
| 2 |
+
import torch.nn.functional as F
|
| 3 |
+
import math
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
class NoiseScheduleVP:
|
| 7 |
+
def __init__(
|
| 8 |
+
self,
|
| 9 |
+
schedule='discrete',
|
| 10 |
+
betas=None,
|
| 11 |
+
alphas_cumprod=None,
|
| 12 |
+
continuous_beta_0=0.1,
|
| 13 |
+
continuous_beta_1=20.,
|
| 14 |
+
):
|
| 15 |
+
"""Create a wrapper class for the forward SDE (VP type).
|
| 16 |
+
|
| 17 |
+
***
|
| 18 |
+
Update: We support discrete-time diffusion models by implementing a picewise linear interpolation for log_alpha_t.
|
| 19 |
+
We recommend to use schedule='discrete' for the discrete-time diffusion models, especially for high-resolution images.
|
| 20 |
+
***
|
| 21 |
+
|
| 22 |
+
The forward SDE ensures that the condition distribution q_{t|0}(x_t | x_0) = N ( alpha_t * x_0, sigma_t^2 * I ).
|
| 23 |
+
We further define lambda_t = log(alpha_t) - log(sigma_t), which is the half-logSNR (described in the DPM-Solver paper).
|
| 24 |
+
Therefore, we implement the functions for computing alpha_t, sigma_t and lambda_t. For t in [0, T], we have:
|
| 25 |
+
|
| 26 |
+
log_alpha_t = self.marginal_log_mean_coeff(t)
|
| 27 |
+
sigma_t = self.marginal_std(t)
|
| 28 |
+
lambda_t = self.marginal_lambda(t)
|
| 29 |
+
|
| 30 |
+
Moreover, as lambda(t) is an invertible function, we also support its inverse function:
|
| 31 |
+
|
| 32 |
+
t = self.inverse_lambda(lambda_t)
|
| 33 |
+
|
| 34 |
+
===============================================================
|
| 35 |
+
|
| 36 |
+
We support both discrete-time DPMs (trained on n = 0, 1, ..., N-1) and continuous-time DPMs (trained on t in [t_0, T]).
|
| 37 |
+
|
| 38 |
+
1. For discrete-time DPMs:
|
| 39 |
+
|
| 40 |
+
For discrete-time DPMs trained on n = 0, 1, ..., N-1, we convert the discrete steps to continuous time steps by:
|
| 41 |
+
t_i = (i + 1) / N
|
| 42 |
+
e.g. for N = 1000, we have t_0 = 1e-3 and T = t_{N-1} = 1.
|
| 43 |
+
We solve the corresponding diffusion ODE from time T = 1 to time t_0 = 1e-3.
|
| 44 |
+
|
| 45 |
+
Args:
|
| 46 |
+
betas: A `torch.Tensor`. The beta array for the discrete-time DPM. (See the original DDPM paper for details)
|
| 47 |
+
alphas_cumprod: A `torch.Tensor`. The cumprod alphas for the discrete-time DPM. (See the original DDPM paper for details)
|
| 48 |
+
|
| 49 |
+
Note that we always have alphas_cumprod = cumprod(betas). Therefore, we only need to set one of `betas` and `alphas_cumprod`.
|
| 50 |
+
|
| 51 |
+
**Important**: Please pay special attention for the args for `alphas_cumprod`:
|
| 52 |
+
The `alphas_cumprod` is the \hat{alpha_n} arrays in the notations of DDPM. Specifically, DDPMs assume that
|
| 53 |
+
q_{t_n | 0}(x_{t_n} | x_0) = N ( \sqrt{\hat{alpha_n}} * x_0, (1 - \hat{alpha_n}) * I ).
|
| 54 |
+
Therefore, the notation \hat{alpha_n} is different from the notation alpha_t in DPM-Solver. In fact, we have
|
| 55 |
+
alpha_{t_n} = \sqrt{\hat{alpha_n}},
|
| 56 |
+
and
|
| 57 |
+
log(alpha_{t_n}) = 0.5 * log(\hat{alpha_n}).
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
2. For continuous-time DPMs:
|
| 61 |
+
|
| 62 |
+
We support two types of VPSDEs: linear (DDPM) and cosine (improved-DDPM). The hyperparameters for the noise
|
| 63 |
+
schedule are the default settings in DDPM and improved-DDPM:
|
| 64 |
+
|
| 65 |
+
Args:
|
| 66 |
+
beta_min: A `float` number. The smallest beta for the linear schedule.
|
| 67 |
+
beta_max: A `float` number. The largest beta for the linear schedule.
|
| 68 |
+
cosine_s: A `float` number. The hyperparameter in the cosine schedule.
|
| 69 |
+
cosine_beta_max: A `float` number. The hyperparameter in the cosine schedule.
|
| 70 |
+
T: A `float` number. The ending time of the forward process.
|
| 71 |
+
|
| 72 |
+
===============================================================
|
| 73 |
+
|
| 74 |
+
Args:
|
| 75 |
+
schedule: A `str`. The noise schedule of the forward SDE. 'discrete' for discrete-time DPMs,
|
| 76 |
+
'linear' or 'cosine' for continuous-time DPMs.
|
| 77 |
+
Returns:
|
| 78 |
+
A wrapper object of the forward SDE (VP type).
|
| 79 |
+
|
| 80 |
+
===============================================================
|
| 81 |
+
|
| 82 |
+
Example:
|
| 83 |
+
|
| 84 |
+
# For discrete-time DPMs, given betas (the beta array for n = 0, 1, ..., N - 1):
|
| 85 |
+
>>> ns = NoiseScheduleVP('discrete', betas=betas)
|
| 86 |
+
|
| 87 |
+
# For discrete-time DPMs, given alphas_cumprod (the \hat{alpha_n} array for n = 0, 1, ..., N - 1):
|
| 88 |
+
>>> ns = NoiseScheduleVP('discrete', alphas_cumprod=alphas_cumprod)
|
| 89 |
+
|
| 90 |
+
# For continuous-time DPMs (VPSDE), linear schedule:
|
| 91 |
+
>>> ns = NoiseScheduleVP('linear', continuous_beta_0=0.1, continuous_beta_1=20.)
|
| 92 |
+
|
| 93 |
+
"""
|
| 94 |
+
|
| 95 |
+
if schedule not in ['discrete', 'linear', 'cosine']:
|
| 96 |
+
raise ValueError("Unsupported noise schedule {}. The schedule needs to be 'discrete' or 'linear' or 'cosine'".format(schedule))
|
| 97 |
+
|
| 98 |
+
self.schedule = schedule
|
| 99 |
+
if schedule == 'discrete':
|
| 100 |
+
if betas is not None:
|
| 101 |
+
log_alphas = 0.5 * torch.log(1 - betas).cumsum(dim=0)
|
| 102 |
+
else:
|
| 103 |
+
assert alphas_cumprod is not None
|
| 104 |
+
log_alphas = 0.5 * torch.log(alphas_cumprod)
|
| 105 |
+
self.total_N = len(log_alphas)
|
| 106 |
+
self.T = 1.
|
| 107 |
+
self.t_array = torch.linspace(0., 1., self.total_N + 1)[1:].reshape((1, -1))
|
| 108 |
+
self.log_alpha_array = log_alphas.reshape((1, -1,))
|
| 109 |
+
else:
|
| 110 |
+
self.total_N = 1000
|
| 111 |
+
self.beta_0 = continuous_beta_0
|
| 112 |
+
self.beta_1 = continuous_beta_1
|
| 113 |
+
self.cosine_s = 0.008
|
| 114 |
+
self.cosine_beta_max = 999.
|
| 115 |
+
self.cosine_t_max = math.atan(self.cosine_beta_max * (1. + self.cosine_s) / math.pi) * 2. * (1. + self.cosine_s) / math.pi - self.cosine_s
|
| 116 |
+
self.cosine_log_alpha_0 = math.log(math.cos(self.cosine_s / (1. + self.cosine_s) * math.pi / 2.))
|
| 117 |
+
self.schedule = schedule
|
| 118 |
+
if schedule == 'cosine':
|
| 119 |
+
# For the cosine schedule, T = 1 will have numerical issues. So we manually set the ending time T.
|
| 120 |
+
# Note that T = 0.9946 may be not the optimal setting. However, we find it works well.
|
| 121 |
+
self.T = 0.9946
|
| 122 |
+
else:
|
| 123 |
+
self.T = 1.
|
| 124 |
+
|
| 125 |
+
def marginal_log_mean_coeff(self, t):
|
| 126 |
+
"""
|
| 127 |
+
Compute log(alpha_t) of a given continuous-time label t in [0, T].
|
| 128 |
+
"""
|
| 129 |
+
if self.schedule == 'discrete':
|
| 130 |
+
return interpolate_fn(t.reshape((-1, 1)), self.t_array.to(t.device), self.log_alpha_array.to(t.device)).reshape((-1))
|
| 131 |
+
elif self.schedule == 'linear':
|
| 132 |
+
return -0.25 * t ** 2 * (self.beta_1 - self.beta_0) - 0.5 * t * self.beta_0
|
| 133 |
+
elif self.schedule == 'cosine':
|
| 134 |
+
log_alpha_fn = lambda s: torch.log(torch.cos((s + self.cosine_s) / (1. + self.cosine_s) * math.pi / 2.))
|
| 135 |
+
log_alpha_t = log_alpha_fn(t) - self.cosine_log_alpha_0
|
| 136 |
+
return log_alpha_t
|
| 137 |
+
|
| 138 |
+
def marginal_alpha(self, t):
|
| 139 |
+
"""
|
| 140 |
+
Compute alpha_t of a given continuous-time label t in [0, T].
|
| 141 |
+
"""
|
| 142 |
+
return torch.exp(self.marginal_log_mean_coeff(t))
|
| 143 |
+
|
| 144 |
+
def marginal_std(self, t):
|
| 145 |
+
"""
|
| 146 |
+
Compute sigma_t of a given continuous-time label t in [0, T].
|
| 147 |
+
"""
|
| 148 |
+
return torch.sqrt(1. - torch.exp(2. * self.marginal_log_mean_coeff(t)))
|
| 149 |
+
|
| 150 |
+
def marginal_lambda(self, t):
|
| 151 |
+
"""
|
| 152 |
+
Compute lambda_t = log(alpha_t) - log(sigma_t) of a given continuous-time label t in [0, T].
|
| 153 |
+
"""
|
| 154 |
+
log_mean_coeff = self.marginal_log_mean_coeff(t)
|
| 155 |
+
log_std = 0.5 * torch.log(1. - torch.exp(2. * log_mean_coeff))
|
| 156 |
+
return log_mean_coeff - log_std
|
| 157 |
+
|
| 158 |
+
def inverse_lambda(self, lamb):
|
| 159 |
+
"""
|
| 160 |
+
Compute the continuous-time label t in [0, T] of a given half-logSNR lambda_t.
|
| 161 |
+
"""
|
| 162 |
+
if self.schedule == 'linear':
|
| 163 |
+
tmp = 2. * (self.beta_1 - self.beta_0) * torch.logaddexp(-2. * lamb, torch.zeros((1,)).to(lamb))
|
| 164 |
+
Delta = self.beta_0**2 + tmp
|
| 165 |
+
return tmp / (torch.sqrt(Delta) + self.beta_0) / (self.beta_1 - self.beta_0)
|
| 166 |
+
elif self.schedule == 'discrete':
|
| 167 |
+
log_alpha = -0.5 * torch.logaddexp(torch.zeros((1,)).to(lamb.device), -2. * lamb)
|
| 168 |
+
t = interpolate_fn(log_alpha.reshape((-1, 1)), torch.flip(self.log_alpha_array.to(lamb.device), [1]), torch.flip(self.t_array.to(lamb.device), [1]))
|
| 169 |
+
return t.reshape((-1,))
|
| 170 |
+
else:
|
| 171 |
+
log_alpha = -0.5 * torch.logaddexp(-2. * lamb, torch.zeros((1,)).to(lamb))
|
| 172 |
+
t_fn = lambda log_alpha_t: torch.arccos(torch.exp(log_alpha_t + self.cosine_log_alpha_0)) * 2. * (1. + self.cosine_s) / math.pi - self.cosine_s
|
| 173 |
+
t = t_fn(log_alpha)
|
| 174 |
+
return t
|
| 175 |
+
|
| 176 |
+
|
| 177 |
+
def model_wrapper(
|
| 178 |
+
model,
|
| 179 |
+
noise_schedule,
|
| 180 |
+
model_type="noise",
|
| 181 |
+
model_kwargs={},
|
| 182 |
+
guidance_type="uncond",
|
| 183 |
+
condition=None,
|
| 184 |
+
unconditional_condition=None,
|
| 185 |
+
guidance_scale=1.,
|
| 186 |
+
classifier_fn=None,
|
| 187 |
+
classifier_kwargs={},
|
| 188 |
+
):
|
| 189 |
+
"""Create a wrapper function for the noise prediction model.
|
| 190 |
+
|
| 191 |
+
DPM-Solver needs to solve the continuous-time diffusion ODEs. For DPMs trained on discrete-time labels, we need to
|
| 192 |
+
firstly wrap the model function to a noise prediction model that accepts the continuous time as the input.
|
| 193 |
+
|
| 194 |
+
We support four types of the diffusion model by setting `model_type`:
|
| 195 |
+
|
| 196 |
+
1. "noise": noise prediction model. (Trained by predicting noise).
|
| 197 |
+
|
| 198 |
+
2. "x_start": data prediction model. (Trained by predicting the data x_0 at time 0).
|
| 199 |
+
|
| 200 |
+
3. "v": velocity prediction model. (Trained by predicting the velocity).
|
| 201 |
+
The "v" prediction is derivation detailed in Appendix D of [1], and is used in Imagen-Video [2].
|
| 202 |
+
|
| 203 |
+
[1] Salimans, Tim, and Jonathan Ho. "Progressive distillation for fast sampling of diffusion models."
|
| 204 |
+
arXiv preprint arXiv:2202.00512 (2022).
|
| 205 |
+
[2] Ho, Jonathan, et al. "Imagen Video: High Definition Video Generation with Diffusion Models."
|
| 206 |
+
arXiv preprint arXiv:2210.02303 (2022).
|
| 207 |
+
|
| 208 |
+
4. "score": marginal score function. (Trained by denoising score matching).
|
| 209 |
+
Note that the score function and the noise prediction model follows a simple relationship:
|
| 210 |
+
```
|
| 211 |
+
noise(x_t, t) = -sigma_t * score(x_t, t)
|
| 212 |
+
```
|
| 213 |
+
|
| 214 |
+
We support three types of guided sampling by DPMs by setting `guidance_type`:
|
| 215 |
+
1. "uncond": unconditional sampling by DPMs.
|
| 216 |
+
The input `model` has the following format:
|
| 217 |
+
``
|
| 218 |
+
model(x, t_input, **model_kwargs) -> noise | x_start | v | score
|
| 219 |
+
``
|
| 220 |
+
|
| 221 |
+
2. "classifier": classifier guidance sampling [3] by DPMs and another classifier.
|
| 222 |
+
The input `model` has the following format:
|
| 223 |
+
``
|
| 224 |
+
model(x, t_input, **model_kwargs) -> noise | x_start | v | score
|
| 225 |
+
``
|
| 226 |
+
|
| 227 |
+
The input `classifier_fn` has the following format:
|
| 228 |
+
``
|
| 229 |
+
classifier_fn(x, t_input, cond, **classifier_kwargs) -> logits(x, t_input, cond)
|
| 230 |
+
``
|
| 231 |
+
|
| 232 |
+
[3] P. Dhariwal and A. Q. Nichol, "Diffusion models beat GANs on image synthesis,"
|
| 233 |
+
in Advances in Neural Information Processing Systems, vol. 34, 2021, pp. 8780-8794.
|
| 234 |
+
|
| 235 |
+
3. "classifier-free": classifier-free guidance sampling by conditional DPMs.
|
| 236 |
+
The input `model` has the following format:
|
| 237 |
+
``
|
| 238 |
+
model(x, t_input, cond, **model_kwargs) -> noise | x_start | v | score
|
| 239 |
+
``
|
| 240 |
+
And if cond == `unconditional_condition`, the model output is the unconditional DPM output.
|
| 241 |
+
|
| 242 |
+
[4] Ho, Jonathan, and Tim Salimans. "Classifier-free diffusion guidance."
|
| 243 |
+
arXiv preprint arXiv:2207.12598 (2022).
|
| 244 |
+
|
| 245 |
+
|
| 246 |
+
The `t_input` is the time label of the model, which may be discrete-time labels (i.e. 0 to 999)
|
| 247 |
+
or continuous-time labels (i.e. epsilon to T).
|
| 248 |
+
|
| 249 |
+
We wrap the model function to accept only `x` and `t_continuous` as inputs, and outputs the predicted noise:
|
| 250 |
+
``
|
| 251 |
+
def model_fn(x, t_continuous) -> noise:
|
| 252 |
+
t_input = get_model_input_time(t_continuous)
|
| 253 |
+
return noise_pred(model, x, t_input, **model_kwargs)
|
| 254 |
+
``
|
| 255 |
+
where `t_continuous` is the continuous time labels (i.e. epsilon to T). And we use `model_fn` for DPM-Solver.
|
| 256 |
+
|
| 257 |
+
===============================================================
|
| 258 |
+
|
| 259 |
+
Args:
|
| 260 |
+
model: A diffusion model with the corresponding format described above.
|
| 261 |
+
noise_schedule: A noise schedule object, such as NoiseScheduleVP.
|
| 262 |
+
model_type: A `str`. The parameterization type of the diffusion model.
|
| 263 |
+
"noise" or "x_start" or "v" or "score".
|
| 264 |
+
model_kwargs: A `dict`. A dict for the other inputs of the model function.
|
| 265 |
+
guidance_type: A `str`. The type of the guidance for sampling.
|
| 266 |
+
"uncond" or "classifier" or "classifier-free".
|
| 267 |
+
condition: A pytorch tensor. The condition for the guided sampling.
|
| 268 |
+
Only used for "classifier" or "classifier-free" guidance type.
|
| 269 |
+
unconditional_condition: A pytorch tensor. The condition for the unconditional sampling.
|
| 270 |
+
Only used for "classifier-free" guidance type.
|
| 271 |
+
guidance_scale: A `float`. The scale for the guided sampling.
|
| 272 |
+
classifier_fn: A classifier function. Only used for the classifier guidance.
|
| 273 |
+
classifier_kwargs: A `dict`. A dict for the other inputs of the classifier function.
|
| 274 |
+
Returns:
|
| 275 |
+
A noise prediction model that accepts the noised data and the continuous time as the inputs.
|
| 276 |
+
"""
|
| 277 |
+
|
| 278 |
+
def get_model_input_time(t_continuous):
|
| 279 |
+
"""
|
| 280 |
+
Convert the continuous-time `t_continuous` (in [epsilon, T]) to the model input time.
|
| 281 |
+
For discrete-time DPMs, we convert `t_continuous` in [1 / N, 1] to `t_input` in [0, 1000 * (N - 1) / N].
|
| 282 |
+
For continuous-time DPMs, we just use `t_continuous`.
|
| 283 |
+
"""
|
| 284 |
+
if noise_schedule.schedule == 'discrete':
|
| 285 |
+
return (t_continuous - 1. / noise_schedule.total_N) * 1000.
|
| 286 |
+
else:
|
| 287 |
+
return t_continuous
|
| 288 |
+
|
| 289 |
+
def noise_pred_fn(x, t_continuous, cond=None):
|
| 290 |
+
if t_continuous.reshape((-1,)).shape[0] == 1:
|
| 291 |
+
t_continuous = t_continuous.expand((x.shape[0]))
|
| 292 |
+
t_input = get_model_input_time(t_continuous)
|
| 293 |
+
if cond is None:
|
| 294 |
+
output = model(x, t_input, **model_kwargs)
|
| 295 |
+
else:
|
| 296 |
+
output = model(x, t_input, cond, **model_kwargs)
|
| 297 |
+
if model_type == "noise":
|
| 298 |
+
return output
|
| 299 |
+
elif model_type == "x_start":
|
| 300 |
+
alpha_t, sigma_t = noise_schedule.marginal_alpha(t_continuous), noise_schedule.marginal_std(t_continuous)
|
| 301 |
+
dims = x.dim()
|
| 302 |
+
return (x - expand_dims(alpha_t, dims) * output) / expand_dims(sigma_t, dims)
|
| 303 |
+
elif model_type == "v":
|
| 304 |
+
alpha_t, sigma_t = noise_schedule.marginal_alpha(t_continuous), noise_schedule.marginal_std(t_continuous)
|
| 305 |
+
dims = x.dim()
|
| 306 |
+
return expand_dims(alpha_t, dims) * output + expand_dims(sigma_t, dims) * x
|
| 307 |
+
elif model_type == "score":
|
| 308 |
+
sigma_t = noise_schedule.marginal_std(t_continuous)
|
| 309 |
+
dims = x.dim()
|
| 310 |
+
return -expand_dims(sigma_t, dims) * output
|
| 311 |
+
|
| 312 |
+
def cond_grad_fn(x, t_input):
|
| 313 |
+
"""
|
| 314 |
+
Compute the gradient of the classifier, i.e. nabla_{x} log p_t(cond | x_t).
|
| 315 |
+
"""
|
| 316 |
+
with torch.enable_grad():
|
| 317 |
+
x_in = x.detach().requires_grad_(True)
|
| 318 |
+
log_prob = classifier_fn(x_in, t_input, condition, **classifier_kwargs)
|
| 319 |
+
return torch.autograd.grad(log_prob.sum(), x_in)[0]
|
| 320 |
+
|
| 321 |
+
def model_fn(x, t_continuous):
|
| 322 |
+
"""
|
| 323 |
+
The noise predicition model function that is used for DPM-Solver.
|
| 324 |
+
"""
|
| 325 |
+
if t_continuous.reshape((-1,)).shape[0] == 1:
|
| 326 |
+
t_continuous = t_continuous.expand((x.shape[0]))
|
| 327 |
+
if guidance_type == "uncond":
|
| 328 |
+
return noise_pred_fn(x, t_continuous)
|
| 329 |
+
elif guidance_type == "classifier":
|
| 330 |
+
assert classifier_fn is not None
|
| 331 |
+
t_input = get_model_input_time(t_continuous)
|
| 332 |
+
cond_grad = cond_grad_fn(x, t_input)
|
| 333 |
+
sigma_t = noise_schedule.marginal_std(t_continuous)
|
| 334 |
+
noise = noise_pred_fn(x, t_continuous)
|
| 335 |
+
return noise - guidance_scale * expand_dims(sigma_t, dims=cond_grad.dim()) * cond_grad
|
| 336 |
+
elif guidance_type == "classifier-free":
|
| 337 |
+
if guidance_scale == 1. or unconditional_condition is None:
|
| 338 |
+
return noise_pred_fn(x, t_continuous, cond=condition)
|
| 339 |
+
else:
|
| 340 |
+
x_in = torch.cat([x] * 2)
|
| 341 |
+
t_in = torch.cat([t_continuous] * 2)
|
| 342 |
+
c_in = torch.cat([unconditional_condition, condition])
|
| 343 |
+
noise_uncond, noise = noise_pred_fn(x_in, t_in, cond=c_in).chunk(2)
|
| 344 |
+
return noise_uncond + guidance_scale * (noise - noise_uncond)
|
| 345 |
+
|
| 346 |
+
assert model_type in ["noise", "x_start", "v"]
|
| 347 |
+
assert guidance_type in ["uncond", "classifier", "classifier-free"]
|
| 348 |
+
return model_fn
|
| 349 |
+
|
| 350 |
+
|
| 351 |
+
class DPM_Solver:
|
| 352 |
+
def __init__(self, model_fn, noise_schedule, predict_x0=False, thresholding=False, max_val=1.):
|
| 353 |
+
"""Construct a DPM-Solver.
|
| 354 |
+
|
| 355 |
+
We support both the noise prediction model ("predicting epsilon") and the data prediction model ("predicting x0").
|
| 356 |
+
If `predict_x0` is False, we use the solver for the noise prediction model (DPM-Solver).
|
| 357 |
+
If `predict_x0` is True, we use the solver for the data prediction model (DPM-Solver++).
|
| 358 |
+
In such case, we further support the "dynamic thresholding" in [1] when `thresholding` is True.
|
| 359 |
+
The "dynamic thresholding" can greatly improve the sample quality for pixel-space DPMs with large guidance scales.
|
| 360 |
+
|
| 361 |
+
Args:
|
| 362 |
+
model_fn: A noise prediction model function which accepts the continuous-time input (t in [epsilon, T]):
|
| 363 |
+
``
|
| 364 |
+
def model_fn(x, t_continuous):
|
| 365 |
+
return noise
|
| 366 |
+
``
|
| 367 |
+
noise_schedule: A noise schedule object, such as NoiseScheduleVP.
|
| 368 |
+
predict_x0: A `bool`. If true, use the data prediction model; else, use the noise prediction model.
|
| 369 |
+
thresholding: A `bool`. Valid when `predict_x0` is True. Whether to use the "dynamic thresholding" in [1].
|
| 370 |
+
max_val: A `float`. Valid when both `predict_x0` and `thresholding` are True. The max value for thresholding.
|
| 371 |
+
|
| 372 |
+
[1] Chitwan Saharia, William Chan, Saurabh Saxena, Lala Li, Jay Whang, Emily Denton, Seyed Kamyar Seyed Ghasemipour, Burcu Karagol Ayan, S Sara Mahdavi, Rapha Gontijo Lopes, et al. Photorealistic text-to-image diffusion models with deep language understanding. arXiv preprint arXiv:2205.11487, 2022b.
|
| 373 |
+
"""
|
| 374 |
+
self.model = model_fn
|
| 375 |
+
self.noise_schedule = noise_schedule
|
| 376 |
+
self.predict_x0 = predict_x0
|
| 377 |
+
self.thresholding = thresholding
|
| 378 |
+
self.max_val = max_val
|
| 379 |
+
|
| 380 |
+
def noise_prediction_fn(self, x, t):
|
| 381 |
+
"""
|
| 382 |
+
Return the noise prediction model.
|
| 383 |
+
"""
|
| 384 |
+
return self.model(x, t)
|
| 385 |
+
|
| 386 |
+
def data_prediction_fn(self, x, t):
|
| 387 |
+
"""
|
| 388 |
+
Return the data prediction model (with thresholding).
|
| 389 |
+
"""
|
| 390 |
+
noise = self.noise_prediction_fn(x, t)
|
| 391 |
+
dims = x.dim()
|
| 392 |
+
alpha_t, sigma_t = self.noise_schedule.marginal_alpha(t), self.noise_schedule.marginal_std(t)
|
| 393 |
+
x0 = (x - expand_dims(sigma_t, dims) * noise) / expand_dims(alpha_t, dims)
|
| 394 |
+
if self.thresholding:
|
| 395 |
+
p = 0.995 # A hyperparameter in the paper of "Imagen" [1].
|
| 396 |
+
s = torch.quantile(torch.abs(x0).reshape((x0.shape[0], -1)), p, dim=1)
|
| 397 |
+
s = expand_dims(torch.maximum(s, self.max_val * torch.ones_like(s).to(s.device)), dims)
|
| 398 |
+
x0 = torch.clamp(x0, -s, s) / s
|
| 399 |
+
return x0
|
| 400 |
+
|
| 401 |
+
def model_fn(self, x, t):
|
| 402 |
+
"""
|
| 403 |
+
Convert the model to the noise prediction model or the data prediction model.
|
| 404 |
+
"""
|
| 405 |
+
if self.predict_x0:
|
| 406 |
+
return self.data_prediction_fn(x, t)
|
| 407 |
+
else:
|
| 408 |
+
return self.noise_prediction_fn(x, t)
|
| 409 |
+
|
| 410 |
+
def get_time_steps(self, skip_type, t_T, t_0, N, device):
|
| 411 |
+
"""Compute the intermediate time steps for sampling.
|
| 412 |
+
|
| 413 |
+
Args:
|
| 414 |
+
skip_type: A `str`. The type for the spacing of the time steps. We support three types:
|
| 415 |
+
- 'logSNR': uniform logSNR for the time steps.
|
| 416 |
+
- 'time_uniform': uniform time for the time steps. (**Recommended for high-resolutional data**.)
|
| 417 |
+
- 'time_quadratic': quadratic time for the time steps. (Used in DDIM for low-resolutional data.)
|
| 418 |
+
t_T: A `float`. The starting time of the sampling (default is T).
|
| 419 |
+
t_0: A `float`. The ending time of the sampling (default is epsilon).
|
| 420 |
+
N: A `int`. The total number of the spacing of the time steps.
|
| 421 |
+
device: A torch device.
|
| 422 |
+
Returns:
|
| 423 |
+
A pytorch tensor of the time steps, with the shape (N + 1,).
|
| 424 |
+
"""
|
| 425 |
+
if skip_type == 'logSNR':
|
| 426 |
+
lambda_T = self.noise_schedule.marginal_lambda(torch.tensor(t_T).to(device))
|
| 427 |
+
lambda_0 = self.noise_schedule.marginal_lambda(torch.tensor(t_0).to(device))
|
| 428 |
+
logSNR_steps = torch.linspace(lambda_T.cpu().item(), lambda_0.cpu().item(), N + 1).to(device)
|
| 429 |
+
return self.noise_schedule.inverse_lambda(logSNR_steps)
|
| 430 |
+
elif skip_type == 'time_uniform':
|
| 431 |
+
return torch.linspace(t_T, t_0, N + 1).to(device)
|
| 432 |
+
elif skip_type == 'time_quadratic':
|
| 433 |
+
t_order = 2
|
| 434 |
+
t = torch.linspace(t_T**(1. / t_order), t_0**(1. / t_order), N + 1).pow(t_order).to(device)
|
| 435 |
+
return t
|
| 436 |
+
else:
|
| 437 |
+
raise ValueError("Unsupported skip_type {}, need to be 'logSNR' or 'time_uniform' or 'time_quadratic'".format(skip_type))
|
| 438 |
+
|
| 439 |
+
def get_orders_and_timesteps_for_singlestep_solver(self, steps, order, skip_type, t_T, t_0, device):
|
| 440 |
+
"""
|
| 441 |
+
Get the order of each step for sampling by the singlestep DPM-Solver.
|
| 442 |
+
|
| 443 |
+
We combine both DPM-Solver-1,2,3 to use all the function evaluations, which is named as "DPM-Solver-fast".
|
| 444 |
+
Given a fixed number of function evaluations by `steps`, the sampling procedure by DPM-Solver-fast is:
|
| 445 |
+
- If order == 1:
|
| 446 |
+
We take `steps` of DPM-Solver-1 (i.e. DDIM).
|
| 447 |
+
- If order == 2:
|
| 448 |
+
- Denote K = (steps // 2). We take K or (K + 1) intermediate time steps for sampling.
|
| 449 |
+
- If steps % 2 == 0, we use K steps of DPM-Solver-2.
|
| 450 |
+
- If steps % 2 == 1, we use K steps of DPM-Solver-2 and 1 step of DPM-Solver-1.
|
| 451 |
+
- If order == 3:
|
| 452 |
+
- Denote K = (steps // 3 + 1). We take K intermediate time steps for sampling.
|
| 453 |
+
- If steps % 3 == 0, we use (K - 2) steps of DPM-Solver-3, and 1 step of DPM-Solver-2 and 1 step of DPM-Solver-1.
|
| 454 |
+
- If steps % 3 == 1, we use (K - 1) steps of DPM-Solver-3 and 1 step of DPM-Solver-1.
|
| 455 |
+
- If steps % 3 == 2, we use (K - 1) steps of DPM-Solver-3 and 1 step of DPM-Solver-2.
|
| 456 |
+
|
| 457 |
+
============================================
|
| 458 |
+
Args:
|
| 459 |
+
order: A `int`. The max order for the solver (2 or 3).
|
| 460 |
+
steps: A `int`. The total number of function evaluations (NFE).
|
| 461 |
+
skip_type: A `str`. The type for the spacing of the time steps. We support three types:
|
| 462 |
+
- 'logSNR': uniform logSNR for the time steps.
|
| 463 |
+
- 'time_uniform': uniform time for the time steps. (**Recommended for high-resolutional data**.)
|
| 464 |
+
- 'time_quadratic': quadratic time for the time steps. (Used in DDIM for low-resolutional data.)
|
| 465 |
+
t_T: A `float`. The starting time of the sampling (default is T).
|
| 466 |
+
t_0: A `float`. The ending time of the sampling (default is epsilon).
|
| 467 |
+
device: A torch device.
|
| 468 |
+
Returns:
|
| 469 |
+
orders: A list of the solver order of each step.
|
| 470 |
+
"""
|
| 471 |
+
if order == 3:
|
| 472 |
+
K = steps // 3 + 1
|
| 473 |
+
if steps % 3 == 0:
|
| 474 |
+
orders = [3,] * (K - 2) + [2, 1]
|
| 475 |
+
elif steps % 3 == 1:
|
| 476 |
+
orders = [3,] * (K - 1) + [1]
|
| 477 |
+
else:
|
| 478 |
+
orders = [3,] * (K - 1) + [2]
|
| 479 |
+
elif order == 2:
|
| 480 |
+
if steps % 2 == 0:
|
| 481 |
+
K = steps // 2
|
| 482 |
+
orders = [2,] * K
|
| 483 |
+
else:
|
| 484 |
+
K = steps // 2 + 1
|
| 485 |
+
orders = [2,] * (K - 1) + [1]
|
| 486 |
+
elif order == 1:
|
| 487 |
+
K = 1
|
| 488 |
+
orders = [1,] * steps
|
| 489 |
+
else:
|
| 490 |
+
raise ValueError("'order' must be '1' or '2' or '3'.")
|
| 491 |
+
if skip_type == 'logSNR':
|
| 492 |
+
# To reproduce the results in DPM-Solver paper
|
| 493 |
+
timesteps_outer = self.get_time_steps(skip_type, t_T, t_0, K, device)
|
| 494 |
+
else:
|
| 495 |
+
timesteps_outer = self.get_time_steps(skip_type, t_T, t_0, steps, device)[torch.cumsum(torch.tensor([0,] + orders)).to(device)]
|
| 496 |
+
return timesteps_outer, orders
|
| 497 |
+
|
| 498 |
+
def denoise_to_zero_fn(self, x, s):
|
| 499 |
+
"""
|
| 500 |
+
Denoise at the final step, which is equivalent to solve the ODE from lambda_s to infty by first-order discretization.
|
| 501 |
+
"""
|
| 502 |
+
return self.data_prediction_fn(x, s)
|
| 503 |
+
|
| 504 |
+
def dpm_solver_first_update(self, x, s, t, model_s=None, return_intermediate=False):
|
| 505 |
+
"""
|
| 506 |
+
DPM-Solver-1 (equivalent to DDIM) from time `s` to time `t`.
|
| 507 |
+
|
| 508 |
+
Args:
|
| 509 |
+
x: A pytorch tensor. The initial value at time `s`.
|
| 510 |
+
s: A pytorch tensor. The starting time, with the shape (x.shape[0],).
|
| 511 |
+
t: A pytorch tensor. The ending time, with the shape (x.shape[0],).
|
| 512 |
+
model_s: A pytorch tensor. The model function evaluated at time `s`.
|
| 513 |
+
If `model_s` is None, we evaluate the model by `x` and `s`; otherwise we directly use it.
|
| 514 |
+
return_intermediate: A `bool`. If true, also return the model value at time `s`.
|
| 515 |
+
Returns:
|
| 516 |
+
x_t: A pytorch tensor. The approximated solution at time `t`.
|
| 517 |
+
"""
|
| 518 |
+
ns = self.noise_schedule
|
| 519 |
+
dims = x.dim()
|
| 520 |
+
lambda_s, lambda_t = ns.marginal_lambda(s), ns.marginal_lambda(t)
|
| 521 |
+
h = lambda_t - lambda_s
|
| 522 |
+
log_alpha_s, log_alpha_t = ns.marginal_log_mean_coeff(s), ns.marginal_log_mean_coeff(t)
|
| 523 |
+
sigma_s, sigma_t = ns.marginal_std(s), ns.marginal_std(t)
|
| 524 |
+
alpha_t = torch.exp(log_alpha_t)
|
| 525 |
+
|
| 526 |
+
if self.predict_x0:
|
| 527 |
+
phi_1 = torch.expm1(-h)
|
| 528 |
+
if model_s is None:
|
| 529 |
+
model_s = self.model_fn(x, s)
|
| 530 |
+
x_t = (
|
| 531 |
+
expand_dims(sigma_t / sigma_s, dims) * x
|
| 532 |
+
- expand_dims(alpha_t * phi_1, dims) * model_s
|
| 533 |
+
)
|
| 534 |
+
if return_intermediate:
|
| 535 |
+
return x_t, {'model_s': model_s}
|
| 536 |
+
else:
|
| 537 |
+
return x_t
|
| 538 |
+
else:
|
| 539 |
+
phi_1 = torch.expm1(h)
|
| 540 |
+
if model_s is None:
|
| 541 |
+
model_s = self.model_fn(x, s)
|
| 542 |
+
x_t = (
|
| 543 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_s), dims) * x
|
| 544 |
+
- expand_dims(sigma_t * phi_1, dims) * model_s
|
| 545 |
+
)
|
| 546 |
+
if return_intermediate:
|
| 547 |
+
return x_t, {'model_s': model_s}
|
| 548 |
+
else:
|
| 549 |
+
return x_t
|
| 550 |
+
|
| 551 |
+
def singlestep_dpm_solver_second_update(self, x, s, t, r1=0.5, model_s=None, return_intermediate=False, solver_type='dpm_solver'):
|
| 552 |
+
"""
|
| 553 |
+
Singlestep solver DPM-Solver-2 from time `s` to time `t`.
|
| 554 |
+
|
| 555 |
+
Args:
|
| 556 |
+
x: A pytorch tensor. The initial value at time `s`.
|
| 557 |
+
s: A pytorch tensor. The starting time, with the shape (x.shape[0],).
|
| 558 |
+
t: A pytorch tensor. The ending time, with the shape (x.shape[0],).
|
| 559 |
+
r1: A `float`. The hyperparameter of the second-order solver.
|
| 560 |
+
model_s: A pytorch tensor. The model function evaluated at time `s`.
|
| 561 |
+
If `model_s` is None, we evaluate the model by `x` and `s`; otherwise we directly use it.
|
| 562 |
+
return_intermediate: A `bool`. If true, also return the model value at time `s` and `s1` (the intermediate time).
|
| 563 |
+
solver_type: either 'dpm_solver' or 'taylor'. The type for the high-order solvers.
|
| 564 |
+
The type slightly impacts the performance. We recommend to use 'dpm_solver' type.
|
| 565 |
+
Returns:
|
| 566 |
+
x_t: A pytorch tensor. The approximated solution at time `t`.
|
| 567 |
+
"""
|
| 568 |
+
if solver_type not in ['dpm_solver', 'taylor']:
|
| 569 |
+
raise ValueError("'solver_type' must be either 'dpm_solver' or 'taylor', got {}".format(solver_type))
|
| 570 |
+
if r1 is None:
|
| 571 |
+
r1 = 0.5
|
| 572 |
+
ns = self.noise_schedule
|
| 573 |
+
dims = x.dim()
|
| 574 |
+
lambda_s, lambda_t = ns.marginal_lambda(s), ns.marginal_lambda(t)
|
| 575 |
+
h = lambda_t - lambda_s
|
| 576 |
+
lambda_s1 = lambda_s + r1 * h
|
| 577 |
+
s1 = ns.inverse_lambda(lambda_s1)
|
| 578 |
+
log_alpha_s, log_alpha_s1, log_alpha_t = ns.marginal_log_mean_coeff(s), ns.marginal_log_mean_coeff(s1), ns.marginal_log_mean_coeff(t)
|
| 579 |
+
sigma_s, sigma_s1, sigma_t = ns.marginal_std(s), ns.marginal_std(s1), ns.marginal_std(t)
|
| 580 |
+
alpha_s1, alpha_t = torch.exp(log_alpha_s1), torch.exp(log_alpha_t)
|
| 581 |
+
|
| 582 |
+
if self.predict_x0:
|
| 583 |
+
phi_11 = torch.expm1(-r1 * h)
|
| 584 |
+
phi_1 = torch.expm1(-h)
|
| 585 |
+
|
| 586 |
+
if model_s is None:
|
| 587 |
+
model_s = self.model_fn(x, s)
|
| 588 |
+
x_s1 = (
|
| 589 |
+
expand_dims(sigma_s1 / sigma_s, dims) * x
|
| 590 |
+
- expand_dims(alpha_s1 * phi_11, dims) * model_s
|
| 591 |
+
)
|
| 592 |
+
model_s1 = self.model_fn(x_s1, s1)
|
| 593 |
+
if solver_type == 'dpm_solver':
|
| 594 |
+
x_t = (
|
| 595 |
+
expand_dims(sigma_t / sigma_s, dims) * x
|
| 596 |
+
- expand_dims(alpha_t * phi_1, dims) * model_s
|
| 597 |
+
- (0.5 / r1) * expand_dims(alpha_t * phi_1, dims) * (model_s1 - model_s)
|
| 598 |
+
)
|
| 599 |
+
elif solver_type == 'taylor':
|
| 600 |
+
x_t = (
|
| 601 |
+
expand_dims(sigma_t / sigma_s, dims) * x
|
| 602 |
+
- expand_dims(alpha_t * phi_1, dims) * model_s
|
| 603 |
+
+ (1. / r1) * expand_dims(alpha_t * ((torch.exp(-h) - 1.) / h + 1.), dims) * (model_s1 - model_s)
|
| 604 |
+
)
|
| 605 |
+
else:
|
| 606 |
+
phi_11 = torch.expm1(r1 * h)
|
| 607 |
+
phi_1 = torch.expm1(h)
|
| 608 |
+
|
| 609 |
+
if model_s is None:
|
| 610 |
+
model_s = self.model_fn(x, s)
|
| 611 |
+
x_s1 = (
|
| 612 |
+
expand_dims(torch.exp(log_alpha_s1 - log_alpha_s), dims) * x
|
| 613 |
+
- expand_dims(sigma_s1 * phi_11, dims) * model_s
|
| 614 |
+
)
|
| 615 |
+
model_s1 = self.model_fn(x_s1, s1)
|
| 616 |
+
if solver_type == 'dpm_solver':
|
| 617 |
+
x_t = (
|
| 618 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_s), dims) * x
|
| 619 |
+
- expand_dims(sigma_t * phi_1, dims) * model_s
|
| 620 |
+
- (0.5 / r1) * expand_dims(sigma_t * phi_1, dims) * (model_s1 - model_s)
|
| 621 |
+
)
|
| 622 |
+
elif solver_type == 'taylor':
|
| 623 |
+
x_t = (
|
| 624 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_s), dims) * x
|
| 625 |
+
- expand_dims(sigma_t * phi_1, dims) * model_s
|
| 626 |
+
- (1. / r1) * expand_dims(sigma_t * ((torch.exp(h) - 1.) / h - 1.), dims) * (model_s1 - model_s)
|
| 627 |
+
)
|
| 628 |
+
if return_intermediate:
|
| 629 |
+
return x_t, {'model_s': model_s, 'model_s1': model_s1}
|
| 630 |
+
else:
|
| 631 |
+
return x_t
|
| 632 |
+
|
| 633 |
+
def singlestep_dpm_solver_third_update(self, x, s, t, r1=1./3., r2=2./3., model_s=None, model_s1=None, return_intermediate=False, solver_type='dpm_solver'):
|
| 634 |
+
"""
|
| 635 |
+
Singlestep solver DPM-Solver-3 from time `s` to time `t`.
|
| 636 |
+
|
| 637 |
+
Args:
|
| 638 |
+
x: A pytorch tensor. The initial value at time `s`.
|
| 639 |
+
s: A pytorch tensor. The starting time, with the shape (x.shape[0],).
|
| 640 |
+
t: A pytorch tensor. The ending time, with the shape (x.shape[0],).
|
| 641 |
+
r1: A `float`. The hyperparameter of the third-order solver.
|
| 642 |
+
r2: A `float`. The hyperparameter of the third-order solver.
|
| 643 |
+
model_s: A pytorch tensor. The model function evaluated at time `s`.
|
| 644 |
+
If `model_s` is None, we evaluate the model by `x` and `s`; otherwise we directly use it.
|
| 645 |
+
model_s1: A pytorch tensor. The model function evaluated at time `s1` (the intermediate time given by `r1`).
|
| 646 |
+
If `model_s1` is None, we evaluate the model at `s1`; otherwise we directly use it.
|
| 647 |
+
return_intermediate: A `bool`. If true, also return the model value at time `s`, `s1` and `s2` (the intermediate times).
|
| 648 |
+
solver_type: either 'dpm_solver' or 'taylor'. The type for the high-order solvers.
|
| 649 |
+
The type slightly impacts the performance. We recommend to use 'dpm_solver' type.
|
| 650 |
+
Returns:
|
| 651 |
+
x_t: A pytorch tensor. The approximated solution at time `t`.
|
| 652 |
+
"""
|
| 653 |
+
if solver_type not in ['dpm_solver', 'taylor']:
|
| 654 |
+
raise ValueError("'solver_type' must be either 'dpm_solver' or 'taylor', got {}".format(solver_type))
|
| 655 |
+
if r1 is None:
|
| 656 |
+
r1 = 1. / 3.
|
| 657 |
+
if r2 is None:
|
| 658 |
+
r2 = 2. / 3.
|
| 659 |
+
ns = self.noise_schedule
|
| 660 |
+
dims = x.dim()
|
| 661 |
+
lambda_s, lambda_t = ns.marginal_lambda(s), ns.marginal_lambda(t)
|
| 662 |
+
h = lambda_t - lambda_s
|
| 663 |
+
lambda_s1 = lambda_s + r1 * h
|
| 664 |
+
lambda_s2 = lambda_s + r2 * h
|
| 665 |
+
s1 = ns.inverse_lambda(lambda_s1)
|
| 666 |
+
s2 = ns.inverse_lambda(lambda_s2)
|
| 667 |
+
log_alpha_s, log_alpha_s1, log_alpha_s2, log_alpha_t = ns.marginal_log_mean_coeff(s), ns.marginal_log_mean_coeff(s1), ns.marginal_log_mean_coeff(s2), ns.marginal_log_mean_coeff(t)
|
| 668 |
+
sigma_s, sigma_s1, sigma_s2, sigma_t = ns.marginal_std(s), ns.marginal_std(s1), ns.marginal_std(s2), ns.marginal_std(t)
|
| 669 |
+
alpha_s1, alpha_s2, alpha_t = torch.exp(log_alpha_s1), torch.exp(log_alpha_s2), torch.exp(log_alpha_t)
|
| 670 |
+
|
| 671 |
+
if self.predict_x0:
|
| 672 |
+
phi_11 = torch.expm1(-r1 * h)
|
| 673 |
+
phi_12 = torch.expm1(-r2 * h)
|
| 674 |
+
phi_1 = torch.expm1(-h)
|
| 675 |
+
phi_22 = torch.expm1(-r2 * h) / (r2 * h) + 1.
|
| 676 |
+
phi_2 = phi_1 / h + 1.
|
| 677 |
+
phi_3 = phi_2 / h - 0.5
|
| 678 |
+
|
| 679 |
+
if model_s is None:
|
| 680 |
+
model_s = self.model_fn(x, s)
|
| 681 |
+
if model_s1 is None:
|
| 682 |
+
x_s1 = (
|
| 683 |
+
expand_dims(sigma_s1 / sigma_s, dims) * x
|
| 684 |
+
- expand_dims(alpha_s1 * phi_11, dims) * model_s
|
| 685 |
+
)
|
| 686 |
+
model_s1 = self.model_fn(x_s1, s1)
|
| 687 |
+
x_s2 = (
|
| 688 |
+
expand_dims(sigma_s2 / sigma_s, dims) * x
|
| 689 |
+
- expand_dims(alpha_s2 * phi_12, dims) * model_s
|
| 690 |
+
+ r2 / r1 * expand_dims(alpha_s2 * phi_22, dims) * (model_s1 - model_s)
|
| 691 |
+
)
|
| 692 |
+
model_s2 = self.model_fn(x_s2, s2)
|
| 693 |
+
if solver_type == 'dpm_solver':
|
| 694 |
+
x_t = (
|
| 695 |
+
expand_dims(sigma_t / sigma_s, dims) * x
|
| 696 |
+
- expand_dims(alpha_t * phi_1, dims) * model_s
|
| 697 |
+
+ (1. / r2) * expand_dims(alpha_t * phi_2, dims) * (model_s2 - model_s)
|
| 698 |
+
)
|
| 699 |
+
elif solver_type == 'taylor':
|
| 700 |
+
D1_0 = (1. / r1) * (model_s1 - model_s)
|
| 701 |
+
D1_1 = (1. / r2) * (model_s2 - model_s)
|
| 702 |
+
D1 = (r2 * D1_0 - r1 * D1_1) / (r2 - r1)
|
| 703 |
+
D2 = 2. * (D1_1 - D1_0) / (r2 - r1)
|
| 704 |
+
x_t = (
|
| 705 |
+
expand_dims(sigma_t / sigma_s, dims) * x
|
| 706 |
+
- expand_dims(alpha_t * phi_1, dims) * model_s
|
| 707 |
+
+ expand_dims(alpha_t * phi_2, dims) * D1
|
| 708 |
+
- expand_dims(alpha_t * phi_3, dims) * D2
|
| 709 |
+
)
|
| 710 |
+
else:
|
| 711 |
+
phi_11 = torch.expm1(r1 * h)
|
| 712 |
+
phi_12 = torch.expm1(r2 * h)
|
| 713 |
+
phi_1 = torch.expm1(h)
|
| 714 |
+
phi_22 = torch.expm1(r2 * h) / (r2 * h) - 1.
|
| 715 |
+
phi_2 = phi_1 / h - 1.
|
| 716 |
+
phi_3 = phi_2 / h - 0.5
|
| 717 |
+
|
| 718 |
+
if model_s is None:
|
| 719 |
+
model_s = self.model_fn(x, s)
|
| 720 |
+
if model_s1 is None:
|
| 721 |
+
x_s1 = (
|
| 722 |
+
expand_dims(torch.exp(log_alpha_s1 - log_alpha_s), dims) * x
|
| 723 |
+
- expand_dims(sigma_s1 * phi_11, dims) * model_s
|
| 724 |
+
)
|
| 725 |
+
model_s1 = self.model_fn(x_s1, s1)
|
| 726 |
+
x_s2 = (
|
| 727 |
+
expand_dims(torch.exp(log_alpha_s2 - log_alpha_s), dims) * x
|
| 728 |
+
- expand_dims(sigma_s2 * phi_12, dims) * model_s
|
| 729 |
+
- r2 / r1 * expand_dims(sigma_s2 * phi_22, dims) * (model_s1 - model_s)
|
| 730 |
+
)
|
| 731 |
+
model_s2 = self.model_fn(x_s2, s2)
|
| 732 |
+
if solver_type == 'dpm_solver':
|
| 733 |
+
x_t = (
|
| 734 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_s), dims) * x
|
| 735 |
+
- expand_dims(sigma_t * phi_1, dims) * model_s
|
| 736 |
+
- (1. / r2) * expand_dims(sigma_t * phi_2, dims) * (model_s2 - model_s)
|
| 737 |
+
)
|
| 738 |
+
elif solver_type == 'taylor':
|
| 739 |
+
D1_0 = (1. / r1) * (model_s1 - model_s)
|
| 740 |
+
D1_1 = (1. / r2) * (model_s2 - model_s)
|
| 741 |
+
D1 = (r2 * D1_0 - r1 * D1_1) / (r2 - r1)
|
| 742 |
+
D2 = 2. * (D1_1 - D1_0) / (r2 - r1)
|
| 743 |
+
x_t = (
|
| 744 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_s), dims) * x
|
| 745 |
+
- expand_dims(sigma_t * phi_1, dims) * model_s
|
| 746 |
+
- expand_dims(sigma_t * phi_2, dims) * D1
|
| 747 |
+
- expand_dims(sigma_t * phi_3, dims) * D2
|
| 748 |
+
)
|
| 749 |
+
|
| 750 |
+
if return_intermediate:
|
| 751 |
+
return x_t, {'model_s': model_s, 'model_s1': model_s1, 'model_s2': model_s2}
|
| 752 |
+
else:
|
| 753 |
+
return x_t
|
| 754 |
+
|
| 755 |
+
def multistep_dpm_solver_second_update(self, x, model_prev_list, t_prev_list, t, solver_type="dpm_solver"):
|
| 756 |
+
"""
|
| 757 |
+
Multistep solver DPM-Solver-2 from time `t_prev_list[-1]` to time `t`.
|
| 758 |
+
|
| 759 |
+
Args:
|
| 760 |
+
x: A pytorch tensor. The initial value at time `s`.
|
| 761 |
+
model_prev_list: A list of pytorch tensor. The previous computed model values.
|
| 762 |
+
t_prev_list: A list of pytorch tensor. The previous times, each time has the shape (x.shape[0],)
|
| 763 |
+
t: A pytorch tensor. The ending time, with the shape (x.shape[0],).
|
| 764 |
+
solver_type: either 'dpm_solver' or 'taylor'. The type for the high-order solvers.
|
| 765 |
+
The type slightly impacts the performance. We recommend to use 'dpm_solver' type.
|
| 766 |
+
Returns:
|
| 767 |
+
x_t: A pytorch tensor. The approximated solution at time `t`.
|
| 768 |
+
"""
|
| 769 |
+
if solver_type not in ['dpm_solver', 'taylor']:
|
| 770 |
+
raise ValueError("'solver_type' must be either 'dpm_solver' or 'taylor', got {}".format(solver_type))
|
| 771 |
+
ns = self.noise_schedule
|
| 772 |
+
dims = x.dim()
|
| 773 |
+
model_prev_1, model_prev_0 = model_prev_list
|
| 774 |
+
t_prev_1, t_prev_0 = t_prev_list
|
| 775 |
+
lambda_prev_1, lambda_prev_0, lambda_t = ns.marginal_lambda(t_prev_1), ns.marginal_lambda(t_prev_0), ns.marginal_lambda(t)
|
| 776 |
+
log_alpha_prev_0, log_alpha_t = ns.marginal_log_mean_coeff(t_prev_0), ns.marginal_log_mean_coeff(t)
|
| 777 |
+
sigma_prev_0, sigma_t = ns.marginal_std(t_prev_0), ns.marginal_std(t)
|
| 778 |
+
alpha_t = torch.exp(log_alpha_t)
|
| 779 |
+
|
| 780 |
+
h_0 = lambda_prev_0 - lambda_prev_1
|
| 781 |
+
h = lambda_t - lambda_prev_0
|
| 782 |
+
r0 = h_0 / h
|
| 783 |
+
D1_0 = expand_dims(1. / r0, dims) * (model_prev_0 - model_prev_1)
|
| 784 |
+
if self.predict_x0:
|
| 785 |
+
if solver_type == 'dpm_solver':
|
| 786 |
+
x_t = (
|
| 787 |
+
expand_dims(sigma_t / sigma_prev_0, dims) * x
|
| 788 |
+
- expand_dims(alpha_t * (torch.exp(-h) - 1.), dims) * model_prev_0
|
| 789 |
+
- 0.5 * expand_dims(alpha_t * (torch.exp(-h) - 1.), dims) * D1_0
|
| 790 |
+
)
|
| 791 |
+
elif solver_type == 'taylor':
|
| 792 |
+
x_t = (
|
| 793 |
+
expand_dims(sigma_t / sigma_prev_0, dims) * x
|
| 794 |
+
- expand_dims(alpha_t * (torch.exp(-h) - 1.), dims) * model_prev_0
|
| 795 |
+
+ expand_dims(alpha_t * ((torch.exp(-h) - 1.) / h + 1.), dims) * D1_0
|
| 796 |
+
)
|
| 797 |
+
else:
|
| 798 |
+
if solver_type == 'dpm_solver':
|
| 799 |
+
x_t = (
|
| 800 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_prev_0), dims) * x
|
| 801 |
+
- expand_dims(sigma_t * (torch.exp(h) - 1.), dims) * model_prev_0
|
| 802 |
+
- 0.5 * expand_dims(sigma_t * (torch.exp(h) - 1.), dims) * D1_0
|
| 803 |
+
)
|
| 804 |
+
elif solver_type == 'taylor':
|
| 805 |
+
x_t = (
|
| 806 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_prev_0), dims) * x
|
| 807 |
+
- expand_dims(sigma_t * (torch.exp(h) - 1.), dims) * model_prev_0
|
| 808 |
+
- expand_dims(sigma_t * ((torch.exp(h) - 1.) / h - 1.), dims) * D1_0
|
| 809 |
+
)
|
| 810 |
+
return x_t
|
| 811 |
+
|
| 812 |
+
def multistep_dpm_solver_third_update(self, x, model_prev_list, t_prev_list, t, solver_type='dpm_solver'):
|
| 813 |
+
"""
|
| 814 |
+
Multistep solver DPM-Solver-3 from time `t_prev_list[-1]` to time `t`.
|
| 815 |
+
|
| 816 |
+
Args:
|
| 817 |
+
x: A pytorch tensor. The initial value at time `s`.
|
| 818 |
+
model_prev_list: A list of pytorch tensor. The previous computed model values.
|
| 819 |
+
t_prev_list: A list of pytorch tensor. The previous times, each time has the shape (x.shape[0],)
|
| 820 |
+
t: A pytorch tensor. The ending time, with the shape (x.shape[0],).
|
| 821 |
+
solver_type: either 'dpm_solver' or 'taylor'. The type for the high-order solvers.
|
| 822 |
+
The type slightly impacts the performance. We recommend to use 'dpm_solver' type.
|
| 823 |
+
Returns:
|
| 824 |
+
x_t: A pytorch tensor. The approximated solution at time `t`.
|
| 825 |
+
"""
|
| 826 |
+
ns = self.noise_schedule
|
| 827 |
+
dims = x.dim()
|
| 828 |
+
model_prev_2, model_prev_1, model_prev_0 = model_prev_list
|
| 829 |
+
t_prev_2, t_prev_1, t_prev_0 = t_prev_list
|
| 830 |
+
lambda_prev_2, lambda_prev_1, lambda_prev_0, lambda_t = ns.marginal_lambda(t_prev_2), ns.marginal_lambda(t_prev_1), ns.marginal_lambda(t_prev_0), ns.marginal_lambda(t)
|
| 831 |
+
log_alpha_prev_0, log_alpha_t = ns.marginal_log_mean_coeff(t_prev_0), ns.marginal_log_mean_coeff(t)
|
| 832 |
+
sigma_prev_0, sigma_t = ns.marginal_std(t_prev_0), ns.marginal_std(t)
|
| 833 |
+
alpha_t = torch.exp(log_alpha_t)
|
| 834 |
+
|
| 835 |
+
h_1 = lambda_prev_1 - lambda_prev_2
|
| 836 |
+
h_0 = lambda_prev_0 - lambda_prev_1
|
| 837 |
+
h = lambda_t - lambda_prev_0
|
| 838 |
+
r0, r1 = h_0 / h, h_1 / h
|
| 839 |
+
D1_0 = expand_dims(1. / r0, dims) * (model_prev_0 - model_prev_1)
|
| 840 |
+
D1_1 = expand_dims(1. / r1, dims) * (model_prev_1 - model_prev_2)
|
| 841 |
+
D1 = D1_0 + expand_dims(r0 / (r0 + r1), dims) * (D1_0 - D1_1)
|
| 842 |
+
D2 = expand_dims(1. / (r0 + r1), dims) * (D1_0 - D1_1)
|
| 843 |
+
if self.predict_x0:
|
| 844 |
+
x_t = (
|
| 845 |
+
expand_dims(sigma_t / sigma_prev_0, dims) * x
|
| 846 |
+
- expand_dims(alpha_t * (torch.exp(-h) - 1.), dims) * model_prev_0
|
| 847 |
+
+ expand_dims(alpha_t * ((torch.exp(-h) - 1.) / h + 1.), dims) * D1
|
| 848 |
+
- expand_dims(alpha_t * ((torch.exp(-h) - 1. + h) / h**2 - 0.5), dims) * D2
|
| 849 |
+
)
|
| 850 |
+
else:
|
| 851 |
+
x_t = (
|
| 852 |
+
expand_dims(torch.exp(log_alpha_t - log_alpha_prev_0), dims) * x
|
| 853 |
+
- expand_dims(sigma_t * (torch.exp(h) - 1.), dims) * model_prev_0
|
| 854 |
+
- expand_dims(sigma_t * ((torch.exp(h) - 1.) / h - 1.), dims) * D1
|
| 855 |
+
- expand_dims(sigma_t * ((torch.exp(h) - 1. - h) / h**2 - 0.5), dims) * D2
|
| 856 |
+
)
|
| 857 |
+
return x_t
|
| 858 |
+
|
| 859 |
+
def singlestep_dpm_solver_update(self, x, s, t, order, return_intermediate=False, solver_type='dpm_solver', r1=None, r2=None):
|
| 860 |
+
"""
|
| 861 |
+
Singlestep DPM-Solver with the order `order` from time `s` to time `t`.
|
| 862 |
+
|
| 863 |
+
Args:
|
| 864 |
+
x: A pytorch tensor. The initial value at time `s`.
|
| 865 |
+
s: A pytorch tensor. The starting time, with the shape (x.shape[0],).
|
| 866 |
+
t: A pytorch tensor. The ending time, with the shape (x.shape[0],).
|
| 867 |
+
order: A `int`. The order of DPM-Solver. We only support order == 1 or 2 or 3.
|
| 868 |
+
return_intermediate: A `bool`. If true, also return the model value at time `s`, `s1` and `s2` (the intermediate times).
|
| 869 |
+
solver_type: either 'dpm_solver' or 'taylor'. The type for the high-order solvers.
|
| 870 |
+
The type slightly impacts the performance. We recommend to use 'dpm_solver' type.
|
| 871 |
+
r1: A `float`. The hyperparameter of the second-order or third-order solver.
|
| 872 |
+
r2: A `float`. The hyperparameter of the third-order solver.
|
| 873 |
+
Returns:
|
| 874 |
+
x_t: A pytorch tensor. The approximated solution at time `t`.
|
| 875 |
+
"""
|
| 876 |
+
if order == 1:
|
| 877 |
+
return self.dpm_solver_first_update(x, s, t, return_intermediate=return_intermediate)
|
| 878 |
+
elif order == 2:
|
| 879 |
+
return self.singlestep_dpm_solver_second_update(x, s, t, return_intermediate=return_intermediate, solver_type=solver_type, r1=r1)
|
| 880 |
+
elif order == 3:
|
| 881 |
+
return self.singlestep_dpm_solver_third_update(x, s, t, return_intermediate=return_intermediate, solver_type=solver_type, r1=r1, r2=r2)
|
| 882 |
+
else:
|
| 883 |
+
raise ValueError("Solver order must be 1 or 2 or 3, got {}".format(order))
|
| 884 |
+
|
| 885 |
+
def multistep_dpm_solver_update(self, x, model_prev_list, t_prev_list, t, order, solver_type='dpm_solver'):
|
| 886 |
+
"""
|
| 887 |
+
Multistep DPM-Solver with the order `order` from time `t_prev_list[-1]` to time `t`.
|
| 888 |
+
|
| 889 |
+
Args:
|
| 890 |
+
x: A pytorch tensor. The initial value at time `s`.
|
| 891 |
+
model_prev_list: A list of pytorch tensor. The previous computed model values.
|
| 892 |
+
t_prev_list: A list of pytorch tensor. The previous times, each time has the shape (x.shape[0],)
|
| 893 |
+
t: A pytorch tensor. The ending time, with the shape (x.shape[0],).
|
| 894 |
+
order: A `int`. The order of DPM-Solver. We only support order == 1 or 2 or 3.
|
| 895 |
+
solver_type: either 'dpm_solver' or 'taylor'. The type for the high-order solvers.
|
| 896 |
+
The type slightly impacts the performance. We recommend to use 'dpm_solver' type.
|
| 897 |
+
Returns:
|
| 898 |
+
x_t: A pytorch tensor. The approximated solution at time `t`.
|
| 899 |
+
"""
|
| 900 |
+
if order == 1:
|
| 901 |
+
return self.dpm_solver_first_update(x, t_prev_list[-1], t, model_s=model_prev_list[-1])
|
| 902 |
+
elif order == 2:
|
| 903 |
+
return self.multistep_dpm_solver_second_update(x, model_prev_list, t_prev_list, t, solver_type=solver_type)
|
| 904 |
+
elif order == 3:
|
| 905 |
+
return self.multistep_dpm_solver_third_update(x, model_prev_list, t_prev_list, t, solver_type=solver_type)
|
| 906 |
+
else:
|
| 907 |
+
raise ValueError("Solver order must be 1 or 2 or 3, got {}".format(order))
|
| 908 |
+
|
| 909 |
+
def dpm_solver_adaptive(self, x, order, t_T, t_0, h_init=0.05, atol=0.0078, rtol=0.05, theta=0.9, t_err=1e-5, solver_type='dpm_solver'):
|
| 910 |
+
"""
|
| 911 |
+
The adaptive step size solver based on singlestep DPM-Solver.
|
| 912 |
+
|
| 913 |
+
Args:
|
| 914 |
+
x: A pytorch tensor. The initial value at time `t_T`.
|
| 915 |
+
order: A `int`. The (higher) order of the solver. We only support order == 2 or 3.
|
| 916 |
+
t_T: A `float`. The starting time of the sampling (default is T).
|
| 917 |
+
t_0: A `float`. The ending time of the sampling (default is epsilon).
|
| 918 |
+
h_init: A `float`. The initial step size (for logSNR).
|
| 919 |
+
atol: A `float`. The absolute tolerance of the solver. For image data, the default setting is 0.0078, followed [1].
|
| 920 |
+
rtol: A `float`. The relative tolerance of the solver. The default setting is 0.05.
|
| 921 |
+
theta: A `float`. The safety hyperparameter for adapting the step size. The default setting is 0.9, followed [1].
|
| 922 |
+
t_err: A `float`. The tolerance for the time. We solve the diffusion ODE until the absolute error between the
|
| 923 |
+
current time and `t_0` is less than `t_err`. The default setting is 1e-5.
|
| 924 |
+
solver_type: either 'dpm_solver' or 'taylor'. The type for the high-order solvers.
|
| 925 |
+
The type slightly impacts the performance. We recommend to use 'dpm_solver' type.
|
| 926 |
+
Returns:
|
| 927 |
+
x_0: A pytorch tensor. The approximated solution at time `t_0`.
|
| 928 |
+
|
| 929 |
+
[1] A. Jolicoeur-Martineau, K. Li, R. Piché-Taillefer, T. Kachman, and I. Mitliagkas, "Gotta go fast when generating data with score-based models," arXiv preprint arXiv:2105.14080, 2021.
|
| 930 |
+
"""
|
| 931 |
+
ns = self.noise_schedule
|
| 932 |
+
s = t_T * torch.ones((x.shape[0],)).to(x)
|
| 933 |
+
lambda_s = ns.marginal_lambda(s)
|
| 934 |
+
lambda_0 = ns.marginal_lambda(t_0 * torch.ones_like(s).to(x))
|
| 935 |
+
h = h_init * torch.ones_like(s).to(x)
|
| 936 |
+
x_prev = x
|
| 937 |
+
nfe = 0
|
| 938 |
+
if order == 2:
|
| 939 |
+
r1 = 0.5
|
| 940 |
+
lower_update = lambda x, s, t: self.dpm_solver_first_update(x, s, t, return_intermediate=True)
|
| 941 |
+
higher_update = lambda x, s, t, **kwargs: self.singlestep_dpm_solver_second_update(x, s, t, r1=r1, solver_type=solver_type, **kwargs)
|
| 942 |
+
elif order == 3:
|
| 943 |
+
r1, r2 = 1. / 3., 2. / 3.
|
| 944 |
+
lower_update = lambda x, s, t: self.singlestep_dpm_solver_second_update(x, s, t, r1=r1, return_intermediate=True, solver_type=solver_type)
|
| 945 |
+
higher_update = lambda x, s, t, **kwargs: self.singlestep_dpm_solver_third_update(x, s, t, r1=r1, r2=r2, solver_type=solver_type, **kwargs)
|
| 946 |
+
else:
|
| 947 |
+
raise ValueError("For adaptive step size solver, order must be 2 or 3, got {}".format(order))
|
| 948 |
+
while torch.abs((s - t_0)).mean() > t_err:
|
| 949 |
+
t = ns.inverse_lambda(lambda_s + h)
|
| 950 |
+
x_lower, lower_noise_kwargs = lower_update(x, s, t)
|
| 951 |
+
x_higher = higher_update(x, s, t, **lower_noise_kwargs)
|
| 952 |
+
delta = torch.max(torch.ones_like(x).to(x) * atol, rtol * torch.max(torch.abs(x_lower), torch.abs(x_prev)))
|
| 953 |
+
norm_fn = lambda v: torch.sqrt(torch.square(v.reshape((v.shape[0], -1))).mean(dim=-1, keepdim=True))
|
| 954 |
+
E = norm_fn((x_higher - x_lower) / delta).max()
|
| 955 |
+
if torch.all(E <= 1.):
|
| 956 |
+
x = x_higher
|
| 957 |
+
s = t
|
| 958 |
+
x_prev = x_lower
|
| 959 |
+
lambda_s = ns.marginal_lambda(s)
|
| 960 |
+
h = torch.min(theta * h * torch.float_power(E, -1. / order).float(), lambda_0 - lambda_s)
|
| 961 |
+
nfe += order
|
| 962 |
+
print('adaptive solver nfe', nfe)
|
| 963 |
+
return x
|
| 964 |
+
|
| 965 |
+
def sample(self, x, steps=20, t_start=None, t_end=None, order=3, skip_type='time_uniform',
|
| 966 |
+
method='singlestep', lower_order_final=True, denoise_to_zero=False, solver_type='dpm_solver',
|
| 967 |
+
atol=0.0078, rtol=0.05,
|
| 968 |
+
):
|
| 969 |
+
"""
|
| 970 |
+
Compute the sample at time `t_end` by DPM-Solver, given the initial `x` at time `t_start`.
|
| 971 |
+
|
| 972 |
+
=====================================================
|
| 973 |
+
|
| 974 |
+
We support the following algorithms for both noise prediction model and data prediction model:
|
| 975 |
+
- 'singlestep':
|
| 976 |
+
Singlestep DPM-Solver (i.e. "DPM-Solver-fast" in the paper), which combines different orders of singlestep DPM-Solver.
|
| 977 |
+
We combine all the singlestep solvers with order <= `order` to use up all the function evaluations (steps).
|
| 978 |
+
The total number of function evaluations (NFE) == `steps`.
|
| 979 |
+
Given a fixed NFE == `steps`, the sampling procedure is:
|
| 980 |
+
- If `order` == 1:
|
| 981 |
+
- Denote K = steps. We use K steps of DPM-Solver-1 (i.e. DDIM).
|
| 982 |
+
- If `order` == 2:
|
| 983 |
+
- Denote K = (steps // 2) + (steps % 2). We take K intermediate time steps for sampling.
|
| 984 |
+
- If steps % 2 == 0, we use K steps of singlestep DPM-Solver-2.
|
| 985 |
+
- If steps % 2 == 1, we use (K - 1) steps of singlestep DPM-Solver-2 and 1 step of DPM-Solver-1.
|
| 986 |
+
- If `order` == 3:
|
| 987 |
+
- Denote K = (steps // 3 + 1). We take K intermediate time steps for sampling.
|
| 988 |
+
- If steps % 3 == 0, we use (K - 2) steps of singlestep DPM-Solver-3, and 1 step of singlestep DPM-Solver-2 and 1 step of DPM-Solver-1.
|
| 989 |
+
- If steps % 3 == 1, we use (K - 1) steps of singlestep DPM-Solver-3 and 1 step of DPM-Solver-1.
|
| 990 |
+
- If steps % 3 == 2, we use (K - 1) steps of singlestep DPM-Solver-3 and 1 step of singlestep DPM-Solver-2.
|
| 991 |
+
- 'multistep':
|
| 992 |
+
Multistep DPM-Solver with the order of `order`. The total number of function evaluations (NFE) == `steps`.
|
| 993 |
+
We initialize the first `order` values by lower order multistep solvers.
|
| 994 |
+
Given a fixed NFE == `steps`, the sampling procedure is:
|
| 995 |
+
Denote K = steps.
|
| 996 |
+
- If `order` == 1:
|
| 997 |
+
- We use K steps of DPM-Solver-1 (i.e. DDIM).
|
| 998 |
+
- If `order` == 2:
|
| 999 |
+
- We firstly use 1 step of DPM-Solver-1, then use (K - 1) step of multistep DPM-Solver-2.
|
| 1000 |
+
- If `order` == 3:
|
| 1001 |
+
- We firstly use 1 step of DPM-Solver-1, then 1 step of multistep DPM-Solver-2, then (K - 2) step of multistep DPM-Solver-3.
|
| 1002 |
+
- 'singlestep_fixed':
|
| 1003 |
+
Fixed order singlestep DPM-Solver (i.e. DPM-Solver-1 or singlestep DPM-Solver-2 or singlestep DPM-Solver-3).
|
| 1004 |
+
We use singlestep DPM-Solver-`order` for `order`=1 or 2 or 3, with total [`steps` // `order`] * `order` NFE.
|
| 1005 |
+
- 'adaptive':
|
| 1006 |
+
Adaptive step size DPM-Solver (i.e. "DPM-Solver-12" and "DPM-Solver-23" in the paper).
|
| 1007 |
+
We ignore `steps` and use adaptive step size DPM-Solver with a higher order of `order`.
|
| 1008 |
+
You can adjust the absolute tolerance `atol` and the relative tolerance `rtol` to balance the computatation costs
|
| 1009 |
+
(NFE) and the sample quality.
|
| 1010 |
+
- If `order` == 2, we use DPM-Solver-12 which combines DPM-Solver-1 and singlestep DPM-Solver-2.
|
| 1011 |
+
- If `order` == 3, we use DPM-Solver-23 which combines singlestep DPM-Solver-2 and singlestep DPM-Solver-3.
|
| 1012 |
+
|
| 1013 |
+
=====================================================
|
| 1014 |
+
|
| 1015 |
+
Some advices for choosing the algorithm:
|
| 1016 |
+
- For **unconditional sampling** or **guided sampling with small guidance scale** by DPMs:
|
| 1017 |
+
Use singlestep DPM-Solver ("DPM-Solver-fast" in the paper) with `order = 3`.
|
| 1018 |
+
e.g.
|
| 1019 |
+
>>> dpm_solver = DPM_Solver(model_fn, noise_schedule, predict_x0=False)
|
| 1020 |
+
>>> x_sample = dpm_solver.sample(x, steps=steps, t_start=t_start, t_end=t_end, order=3,
|
| 1021 |
+
skip_type='time_uniform', method='singlestep')
|
| 1022 |
+
- For **guided sampling with large guidance scale** by DPMs:
|
| 1023 |
+
Use multistep DPM-Solver with `predict_x0 = True` and `order = 2`.
|
| 1024 |
+
e.g.
|
| 1025 |
+
>>> dpm_solver = DPM_Solver(model_fn, noise_schedule, predict_x0=True)
|
| 1026 |
+
>>> x_sample = dpm_solver.sample(x, steps=steps, t_start=t_start, t_end=t_end, order=2,
|
| 1027 |
+
skip_type='time_uniform', method='multistep')
|
| 1028 |
+
|
| 1029 |
+
We support three types of `skip_type`:
|
| 1030 |
+
- 'logSNR': uniform logSNR for the time steps. **Recommended for low-resolutional images**
|
| 1031 |
+
- 'time_uniform': uniform time for the time steps. **Recommended for high-resolutional images**.
|
| 1032 |
+
- 'time_quadratic': quadratic time for the time steps.
|
| 1033 |
+
|
| 1034 |
+
=====================================================
|
| 1035 |
+
Args:
|
| 1036 |
+
x: A pytorch tensor. The initial value at time `t_start`
|
| 1037 |
+
e.g. if `t_start` == T, then `x` is a sample from the standard normal distribution.
|
| 1038 |
+
steps: A `int`. The total number of function evaluations (NFE).
|
| 1039 |
+
t_start: A `float`. The starting time of the sampling.
|
| 1040 |
+
If `T` is None, we use self.noise_schedule.T (default is 1.0).
|
| 1041 |
+
t_end: A `float`. The ending time of the sampling.
|
| 1042 |
+
If `t_end` is None, we use 1. / self.noise_schedule.total_N.
|
| 1043 |
+
e.g. if total_N == 1000, we have `t_end` == 1e-3.
|
| 1044 |
+
For discrete-time DPMs:
|
| 1045 |
+
- We recommend `t_end` == 1. / self.noise_schedule.total_N.
|
| 1046 |
+
For continuous-time DPMs:
|
| 1047 |
+
- We recommend `t_end` == 1e-3 when `steps` <= 15; and `t_end` == 1e-4 when `steps` > 15.
|
| 1048 |
+
order: A `int`. The order of DPM-Solver.
|
| 1049 |
+
skip_type: A `str`. The type for the spacing of the time steps. 'time_uniform' or 'logSNR' or 'time_quadratic'.
|
| 1050 |
+
method: A `str`. The method for sampling. 'singlestep' or 'multistep' or 'singlestep_fixed' or 'adaptive'.
|
| 1051 |
+
denoise_to_zero: A `bool`. Whether to denoise to time 0 at the final step.
|
| 1052 |
+
Default is `False`. If `denoise_to_zero` is `True`, the total NFE is (`steps` + 1).
|
| 1053 |
+
|
| 1054 |
+
This trick is firstly proposed by DDPM (https://arxiv.org/abs/2006.11239) and
|
| 1055 |
+
score_sde (https://arxiv.org/abs/2011.13456). Such trick can improve the FID
|
| 1056 |
+
for diffusion models sampling by diffusion SDEs for low-resolutional images
|
| 1057 |
+
(such as CIFAR-10). However, we observed that such trick does not matter for
|
| 1058 |
+
high-resolutional images. As it needs an additional NFE, we do not recommend
|
| 1059 |
+
it for high-resolutional images.
|
| 1060 |
+
lower_order_final: A `bool`. Whether to use lower order solvers at the final steps.
|
| 1061 |
+
Only valid for `method=multistep` and `steps < 15`. We empirically find that
|
| 1062 |
+
this trick is a key to stabilizing the sampling by DPM-Solver with very few steps
|
| 1063 |
+
(especially for steps <= 10). So we recommend to set it to be `True`.
|
| 1064 |
+
solver_type: A `str`. The taylor expansion type for the solver. `dpm_solver` or `taylor`. We recommend `dpm_solver`.
|
| 1065 |
+
atol: A `float`. The absolute tolerance of the adaptive step size solver. Valid when `method` == 'adaptive'.
|
| 1066 |
+
rtol: A `float`. The relative tolerance of the adaptive step size solver. Valid when `method` == 'adaptive'.
|
| 1067 |
+
Returns:
|
| 1068 |
+
x_end: A pytorch tensor. The approximated solution at time `t_end`.
|
| 1069 |
+
|
| 1070 |
+
"""
|
| 1071 |
+
t_0 = 1. / self.noise_schedule.total_N if t_end is None else t_end
|
| 1072 |
+
t_T = self.noise_schedule.T if t_start is None else t_start
|
| 1073 |
+
device = x.device
|
| 1074 |
+
if method == 'adaptive':
|
| 1075 |
+
with torch.no_grad():
|
| 1076 |
+
x = self.dpm_solver_adaptive(x, order=order, t_T=t_T, t_0=t_0, atol=atol, rtol=rtol, solver_type=solver_type)
|
| 1077 |
+
elif method == 'multistep':
|
| 1078 |
+
assert steps >= order
|
| 1079 |
+
timesteps = self.get_time_steps(skip_type=skip_type, t_T=t_T, t_0=t_0, N=steps, device=device)
|
| 1080 |
+
assert timesteps.shape[0] - 1 == steps
|
| 1081 |
+
with torch.no_grad():
|
| 1082 |
+
vec_t = timesteps[0].expand((x.shape[0]))
|
| 1083 |
+
model_prev_list = [self.model_fn(x, vec_t)]
|
| 1084 |
+
t_prev_list = [vec_t]
|
| 1085 |
+
# Init the first `order` values by lower order multistep DPM-Solver.
|
| 1086 |
+
for init_order in range(1, order):
|
| 1087 |
+
vec_t = timesteps[init_order].expand(x.shape[0])
|
| 1088 |
+
x = self.multistep_dpm_solver_update(x, model_prev_list, t_prev_list, vec_t, init_order, solver_type=solver_type)
|
| 1089 |
+
model_prev_list.append(self.model_fn(x, vec_t))
|
| 1090 |
+
t_prev_list.append(vec_t)
|
| 1091 |
+
# Compute the remaining values by `order`-th order multistep DPM-Solver.
|
| 1092 |
+
for step in range(order, steps + 1):
|
| 1093 |
+
vec_t = timesteps[step].expand(x.shape[0])
|
| 1094 |
+
if lower_order_final and steps < 15:
|
| 1095 |
+
step_order = min(order, steps + 1 - step)
|
| 1096 |
+
else:
|
| 1097 |
+
step_order = order
|
| 1098 |
+
x = self.multistep_dpm_solver_update(x, model_prev_list, t_prev_list, vec_t, step_order, solver_type=solver_type)
|
| 1099 |
+
for i in range(order - 1):
|
| 1100 |
+
t_prev_list[i] = t_prev_list[i + 1]
|
| 1101 |
+
model_prev_list[i] = model_prev_list[i + 1]
|
| 1102 |
+
t_prev_list[-1] = vec_t
|
| 1103 |
+
# We do not need to evaluate the final model value.
|
| 1104 |
+
if step < steps:
|
| 1105 |
+
model_prev_list[-1] = self.model_fn(x, vec_t)
|
| 1106 |
+
elif method in ['singlestep', 'singlestep_fixed']:
|
| 1107 |
+
if method == 'singlestep':
|
| 1108 |
+
timesteps_outer, orders = self.get_orders_and_timesteps_for_singlestep_solver(steps=steps, order=order, skip_type=skip_type, t_T=t_T, t_0=t_0, device=device)
|
| 1109 |
+
elif method == 'singlestep_fixed':
|
| 1110 |
+
K = steps // order
|
| 1111 |
+
orders = [order,] * K
|
| 1112 |
+
timesteps_outer = self.get_time_steps(skip_type=skip_type, t_T=t_T, t_0=t_0, N=K, device=device)
|
| 1113 |
+
for i, order in enumerate(orders):
|
| 1114 |
+
t_T_inner, t_0_inner = timesteps_outer[i], timesteps_outer[i + 1]
|
| 1115 |
+
timesteps_inner = self.get_time_steps(skip_type=skip_type, t_T=t_T_inner.item(), t_0=t_0_inner.item(), N=order, device=device)
|
| 1116 |
+
lambda_inner = self.noise_schedule.marginal_lambda(timesteps_inner)
|
| 1117 |
+
vec_s, vec_t = t_T_inner.tile(x.shape[0]), t_0_inner.tile(x.shape[0])
|
| 1118 |
+
h = lambda_inner[-1] - lambda_inner[0]
|
| 1119 |
+
r1 = None if order <= 1 else (lambda_inner[1] - lambda_inner[0]) / h
|
| 1120 |
+
r2 = None if order <= 2 else (lambda_inner[2] - lambda_inner[0]) / h
|
| 1121 |
+
x = self.singlestep_dpm_solver_update(x, vec_s, vec_t, order, solver_type=solver_type, r1=r1, r2=r2)
|
| 1122 |
+
if denoise_to_zero:
|
| 1123 |
+
x = self.denoise_to_zero_fn(x, torch.ones((x.shape[0],)).to(device) * t_0)
|
| 1124 |
+
return x
|
| 1125 |
+
|
| 1126 |
+
|
| 1127 |
+
|
| 1128 |
+
#############################################################
|
| 1129 |
+
# other utility functions
|
| 1130 |
+
#############################################################
|
| 1131 |
+
|
| 1132 |
+
def interpolate_fn(x, xp, yp):
|
| 1133 |
+
"""
|
| 1134 |
+
A piecewise linear function y = f(x), using xp and yp as keypoints.
|
| 1135 |
+
We implement f(x) in a differentiable way (i.e. applicable for autograd).
|
| 1136 |
+
The function f(x) is well-defined for all x-axis. (For x beyond the bounds of xp, we use the outmost points of xp to define the linear function.)
|
| 1137 |
+
|
| 1138 |
+
Args:
|
| 1139 |
+
x: PyTorch tensor with shape [N, C], where N is the batch size, C is the number of channels (we use C = 1 for DPM-Solver).
|
| 1140 |
+
xp: PyTorch tensor with shape [C, K], where K is the number of keypoints.
|
| 1141 |
+
yp: PyTorch tensor with shape [C, K].
|
| 1142 |
+
Returns:
|
| 1143 |
+
The function values f(x), with shape [N, C].
|
| 1144 |
+
"""
|
| 1145 |
+
N, K = x.shape[0], xp.shape[1]
|
| 1146 |
+
all_x = torch.cat([x.unsqueeze(2), xp.unsqueeze(0).repeat((N, 1, 1))], dim=2)
|
| 1147 |
+
sorted_all_x, x_indices = torch.sort(all_x, dim=2)
|
| 1148 |
+
x_idx = torch.argmin(x_indices, dim=2)
|
| 1149 |
+
cand_start_idx = x_idx - 1
|
| 1150 |
+
start_idx = torch.where(
|
| 1151 |
+
torch.eq(x_idx, 0),
|
| 1152 |
+
torch.tensor(1, device=x.device),
|
| 1153 |
+
torch.where(
|
| 1154 |
+
torch.eq(x_idx, K), torch.tensor(K - 2, device=x.device), cand_start_idx,
|
| 1155 |
+
),
|
| 1156 |
+
)
|
| 1157 |
+
end_idx = torch.where(torch.eq(start_idx, cand_start_idx), start_idx + 2, start_idx + 1)
|
| 1158 |
+
start_x = torch.gather(sorted_all_x, dim=2, index=start_idx.unsqueeze(2)).squeeze(2)
|
| 1159 |
+
end_x = torch.gather(sorted_all_x, dim=2, index=end_idx.unsqueeze(2)).squeeze(2)
|
| 1160 |
+
start_idx2 = torch.where(
|
| 1161 |
+
torch.eq(x_idx, 0),
|
| 1162 |
+
torch.tensor(0, device=x.device),
|
| 1163 |
+
torch.where(
|
| 1164 |
+
torch.eq(x_idx, K), torch.tensor(K - 2, device=x.device), cand_start_idx,
|
| 1165 |
+
),
|
| 1166 |
+
)
|
| 1167 |
+
y_positions_expanded = yp.unsqueeze(0).expand(N, -1, -1)
|
| 1168 |
+
start_y = torch.gather(y_positions_expanded, dim=2, index=start_idx2.unsqueeze(2)).squeeze(2)
|
| 1169 |
+
end_y = torch.gather(y_positions_expanded, dim=2, index=(start_idx2 + 1).unsqueeze(2)).squeeze(2)
|
| 1170 |
+
cand = start_y + (x - start_x) * (end_y - start_y) / (end_x - start_x)
|
| 1171 |
+
return cand
|
| 1172 |
+
|
| 1173 |
+
|
| 1174 |
+
def expand_dims(v, dims):
|
| 1175 |
+
"""
|
| 1176 |
+
Expand the tensor `v` to the dim `dims`.
|
| 1177 |
+
|
| 1178 |
+
Args:
|
| 1179 |
+
`v`: a PyTorch tensor with shape [N].
|
| 1180 |
+
`dim`: a `int`.
|
| 1181 |
+
Returns:
|
| 1182 |
+
a PyTorch tensor with shape [N, 1, 1, ..., 1] and the total dimension is `dims`.
|
| 1183 |
+
"""
|
| 1184 |
+
return v[(...,) + (None,)*(dims - 1)]
|
ldm/models/diffusion/dpm_solver/sampler.py
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""SAMPLING ONLY."""
|
| 2 |
+
|
| 3 |
+
import torch
|
| 4 |
+
|
| 5 |
+
from .solver import NoiseScheduleVP, model_wrapper, DPM_Solver
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
class DPMSolverSampler(object):
|
| 9 |
+
def __init__(self, model, **kwargs):
|
| 10 |
+
super().__init__()
|
| 11 |
+
self.model = model
|
| 12 |
+
to_torch = lambda x: x.clone().detach().to(torch.float32).to(model.device)
|
| 13 |
+
self.register_buffer('alphas_cumprod', to_torch(model.alphas_cumprod))
|
| 14 |
+
|
| 15 |
+
def register_buffer(self, name, attr):
|
| 16 |
+
if type(attr) == torch.Tensor:
|
| 17 |
+
if attr.device != torch.device("cuda"):
|
| 18 |
+
attr = attr.to(torch.device("cuda"))
|
| 19 |
+
setattr(self, name, attr)
|
| 20 |
+
|
| 21 |
+
@torch.no_grad()
|
| 22 |
+
def sample(self,
|
| 23 |
+
S,
|
| 24 |
+
batch_size,
|
| 25 |
+
shape,
|
| 26 |
+
conditioning=None,
|
| 27 |
+
callback=None,
|
| 28 |
+
normals_sequence=None,
|
| 29 |
+
img_callback=None,
|
| 30 |
+
quantize_x0=False,
|
| 31 |
+
eta=0.,
|
| 32 |
+
mask=None,
|
| 33 |
+
x0=None,
|
| 34 |
+
temperature=1.,
|
| 35 |
+
noise_dropout=0.,
|
| 36 |
+
score_corrector=None,
|
| 37 |
+
corrector_kwargs=None,
|
| 38 |
+
verbose=True,
|
| 39 |
+
x_T=None,
|
| 40 |
+
log_every_t=100,
|
| 41 |
+
unconditional_guidance_scale=1.,
|
| 42 |
+
unconditional_conditioning=None,
|
| 43 |
+
# this has to come in the same format as the conditioning, # e.g. as encoded tokens, ...
|
| 44 |
+
**kwargs
|
| 45 |
+
):
|
| 46 |
+
if conditioning is not None:
|
| 47 |
+
if isinstance(conditioning, dict):
|
| 48 |
+
cbs = conditioning[list(conditioning.keys())[0]].shape[0]
|
| 49 |
+
if cbs != batch_size:
|
| 50 |
+
print(f"Warning: Got {cbs} conditionings but batch-size is {batch_size}")
|
| 51 |
+
else:
|
| 52 |
+
if conditioning.shape[0] != batch_size:
|
| 53 |
+
print(f"Warning: Got {conditioning.shape[0]} conditionings but batch-size is {batch_size}")
|
| 54 |
+
|
| 55 |
+
# sampling
|
| 56 |
+
C, H, W = shape
|
| 57 |
+
size = (batch_size, C, H, W)
|
| 58 |
+
|
| 59 |
+
# print(f'Data shape for DPM-Solver sampling is {size}, sampling steps {S}')
|
| 60 |
+
|
| 61 |
+
device = self.model.betas.device
|
| 62 |
+
if x_T is None:
|
| 63 |
+
img = torch.randn(size, device=device)
|
| 64 |
+
else:
|
| 65 |
+
img = x_T
|
| 66 |
+
|
| 67 |
+
ns = NoiseScheduleVP('discrete', alphas_cumprod=self.alphas_cumprod)
|
| 68 |
+
|
| 69 |
+
model_fn = model_wrapper(
|
| 70 |
+
lambda x, t, c: self.model.apply_model(x, t, c),
|
| 71 |
+
ns,
|
| 72 |
+
model_type="noise",
|
| 73 |
+
guidance_type="classifier-free",
|
| 74 |
+
condition=conditioning,
|
| 75 |
+
unconditional_condition=unconditional_conditioning,
|
| 76 |
+
guidance_scale=unconditional_guidance_scale,
|
| 77 |
+
)
|
| 78 |
+
|
| 79 |
+
dpm_solver = DPM_Solver(model_fn, ns, predict_x0=True, thresholding=False)
|
| 80 |
+
x = dpm_solver.sample(img, steps=S, skip_type="time_uniform", method="multistep", order=2, lower_order_final=True)
|
| 81 |
+
|
| 82 |
+
return x.to(device), None
|
scripts/txt2img.py
CHANGED
|
@@ -17,6 +17,7 @@ from contextlib import contextmanager, nullcontext
|
|
| 17 |
from ldm.util import instantiate_from_config
|
| 18 |
from ldm.models.diffusion.ddim import DDIMSampler
|
| 19 |
from ldm.models.diffusion.plms import PLMSSampler
|
|
|
|
| 20 |
|
| 21 |
from diffusers.pipelines.stable_diffusion.safety_checker import StableDiffusionSafetyChecker
|
| 22 |
from transformers import AutoFeatureExtractor
|
|
@@ -132,6 +133,11 @@ def main():
|
|
| 132 |
action='store_true',
|
| 133 |
help="use plms sampling",
|
| 134 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 135 |
parser.add_argument(
|
| 136 |
"--laion400m",
|
| 137 |
action='store_true',
|
|
@@ -242,7 +248,9 @@ def main():
|
|
| 242 |
device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu")
|
| 243 |
model = model.to(device)
|
| 244 |
|
| 245 |
-
if opt.
|
|
|
|
|
|
|
| 246 |
sampler = PLMSSampler(model)
|
| 247 |
else:
|
| 248 |
sampler = DDIMSampler(model)
|
|
|
|
| 17 |
from ldm.util import instantiate_from_config
|
| 18 |
from ldm.models.diffusion.ddim import DDIMSampler
|
| 19 |
from ldm.models.diffusion.plms import PLMSSampler
|
| 20 |
+
from ldm.models.diffusion.dpm_solver import DPMSolverSampler
|
| 21 |
|
| 22 |
from diffusers.pipelines.stable_diffusion.safety_checker import StableDiffusionSafetyChecker
|
| 23 |
from transformers import AutoFeatureExtractor
|
|
|
|
| 133 |
action='store_true',
|
| 134 |
help="use plms sampling",
|
| 135 |
)
|
| 136 |
+
parser.add_argument(
|
| 137 |
+
"--dpm_solver",
|
| 138 |
+
action='store_true',
|
| 139 |
+
help="use dpm_solver sampling",
|
| 140 |
+
)
|
| 141 |
parser.add_argument(
|
| 142 |
"--laion400m",
|
| 143 |
action='store_true',
|
|
|
|
| 248 |
device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu")
|
| 249 |
model = model.to(device)
|
| 250 |
|
| 251 |
+
if opt.dpm_solver:
|
| 252 |
+
sampler = DPMSolverSampler(model)
|
| 253 |
+
elif opt.plms:
|
| 254 |
sampler = PLMSSampler(model)
|
| 255 |
else:
|
| 256 |
sampler = DDIMSampler(model)
|