13个版本 (8个破坏性更新)

0.9.0 2024年8月10日
0.8.0 2024年2月21日
0.7.0 2023年12月21日
0.6.0 2023年8月7日
0.1.0 2020年2月18日

#33机器学习

Download history • Rust 包仓库 408/week @ 2024-05-02 • Rust 包仓库 472/week @ 2024-05-09 • Rust 包仓库 358/week @ 2024-05-16 • Rust 包仓库 533/week @ 2024-05-23 • Rust 包仓库 413/week @ 2024-05-30 • Rust 包仓库 498/week @ 2024-06-06 • Rust 包仓库 439/week @ 2024-06-13 • Rust 包仓库 533/week @ 2024-06-20 • Rust 包仓库 539/week @ 2024-06-27 • Rust 包仓库 329/week @ 2024-07-04 • Rust 包仓库 216/week @ 2024-07-11 • Rust 包仓库 151/week @ 2024-07-18 • Rust 包仓库 370/week @ 2024-07-25 • Rust 包仓库 164/week @ 2024-08-01 • Rust 包仓库 534/week @ 2024-08-08 • Rust 包仓库 402/week @ 2024-08-15 • Rust 包仓库

1,492 每月下载量
3 crates 中使用

Apache-2.0

57KB
1.5K SLoC

petal-clustering

聚类算法集合。目前此crate提供DBSCAN、HDBSCAN和OPTICS。

crates.io Documentation Coverage Status

示例

以下示例展示了如何使用DBSCAN进行点聚类。

use ndarray::array;
use petal_clustering::{Dbscan, Fit};

let points = array![[1., 2.], [2., 2.], [2., 2.3], [8., 7.], [8., 8.], [25., 80.]];
let clustering = Dbscan::new(3.0, 2).fit(&points);

assert_eq!(clustering.0.len(), 2);        // two clusters found
assert_eq!(clustering.0[&0], [0, 1, 2]);  // the first three points in Cluster 0
assert_eq!(clustering.0[&1], [3, 4]);     // [8., 7.] and [8., 8.] in Cluster 1
assert_eq!(clustering.1, [5]);            // [25., 80.] doesn't belong to any cluster

许可证

版权所有 2019-2024 Petabi, Inc.

根据Apache License, Version 2.0 (“许可证”)许可;除非遵守许可证,否则不得使用此crate。

除非适用法律要求或书面同意,否则在许可证下分发的软件按“原样”提供,不提供任何明示或暗示的保证或条件。有关许可证下权限和限制的特定语言,请参阅LICENSE

贡献

除非您明确声明,否则任何有意提交以包含在您的工作中的贡献(根据Apache-2.0许可证定义),均应按上述方式许可,不附加任何额外条款或条件。

依赖关系

~4MB
~86K SLoC