Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:51:02 +08:00
commit b092d0393c
11 changed files with 371 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# Scripts
Bundled resources for clustering-algorithm-runner skill
- [ ] run_kmeans.py: Executes K-means clustering with configurable parameters.
- [ ] run_dbscan.py: Executes DBSCAN clustering with configurable parameters.
- [ ] run_hierarchical.py: Executes hierarchical clustering with configurable parameters.
- [ ] data_loader.py: Loads data from various formats (CSV, JSON) into a standardized format for clustering.
- [ ] cluster_evaluator.py: Evaluates the performance of clustering algorithms using metrics like silhouette score and Davies-Bouldin index.