From b62143df5465831b41d3bafe6a0d93a5d3a72ed4 Mon Sep 17 00:00:00 2001 From: Guillaume Lemaitre Date: Sat, 19 Jan 2019 11:54:26 +0100 Subject: [PATCH] DOC: add borderline- and SVM-SMOTE to the API doc (#530) --- doc/api.rst | 2 ++ doc/whats_new/v0.5.rst | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/doc/api.rst b/doc/api.rst index c43a438c1..750c402f8 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -70,9 +70,11 @@ Prototype selection :template: class.rst over_sampling.ADASYN + over_sampling.BorderlineSMOTE over_sampling.RandomOverSampler over_sampling.SMOTE over_sampling.SMOTENC + over_sampling.SVMSMOTE .. _combine_ref: diff --git a/doc/whats_new/v0.5.rst b/doc/whats_new/v0.5.rst index 3640ab610..964a4ad7b 100644 --- a/doc/whats_new/v0.5.rst +++ b/doc/whats_new/v0.5.rst @@ -13,6 +13,10 @@ Documentation strategy for the over-sampling and under-sampling. :issue:`525` by :user:`Ariel Rossanigo `. +- Add :class:`imblearn.over_sampling.BorderlineSMOTE` and + :class:`imblearn.over_sampling.SVMSMOTE` in the API documenation. + :issue:`530` by :user:`Guillaume Lemaitre `. + Maintenance ...........