Skip to content
This repository was archived by the owner on Jul 19, 2022. It is now read-only.

Commit e56c716

Browse files
committed
fix typo
1 parent 1f6483d commit e56c716

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sparsereg/model/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ def print_model(self, input_features=None):
6565

6666

6767
class STRidge(LinearModel, RegressorMixin):
68-
def __init__(self, threshold=0.01, alpha=0.1, max_iter=100, normalize=True, fit_intercept=True, copy_x=True, unbias=True, _cond=-1):
68+
def __init__(self, threshold=0.01, alpha=0.1, max_iter=100, normalize=True, fit_intercept=True, copy_x=True, unbias=True, _rcond=-1):
6969
self.threshold = threshold
7070
self.max_iter = max_iter
7171
self.fit_intercept = fit_intercept
7272
self.normalize = normalize
7373
self.copy_X = copy_x
7474
self.alpha = alpha
7575
self.unbias = unbias
76-
self._rcond=_rcond
76+
self._rcond= _rcond
7777

7878
self.history_ = []
7979

0 commit comments

Comments
 (0)