forked from rust-ml/linfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (28 loc) · 1.07 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
[package]
name = "linfa-linear"
version = "0.6.0"
authors = [
"Paul Körbitz / Google <[email protected]>",
"VasanthakumarV <[email protected]>"
]
description = "A Machine Learning framework for Rust"
edition = "2018"
license = "MIT/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]
blas = ["ndarray-linalg", "linfa/ndarray-linalg", "argmin/ndarray-linalg"]
[dependencies]
ndarray = { version = "0.15", features = ["approx"] }
linfa-linalg = { version = "0.1", default-features = false }
ndarray-linalg = { version = "0.14", optional = true }
num-traits = "0.2"
argmin = { version = "0.4.6", features = ["ndarray", "ndarray-rand"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
thiserror = "1.0"
linfa = { version = "0.6.0", path = "../..", features=["serde"] }
[dev-dependencies]
linfa-datasets = { version = "0.6.0", path = "../../datasets", features = ["diabetes"] }
approx = "0.4"