From d4ea39a930fb5c2f1ca3384865feaf8ba48d0a72 Mon Sep 17 00:00:00 2001 From: Alexey Stukalov Date: Mon, 18 Dec 2023 20:06:36 -0800 Subject: [PATCH 1/2] ref ClusteringBenchmarks.jl fixes #264 --- README.md | 3 ++- docs/source/validate.md | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f8a39413..206bd821 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ Pkg.add("Clustering") ## See Also -Julia packages providing other clustering methods: +Julia packages providing other clustering methods and performance evaluation: - [QuickShiftClustering.jl](https://github.com/rened/QuickShiftClustering.jl) - [SpectralClustering.jl](https://github.com/lucianolorenti/SpectralClustering.jl) + - [ClusteringBenchmarks.jl](https://github.com/HolyLab/ClusteringBenchmarks.jl) diff --git a/docs/source/validate.md b/docs/source/validate.md index be57af62..11485389 100644 --- a/docs/source/validate.md +++ b/docs/source/validate.md @@ -109,3 +109,8 @@ the partition co-occurrence, see [`counts`](@ref). ```@docs confusion ``` + +## Other packages + +* [ClusteringBenchmarks.jl](https://github.com/HolyLab/ClusteringBenchmarks.jl) provides + benchmark datasets and implements additional methods for evaluating clustering performance. \ No newline at end of file From 23f8cc8b973d35c30ec38e7774a21dfdb3c59611 Mon Sep 17 00:00:00 2001 From: Alexey Stukalov Date: Mon, 18 Dec 2023 20:14:46 -0800 Subject: [PATCH 2/2] README: link to dev docs instead of latest --- README.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 206bd821..b10bd28e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Methods for data clustering and evaluation of clustering quality. [![Build Status](https://github.com/JuliaStats/Clustering.jl/workflows/CI/badge.svg)](https://github.com/JuliaStats/Clustering.jl/actions?query=workflow%3ACI+branch%3Amaster) [![codecov](https://codecov.io/gh/JuliaStats/Clustering.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaStats/Clustering.jl) -**Documentation**: [![][docs-stable-img]][docs-stable-url] [![][docs-latest-img]][docs-latest-url] +**Documentation**: [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] ## Installation @@ -36,15 +36,18 @@ Pkg.add("Clustering") - Rand index - V-Measure -[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg -[docs-latest-url]: http://JuliaStats.github.io/Clustering.jl/latest/ - -[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg -[docs-stable-url]: http://JuliaStats.github.io/Clustering.jl/stable/ - ## See Also Julia packages providing other clustering methods and performance evaluation: - [QuickShiftClustering.jl](https://github.com/rened/QuickShiftClustering.jl) - [SpectralClustering.jl](https://github.com/lucianolorenti/SpectralClustering.jl) - [ClusteringBenchmarks.jl](https://github.com/HolyLab/ClusteringBenchmarks.jl) + +[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg +[docs-dev-url]: http://JuliaStats.github.io/Clustering.jl/dev/ + +[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg +[docs-latest-url]: http://JuliaStats.github.io/Clustering.jl/latest/ + +[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg +[docs-stable-url]: http://JuliaStats.github.io/Clustering.jl/stable/