Skip to content

Commit ff77023

Browse files
committed
Rebuild dev docs at master=0cb93b0
1 parent 98b747b commit ff77023

File tree

225 files changed

+1467
-1440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+1467
-1440
lines changed

dev/_sources/whats_new.txt

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,40 @@ Changelog
1515
New features
1616
............
1717

18-
- The Gaussian Process module has been reimplemented and now offers classification
19-
and regression estimators through :class:`gaussian_process.GaussianProcessClassifier`
20-
and :class:`gaussian_process.GaussianProcessRegressor`. Among other things, the new
21-
implementation supports kernel engineering, gradient-based hyperparameter optimization or
22-
sampling of functions from GP prior and GP posterior. Extensive documentation and
18+
- The Gaussian Process module has been reimplemented and now offers classification
19+
and regression estimators through :class:`gaussian_process.GaussianProcessClassifier`
20+
and :class:`gaussian_process.GaussianProcessRegressor`. Among other things, the new
21+
implementation supports kernel engineering, gradient-based hyperparameter optimization or
22+
sampling of functions from GP prior and GP posterior. Extensive documentation and
2323
examples are provided. By `Jan Hendrik Metzen`_.
24-
24+
2525
Enhancements
2626
............
27-
27+
2828
Bug fixes
2929
.........
30-
- Fixed bug in :func:`manifold.spectral_embedding` where diagonal of unnormalized
30+
31+
- :class:`RandomizedPCA` default number of `iterated_power` is 2 instead of 3.
32+
This is a speed up with a minor precision decrease. By `Giorgio Patrini`_.
33+
34+
- :func:`randomized_svd` performs 2 power iterations by default, instead or 0.
35+
In practice this is often enough for obtaining a good approximation of the
36+
true eigenvalues/vectors in the presence of noise. By `Giorgio Patrini`_.
37+
38+
- :func:`randomized_range_finder` is more numerically stable when many
39+
power iterations are requested, since it applies LU normalization by default.
40+
If `n_iter<2` numerical issues are unlikely, thus no normalization is applied.
41+
Other normalization options are available: 'none', 'LU' and 'QR'. By
42+
`Giorgio Patrini`_.
43+
44+
- Fixed bug in :func:`manifold.spectral_embedding` where diagonal of unnormalized
3145
Laplacian matrix was incorrectly set to 1. By `Peter Fischer`_.
3246

3347

3448
API changes summary
3549
-------------------
36-
37-
50+
51+
3852
.. _changes_0_17:
3953

4054
Version 0.17
@@ -271,7 +285,7 @@ Bug fixes
271285
in the final fit. By `Manoj Kumar`_.
272286

273287
- Fixed bug in :class:`ensemble.forest.ForestClassifier` while computing
274-
oob_score and X is a sparse.csc_matrix. By `Ankur Ankan`_.
288+
oob_score and X is a sparse.csc_matrix. By `Ankur Ankan`_.
275289

276290
- All regressors now consistently handle and warn when given ``y`` that is of
277291
shape ``(n_samples, 1)``. By `Andreas Müller`_.
@@ -3799,3 +3813,4 @@ David Huard, Dave Morrill, Ed Schofield, Travis Oliphant, Pearu Peterson.
37993813
.. _Jean Kossaifi: https://github.com/JeanKossaifi
38003814
.. _Andrew Lamb: https://github.com/andylamb
38013815
.. _Graham Clenaghan: https://github.com/gclenaghan
3816+
.. _Giorgio Patrini: https://github.com/giorgiop

dev/modules/generated/sklearn.base.BaseEstimator.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
<h1><a class="reference internal" href="../classes.html#module-sklearn.base" title="sklearn.base"><tt class="xref py py-mod docutils literal"><span class="pre">sklearn.base</span></tt></a>.BaseEstimator<a class="headerlink" href="#sklearn-base-baseestimator" title="Permalink to this headline"></a></h1>
173173
<dl class="class">
174174
<dt id="sklearn.base.BaseEstimator">
175-
<em class="property">class </em><tt class="descclassname">sklearn.base.</tt><tt class="descname">BaseEstimator</tt><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/718a7df/sklearn/base.py#L169"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.BaseEstimator" title="Permalink to this definition"></a></dt>
175+
<em class="property">class </em><tt class="descclassname">sklearn.base.</tt><tt class="descname">BaseEstimator</tt><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/0cb93b0/sklearn/base.py#L169"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.BaseEstimator" title="Permalink to this definition"></a></dt>
176176
<dd><p>Base class for all estimators in scikit-learn</p>
177177
<p class="rubric">Notes</p>
178178
<p>All estimators should specify all the parameters that can be set
@@ -201,7 +201,7 @@ <h1><a class="reference internal" href="../classes.html#module-sklearn.base" tit
201201

202202
<dl class="method">
203203
<dt id="sklearn.base.BaseEstimator.get_params">
204-
<tt class="descname">get_params</tt><big>(</big><em>deep=True</em><big>)</big><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/718a7df/sklearn/base.py#L206"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.BaseEstimator.get_params" title="Permalink to this definition"></a></dt>
204+
<tt class="descname">get_params</tt><big>(</big><em>deep=True</em><big>)</big><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/0cb93b0/sklearn/base.py#L206"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.BaseEstimator.get_params" title="Permalink to this definition"></a></dt>
205205
<dd><p>Get parameters for this estimator.</p>
206206
<table class="docutils field-list" frame="void" rules="none">
207207
<col class="field-name" />
@@ -226,7 +226,7 @@ <h1><a class="reference internal" href="../classes.html#module-sklearn.base" tit
226226

227227
<dl class="method">
228228
<dt id="sklearn.base.BaseEstimator.set_params">
229-
<tt class="descname">set_params</tt><big>(</big><em>**params</em><big>)</big><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/718a7df/sklearn/base.py#L243"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.BaseEstimator.set_params" title="Permalink to this definition"></a></dt>
229+
<tt class="descname">set_params</tt><big>(</big><em>**params</em><big>)</big><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/0cb93b0/sklearn/base.py#L243"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.BaseEstimator.set_params" title="Permalink to this definition"></a></dt>
230230
<dd><p>Set the parameters of this estimator.</p>
231231
<p>The method works on simple estimators as well as on nested objects
232232
(such as pipelines). The former have parameters of the form

dev/modules/generated/sklearn.base.TransformerMixin.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
<h1><a class="reference internal" href="../classes.html#module-sklearn.base" title="sklearn.base"><tt class="xref py py-mod docutils literal"><span class="pre">sklearn.base</span></tt></a>.TransformerMixin<a class="headerlink" href="#sklearn-base-transformermixin" title="Permalink to this headline"></a></h1>
173173
<dl class="class">
174174
<dt id="sklearn.base.TransformerMixin">
175-
<em class="property">class </em><tt class="descclassname">sklearn.base.</tt><tt class="descname">TransformerMixin</tt><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/718a7df/sklearn/base.py#L435"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.TransformerMixin" title="Permalink to this definition"></a></dt>
175+
<em class="property">class </em><tt class="descclassname">sklearn.base.</tt><tt class="descname">TransformerMixin</tt><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/0cb93b0/sklearn/base.py#L435"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.TransformerMixin" title="Permalink to this definition"></a></dt>
176176
<dd><p>Mixin class for all transformers in scikit-learn.</p>
177177
<p class="rubric">Methods</p>
178178
<table border="1" class="longtable docutils">
@@ -194,7 +194,7 @@ <h1><a class="reference internal" href="../classes.html#module-sklearn.base" tit
194194

195195
<dl class="method">
196196
<dt id="sklearn.base.TransformerMixin.fit_transform">
197-
<tt class="descname">fit_transform</tt><big>(</big><em>X</em>, <em>y=None</em>, <em>**fit_params</em><big>)</big><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/718a7df/sklearn/base.py#L438"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.TransformerMixin.fit_transform" title="Permalink to this definition"></a></dt>
197+
<tt class="descname">fit_transform</tt><big>(</big><em>X</em>, <em>y=None</em>, <em>**fit_params</em><big>)</big><a class="reference external" href="https://github.com/scikit-learn/scikit-learn/blob/0cb93b0/sklearn/base.py#L438"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#sklearn.base.TransformerMixin.fit_transform" title="Permalink to this definition"></a></dt>
198198
<dd><p>Fit to data, then transform it.</p>
199199
<p>Fits transformer to X and y with optional parameters fit_params
200200
and returns a transformed version of X.</p>

0 commit comments

Comments
 (0)