diff --git a/doc/whats_new/v0.11.rst b/doc/whats_new/v0.11.rst index b36d3a902..8f421ee69 100644 --- a/doc/whats_new/v0.11.rst +++ b/doc/whats_new/v0.11.rst @@ -1,37 +1,5 @@ .. _changes_0_11: -Version 0.11.1 -============== - -Changelog ---------- - -Bug fixes -......... - -- Fix a bug in :class:`~imblearn.over_sampling.SMOTENC` where the entries of the - one-hot encoding should be divided by `sqrt(2)` and not `2`, taking into account that - they are plugged into an Euclidean distance computation. - :pr:`1014` by :user:`Guillaume Lemaitre `. - -- Raise an informative error message when all support vectors are tagged as noise in - :class:`~imblearn.over_sampling.SVMSMOTE`. - :pr:`1016` by :user:`Guillaume Lemaitre `. - -- Fix a bug in :class:`~imblearn.over_sampling.SMOTENC` where the median of standard - deviation of the continuous features was only computed on the minority class. Now, - we are computing this statistic for each class that is up-sampled. - :pr:`1015` by :user:`Guillaume Lemaitre `. - -- Fix a bug in :class:`~imblearn.over_sampling.SMOTENC` such that the case where - the median of standard deviation of the continuous features is null is handled - in the multiclass case as well. - :pr:`1015` by :user:`Guillaume Lemaitre `. - -- Fix a bug in :class:`~imblearn.over_sampling.BorderlineSMOTE` version 2 where samples - should be generated from the whole dataset and not only from the minority class. - :pr:`1023` by :user:`Guillaume Lemaitre `. - Version 0.11.0 ============== diff --git a/doc/whats_new/v0.12.rst b/doc/whats_new/v0.12.rst index df9df54a1..51578a05e 100644 --- a/doc/whats_new/v0.12.rst +++ b/doc/whats_new/v0.12.rst @@ -13,6 +13,29 @@ Changelog Bug fixes ......... +- Fix a bug in :class:`~imblearn.over_sampling.SMOTENC` where the entries of the + one-hot encoding should be divided by `sqrt(2)` and not `2`, taking into account that + they are plugged into an Euclidean distance computation. + :pr:`1014` by :user:`Guillaume Lemaitre `. + +- Raise an informative error message when all support vectors are tagged as noise in + :class:`~imblearn.over_sampling.SVMSMOTE`. + :pr:`1016` by :user:`Guillaume Lemaitre `. + +- Fix a bug in :class:`~imblearn.over_sampling.SMOTENC` where the median of standard + deviation of the continuous features was only computed on the minority class. Now, + we are computing this statistic for each class that is up-sampled. + :pr:`1015` by :user:`Guillaume Lemaitre `. + +- Fix a bug in :class:`~imblearn.over_sampling.SMOTENC` such that the case where + the median of standard deviation of the continuous features is null is handled + in the multiclass case as well. + :pr:`1015` by :user:`Guillaume Lemaitre `. + +- Fix a bug in :class:`~imblearn.over_sampling.BorderlineSMOTE` version 2 where samples + should be generated from the whole dataset and not only from the minority class. + :pr:`1023` by :user:`Guillaume Lemaitre `. + - Fix a bug in :class:`~imblearn.under_sampling.NeighbourhoodCleaningRule` where the `kind_sel="all"` was not working as explained in the literature. :pr:`1012` by :user:`Guillaume Lemaitre `.