Skip to content

Commit bcaee04

Browse files
committed
Merge pull request scikit-learn#3260 from larsmans/cd-deprecation
[MRG] fix faulty deprecation in CD
2 parents b54a9af + 6ce6d33 commit bcaee04

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sklearn/linear_model/coordinate_descent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ def lasso_path(X, y, eps=1e-3, n_alphas=100, alphas=None,
157157
158158
fit_intercept : bool
159159
Fit or not an intercept.
160-
WARNING : will be deprecated in 0.16
160+
WARNING : deprecated, will be removed in 0.16.
161161
162162
normalize : boolean, optional, default False
163163
If ``True``, the regressors X will be normalized before regression.
164-
WARNING : will be deprecated in 0.16
164+
WARNING : deprecated, will be removed in 0.16.
165165
166166
copy_X : boolean, optional, default True
167167
If ``True``, X will be copied; else, it may be overwritten.
@@ -325,11 +325,11 @@ def enet_path(X, y, l1_ratio=0.5, eps=1e-3, n_alphas=100, alphas=None,
325325
326326
fit_intercept : bool
327327
Fit or not an intercept.
328-
WARNING : will be deprecated in 0.16
328+
WARNING : deprecated, will be removed in 0.16.
329329
330330
normalize : boolean, optional, default False
331331
If ``True``, the regressors X will be normalized before regression.
332-
WARNING : will be deprecated in 0.16
332+
WARNING : deprecated, will be removed in 0.16.
333333
334334
copy_X : boolean, optional, default True
335335
If ``True``, X will be copied; else, it may be overwritten.

0 commit comments

Comments
 (0)