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
is the proximal operator a function of y or z. It appears that the base class sigpy.prox.Prox uses y as the input to the prox operator. But y is a parameter for the L2Reg class called "bias".
I think "z" is the bias based on what the description is. My tests confirm this.
See below for a test which passes based on the assumption that z is the bias parameter and y is the input to the prox operator.
Also the statement in the docs above says min instead of argmin.
The text was updated successfully, but these errors were encountered:
Hello! Thanks for the report. Are you open to making a pull request for your requested document changes? In particular, if you're able to change the documentation for all the "basic proxs" listed in https://sigpy.readthedocs.io/en/latest/core_prox.html to be of the format "prox_{alpha g)(y) = argmin...", that would be much appreciated.
In https://sigpy.readthedocs.io/en/latest/generated/sigpy.prox.L2Reg.html#sigpy.prox.L2Reg
is the proximal operator a function of y or z. It appears that the base class
sigpy.prox.Prox
uses y as the input to the prox operator. But y is a parameter for the L2Reg class called "bias".I think "z" is the bias based on what the description is. My tests confirm this.
See below for a test which passes based on the assumption that z is the bias parameter and y is the input to the prox operator.
Also the statement in the docs above says
min
instead ofargmin
.The text was updated successfully, but these errors were encountered: