Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschapman19 committed Jun 28, 2023
1 parent 4bfa944 commit 23ac1ba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion skprox/_proximal_operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"Log": frozenset(["sigma", "gamma"]),
"Log1": frozenset(["sigma", "delta"]),
"Euclidean": frozenset(["sigma"]),
"TVL1": frozenset(["sigma", "rho"]),
"TVL1": frozenset(["sigma", "shape", "l1_ratio"]),
}


Expand Down
10 changes: 0 additions & 10 deletions skprox/operators/_tvl1.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ def __init__(
x_tol=1e-2,
max_iter=200,
check_gap_frequency=10,
val_min=None,
val_max=None,
verbose=False,
fista=True,
init=None,
):
super().__init__()

Expand All @@ -30,11 +25,6 @@ def __init__(
self.x_tol = x_tol
self.max_iter = max_iter
self.check_gap_frequency = check_gap_frequency
self.val_min = val_min
self.val_max = val_max
self.verbose = verbose
self.fista = fista
self.init = init
self.shape = shape

def unmask(self, x):
Expand Down

0 comments on commit 23ac1ba

Please sign in to comment.