Skip to content

Commit

Permalink
removing default regularization from angle
Browse files Browse the repository at this point in the history
  • Loading branch information
dfm committed May 4, 2019
1 parent ab77944 commit 6238d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exoplanet/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class AngleTransform(tr.Transform):
name = "angle"

def __init__(self, *args, **kwargs):
self.regularized = kwargs.pop("regularized", 10.0)
self.regularized = kwargs.pop("regularized", None)
super(AngleTransform, self).__init__(*args, **kwargs)

def backward(self, y):
Expand Down

0 comments on commit 6238d1b

Please sign in to comment.