ltc-rs

Crates.ioltc-rs
lib.rsltc-rs
version1.0.2
created_at2025-11-27 14:13:54.464588+00
updated_at2025-11-28 13:26:38.745327+00
descriptionRust implementation of the Lifetime Clustering (LTC) algorithm.
homepage
repositoryhttps://github.com/tum-bgd/ltc
max_upload_size
id1953806
size12,303
Balthasar Teuscher (b4l)

documentation

README

Lifetime Clustering (LTC)

Efficient and robust topology-based clustering.

Example

This is a minimal example. Use cargo add ltc-rs to add it as a dependency to Cargo.toml.

let x: Vec<Vec<f32>> = ...; // data
let eps: f32 = ...; // fixed-radius

let (labels, lifetime) = ltc_rs::fit(&x,eps); // cluster

License

Licensed under either of

at your option.

Commit count: 0

cargo fmt