@@ -450,7 +450,7 @@ class SVMSMOTE(BaseSMOTE):
450450
451451 SMOTENC : Over-sample using SMOTE for continuous and categorical features.
452452
453- SMOTEN : Over-sample using the SMOTE variant specifically for nominal
453+ SMOTEN : Over-sample using the SMOTE variant specifically for categorical
454454 features only.
455455
456456 BorderlineSMOTE : Over-sample using Borderline-SMOTE.
@@ -648,7 +648,7 @@ class SMOTE(BaseSMOTE):
648648 --------
649649 SMOTENC : Over-sample using SMOTE for continuous and categorical features.
650650
651- SMOTEN : Over-sample using the SMOTE variant specifically for nominal
651+ SMOTEN : Over-sample using the SMOTE variant specifically for categorical
652652 features only.
653653
654654 BorderlineSMOTE : Over-sample using the borderline-SMOTE variant.
@@ -743,7 +743,7 @@ def _fit_resample(self, X, y):
743743class SMOTENC (SMOTE ):
744744 """Synthetic Minority Over-sampling Technique for Nominal and Continuous.
745745
746- Unlike :class:`SMOTE`, SMOTE-NC for dataset containing continuous and
746+ Unlike :class:`SMOTE`, SMOTE-NC for dataset containing numerical and
747747 categorical features. However, it is not designed to work with only
748748 categorical features.
749749
@@ -774,7 +774,7 @@ class SMOTENC(SMOTE):
774774 --------
775775 SMOTE : Over-sample using SMOTE.
776776
777- SMOTEN : Over-sample using the SMOTE variant specifically for nominal
777+ SMOTEN : Over-sample using the SMOTE variant specifically for categorical
778778 features only.
779779
780780 SVMSMOTE : Over-sample using SVM-SMOTE variant.
@@ -1068,7 +1068,7 @@ class KMeansSMOTE(BaseSMOTE):
10681068
10691069 SMOTENC : Over-sample using SMOTE for continuous and categorical features.
10701070
1071- SMOTEN : Over-sample using the SMOTE variant specifically for nominal
1071+ SMOTEN : Over-sample using the SMOTE variant specifically for categorical
10721072 features only.
10731073
10741074 SVMSMOTE : Over-sample using SVM-SMOTE variant.
@@ -1272,9 +1272,10 @@ def _fit_resample(self, X, y):
12721272 random_state = _random_state_docstring ,
12731273)
12741274class SMOTEN (SMOTE ):
1275- """Perform SMOTE over -sampling for nominal categorical features only .
1275+ """Synthetic Minority Over -sampling Technique for Nominal .
12761276
1277- This method is refered as SMOTEN in [1]_.
1277+ This method is refered as SMOTEN in [1]_. It expects that the data to
1278+ resample are only made of categorical features.
12781279
12791280 Read more in the :ref:`User Guide <smote_adasyn>`.
12801281
0 commit comments