You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/whats_new.rst
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Enhancements
33
33
that takes in the data and yields a generator for the different splits.
34
34
This change makes it possible to do nested cross-validation with ease,
35
35
facilitated by :class:`model_selection.GridSearchCV` and similar
36
-
utilities. (`#4294 https://github.com/scikit-learn/scikit-learn/pull/4294>`_) by `Raghav R V`_.
36
+
utilities. (`#4294 <https://github.com/scikit-learn/scikit-learn/pull/4294>`_) by `Raghav R V`_.
37
37
38
38
- The random forest, extra trees and decision tree estimators now has a
39
39
method ``decision_path`` which returns the decision path of samples in
@@ -56,16 +56,16 @@ Bug fixes
56
56
.........
57
57
58
58
- :class:`RandomizedPCA` default number of `iterated_power` is 2 instead of 3.
59
-
This is a speed up with a minor precision decrease. (`#5141 https://github.com/scikit-learn/scikit-learn/pull/5141>`_) by `Giorgio Patrini`_.
59
+
This is a speed up with a minor precision decrease. (`#5141 <https://github.com/scikit-learn/scikit-learn/pull/5141>`_) by `Giorgio Patrini`_.
60
60
61
61
- :func:`randomized_svd` performs 2 power iterations by default, instead or 0.
62
62
In practice this is often enough for obtaining a good approximation of the
63
-
true eigenvalues/vectors in the presence of noise. (`#5141 https://github.com/scikit-learn/scikit-learn/pull/5141>`_) by `Giorgio Patrini`_.
63
+
true eigenvalues/vectors in the presence of noise. (`#5141 <https://github.com/scikit-learn/scikit-learn/pull/5141>`_) by `Giorgio Patrini`_.
64
64
65
65
- :func:`randomized_range_finder` is more numerically stable when many
66
66
power iterations are requested, since it applies LU normalization by default.
67
67
If `n_iter<2` numerical issues are unlikely, thus no normalization is applied.
68
-
Other normalization options are available: 'none', 'LU' and 'QR'. (`#5141 https://github.com/scikit-learn/scikit-learn/pull/5141>`_) by `Giorgio Patrini`_.
68
+
Other normalization options are available: 'none', 'LU' and 'QR'. (`#5141 <https://github.com/scikit-learn/scikit-learn/pull/5141>`_) by `Giorgio Patrini`_.
69
69
70
70
- Fixed bug in :func:`manifold.spectral_embedding` where diagonal of unnormalized
71
71
Laplacian matrix was incorrectly set to 1. By `Peter Fischer`_.
@@ -85,7 +85,7 @@ API changes summary
85
85
- The :mod:`cross_validation`, :mod:`grid_search` and :mod:`learning_curve`
86
86
have been deprecated and the classes and functions have been reorganized into
87
87
the :mod:`model_selection` module.
88
-
(`#4294 https://github.com/scikit-learn/scikit-learn/pull/4294>`_) by `Raghav R V`_.
88
+
(`#4294 <https://github.com/scikit-learn/scikit-learn/pull/4294>`_) by `Raghav R V`_.
89
89
90
90
91
91
.. _changes_0_17:
@@ -366,7 +366,7 @@ Bug fixes
366
366
367
367
- Fixed bug in :class:`cross_decomposition.PLS` that yielded unstable and
368
368
platform dependent output, and failed on `fit_transform`.
369
-
By `Arthur Mensch`_.
369
+
By `Arthur Mensch`_.
370
370
371
371
- Fixed a bug in :class:`linear_model.LogisticRegression` and
372
372
:class:`linear_model.LogisticRegressionCV` when using
@@ -3403,8 +3403,8 @@ Changelog
3403
3403
3404
3404
- New :ref:`gaussian_process` module by Vincent Dubourg. This module
3405
3405
also has great documentation and some very neat examples. See
3406
-
:ref:`example_gaussian_process_plot_gp_regression.py` or
0 commit comments