DOC what's new, minor doc improvements

This commit is contained in:
Andreas Mueller 2012-01-20 19:39:35 +01:00
parent 015da641ed
commit cc567ee3c8
3 changed files with 14 additions and 2 deletions

View File

@ -78,6 +78,8 @@ model selection:
linear_model.LassoLarsIC
.. _out_of_bag:
Out of Bag Estimates
--------------------
@ -91,9 +93,12 @@ This estimate comes "for free" as no addictional data is needed and
can be used for model selection.
This is currently implemented in the following classes:
.. autosummary::
:toctree: generated/
:template: class.rst
ensemble.RandomForestClassifier
ensemble.RandomForestRegressor
ensemble.ExtraTreesClassifier
ensemble.ExtraTreesRegressor

View File

@ -5,6 +5,13 @@
0.11
====
Changelog
---------
- :ref:`out_of_bag` of generalization error for :ref:`ensemble`
by `Andreas Müller`_.
API changes summary
-------------------

View File

@ -482,7 +482,7 @@ class RandomForestClassifier(ForestClassifier):
`oob_score_` : float
Score of the training dataset obtained using an out-of-bag estimate.
`oob_decision_function_` : array, shape = [n_samples, n_classes]
`oob_decision_function_` : array, shape = [n_samples, n_classes]
Decision function computed with out-of-bag estimate on the training set.
@ -726,7 +726,7 @@ class ExtraTreesClassifier(ForestClassifier):
`oob_score_` : float
Score of the training dataset obtained using an out-of-bag estimate.
`oob_decision_function_` : array, shape = [n_samples, n_classes]
`oob_decision_function_` : array, shape = [n_samples, n_classes]
Decision function computed with out-of-bag estimate on the training set.
Notes