Skip to content

Commit

Permalink
release 0.5.0 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
crflynn authored Jul 23, 2021
1 parent e615996 commit b5a55ef
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Release Changelog
-----------------

0.5.0 (2021-07-20)
~~~~~~~~~~~~~~~~~~

* Move ``split_select_weights``, ``always_split_features``, ``categorical_features`` params from init to fit methods.
* Sample weight checking is now a base class method.
* Remove sparse matrix args from bindings.
* Fix a bug with the output of ``predict_quantiles`` not being oriented properly for multiple quantiles
* Regression's ``predict_quantiles`` now requires a passed list of quantiles and the default is removed
* Regression's ``predict`` now takes an optional list of quantiles
* Remove ``snp_data`` and ``order_snps`` from bindings
* Moves ``class_weights`` to fit in classifier, and changes the arg type to a dictionary.
* Add ``RangerTreeClassifier``, ``RangerTreeRegressor``, and ``RangerTreeSurvival`` decision tree estimators which inherit between ``RangerMixin`` and ``BaseRangerTree``. Also provide a ``BaseRangerForest`` class for ensemble estimators.
* Add a low level ``Tree`` class which implements most of the ``sklearn.tree._tree.Tree`` interface.
* Fix incorrect documentation for ``num_random_splits``.

0.4.1 (2021-07-04)
~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "skranger"
version = "0.4.1"
version = "0.5.0"
description = "Python bindings for C++ ranger random forests"
authors = ["Flynn <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion skranger/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.1"
__version__ = "0.5.0"

0 comments on commit b5a55ef

Please sign in to comment.