@@ -820,7 +820,7 @@ class Lasso(ElasticNet):
820820 fit_intercept : boolean, optional, default True
821821 Whether to calculate the intercept for this model. If set
822822 to False, no intercept will be used in calculations
823- (e.g. data is expected to be already centered).
823+ (i.e. data is expected to be centered).
824824
825825 normalize : boolean, optional, default False
826826 This parameter is ignored when ``fit_intercept`` is set to False.
@@ -1258,7 +1258,7 @@ class LassoCV(LinearModelCV, RegressorMixin):
12581258 fit_intercept : boolean, default True
12591259 whether to calculate the intercept for this model. If set
12601260 to false, no intercept will be used in calculations
1261- (e.g. data is expected to be already centered).
1261+ (i.e. data is expected to be centered).
12621262
12631263 normalize : boolean, optional, default False
12641264 This parameter is ignored when ``fit_intercept`` is set to False.
@@ -1430,7 +1430,7 @@ class ElasticNetCV(LinearModelCV, RegressorMixin):
14301430 fit_intercept : boolean
14311431 whether to calculate the intercept for this model. If set
14321432 to false, no intercept will be used in calculations
1433- (e.g. data is expected to be already centered).
1433+ (i.e. data is expected to be centered).
14341434
14351435 normalize : boolean, optional, default False
14361436 This parameter is ignored when ``fit_intercept`` is set to False.
@@ -1635,7 +1635,7 @@ class MultiTaskElasticNet(Lasso):
16351635 fit_intercept : boolean
16361636 whether to calculate the intercept for this model. If set
16371637 to false, no intercept will be used in calculations
1638- (e.g. data is expected to be already centered).
1638+ (i.e. data is expected to be centered).
16391639
16401640 normalize : boolean, optional, default False
16411641 This parameter is ignored when ``fit_intercept`` is set to False.
@@ -1821,7 +1821,7 @@ class MultiTaskLasso(MultiTaskElasticNet):
18211821 fit_intercept : boolean
18221822 whether to calculate the intercept for this model. If set
18231823 to false, no intercept will be used in calculations
1824- (e.g. data is expected to be already centered).
1824+ (i.e. data is expected to be centered).
18251825
18261826 normalize : boolean, optional, default False
18271827 This parameter is ignored when ``fit_intercept`` is set to False.
@@ -1962,7 +1962,7 @@ class MultiTaskElasticNetCV(LinearModelCV, RegressorMixin):
19621962 fit_intercept : boolean
19631963 whether to calculate the intercept for this model. If set
19641964 to false, no intercept will be used in calculations
1965- (e.g. data is expected to be already centered).
1965+ (i.e. data is expected to be centered).
19661966
19671967 normalize : boolean, optional, default False
19681968 This parameter is ignored when ``fit_intercept`` is set to False.
@@ -2136,7 +2136,7 @@ class MultiTaskLassoCV(LinearModelCV, RegressorMixin):
21362136 fit_intercept : boolean
21372137 whether to calculate the intercept for this model. If set
21382138 to false, no intercept will be used in calculations
2139- (e.g. data is expected to be already centered).
2139+ (i.e. data is expected to be centered).
21402140
21412141 normalize : boolean, optional, default False
21422142 This parameter is ignored when ``fit_intercept`` is set to False.
0 commit comments