在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用ix-cluster
星标0
分支0
更新时间2026年6月20日 21:17
Cluster data using K-Means or DBSCAN
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Cluster data using K-Means or DBSCAN
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test model robustness with adversarial attacks and defenses
Multi-armed bandit simulation — epsilon-greedy, UCB1, Thompson sampling
Benchmark and compare ix algorithm performance
Embedded Redis-like cache with TTL, LRU, pub/sub, and RESP protocol
Category theory primitives — monad laws verification, free-forgetful adjunction
Chaos theory analysis — Lyapunov exponents, bifurcation, attractors, fractals
| name | ix-cluster |
| description | Cluster data using K-Means or DBSCAN |
| disable-model-invocation | true |
Group data points into clusters using unsupervised learning.
When the user has unlabeled data and wants to find natural groupings, segments, or patterns.
If the user doesn't specify k, suggest the elbow method:
use ix_unsupervised::kmeans::KMeans;
use ix_unsupervised::dbscan::DBSCAN;
// K-Means
let model = KMeans::new(k, max_iter, seed);
let assignments = model.fit(&data);
// DBSCAN
let model = DBSCAN::new(eps, min_points);
let labels = model.fit(&data); // -1 = noise