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

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ohjeah committed Feb 15, 2018
1 parent 1f6483d commit e56c716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sparsereg/model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ def print_model(self, input_features=None):


class STRidge(LinearModel, RegressorMixin):
def __init__(self, threshold=0.01, alpha=0.1, max_iter=100, normalize=True, fit_intercept=True, copy_x=True, unbias=True, _cond=-1):
def __init__(self, threshold=0.01, alpha=0.1, max_iter=100, normalize=True, fit_intercept=True, copy_x=True, unbias=True, _rcond=-1):
self.threshold = threshold
self.max_iter = max_iter
self.fit_intercept = fit_intercept
self.normalize = normalize
self.copy_X = copy_x
self.alpha = alpha
self.unbias = unbias
self._rcond=_rcond
self._rcond= _rcond

self.history_ = []

Expand Down

0 comments on commit e56c716

Please sign in to comment.