scikit-learn/examples/ensemble
Tim Head 07cede74ca Multitarget regression meta estimator
Register OneVsRestRegressor as meta estimator

Rename to a more sensible name

Parallel predict and sparse support

Started MultiOutput documentation

Move code to new file multioutput.py

Continuing the move to new multioutput module

Added sample weight support

Better test for sample weights and actually support weights

Added a new test using weighted vs repeated samples to
test sample weight support. Uncovered that weights
were not actually passed on to underlying estimator.

Comment on multiprocess overheads

Move parallel_helper to utils.fixes

This helper works around a python2 limitation on pickling
instance methods

Example of multi-output regression with gradient boosting

Switch to uniform weighted score and updated example

The example now uses a RF with and without the MultiOutput
meta estimator

Added note for removing `score` method

Addressing comments on MultiOutputRegressor

MultiOutputregressor better test for weighted samples

Fix ups

Use explicit keyword argument for passing sample weights and
fix random_state on train-test split in the example
2016-03-10 16:06:08 -05:00
..
README.txt move around examples for better structure. 2014-07-17 09:35:30 +02:00
plot_adaboost_hastie_10_2.py DOC: update examples, use matplotlib.pyplot instead of pylab 2014-02-27 10:22:21 +01:00
plot_adaboost_multiclass.py xrange -> range 2014-04-16 23:40:56 -07:00
plot_adaboost_regression.py changed clf to regr in decision tree regression examples 2015-06-17 15:20:23 -04:00
plot_adaboost_twoclass.py plot_adaboost_twoclass.py: minor improvements 2014-10-02 22:41:51 -07:00
plot_bias_variance.py FIX python 3 compat for plot_bias_variance.py 2014-06-23 11:04:39 +02:00
plot_ensemble_oob.py Refined the docstring for plot_ensemble_oob.py. 2015-05-08 22:50:42 +10:00
plot_feature_transformation.py DOC Modify documentation/examples for the new model_selection module 2015-10-29 16:49:23 +01:00
plot_forest_importances.py Now plots based on the number of features in X 2015-10-11 23:09:39 -07:00
plot_forest_importances_faces.py DOC: update examples, use matplotlib.pyplot instead of pylab 2014-02-27 10:22:21 +01:00
plot_forest_iris.py Some more examples updated to use matplotlib.pyplot 2014-05-16 09:42:02 +05:30
plot_gradient_boosting_oob.py DOC Modify documentation/examples for the new model_selection module 2015-10-29 16:49:23 +01:00
plot_gradient_boosting_quantile.py fix wrong confidence interval 2014-05-17 22:28:30 +02:00
plot_gradient_boosting_regression.py MAINT Don't use deprecated 1d X (or deprecated matplotlib stuff) in examples. 2015-12-10 12:11:48 -05:00
plot_gradient_boosting_regularization.py MAINT drop support for NumPy < 1.6.1 2014-03-02 20:13:57 +01:00
plot_isolation_forest.py English language changes to IsolationForest documentation 2015-10-26 08:40:37 +01:00
plot_partial_dependence.py ENH less verbose output in plot_partial_dependence example 2016-01-04 14:19:28 +01:00
plot_random_forest_embedding.py Fix broken examples using RandomTreeEmbeddings 2015-10-16 12:44:04 -04:00
plot_random_forest_regression_multioutput.py Multitarget regression meta estimator 2016-03-10 16:06:08 -05:00
plot_voting_decision_regions.py General spelling fixes 2015-12-16 09:46:42 -08:00
plot_voting_probas.py FIX add missing numpy imports to VotingClassifier examples, pep8 fixes. 2015-05-12 16:41:44 -04:00

README.txt

.. _ensemble_examples:

Ensemble methods
----------------

Examples concerning the :mod:`sklearn.ensemble` module.