-
-
Notifications
You must be signed in to change notification settings - Fork 320
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 971 Bytes
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "linfa-ensemble"
version = "0.8.1"
edition = "2018"
authors = [
"James Knight <jamesknight@hadean.com>",
"James Kay <james@hadean.com>",
]
description = "A general method for creating ensemble classifiers"
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-ml/linfa"
readme = "README.md"
keywords = ["machine-learning", "linfa", "ensemble"]
categories = ["algorithms", "mathematics", "science"]
[features]
default = []
serde = ["serde_crate", "ndarray/serde"]
[dependencies.serde_crate]
package = "serde"
optional = true
version = "1.0"
default-features = false
features = ["std", "derive"]
[dependencies]
ndarray = { version = "0.16", features = ["rayon", "approx"] }
ndarray-rand = "0.15"
rand = "0.8.5"
linfa = { version = "0.8.1", path = "../.." }
linfa-trees = { version = "0.8.1", path = "../linfa-trees" }
[dev-dependencies]
linfa-datasets = { version = "0.8.1", path = "../../datasets/", features = [
"iris",
] }