-
-
Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathCargo.toml
33 lines (25 loc) · 923 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
[package]
name = "linfa-tsne"
version = "0.7.1"
authors = ["Lorenz Schmidt <[email protected]>"]
edition = "2018"
description = "Barnes-Hut t-distributed stochastic neighbor embedding"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-ml/linfa"
readme = "README.md"
keywords = ["tsne", "visualization", "clustering", "machine-learning", "linfa"]
categories = ["algorithms", "mathematics", "science"]
[dependencies]
thiserror = "1.0"
ndarray = { version = "0.15" }
ndarray-rand = "0.14"
bhtsne = "0.4.0"
pdqselect = "=0.1.0"
linfa = { version = "0.7.1", path = "../.." }
[dev-dependencies]
rand = "0.8"
approx = "0.4"
linfa-datasets = { version = "0.7.1", path = "../../datasets", features = ["iris"] }
linfa-reduction = { version = "0.7.1", path = "../linfa-reduction" }
[target.'cfg(not(target_family = "windows"))'.dev-dependencies]
mnist = { version = "0.5", features = ["download"] }