-
-
Notifications
You must be signed in to change notification settings - Fork 320
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 786 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 786 Bytes
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-hierarchical"
version = "0.8.1"
authors = ["Lorenz Schmidt <lorenz.schmidt@mailbox.org>"]
edition = "2018"
description = "Agglomerative Hierarchical clustering"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-ml/linfa"
readme = "README.md"
keywords = [
"hierachical",
"agglomerative",
"clustering",
"machine-learning",
"linfa",
]
categories = ["algorithms", "mathematics", "science"]
[dependencies]
ndarray = { version = "0.16" }
kodama = "0.2"
thiserror = "2"
linfa = { version = "0.8.1", path = "../.." }
linfa-kernel = { version = "0.8.1", path = "../linfa-kernel" }
[dev-dependencies]
rand = "0.8"
ndarray-rand = "0.15"
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
"iris",
] }