Skip to content

[MRG] DOC cleaning up what's new for 0.19 #9252

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 26 commits into from
Jul 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
271f339
DOC cleaning up what's new for 0.19
jnothman Jun 30, 2017
b504e9e
More cleaning up
jnothman Jun 30, 2017
24c742b
More cleaning up
jnothman Jun 30, 2017
187ee22
Deprecations
jnothman Jul 1, 2017
6e9066a
Merge branch 'master' into whatsnew-0.19
jnothman Jul 1, 2017
37df822
Clean up merge
jnothman Jul 1, 2017
cbaeb25
Merge branch 'master' into whatsnew-0.19
jnothman Jul 4, 2017
ce53580
Update
jnothman Jul 4, 2017
89d5ea9
TODOs to prose and minor changes
jnothman Jul 5, 2017
4b65c64
Merge branch 'master' into whatsnew-0.19
jnothman Jul 5, 2017
736e93f
Changed models and minor fixes
jnothman Jul 5, 2017
8d1fff8
sort
jnothman Jul 5, 2017
acc4e31
Merge in 0.18.2 docs
jnothman Jul 5, 2017
8c27599
Missing entry from 0.18 logs
jnothman Jul 6, 2017
0b8b79f
Optimistically add some features to highlights
jnothman Jul 6, 2017
eb05651
Forgotten user directive
lesteve Jul 6, 2017
5cc2b28
Fix alignment
lesteve Jul 6, 2017
9643fc4
Cleaning up for Andy's comments
jnothman Jul 7, 2017
6a9b67c
Merge branch 'master' into whatsnew-0.19
jnothman Jul 7, 2017
08fc42c
Mention beta_loss=0 speedup
jnothman Jul 7, 2017
1b9c439
Merge branch 'whatsnew-0.19' of github.com:jnothman/scikit-learn into…
jnothman Jul 7, 2017
6c39897
Merge branch 'master' into whatsnew-0.19
jnothman Jul 10, 2017
6aa9fd0
Update
jnothman Jul 10, 2017
e4e44a1
Merge branch 'master' into whatsnew-0.19
jnothman Jul 12, 2017
09878d4
Clean up new what's new entries
jnothman Jul 12, 2017
0312156
DOC Add changes missed from what's new
jnothman Jul 13, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions doc/modules/classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -724,8 +724,6 @@ Kernels:
linear_model.PassiveAggressiveClassifier
linear_model.PassiveAggressiveRegressor
linear_model.Perceptron
linear_model.RandomizedLasso
linear_model.RandomizedLogisticRegression
linear_model.RANSACRegressor
linear_model.Ridge
linear_model.RidgeClassifier
Expand Down Expand Up @@ -1392,6 +1390,18 @@ Recently deprecated
===================


To be removed in 0.21
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nitpickiest nitpick: shouldn't that go below removed in 0.20? though no strong opinion.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mostly the point of listing them is so that autodoc generates. Order shmorder.

---------------------

.. autosummary::
:toctree: generated/
:template: deprecated_class.rst

linear_model.RandomizedLasso
linear_model.RandomizedLogisticRegression
neighbors.LSHForest


To be removed in 0.20
---------------------

Expand Down
2 changes: 2 additions & 0 deletions doc/modules/pipeline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ i.e. if the last estimator is a classifier, the :class:`Pipeline` can be used
as a classifier. If the last estimator is a transformer, again, so is the
pipeline.

.. _pipeline_cache:

Caching transformers: avoid repeated computation
-------------------------------------------------

Expand Down
Loading