You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently AcceleratedPGM can only solve the problem with a single loss function and a single prior. We cannot solve the composite minimization problem defined like so:
This has been addressed by Yao-Liang, 2013 in Algorithm 1. This is an enhancement request to implement this Proximal-Averaged AcceleratedPGM where the proximal of the weighted priors is given by the average of their respective proximals.
This would be extremely useful when we want to restore the noisy image with say TV prior while also enforcing that the result be non-zero with NonNegativeIndicator prior.
The text was updated successfully, but these errors were encountered:
See branch brendt/proxavg for an approach to implementing the proximal average method that does not require a new solver class. Instead, it provides a ProximalAverage functional that uses the proximal average when passed to the existing PGM or AcceleratedPGM solvers.
Currently
AcceleratedPGM
can only solve the problem with a single loss function and a single prior. We cannot solve the composite minimization problem defined like so:This has been addressed by
Yao-Liang, 2013
in Algorithm 1. This is an enhancement request to implement thisProximal-Averaged AcceleratedPGM
where the proximal of the weighted priors is given by the average of their respective proximals.This would be extremely useful when we want to restore the noisy image with say
TV
prior while also enforcing that the result be non-zero withNonNegativeIndicator
prior.The text was updated successfully, but these errors were encountered: