-
-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (62 loc) · 1.76 KB
/
Cargo.toml
File metadata and controls
74 lines (62 loc) · 1.76 KB
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
72
73
74
[package]
name = "linfa-preprocessing"
version = "0.8.0"
authors = ["Sauro98 <ivadonadi98@gmail.com>"]
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.8.0", path = "../.." }
ndarray = { version = "0.16", features = ["approx"] }
ndarray-linalg = { version = "0.17", optional = true }
linfa-linalg = { version = "0.2", default-features = false }
ndarray-stats = "0.6"
thiserror = "2.0"
approx = "0.5"
ndarray-rand = "0.16"
unicode-normalization = "0.1.8"
regex = "1.4.5"
encoding = "0.2"
sprs = { version = "=0.11.2", default-features = false }
serde_regex = { version = "1.1", optional = true }
itertools = "0.14.0"
[dependencies.serde_crate]
package = "serde"
optional = true
version = "1.0"
default-features = false
features = ["std", "derive"]
[dev-dependencies]
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
"diabetes",
"winequality",
"generate",
] }
linfa-bayes = { version = "0.8.0", path = "../linfa-bayes" }
iai = "0.1"
curl = "0.4.35"
flate2 = "1.0.20"
tar = "0.4.33"
linfa = { version = "0.8.0", path = "../..", features = ["benchmarks"] }
criterion = "0.5"
statrs = "0.18"
# FIXME: Disabled as dataset link is broken
# [[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