File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ scikit-learn:
3939The following samplers will give different results due to change linked to
4040the random state internal usage:
4141
42+ - :class: `imblearn.over_sampling.ADASYN `
4243- :class: `imblearn.over_sampling.SMOTENC `
4344
4445Bug 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
111113Deprecation
112114...........
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments