Source code for cuqi.implicitprior._restorator

from abc import ABC, abstractmethod
from cuqi.distribution import Distribution
import numpy as np
    
[docs] class RestorationPrior(Distribution): """ This class defines an implicit distribution associated with a restoration operator (eg denoiser). They are several works relating restorations operators with priors, see -Laumont et al. https://arxiv.org/abs/2103.04715 -Hu et al. https://openreview.net/pdf?id=x7d1qXEn1e We cannot sample from this distribution, neither compute its logpdf except in some cases. It allows us to apply algorithms such as MYULA and PnPULA. Parameters ---------- restorator : callable f(x, restoration_strength) Function f that accepts input x to be restored and returns a two-element tuple of the restored version of x and extra information about the restoration operation. The second element can be of any type, including `None` in case there is no information. restorator_kwargs : dictionary Dictionary containing information about the restorator. It contains keyword argument parameters that will be passed to the restorator f. An example could be algorithm parameters such as the number of iterations or the stopping criteria. potential : callable function, optional The potential corresponds to the negative logpdf when it is accessible. This function is a mapping from the parameter domain to the real set. It can be provided if the user knows how to relate it to the restorator. Ex: restorator is the proximal operator of the total variation (TV), then potential is the TV function. """
[docs] def __init__(self, restorator, restorator_kwargs =None, potential=None, **kwargs): if restorator_kwargs is None: restorator_kwargs = {} self.restorator = restorator self.restorator_kwargs = restorator_kwargs self.potential = potential super().__init__(**kwargs)
[docs] def restore(self, x, restoration_strength): """This function allows us to restore the input x with the user-supplied restorator. Extra information about the restoration operation is stored in the `RestorationPrior` info attribute. Parameters ---------- x : ndarray parameter we want to restore. restoration_strength: positive float Strength of the restoration operation. In the case where the restorator is a denoiser, this parameter might correspond to the noise level. """ restorator_return = self.restorator(x, restoration_strength=restoration_strength, **self.restorator_kwargs) if type(restorator_return) == tuple and len(restorator_return) == 2: solution, self.info = restorator_return else: raise ValueError("Unsupported return type from the user-supplied restorator function. "+ "Please ensure that the restorator function returns a two-element tuple with the "+ "restored solution as the first element and additional information about the "+ "restoration as the second element. The second element can be of any type, "+ "including `None` in case there is no particular information.") return solution
[docs] def logpdf(self, x): """The logpdf function. It returns nan because we don't know the logpdf of the implicit prior.""" if self.potential is None: return np.nan else: return -self.potential(x)
def _sample(self, N, rng=None): raise NotImplementedError("The sample method is not implemented for the" + "RestorationPrior class.") @property def _mutable_vars(self): """ Returns the mutable variables of the distribution. """ # Currently mutable variables are not supported for user-defined # distributions. return []
[docs] def get_conditioning_variables(self): """ Returns the conditioning variables of the distribution. """ # Currently conditioning variables are not supported for user-defined # distributions. return []
[docs] class MoreauYoshidaPrior(Distribution): """ This class defines (implicit) smoothed priors for which we can apply gradient-based algorithms. The smoothing is performed using the Moreau-Yoshida envelope of the target prior potential. In the following we give a detailed explanation of the Moreau-Yoshida smoothing. We consider a density such that - \log\pi(x) = -g(x) with g convex, lsc, proper but not differentiable. Consequently, we cannot apply any algorithm requiring the gradient of g. Idea: We consider the Moreau envelope of g defined as g_{smoothing_strength} (x) = inf_z 0.5*\| x-z \|_2^2/smoothing_strength + g(z). g_{smoothing_strength} has some nice properties - g_{smoothing_strength}(x)-->g(x) as smoothing_strength-->0 for all x - \nabla g_{smoothing_strength} is 1/smoothing_strength-Lipschitz - \nabla g_{smoothing_strength}(x) = (x - prox_g^{smoothing_strength}(x))/smoothing_strength for all x with prox_g^{smoothing_strength}(x) = argmin_z 0.5*\| x-z \|_2^2/smoothing_strength + g(z) . Consequently, we can apply any gradient-based algorithm with g_{smoothing_strength} in lieu of g. These algorithms do not require the full knowledge of g_{smoothing_strength} but only its gradient. The gradient of g_{smoothing_strength} is fully determined by prox_g^{smoothing_strength} and smoothing_strength. It is important as, although there exists an explicit formula for g_{smoothing_strength}, it is rarely used in practice, as it would require us to solve an optimization problem each time we want to estimate g_{smoothing_strength}. Furthermore, there exist cases where we dont't the regularization g with which the mapping prox_g^{smoothing_strength} is associated. Remark (Proximal operators are denoisers): We consider the denoising inverse problem x = u + n, with n \sim \mathcal{N}(0, smoothing_strength I). A mapping solving a denoising inverse problem is called denoiser. It takes the noisy observation x as an input and returns a less noisy version of x which is an estimate of u. We assume a prior density \pi(u) \propto exp(- g(u)). Then the MAP estimate is given by x_MAP = \argmin_z 0.5 \| x - z \|_2^2/smoothing_strength + g(z) = prox_g^smoothing_strength(x) Then proximal operators are denoisers. Remark (Denoisers are not necessarily proximal operators): Data-driven denoisers are not necessarily proximal operators (see https://arxiv.org/pdf/2201.13256) Parameters ---------- prior : RestorationPrior Prior of the RestorationPrior type. In order to stay within the MYULA framework the restorator of RestorationPrior must be a proximal operator. smoothing_strength : float Smoothing strength of the Moreau-Yoshida envelope of the prior potential. """
[docs] def __init__(self, prior:RestorationPrior, smoothing_strength=0.1, **kwargs): self.prior = prior self.smoothing_strength = smoothing_strength # if kwargs does not contain the geometry, # we set it to the geometry of the prior, if it exists if "geometry" in kwargs: raise ValueError( "The geometry parameter is not supported for the" + "MoreauYoshidaPrior class. The geometry is" + "automatically set to the geometry of the prior.") try: geometry = prior.geometry except: geometry = None super().__init__(geometry=geometry, **kwargs)
@property def geometry(self): return self.prior.geometry @geometry.setter def geometry(self, value): self.prior.geometry = value @property def smoothing_strength(self): """ smoothing_strength of the distribution""" return self._smoothing_strength @smoothing_strength.setter def smoothing_strength(self, value): self._smoothing_strength = value @property def prior(self): """Getter for the MoreauYoshida prior.""" return self._prior @prior.setter def prior(self, value): self._prior = value
[docs] def gradient(self, x): """This is the gradient of the regularizer ie gradient of the negative logpdf of the implicit prior.""" return -(x - self.prior.restore(x, self.smoothing_strength))/self.smoothing_strength
[docs] def logpdf(self, x): """The logpdf function. It returns nan because we don't know the logpdf of the implicit prior.""" if self.prior.potential == None: return np.nan else: return -(self.prior.potential(self.prior.restore(x, self.smoothing_strength))*self.smoothing_strength + 0.5*((x-self.prior.restore(x, self.smoothing_strength))**2).sum())
def _sample(self, N, rng=None): raise NotImplementedError("The sample method is not implemented for the" + f"{self.__class__.__name__} class.") @property def _mutable_vars(self): """ Returns the mutable variables of the distribution. """ # Currently mutable variables are not supported for user-defined # distributions. return []
[docs] def get_conditioning_variables(self): """ Returns the conditioning variables of the distribution. """ # Currently conditioning variables are not supported for user-defined # distributions. return []
[docs] class TweediePrior(MoreauYoshidaPrior): """ Alias for MoreauYoshidaPrior following Tweedie's formula framework. TweediePrior defines priors where gradients are computed based on Tweedie's identity that links MMSE (Minimum Mean Square Error) denoisers with the underlying smoothed prior, see: - Laumont et al. https://arxiv.org/abs/2103.04715 or https://doi.org/10.1137/21M1406349 Tweedie's Formula ------------------------- In the context of denoising, Tweedie's identity states that for a signal x corrupted by Gaussian noise: ∇_x log p_e(x) = (D_e(x) - x) / e where D_e(x) is the MMSE denoiser output and e is the noise variance. This enables us to perform gradient-based sampling with algorithms like ULA. At implementation level, TweediePrior shares identical functionality with MoreauYoshidaPrior. Thus, it is implemented as an alias of MoreauYoshidaPrior, meaning all methods, properties, and behavior are identical. The separate name provides clarity when working specifically with Tweedie's formula-based approaches. Parameters ---------- prior : RestorationPrior Prior of the RestorationPrior type containing a denoiser/restorator. smoothing_strength : float, default=0.1 Corresponds to the noise variance e in Tweedie's formula context. See MoreauYoshidaPrior for the underlying implementation with complete documentation. """ pass