mirror of
https://github.com/wassname/denoising-diffusion-pytorch.git
synced 2026-09-10 12:01:08 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27853452a2 | ||
|
|
84ebb9ad13 |
@@ -1,2 +1,4 @@
|
|||||||
from denoising_diffusion_pytorch.denoising_diffusion_pytorch import GaussianDiffusion, Unet, Trainer
|
from denoising_diffusion_pytorch.denoising_diffusion_pytorch import GaussianDiffusion, Unet, Trainer
|
||||||
|
|
||||||
from denoising_diffusion_pytorch.learned_gaussian_diffusion import LearnedGaussianDiffusion
|
from denoising_diffusion_pytorch.learned_gaussian_diffusion import LearnedGaussianDiffusion
|
||||||
|
from denoising_diffusion_pytorch.weighted_objective_gaussian_diffusion import WeightedObjectiveGaussianDiffusion
|
||||||
|
|||||||
@@ -339,7 +339,8 @@ class GaussianDiffusion(nn.Module):
|
|||||||
image_size,
|
image_size,
|
||||||
channels = 3,
|
channels = 3,
|
||||||
timesteps = 1000,
|
timesteps = 1000,
|
||||||
loss_type = 'l1'
|
loss_type = 'l1',
|
||||||
|
objective = 'pred_noise'
|
||||||
):
|
):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
assert not (type(self) == GaussianDiffusion and denoise_fn.channels != denoise_fn.out_dim)
|
assert not (type(self) == GaussianDiffusion and denoise_fn.channels != denoise_fn.out_dim)
|
||||||
@@ -347,6 +348,7 @@ class GaussianDiffusion(nn.Module):
|
|||||||
self.channels = channels
|
self.channels = channels
|
||||||
self.image_size = image_size
|
self.image_size = image_size
|
||||||
self.denoise_fn = denoise_fn
|
self.denoise_fn = denoise_fn
|
||||||
|
self.objective = objective
|
||||||
|
|
||||||
betas = cosine_beta_schedule(timesteps)
|
betas = cosine_beta_schedule(timesteps)
|
||||||
|
|
||||||
@@ -404,12 +406,19 @@ class GaussianDiffusion(nn.Module):
|
|||||||
return posterior_mean, posterior_variance, posterior_log_variance_clipped
|
return posterior_mean, posterior_variance, posterior_log_variance_clipped
|
||||||
|
|
||||||
def p_mean_variance(self, x, t, clip_denoised: bool):
|
def p_mean_variance(self, x, t, clip_denoised: bool):
|
||||||
x_recon = self.predict_start_from_noise(x, t=t, noise=self.denoise_fn(x, t))
|
model_output = self.denoise_fn(x, t)
|
||||||
|
|
||||||
|
if self.objective == 'pred_noise':
|
||||||
|
x_start = self.predict_start_from_noise(x, t = t, noise = model_output)
|
||||||
|
elif self.objective == 'pred_x0':
|
||||||
|
x_start = model_output
|
||||||
|
else:
|
||||||
|
raise ValueError(f'unknown objective {self.objective}')
|
||||||
|
|
||||||
if clip_denoised:
|
if clip_denoised:
|
||||||
x_recon.clamp_(-1., 1.)
|
x_start.clamp_(-1., 1.)
|
||||||
|
|
||||||
model_mean, posterior_variance, posterior_log_variance = self.q_posterior(x_start=x_recon, x_t=x, t=t)
|
model_mean, posterior_variance, posterior_log_variance = self.q_posterior(x_start = x_start, x_t = x, t = t)
|
||||||
return model_mean, posterior_variance, posterior_log_variance
|
return model_mean, posterior_variance, posterior_log_variance
|
||||||
|
|
||||||
@torch.no_grad()
|
@torch.no_grad()
|
||||||
@@ -475,10 +484,17 @@ class GaussianDiffusion(nn.Module):
|
|||||||
b, c, h, w = x_start.shape
|
b, c, h, w = x_start.shape
|
||||||
noise = default(noise, lambda: torch.randn_like(x_start))
|
noise = default(noise, lambda: torch.randn_like(x_start))
|
||||||
|
|
||||||
x_noisy = self.q_sample(x_start=x_start, t=t, noise=noise)
|
x = self.q_sample(x_start=x_start, t=t, noise=noise)
|
||||||
x_recon = self.denoise_fn(x_noisy, t)
|
model_out = self.denoise_fn(x, t)
|
||||||
|
|
||||||
loss = self.loss_fn(noise, x_recon)
|
if self.objective == 'pred_noise':
|
||||||
|
target = noise
|
||||||
|
elif self.objective == 'pred_x0':
|
||||||
|
target = x_start
|
||||||
|
else:
|
||||||
|
raise ValueError(f'unknown objective {self.objective}')
|
||||||
|
|
||||||
|
loss = self.loss_fn(model_out, target)
|
||||||
return loss
|
return loss
|
||||||
|
|
||||||
def forward(self, x, *args, **kwargs):
|
def forward(self, x, *args, **kwargs):
|
||||||
|
|||||||
@@ -0,0 +1,80 @@
|
|||||||
|
import torch
|
||||||
|
from inspect import isfunction
|
||||||
|
from torch import nn, einsum
|
||||||
|
from einops import rearrange
|
||||||
|
|
||||||
|
from denoising_diffusion_pytorch.denoising_diffusion_pytorch import GaussianDiffusion, extract, unnormalize_to_zero_to_one
|
||||||
|
|
||||||
|
# helper functions
|
||||||
|
|
||||||
|
def exists(x):
|
||||||
|
return x is not None
|
||||||
|
|
||||||
|
def default(val, d):
|
||||||
|
if exists(val):
|
||||||
|
return val
|
||||||
|
return d() if isfunction(d) else d
|
||||||
|
|
||||||
|
# some improvisation on my end
|
||||||
|
# where i have the model learn to both predict noise and x0
|
||||||
|
# and learn the weighted sum for each depending on time step
|
||||||
|
|
||||||
|
class WeightedObjectiveGaussianDiffusion(GaussianDiffusion):
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
denoise_fn,
|
||||||
|
*args,
|
||||||
|
pred_noise_loss_weight = 0.1,
|
||||||
|
pred_x_start_loss_weight = 0.1,
|
||||||
|
**kwargs
|
||||||
|
):
|
||||||
|
super().__init__(denoise_fn, *args, **kwargs)
|
||||||
|
channels = denoise_fn.channels
|
||||||
|
assert denoise_fn.out_dim == (channels * 2 + 2), 'dimension out (out_dim) of unet must be twice the number of channels + 2 (for the softmax weighted sum) - for channels of 3, this should be (3 * 2) + 2 = 8'
|
||||||
|
|
||||||
|
self.split_dims = (channels, channels, 2)
|
||||||
|
self.pred_noise_loss_weight = pred_noise_loss_weight
|
||||||
|
self.pred_x_start_loss_weight = pred_x_start_loss_weight
|
||||||
|
|
||||||
|
def p_mean_variance(self, *, x, t, clip_denoised, model_output = None):
|
||||||
|
model_output = self.denoise_fn(x, t)
|
||||||
|
|
||||||
|
pred_noise, pred_x_start, weights = model_output.split(self.split_dims, dim = 1)
|
||||||
|
normalized_weights = weights.softmax(dim = 1)
|
||||||
|
|
||||||
|
x_start_from_noise = self.predict_start_from_noise(x, t = t, noise = pred_noise)
|
||||||
|
|
||||||
|
x_starts = torch.stack((x_start_from_noise, pred_x_start), dim = 1)
|
||||||
|
weighted_x_start = einsum('b j h w, b j c h w -> b c h w', normalized_weights, x_starts)
|
||||||
|
|
||||||
|
if clip_denoised:
|
||||||
|
weighted_x_start.clamp_(-1., 1.)
|
||||||
|
|
||||||
|
model_mean, model_variance, model_log_variance = self.q_posterior(weighted_x_start, x, t)
|
||||||
|
|
||||||
|
return model_mean, model_variance, model_log_variance
|
||||||
|
|
||||||
|
def p_losses(self, x_start, t, noise = None, clip_denoised = False):
|
||||||
|
noise = default(noise, lambda: torch.randn_like(x_start))
|
||||||
|
x_t = self.q_sample(x_start = x_start, t = t, noise = noise)
|
||||||
|
|
||||||
|
model_output = self.denoise_fn(x_t, t)
|
||||||
|
pred_noise, pred_x_start, weights = model_output.split(self.split_dims, dim = 1)
|
||||||
|
|
||||||
|
# get loss for predicted noise and x_start
|
||||||
|
# with the loss weight given at initialization
|
||||||
|
|
||||||
|
noise_loss = self.loss_fn(noise, pred_noise) * self.pred_noise_loss_weight
|
||||||
|
x_start_loss = self.loss_fn(x_start, pred_x_start) * self.pred_x_start_loss_weight
|
||||||
|
|
||||||
|
# calculate x_start from predicted noise
|
||||||
|
# then do a weighted sum of the x_start prediction, weights also predicted by the model (softmax normalized)
|
||||||
|
|
||||||
|
x_start_from_pred_noise = self.predict_start_from_noise(x_t, t, pred_noise)
|
||||||
|
x_start_from_pred_noise = x_start_from_pred_noise.clamp(-2., 2.)
|
||||||
|
weighted_x_start = einsum('b j h w, b j c h w -> b c h w', weights.softmax(dim = 1), torch.stack((x_start_from_pred_noise, pred_x_start), dim = 1))
|
||||||
|
|
||||||
|
# main loss to x_start with the weighted one
|
||||||
|
|
||||||
|
weighted_x_start_loss = self.loss_fn(x_start, weighted_x_start)
|
||||||
|
return weighted_x_start_loss + x_start_loss + noise_loss
|
||||||
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|||||||
setup(
|
setup(
|
||||||
name = 'denoising-diffusion-pytorch',
|
name = 'denoising-diffusion-pytorch',
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
version = '0.14.3',
|
version = '0.15.1',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
|
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
|
||||||
author = 'Phil Wang',
|
author = 'Phil Wang',
|
||||||
|
|||||||
Reference in New Issue
Block a user