Skip to content

Commit

Permalink
FIX doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
ogrisel committed Jul 24, 2018
1 parent f551f5e commit dd160f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/tutorial/statistical_inference/model_selection.rst
Expand Up @@ -269,9 +269,9 @@ parameter automatically by cross-validation::
>>> y_diabetes = diabetes.target
>>> lasso.fit(X_diabetes, y_diabetes)
LassoCV(alphas=None, copy_X=True, cv=3, eps=0.001, fit_intercept=True,
max_iter=1000, n_alphas=100, n_jobs=None, normalize=False, positive=False,
precompute='auto', random_state=None, selection='cyclic', tol=0.0001,
verbose=False)
max_iter=1000, n_alphas=100, n_jobs=None, normalize=False,
positive=False, precompute='auto', random_state=None,
selection='cyclic', tol=0.0001, verbose=False)
>>> # The estimator chose automatically its lambda:
>>> lasso.alpha_ # doctest: +ELLIPSIS
0.01229...
Expand Down

0 comments on commit dd160f0

Please sign in to comment.