Skip to content

Commit

Permalink
Changes from Casper's comments - attempt 3
Browse files Browse the repository at this point in the history
  • Loading branch information
MargaretDuff committed Sep 25, 2024
1 parent 79f54f1 commit 238fc28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __init__(self, alpha=1e6, beta=0.5, max_iterations=None, warmstart=True):
self.alpha_orig = alpha
if self.alpha_orig is None: # Can be removed when alpha and beta are deprecated in GD
self.alpha_orig = 1e6
self.alpha = self.alpha_orig.copy()
self.alpha = self.alpha_orig
self.beta = beta
if self.beta is None: # Can be removed when alpha and beta are deprecated in GD
self.beta = 0.5
Expand Down

0 comments on commit 238fc28

Please sign in to comment.