File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ scikit-learn:
39
39
The following samplers will give different results due to change linked to
40
40
the random state internal usage:
41
41
42
+ - :class: `imblearn.over_sampling.ADASYN `
42
43
- :class: `imblearn.over_sampling.SMOTENC `
43
44
44
45
Bug fixes
@@ -100,13 +101,14 @@ Enhancement
100
101
:pr: `644 ` by :user: `Guillaume Lemaitre <glemaitre> `.
101
102
102
103
- The samples generation in
104
+ :class: `imblearn.over_sampling.ADASYN `,
103
105
:class: `imblearn.over_sampling.SMOTE `,
104
106
:class: `imblearn.over_sampling.BorderlineSMOTE `,
105
107
:class: `imblearn.over_sampling.SVMSMOTE `,
106
108
:class: `imblearn.over_sampling.KMeansSMOTE `,
107
109
:class: `imblearn.over_sampling.SMOTENC ` is now vectorize with giving
108
110
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> `.
110
112
111
113
Deprecation
112
114
...........
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ class BalancedRandomForestClassifier(RandomForestClassifier):
206
206
subtree with the largest cost complexity that is smaller than
207
207
``ccp_alpha`` will be chosen. By default, no pruning is performed.
208
208
209
- .. versionadded:: 0.22
209
+ .. versionadded:: 0.6
210
210
Added in `scikit-learn` in 0.22
211
211
212
212
max_samples : int or float, default=None
@@ -220,7 +220,7 @@ class BalancedRandomForestClassifier(RandomForestClassifier):
220
220
the number of samples given in `max_samples` and the number of samples
221
221
obtained after resampling.
222
222
223
- .. versionadded:: 0.22
223
+ .. versionadded:: 0.6
224
224
Added in `scikit-learn` in 0.22
225
225
226
226
Attributes
You can’t perform that action at this time.
0 commit comments