date: 2024-12-24
title: ML-Distance Measure
status: DONE
author:
  - AllenYGY
tags:
  - NOTE
  - DistanceMeasure
  - Clustering
  - ML
publish: TrueML-Distance Measure
Measuring the distance of two clusters
A few ways to measure the distance of two clusters.
Results in different variations of the algorithm.
| Method | Advantage | Disadvantage | Suitable Use Case | 
|---|---|---|---|
| Single Link | Detects non-convex clusters | Sensitive to noise and outliers | Chain-like, non-convex clusters | 
| Complete Link | Creates tight clusters | Struggles with complex distributions | Compact, tight clustering | 
| Average Link | Balances between single and complete | Higher computational cost | Balanced clustering | 
| Centroids | Computationally efficient | Not suitable for irregular clusters | Spherical, fast computation | 
All the algorithms are at least