| Crates.io | ltc-rs |
| lib.rs | ltc-rs |
| version | 1.0.2 |
| created_at | 2025-11-27 14:13:54.464588+00 |
| updated_at | 2025-11-28 13:26:38.745327+00 |
| description | Rust implementation of the Lifetime Clustering (LTC) algorithm. |
| homepage | |
| repository | https://github.com/tum-bgd/ltc |
| max_upload_size | |
| id | 1953806 |
| size | 12,303 |
Efficient and robust topology-based clustering.
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
Licensed under either of
at your option.