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, 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:
classInTransformSparseThreshold(SparseThreshold):
"""Sparse Thresholding in a transform domain."""def_op_method(self, input_data, extra_factor=1.0):
returnself._linear.adj_op(
super()._op_method(self._linear.op(input_data), extra_factor=extra_factor)
)
The text was updated successfully, but these errors were encountered:
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:The text was updated successfully, but these errors were encountered: