You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[MRG+1] Rename all occurrences of size_ngh to n_neighbors for consistency with scikit-learn (#109)
* Rename all occurrences of size_ngh to n_neighbors for consistency with scikit-learn. * Implement deprecation for smote_enn and enn * Add the changes in documentation * Make the changes in the base function * Minor comment fixes
Copy file name to clipboardExpand all lines: doc/whats_new.rst
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@ Changelog
14
14
15
15
Bug fixes
16
16
~~~~~~~~~
17
-
18
17
- Fixed a bug in :class:`under_sampling.NearMiss` which was not picking the right samples during under sampling for the method 3. By `Guillaume Lemaitre`_.
19
18
- Fixed a bug in :class:`ensemble.EasyEnsemble`, correction of the `random_state` generation. By `Guillaume Lemaitre`_ and `Christos Aridas`_.
20
19
- Fixed a bug in :class:`under_sampling.RepeatedEditedNearestNeighbours`, add additional stopping criterion to avoid that the minority class become a majority class or that a class disappear. By `Guillaume Lemaitre`_.
@@ -38,6 +37,18 @@ Enhancement
38
37
- Added support for bumpversion. By `Guillaume Lemaitre`_.
39
38
- Validate the type of target in binary samplers. A warning is raised for the moment. By `Guillaume Lemaitre`_ and `Christos Aridas`_.
40
39
40
+
New features
41
+
~~~~~~~~~~~~
42
+
43
+
- Added AllKNN under sampling technique.
44
+
- Added support for bumpversion.
45
+
46
+
API changes summary
47
+
~~~~~~~~~~~~~~~~~~~
48
+
49
+
- `size_ngh` has been deprecated in :class:`combine.SMOTEENN`. Use `n_neighbors` instead. By `Guillaume Lemaitre`_, `Christos Aridas`_, and `Dayvid Oliveira` .
50
+
- `size_ngh` has been deprecated in :class:`under_sampling.EditedNearestNeighbors`. Use `n_neighbors` instead. By `Guillaume Lemaitre`_, `Christos Aridas`_, and `Dayvid Oliveira`_.
0 commit comments