Skip to content
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

Run Forward Backward Algorithm in analysis formulation. #354

Open
paquiteau opened this issue May 24, 2024 · 0 comments
Open

Run Forward Backward Algorithm in analysis formulation. #354

paquiteau opened this issue May 24, 2024 · 0 comments

Comments

@paquiteau
Copy link
Contributor

Currently, only synthesis formulation is supported. But for a tight-frame operator both formulations are equivalent. A solution would be to enrich the proximal operator (e.g.SparseThreshold) as such:

class InTransformSparseThreshold(SparseThreshold):
    """Sparse Thresholding in a transform domain."""

    def _op_method(self, input_data, extra_factor=1.0):
        return self._linear.adj_op(
            super()._op_method(self._linear.op(input_data), extra_factor=extra_factor)
        )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant