Skip to content

Commit

Permalink
release 0.6.0 (#110)
Browse files Browse the repository at this point in the history
* release 0.6.0

* update
  • Loading branch information
crflynn authored Aug 24, 2021
1 parent 80f2751 commit c15d4ef
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Release Changelog
-----------------

0.6.0 (2021-08-23)
~~~~~~~~~~~~~~~~~~

* Remove numpy from dependency spec; numpy is already a requirement of scikit-learn
* Change tree detail training code to be optional in ensembles due to expensive operations
* Change quantile regression to use ``np.quantile`` in lieu of `np.nanquantile`` for faster predictions
* Fix bug in tree classmethods when setting ``sample_fraction``
* Added more documentation around tree detail calculations

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

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.5.0"
version = "0.6.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.5.0"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion skranger/ensemble/classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class RangerForestClassifier(BaseRangerForest, ClassifierMixin, BaseEstimator):
:param bool save_memory: Save memory at the cost of speed growing trees.
:param int seed: Random seed value.
:param bool enable_tree_details: When ``True``, perform additional calculations
for building the underlying decision trees. Must be enabled for ``estimators_``
for detailing the underlying decision trees. Must be enabled for ``estimators_``
and ``get_estimator`` to work. Very slow.
:ivar ndarray classes\_: The class labels determined from the fit input ``y``.
Expand Down
2 changes: 1 addition & 1 deletion skranger/ensemble/regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class RangerForestRegressor(BaseRangerForest, RegressorMixin, BaseEstimator):
:param bool save_memory: Save memory at the cost of speed growing trees.
:param int seed: Random seed value.
:param bool enable_tree_details: When ``True``, perform additional calculations
for building the underlying decision trees. Must be enabled for ``estimators_``
for detailing the underlying decision trees. Must be enabled for ``estimators_``
and ``get_estimator`` to work. Very slow.
:ivar int n_features_in\_: The number of features (columns) from the fit input
Expand Down
2 changes: 1 addition & 1 deletion skranger/ensemble/survival.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class RangerForestSurvival(BaseRangerForest, BaseEstimator):
:param int n_jobs: The number of threads. Default is number of CPU cores.
:param int seed: Random seed value.
:param bool enable_tree_details: When ``True``, perform additional calculations
for building the underlying decision trees. Must be enabled for ``estimators_``
for detailing the underlying decision trees. Must be enabled for ``estimators_``
and ``get_estimator`` to work. Very slow.
:ivar int n_features_in\_: The number of features (columns) from the fit input ``X``.
Expand Down

0 comments on commit c15d4ef

Please sign in to comment.