Releases: mlondschien/biosphere
Releases · mlondschien/biosphere
biosphere 0.3.0
0.3.0 - (2022-03-14)
-
Breaking changes:
- The arguments
mtry
andseed
toDecisionTree
andRandomForest
have been renamed tomax_features
andrandom_state
, aligning them with their scikit-learn counterparts. - Supplying
n_jobs=None
will now result in no parallelization, aligning its behaviour with scikit-learn. To use all processes, usen_jobs=-1
.
- The arguments
-
New features:
- The
max_features
parameter for classesDecisionTree
andRandomForest
can now be supplied with a fraction, an integer,None
and"sqrt"
.
- The
biosphere 0.2.2
0.2.2 - (2022-02-22)
- Other changes:
- Speedup of
DecisisionTreeNode.split_samples
resulting in overall 6 - 20% faster tree fitting.
- Speedup of
biosphere 0.2.1
0.2.1 - (2022-01-13)
- Bug fixes:
DecisionTreeNode
no longer returns wrong leaf value if splitting is stopped due tomin_samples_split
.
biosphere 0.2.0
0.2.0 - (2022-01-11)
New features:
- Parallelization for
RandomForest::fit
andRandomForest::fit_predict_oob
.
biosphere 0.1.0
0.1.0 - (2021-12-30)
Initial release of biosphere
.