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 在 机器学习
1,492 每月下载量
在 3 crates 中使用
57KB
1.5K SLoC
petal-clustering
聚类算法集合。目前此crate提供DBSCAN、HDBSCAN和OPTICS。
示例
以下示例展示了如何使用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