Skip to content

Commit 2fed48f

Browse files
gnsivaglemaitre
authored andcommitted
[MRG] DOC: Fix spelling in documentation (#432)
1 parent 7c5e5da commit 2fed48f

17 files changed

+23
-19
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ htmlcov/
4242
nosetests.xml
4343
coverage.xml
4444
*,cover
45+
.pytest_cache/
4546

4647
# Translations
4748
*.mo
@@ -66,4 +67,7 @@ target/
6667
*.sln
6768
*.pyproj
6869
*.suo
69-
*.vs
70+
*.vs
71+
72+
# PyCharm
73+
.idea/

imblearn/combine/smote_enn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class SMOTEENN(SamplerMixin):
5050
-----
5151
The method is presented in [1]_.
5252
53-
Supports mutli-class resampling. Refer to SMOTE and ENN regarding the
53+
Supports multi-class resampling. Refer to SMOTE and ENN regarding the
5454
scheme which used.
5555
5656
See :ref:`sphx_glr_auto_examples_combine_plot_smote_enn.py` and

imblearn/combine/smote_tomek.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class SMOTETomek(SamplerMixin):
5757
-----
5858
The methos is presented in [1]_.
5959
60-
Supports mutli-class resampling. Refer to SMOTE and TomekLinks regarding
60+
Supports multi-class resampling. Refer to SMOTE and TomekLinks regarding
6161
the scheme which used.
6262
6363
See :ref:`sphx_glr_auto_examples_combine_plot_smote_tomek.py` and

imblearn/ensemble/balance_cascade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class BalanceCascade(BaseEnsembleSampler):
6363
-----
6464
The method is described in [1]_.
6565
66-
Supports mutli-class resampling. A one-vs.-rest scheme is used as
66+
Supports multi-class resampling. A one-vs.-rest scheme is used as
6767
originally proposed in [1]_.
6868
6969
See :ref:`sphx_glr_auto_examples_ensemble_plot_balance_cascade.py`.

imblearn/ensemble/easy_ensemble.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class EasyEnsemble(BaseEnsembleSampler):
5353
-----
5454
The method is described in [1]_.
5555
56-
Supports mutli-class resampling by sampling each class independently.
56+
Supports multi-class resampling by sampling each class independently.
5757
5858
See :ref:`sphx_glr_auto_examples_ensemble_plot_easy_ensemble.py`.
5959

imblearn/over_sampling/adasyn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ADASYN(BaseOverSampler):
5050
-----
5151
The implementation is based on [1]_.
5252
53-
Supports mutli-class resampling. A one-vs.-rest scheme is used.
53+
Supports multi-class resampling. A one-vs.-rest scheme is used.
5454
5555
See
5656
:ref:`sphx_glr_auto_examples_applications_plot_over_sampling_benchmark_lfw.py`,

imblearn/over_sampling/random_over_sampler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class RandomOverSampler(BaseOverSampler):
3939
4040
Notes
4141
-----
42-
Supports mutli-class resampling by sampling each class independently.
42+
Supports multi-class resampling by sampling each class independently.
4343
4444
See
4545
:ref:`sphx_glr_auto_examples_over-sampling_plot_comparison_over_sampling.py`,

imblearn/over_sampling/smote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class SMOTE(BaseOverSampler):
7777
-----
7878
See the original papers: [1]_, [2]_, [3]_ for more details.
7979
80-
Supports mutli-class resampling. A one-vs.-rest scheme is used as
80+
Supports multi-class resampling. A one-vs.-rest scheme is used as
8181
originally proposed in [1]_.
8282
8383
See

imblearn/under_sampling/prototype_generation/cluster_centroids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class ClusterCentroids(BaseUnderSampler):
6969
7070
Notes
7171
-----
72-
Supports mutli-class resampling by sampling each class independently.
72+
Supports multi-class resampling by sampling each class independently.
7373
7474
See :ref:`sphx_glr_auto_examples_under-sampling_plot_cluster_centroids.py`.
7575

imblearn/under_sampling/prototype_selection/condensed_nearest_neighbour.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class CondensedNearestNeighbour(BaseCleaningSampler):
6262
-----
6363
The method is based on [1]_.
6464
65-
Supports mutli-class resampling. A one-vs.-rest scheme is used when
65+
Supports multi-class resampling. A one-vs.-rest scheme is used when
6666
sampling a class as proposed in [1]_.
6767
6868
See

imblearn/under_sampling/prototype_selection/edited_nearest_neighbours.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class EditedNearestNeighbours(BaseCleaningSampler):
7272
-----
7373
The method is based on [1]_.
7474
75-
Supports mutli-class resampling. A one-vs.-rest scheme is used when
75+
Supports multi-class resampling. A one-vs.-rest scheme is used when
7676
sampling a class as proposed in [1]_.
7777
7878
See
@@ -252,7 +252,7 @@ class RepeatedEditedNearestNeighbours(BaseCleaningSampler):
252252
The method is based on [1]_. A one-vs.-rest scheme is used when
253253
sampling a class as proposed in [1]_.
254254
255-
Supports mutli-class resampling.
255+
Supports multi-class resampling.
256256
257257
See
258258
:ref:`sphx_glr_auto_examples_pipeline_plot_pipeline_classification.py` and
@@ -464,7 +464,7 @@ class without early stopping.
464464
-----
465465
The method is based on [1]_.
466466
467-
Supports mutli-class resampling. A one-vs.-rest scheme is used when
467+
Supports multi-class resampling. A one-vs.-rest scheme is used when
468468
sampling a class as proposed in [1]_.
469469
470470
See :ref:`sphx_glr_auto_examples_under-sampling_plot_enn_renn_allknn.py`.

imblearn/under_sampling/prototype_selection/instance_hardness_threshold.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class InstanceHardnessThreshold(BaseCleaningSampler):
6565
-----
6666
The method is based on [1]_.
6767
68-
Supports mutli-class resampling. A one-vs.-rest scheme is used when
68+
Supports multi-class resampling. A one-vs.-rest scheme is used when
6969
sampling a class as proposed in [1]_.
7070
7171
See

imblearn/under_sampling/prototype_selection/nearmiss.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class NearMiss(BaseUnderSampler):
7171
-----
7272
The methods are based on [1]_.
7373
74-
Supports mutli-class resampling.
74+
Supports multi-class resampling.
7575
7676
See
7777
:ref:`sphx_glr_auto_examples_applications_plot_multi_class_under_sampling.py`

imblearn/under_sampling/prototype_selection/neighbourhood_cleaning_rule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class NeighbourhoodCleaningRule(BaseCleaningSampler):
7272
-----
7373
See the original paper: [1]_.
7474
75-
Supports mutli-class resampling. A one-vs.-rest scheme is used when
75+
Supports multi-class resampling. A one-vs.-rest scheme is used when
7676
sampling a class as proposed in [1]_.
7777
7878
See

imblearn/under_sampling/prototype_selection/one_sided_selection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class OneSidedSelection(BaseCleaningSampler):
5858
-----
5959
The method is based on [1]_.
6060
61-
Supports mutli-class resampling. A one-vs.-one scheme is used when sampling
61+
Supports multi-class resampling. A one-vs.-one scheme is used when sampling
6262
a class as proposed in [1]_. For each class to be sampled, all samples of
6363
this class and the minority class are used during the sampling procedure.
6464

imblearn/under_sampling/prototype_selection/random_under_sampler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class RandomUnderSampler(BaseUnderSampler):
4545
4646
Notes
4747
-----
48-
Supports mutli-class resampling by sampling each class independently.
48+
Supports multi-class resampling by sampling each class independently.
4949
5050
See
5151
:ref:`sphx_glr_auto_examples_plot_sampling_strategy_usage.py` and

imblearn/under_sampling/prototype_selection/tomek_links.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class TomekLinks(BaseCleaningSampler):
5050
-----
5151
This method is based on [1]_.
5252
53-
Supports mutli-class resampling. A one-vs.-rest scheme is used as
53+
Supports multi-class resampling. A one-vs.-rest scheme is used as
5454
originally proposed in [1]_.
5555
5656
See

0 commit comments

Comments
 (0)