-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathCargo.toml
41 lines (32 loc) · 1.04 KB
/
Cargo.toml
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
41
[package]
name = "linfa-logistic"
version = "0.7.1"
authors = ["Paul Körbitz / Google <[email protected]>"]
description = "A Machine Learning framework for Rust"
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-ml/linfa"
readme = "README.md"
keywords = ["machine-learning", "linfa", "ai", "ml", "linear"]
categories = ["algorithms", "mathematics", "science"]
[features]
serde = ["serde_crate", "linfa/serde", "ndarray/serde", "argmin/serde1"]
wasm-bindgen = ["argmin/wasm-bindgen"]
[dependencies.serde_crate]
package = "serde"
optional = true
version = "1.0"
[dependencies]
ndarray = { version = "0.15", features = ["approx"] }
ndarray-stats = "0.5.0"
num-traits = "0.2"
argmin = { version = "0.9.0", default-features = false }
argmin-math = { version = "0.3", features = ["ndarray_v0_15-nolinalg"] }
thiserror = "1.0"
linfa = { version = "0.7.1", path = "../.." }
[dev-dependencies]
approx = "0.4"
linfa-datasets = { version = "0.7.1", path = "../../datasets", features = [
"winequality",
] }
rmp-serde = "1"