Skip to content

Commit e291db3

Browse files
committed
Pushing the docs to dev/ for branch: main, commit c08afded996d08a7dde8441708ed9ca4cbb40559
1 parent cdb1887 commit e291db3

File tree

1,324 files changed

+7155
-7296
lines changed

Some content is hidden

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

1,324 files changed

+7155
-7296
lines changed

dev/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 9b7d2f79dd6a18e64875292a9cfb6796
3+
config: 8c04582673397c4c20a90bb3f93b2d44
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.

dev/_downloads/4e46f015ab8300f262e6e8775bcdcf8a/plot_adaboost_multiclass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# ---------------------------------
5757
# We train the :class:`~sklearn.ensemble.AdaBoostClassifier`. The estimator
5858
# utilizes boosting to improve the classification accuracy. Boosting is a method
59-
# designed to train weak learners (i.e. `base_estimator`) that learn from their
59+
# designed to train weak learners (i.e. `estimator`) that learn from their
6060
# predecessor's mistakes.
6161
#
6262
# Here, we define the weak learner as a

dev/_downloads/607c99671400a5055ef516d1aabd00c1/plot_adaboost_multiclass.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"cell_type": "markdown",
5959
"metadata": {},
6060
"source": [
61-
"## Training the `AdaBoostClassifier`\nWe train the :class:`~sklearn.ensemble.AdaBoostClassifier`. The estimator\nutilizes boosting to improve the classification accuracy. Boosting is a method\ndesigned to train weak learners (i.e. `base_estimator`) that learn from their\npredecessor's mistakes.\n\nHere, we define the weak learner as a\n:class:`~sklearn.tree.DecisionTreeClassifier` and set the maximum number of\nleaves to 8. In a real setting, this parameter should be tuned. We set it to a\nrather low value to limit the runtime of the example.\n\nThe `SAMME` algorithm build into the\n:class:`~sklearn.ensemble.AdaBoostClassifier` then uses the correct or\nincorrect predictions made be the current weak learner to update the sample\nweights used for training the consecutive weak learners. Also, the weight of\nthe weak learner itself is calculated based on its accuracy in classifying the\ntraining examples. The weight of the weak learner determines its influence on\nthe final ensemble prediction.\n\n"
61+
"## Training the `AdaBoostClassifier`\nWe train the :class:`~sklearn.ensemble.AdaBoostClassifier`. The estimator\nutilizes boosting to improve the classification accuracy. Boosting is a method\ndesigned to train weak learners (i.e. `estimator`) that learn from their\npredecessor's mistakes.\n\nHere, we define the weak learner as a\n:class:`~sklearn.tree.DecisionTreeClassifier` and set the maximum number of\nleaves to 8. In a real setting, this parameter should be tuned. We set it to a\nrather low value to limit the runtime of the example.\n\nThe `SAMME` algorithm build into the\n:class:`~sklearn.ensemble.AdaBoostClassifier` then uses the correct or\nincorrect predictions made be the current weak learner to update the sample\nweights used for training the consecutive weak learners. Also, the weight of\nthe weak learner itself is calculated based on its accuracy in classifying the\ntraining examples. The weight of the weak learner determines its influence on\nthe final ensemble prediction.\n\n"
6262
]
6363
},
6464
{

0 commit comments

Comments
 (0)