Skip to content

Commit 9c12fc4

Browse files
committed
DOC add entry in changelog
1 parent 88f057d commit 9c12fc4

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

doc/whats_new/0.13.rst

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
11
.. _changes_0_13:
22

3-
Version 0.13.0 (Under development)
4-
==================================
3+
Version 0.13.0
4+
==============
55

6-
**TBD**
6+
**December 20, 2024**
77

88
Changelog
99
---------
1010

1111
Bug fixes
1212
.........
1313

14+
- Fix `get_metadata_routing` in :class:`~imblearn.pipeline.Pipeline` such that one
15+
can use a sampler with metadata routing.
16+
:pr:`1115` by :user:`Guillaume Lemaitre <glemaitre>`.
17+
1418
Compatibility
1519
.............
1620

21+
- Compatibility with scikit-learn 1.6
22+
:pr:`1109` by :user:`Guillaume Lemaitre <glemaitre>`.
23+
1724
Deprecations
1825
............
1926

20-
Enhancements
21-
............
27+
- :class:`~imblearn.pipeline.Pipeline` now uses
28+
:func:`~sklearn.utils.check_is_fitted` instead of
29+
:func:`~sklearn.utils.check_fitted` to check if the pipeline is fitted. In 0.15, it
30+
will raise an error instead of a warning.
31+
:pr:`1109` by :user:`Guillaume Lemaitre <glemaitre>`.
32+
33+
- `algorithm` parameter in :class:`~imblearn.ensemble.RUSBoostClassifier` is now
34+
deprecated and will be removed in 0.14.
35+
:pr:`1109` by :user:`Guillaume Lemaitre <glemaitre>`.

imblearn/ensemble/_weight_boosting.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,7 @@ def _boost_discrete(self, iboost, X, y, sample_weight, random_state):
396396

397397
return sample_weight, estimator_weight, estimator_error
398398

399+
# TODO(0.14): remove this method because algorithm is deprecated.
399400
def _boost(self, iboost, X, y, sample_weight, random_state):
400401
if self.algorithm != "deprecated":
401402
warnings.warn(

0 commit comments

Comments
 (0)