Skip to content

Releases: mlondschien/biosphere

biosphere 0.3.0

14 Mar 17:37
805a5be
Compare
Choose a tag to compare

0.3.0 - (2022-03-14)

  • Breaking changes:

    • The arguments mtry and seed to DecisionTree and RandomForest have been renamed to max_features and random_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, use n_jobs=-1.
  • New features:

    • The max_features parameter for classes DecisionTree and RandomForest can now be supplied with a fraction, an integer, None and "sqrt".

biosphere 0.2.2

22 Feb 13:44
9caf60f
Compare
Choose a tag to compare

0.2.2 - (2022-02-22)

  • Other changes:
    • Speedup of DecisisionTreeNode.split_samples resulting in overall 6 - 20% faster tree fitting.

biosphere 0.2.1

13 Jan 12:49
46d70c8
Compare
Choose a tag to compare

0.2.1 - (2022-01-13)

  • Bug fixes:
    • DecisionTreeNode no longer returns wrong leaf value if splitting is stopped due to min_samples_split.

biosphere 0.2.0

11 Jan 11:09
d185dfb
Compare
Choose a tag to compare

0.2.0 - (2022-01-11)

New features:

  • Parallelization for RandomForest::fit and RandomForest::fit_predict_oob.

biosphere 0.1.0

30 Dec 11:15
d4d7cef
Compare
Choose a tag to compare

0.1.0 - (2021-12-30)

Initial release of biosphere.