-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix lin op reg sense #610
base: main
Are you sure you want to change the base?
Fix lin op reg sense #610
Conversation
📚 Documentation |
operator = operator + IdentityOp() @ ( | ||
self.regularization_weight * self.regularization_op.H @ self.regularization_op | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
operator = operator + IdentityOp() @ ( | |
self.regularization_weight * self.regularization_op.H @ self.regularization_op | |
) | |
operator = operator + self.regularization_weight * self.regularization_op.H @ self.regularization_op |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think the identity operator is not needed, is it?
a few other comments:
|
For the regularized iterative SENSE reconstruction we allow the following to be minimised:
1/2*||Ex - y||2^2 + reg_weight/2 * ||B x - x_reg||_2^2
with
B
aLinearOperator
.If we calculate the derivative and rearrange we get
(E^H E + reg_weight* B^H B) x = E^H y + B^H x_reg
(c) Andreas Kofler
In our current implementation we were missing the
B^H
part.