Skip to content

[MRG+1] Optimize MSE criterion by avoiding computing constant terms during split optimization. #5203

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 1 commit into from
Sep 7, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 9 additions & 2 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,22 @@ Enhancements

- Allow :func:`datasets.make_multilabel_classification` to output
a sparse ``y``. By Kashif Rasul.

- :class:`cluster.DBSCAN` now accepts a sparse matrix of precomputed
distances, allowing memory-efficient distance precomputation. By
`Joel Nothman`_.

- :class:`tree.DecisionTreeClassifier` now exposes an ``apply`` method
for retrieving the leaf indices samples are predicted as. By
`Daniel Galvez`_ and `Gilles Louppe`_.

- Speed up decision tree regressors, random forest regressors, extra trees
regressors and gradient boosting estimators by computing a proxy
of the impurity improvement during the tree growth. The proxy quantity is
such that the split that maximizes this value also maximizes the impurity
improvement. By `Arnaud Joly`_, `Jacob Schreiber`_ and `Gilles Louppe`_


Bug fixes
.........

Expand Down
Loading