-
-
Notifications
You must be signed in to change notification settings - Fork 253
/
Cargo.toml
71 lines (59 loc) · 1.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "linfa-preprocessing"
version = "0.7.0"
authors = ["Sauro98 <[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", "preprocessing"]
categories = ["algorithms", "mathematics", "science"]
[features]
blas = ["ndarray-linalg", "linfa/ndarray-linalg"]
serde = ["serde_crate", "ndarray/serde", "serde_regex"]
[dependencies]
linfa = { version = "0.7.0", path = "../.." }
ndarray = { version = "0.15", features = ["approx"] }
ndarray-linalg = { version = "0.16", optional = true }
linfa-linalg = { version = "0.1", default-features = false }
ndarray-stats = "0.5"
thiserror = "1.0"
approx = { version = "0.4" }
ndarray-rand = { version = "0.14" }
unicode-normalization = "0.1.8"
regex = "1.4.5"
encoding = "0.2"
sprs = { version = "0.11.0", default-features = false }
serde_regex = { version = "1.1", optional = true }
[dependencies.serde_crate]
package = "serde"
optional = true
version = "1.0"
default-features = false
features = ["std", "derive"]
[dev-dependencies]
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = [
"diabetes",
"winequality",
] }
linfa-bayes = { version = "0.7.0", path = "../linfa-bayes" }
iai = "0.1"
curl = "0.4.35"
flate2 = "1.0.20"
tar = "0.4.33"
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] }
criterion = "0.4.0"
statrs = "0.16.0"
[[bench]]
name = "vectorizer_bench"
harness = false
[[bench]]
name = "linear_scaler_bench"
harness = false
[[bench]]
name = "whitening_bench"
harness = false
[[bench]]
name = "norm_scaler_bench"
harness = false