8000 FIX doctest · scikit-learn/scikit-learn@dd160f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit dd160f0

Browse files
committed
FIX doctest
1 parent f551f5e commit dd160f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/tutorial/statistical_inference/model_selection.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,9 @@ parameter automatically by cross-validation::
269269
>>> y_diabetes = diabetes.target
270270
>>> lasso.fit(X_diabetes, y_diabetes)
271271
LassoCV(alphas=None, copy_X=True, cv=3, eps=0.001, fit_intercept=True,
272-
max_iter=1000, n_alphas=100, n_jobs=None, normalize=False, positive=False,
273-
precompute='auto', random_state=None, selection='cyclic', tol=0.0001,
274-
verbose=False)
272+
max_iter=1000, n_alphas=100, n_jobs=None, normalize=False,
273+
positive=False, precompute='auto', random_state=None,
274+
selection='cyclic', tol=0.0001, verbose=False)
275275
>>> # The estimator chose automatically its lambda:
276276
>>> lasso.alpha_ # doctest: +ELLIPSIS
277277
0.01229...

0 commit comments

Comments
 (0)
0