From e106f85e1d829192aa8360c30de71e21834ba622 Mon Sep 17 00:00:00 2001 From: Adam Li Date: Fri, 23 Feb 2024 12:28:48 -0500 Subject: [PATCH] Fix default in docs Signed-off-by: Adam Li --- sktree/ensemble/_honest_forest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sktree/ensemble/_honest_forest.py b/sktree/ensemble/_honest_forest.py index ec146bda2..f263bcd90 100644 --- a/sktree/ensemble/_honest_forest.py +++ b/sktree/ensemble/_honest_forest.py @@ -156,7 +156,7 @@ class HonestForestClassifier(ForestClassifier, ForestClassifierMixin): ``N``, ``N_t``, ``N_t_R`` and ``N_t_L`` all refer to the weighted sum, if ``sample_weight`` is passed. - bootstrap : bool, default=True + bootstrap : bool, default=False Whether bootstrap samples are used when building trees. If False, the whole dataset is used to build each tree.