Skip to content

Commit b966037

Browse files
authored
DOC Add changelog for 0.2.0 (#102)
1 parent 0508b7e commit b966037

File tree

3 files changed

+35
-7
lines changed

3 files changed

+35
-7
lines changed

doc/changelog.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Changelog
2+
=========
3+
4+
5+
Version 0.2.0
6+
-------------
7+
*April 14, 2021*
8+
9+
- Add :class:`~sklearn_extra.robust.RobustWeightedClassifier`,
10+
:class:`~sklearn_extra.robust.RobustWeightedRegressor` and
11+
:class:`~sklearn_extra.robust.RobustWeightedKMeans` estimators that rely on
12+
iterative reweighting of samples to be robust to
13+
outliers. [`#42 <https://github.com/scikit-learn-contrib/scikit-learn-extra/pull/42>`_].
14+
- Added Common Nearest-Neighbors clustering estimator
15+
:class:`~sklearn_extra.cluster.CommonNNClustering`
16+
[`#64 <https://github.com/scikit-learn-contrib/scikit-learn-extra/pull/64>`_]
17+
- Added PAM algorithm to :class:`~sklearn_extra.cluster.KMedoids` with ``method="pam"`` parameter
18+
which produces better solutions but at higher computational cost
19+
[`#73 <https://github.com/scikit-learn-contrib/scikit-learn-extra/pull/73>`_]
20+
- Binary wheels were uploaded to PyPi, making the installation possible without a C compiler
21+
[`#66 <https://github.com/scikit-learn-contrib/scikit-learn-extra/pull/66>`_]
22+
23+
List of contributors (in alphabetical order)
24+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25+
26+
Christos Aridas, Jan-Oliver Joswig, Timothée Mathieu, Roman Yurchak

doc/contributing.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Contributing
77
We welcome and in fact would love some help.
88

99
How to Contribute
10-
=================
10+
^^^^^^^^^^^^^^^^^
1111

1212
The preferred workflow to contribute is:
1313

@@ -29,7 +29,7 @@ The preferred workflow to contribute is:
2929
5. When you are done, submit a pull request.
3030

3131
Guidelines
32-
==========
32+
^^^^^^^^^^
3333

3434
This is still a very young project, but we do have a few guiding principles:
3535

@@ -40,7 +40,7 @@ This is still a very young project, but we do have a few guiding principles:
4040
5. Format with black
4141

4242
Running Tests
43-
=============
43+
^^^^^^^^^^^^^
4444

4545
To run the tests, use:
4646

@@ -49,7 +49,7 @@ To run the tests, use:
4949
pytest
5050
5151
Easy Issues / Getting Started
52-
=============================
52+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5353

5454
There are usually some issues in the project github page looking for contributors, if not you're welcome to propose some
5555
ideas there, or a great first step is often to just use the library, and add to the examples directory. This helps us

doc/index.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ scikit-learn-extra is a Python module for machine learning that extends scikit-l
2323
auto_examples/index
2424

2525
.. toctree::
26-
:maxdepth: 2
27-
:caption: Project
26+
:maxdepth: 2
27+
:caption: Project
28+
29+
contributing
30+
changelog
2831

29-
contributing

0 commit comments

Comments
 (0)