-
-
Notifications
You must be signed in to change notification settings - Fork 252
/
Cargo.toml
38 lines (31 loc) · 975 Bytes
/
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
[package]
name = "linfa-svm"
version = "0.7.0"
edition = "2018"
authors = ["Lorenz Schmidt <lorenz.schmidt@mailbox.org>"]
description = "Support Vector Machines"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-ml/linfa"
readme = "README.md"
keywords = ["svm", "machine-learning", "linfa", "supervised"]
categories = ["algorithms", "mathematics", "science"]
[features]
default = []
serde = ["serde_crate", "ndarray/serde", "linfa-kernel/serde"]
[dependencies.serde_crate]
package = "serde"
optional = true
version = "1.0"
default-features = false
features = ["std", "derive"]
[dependencies]
ndarray = { version = "0.15" }
ndarray-rand = "0.14"
num-traits = "0.2"
thiserror = "1.0"
linfa = { version = "0.7.0", path = "../.." }
linfa-kernel = { version = "0.7.0", path = "../linfa-kernel" }
[dev-dependencies]
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["winequality", "diabetes"] }
rand_xoshiro = "0.6"
approx = "0.4"