Skip to content

Commit 587ea42

Browse files
MattEdingglemaitre
authored andcommitted
DOC Update What's New v0.6 (#660)
1 parent aa80498 commit 587ea42

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

doc/whats_new/v0.6.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ scikit-learn:
3939
The following samplers will give different results due to change linked to
4040
the random state internal usage:
4141

42+
- :class:`imblearn.over_sampling.ADASYN`
4243
- :class:`imblearn.over_sampling.SMOTENC`
4344

4445
Bug fixes
@@ -100,13 +101,14 @@ Enhancement
100101
:pr:`644` by :user:`Guillaume Lemaitre <glemaitre>`.
101102

102103
- The samples generation in
104+
:class:`imblearn.over_sampling.ADASYN`,
103105
:class:`imblearn.over_sampling.SMOTE`,
104106
:class:`imblearn.over_sampling.BorderlineSMOTE`,
105107
:class:`imblearn.over_sampling.SVMSMOTE`,
106108
:class:`imblearn.over_sampling.KMeansSMOTE`,
107109
:class:`imblearn.over_sampling.SMOTENC` is now vectorize with giving
108110
an additional speed-up when `X` in sparse.
109-
:pr:`596` by :user:`Matt Eding <MattEding>`.
111+
:pr:`596` and :pr:`649` by :user:`Matt Eding <MattEding>`.
110112

111113
Deprecation
112114
...........

imblearn/ensemble/_forest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class BalancedRandomForestClassifier(RandomForestClassifier):
206206
subtree with the largest cost complexity that is smaller than
207207
``ccp_alpha`` will be chosen. By default, no pruning is performed.
208208
209-
.. versionadded:: 0.22
209+
.. versionadded:: 0.6
210210
Added in `scikit-learn` in 0.22
211211
212212
max_samples : int or float, default=None
@@ -220,7 +220,7 @@ class BalancedRandomForestClassifier(RandomForestClassifier):
220220
the number of samples given in `max_samples` and the number of samples
221221
obtained after resampling.
222222
223-
.. versionadded:: 0.22
223+
.. versionadded:: 0.6
224224
Added in `scikit-learn` in 0.22
225225
226226
Attributes

0 commit comments

Comments
 (0)