Skip to content

Commit

Permalink
Update changelog (#41)
Browse files Browse the repository at this point in the history
* Update changelog.

* Readme.
  • Loading branch information
mlondschien authored Jan 11, 2022
1 parent 1cae798 commit d185dfb
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog

## 0.2.0 - (2022-01-xx)
## 0.2.0 - (2022-01-11)

- Parallization for `RandomForest::fit` and `RandomForest::fit_predict_oob`.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@ authors = ["Malte Londschien <[email protected]>"]
repository = "https://github.com/mlondschien/biosphere/"
readme = "README.md"
license = "BSD-3-Clause"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
exclude = ["/.github", "/changeforest-py", ".pre-commit-config.yml"]

[lib]
name = "biosphere"

[dependencies]
ndarray = "0.15.3"
rand = "0.8.4"
rayon = "1.5.1"
ndarray = "0.15"
rand = "0.8"
rayon = "1.5"

[profile.bench]
incremental = true
debug = true
lto = "fat"

[dev-dependencies]
rstest = "0.11.0"
ndarray-rand = "0.14.0"
rstest = "0.12"
ndarray-rand = "0.14"
csv = "^1"
ndarray-csv = "^0.5"
criterion = "0.3.0"
assert_approx_eq = "1.1.0"
criterion = "0.3"
assert_approx_eq = "1.1"

[[bench]]
name = "bench_utils"
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Biosphere
# Biosphere

Simple, fast random forests.

Currently supports Out-Of-Bag predictions only.
Random forests with a runtime of `O(n d log(n) + n_trees d n max_depth)` instead of `O(n_tree mtry n log(n) max_depth)`.

`biosphere` is available as a rust crate and as a Python package.
8 changes: 4 additions & 4 deletions biosphere-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "biosphere_py"
version = "0.1.0"
version = "0.2.0"
edition = "2018"

[lib]
Expand All @@ -11,7 +11,7 @@ crate-type = ["cdylib"]
name = "biosphere"

[dependencies]
numpy = "0.14.1"
numpy = "0.15"
biosphere = { path = "../" }
ndarray = "0.15.3"
pyo3 = {version = "0.14.5", features = ["extension-module"]}
ndarray = "0.15"
pyo3 = {version = "0.15", features = ["extension-module"]}
2 changes: 1 addition & 1 deletion biosphere-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "biosphere"
description = "Simple, fast random forests"
readme = "README.md"
version = "0.1.0"
version = "0.2.0"
requires-python = ">=3.7"
author = "Malte Londschien <[email protected]>"
urls = {homepage = "https://github.com/mlondschien/biosphere/"}
Expand Down

0 comments on commit d185dfb

Please sign in to comment.