Skip to content

Commit 2b8643f

Browse files
author
Guillaume Lemaitre
committed
Update the doc and the notebook
1 parent 23f1ffc commit 2b8643f

File tree

4 files changed

+47
-19
lines changed

4 files changed

+47
-19
lines changed

doc/whats_new.rst

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,32 @@ Version 0.2
1212
Changelog
1313
---------
1414

15+
Bug fixes
16+
~~~~~~~~~
17+
18+
- 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+
- Fixed a bug in :class:`ensemble.EasyEnsemble`, correction of the `random_state` generation. By `Guillaume Lemaitre`_ and `Christos Aridas`_.
20+
1521
New features
1622
~~~~~~~~~~~~
1723

18-
- Added AllKNN under sampling technique.
24+
- Added AllKNN under sampling technique. By `Dayvid Oliveira`_.
1925

2026
API changes summary
2127
~~~~~~~~~~~~~~~~~~~
2228

23-
- Two base classes :class:`BaseBinaryclassSampler` and :class:`BaseMulticlassSampler` have been created to handle the target type and raise warning in case of abnormality.
29+
- Two base classes :class:`BaseBinaryclassSampler` and :class:`BaseMulticlassSampler` have been created to handle the target type and raise warning in case of abnormality. By `Guillaume Lemaitre`_ and `Christos Aridas`_.
2430

2531
Enhancement
2632
~~~~~~~~~~~
2733

28-
- Added support for bumpversion.
29-
- Validate the type of target in binary samplers. A warning is raised for the moment.
34+
- Added support for bumpversion. By `Guillaume Lemaitre`_.
35+
- Validate the type of target in binary samplers. A warning is raised for the moment. By `Guillaume Lemaitre`_ and `Christos Aridas`_.
3036

3137
Documentation changes
3238
~~~~~~~~~~~~~~~~~~~~~
3339

34-
- Added doctest in the documentation.
40+
- Added doctest in the documentation. By `Guillaume Lemaitre`_.
3541

3642
.. _changes_0_1:
3743

@@ -44,8 +50,7 @@ Changelog
4450
API
4551
~~~
4652

47-
- In :class:`ensemble.EasyEnsemble`, correction of the `random_state` generation.
48-
- First release of the stable API.
53+
- First release of the stable API. By `Fernando Nogueira`_, `Guillaume Lemaitre`_, `Christos Aridas`_, and `Dayvid Oliveira`_.
4954

5055
New methods
5156
~~~~~~~~~~~
@@ -76,3 +81,8 @@ New methods
7681
* Ensemble sampling
7782
1. EasyEnsemble
7883
2. BalanceCascade
84+
85+
.. _Guillaume Lemaitre: https://github.com/glemaitre
86+
.. _Christos Aridas: https://github.com/chkoar
87+
.. _Fernando Nogueira: https://github.com/fmfn
88+
.. _Dayvid Oliveira: https://github.com/dvro

examples/plot_unbalanced_dataset.ipynb

Lines changed: 28 additions & 10 deletions
Large diffs are not rendered by default.

examples/under-sampling/plot_nearmiss_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Nearmiss 2
44
==========
55
6-
An illustration of the nearmiss 1 method.
6+
An illustration of the nearmiss 2 method.
77
88
"""
99

examples/under-sampling/plot_nearmiss_3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Nearmiss 3
44
==========
55
6-
An illustration of the nearmiss 1 method.
6+
An illustration of the nearmiss 3 method.
77
88
"""
99

0 commit comments

Comments
 (0)