Skip to content
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
2 changes: 1 addition & 1 deletion python_scripts/ensemble_bagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def generate_data(n_samples=30):
_ = plt.title("Predictions by a single decision tree")

# %% [markdown]
# Let's see how we can use bootstraping to learn several trees.
# Let's see how we can use bootstrapping to learn several trees.
#
# ## Bootstrap resampling
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def plot_decision_boundary(model, title=None):
# - Transformers such as `KBinsDiscretizer` and `SplineTransformer` can be used
# to engineer non-linear features independently for each original feature.
# - As a result, these transformers cannot capture interactions between the
# orignal features (and then would fail on the XOR classification task).
# original features (and then would fail on the XOR classification task).
# - Despite this limitation they already augment the expressivity of the
# pipeline, which can be sufficient for some datasets.
# - They also favor axis-aligned decision boundaries, in particular in the low
Expand Down