Closed PeiqinSun closed 3 months ago
Hi, DMD2 is another awesome work after DMD.
https://github.com/tianweiy/DMD2/blob/main/main/sd_guidance.py#L237C1-L239C42
But, in your implement code, why divide by the mean of torch.abs(p_real)? in my opinion, should multi by (alpha_t / sigma_t^2)
Have any detail in your paper?
this is followed from the original dmd paper (equation 8). we found it to work comparably or slightly better than a few other alternatives (see Table 2)
Thanks for your reply.
Hi, DMD2 is another awesome work after DMD.
https://github.com/tianweiy/DMD2/blob/main/main/sd_guidance.py#L237C1-L239C42
But, in your implement code, why divide by the mean of torch.abs(p_real)? in my opinion, should multi by (alpha_t / sigma_t^2)
Have any detail in your paper?