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
Due to the interface changes, the standard Kaczmarz not accepting enforcePositive and enforceReal as keyword arguments anymore. The DAXKazmarz still accepts the keyword arguments and adds the regularizers in
The DAX solvers as well as PrimalDual are not up to date.
The keywords have been removed and instead one has to supply the proximal terms for positivity and real number constraints. Kaczmarz accepts currently an arbitrary number of projection terms so those will not run into that error case.
MPIReco translates the respective enforceX kwargs into the proximal maps during the LeastSquares-process call
Thanks for the clarification! For the record: use reg=[L2Regularization(λ), PositiveRegularization()] when creating the solver and it works. I just misunderstood the code.
Due to the interface changes, the standard Kaczmarz not accepting
enforcePositive
andenforceReal
as keyword arguments anymore. The DAXKazmarz still accepts the keyword arguments and adds the regularizers inRegularizedLeastSquares.jl/src/DAXKaczmarz.jl
Lines 74 to 79 in 94d2bf6
RegularizedLeastSquares.jl/src/Kaczmarz.jl
Line 79 in 94d2bf6
The text was updated successfully, but these errors were encountered: