Skip to content

Commit 8ca0182

Browse files
davidjsonnArturoAmorQ
authored andcommitted
Minor typos fixups (INRIA#842)
1 parent 36ca1c5 commit 8ca0182

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python_scripts/ensemble_bagging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def generate_data(n_samples=30):
7878
_ = plt.title("Predictions by a single decision tree")
7979

8080
# %% [markdown]
81-
# Let's see how we can use bootstraping to learn several trees.
81+
# Let's see how we can use bootstrapping to learn several trees.
8282
#
8383
# ## Bootstrap resampling
8484
#

python_scripts/linear_models_feature_engineering_classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def plot_decision_boundary(model, title=None):
439439
# - Transformers such as `KBinsDiscretizer` and `SplineTransformer` can be used
440440
# to engineer non-linear features independently for each original feature.
441441
# - As a result, these transformers cannot capture interactions between the
442-
# orignal features (and then would fail on the XOR classification task).
442+
# original features (and then would fail on the XOR classification task).
443443
# - Despite this limitation they already augment the expressivity of the
444444
# pipeline, which can be sufficient for some datasets.
445445
# - They also favor axis-aligned decision boundaries, in particular in the low

0 commit comments

Comments
 (0)