kmedoids 0.5.1

k-Medoids clustering with the FasterPAM algorithm
Documentation
[[example]]
name = "orlib-kmedoids"
path = "examples/orlib-kmedoids.rs"
required-features = ["ndarray", "rand", "parallel"]

[[example]]
name = "mnist-kmedoids"
path = "examples/mnist-kmedoids.rs"
required-features = ["ndarray", "rand", "parallel"]
[dependencies.ndarray]
optional = true
version = "0.15"

[dependencies.num-traits]
version = "0.2"

[dependencies.rand]
optional = true
version = "0.8"

[dependencies.rayon]
optional = true
version = "1.9"
[dev-dependencies.byteorder]
version = "1.5"

[dev-dependencies.ndarray]
version = "0.15"

[dev-dependencies.rand]
version = "0.8"

[features]
assertions = []
default = ["rand", "ndarray", "parallel"]
parallel = ["rand", "ndarray", "rayon"]

[lib]
doc = true
name = "kmedoids"
path = "src/mod.rs"
test = true

[package]
authors = ["Erich Schubert <erich.schubert@tu-dortmund.de>", "Lars Lenssen <lars.lenssen@tu-dortmund.de>"]
categories = ["science", "mathematics"]
description = "k-Medoids clustering with the FasterPAM algorithm"
edition = "2021"
homepage = "https://github.com/kno10/rust-kmedoids"
keywords = ["clustering", "machine-learning", "matrix", "optimization", "algorithm"]
license = "GPL-3.0-or-later"
name = "kmedoids"
readme = "README.md"
repository = "https://github.com/kno10/rust-kmedoids"
version = "0.5.1"