Skip to content

Commit f485fce

Browse files
ryanyu9agramfort
authored andcommitted
fix a typo in ridge.py (scikit-learn#6917)
1 parent 10a6c33 commit f485fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/linear_model/ridge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def ridge_regression(X, y, alpha, sample_weight=None, solver='auto',
248248
(possibility to set `tol` and `max_iter`).
249249
250250
- 'lsqr' uses the dedicated regularized least-squares routine
251-
scipy.sparse.linalg.lsqr. It is the fatest but may not be available
251+
scipy.sparse.linalg.lsqr. It is the fastest but may not be available
252252
in old scipy versions. It also uses an iterative procedure.
253253
254254
- 'sag' uses a Stochastic Average Gradient descent. It also uses an

0 commit comments

Comments
 (0)