Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/navdeep-G/h2o3-pam

Implementation of Partitioning Around Medoids (PAM) in H2O-3
https://github.com/navdeep-G/h2o3-pam

big-data clustering clustering-algorithm data-science distributed h2o h2o-3 java machine-learning medoids multithreading pam unsupervised-learning

Last synced: 3 months ago
JSON representation

Implementation of Partitioning Around Medoids (PAM) in H2O-3

Lists

README

        

# Partitioning Around Medoids (PAM)

## Implementation of Partitioning Around Medoids (PAM) in [H2O-3](https://github.com/h2oai/h2o-3)

### Pros:
- Deterministic in nature
- Outperforms k-means for some applications

### Cons:
- Inherently `O(n^2)` time and possibly space depending on implementation

### References:
* pp.102-104 of `Finding Groups in Data by Kaufman and Rousseeuw`.
* [https://en.wikipedia.org/wiki/K-medoids](https://en.wikipedia.org/wiki/K-medoids)
* [https://en.wikibooks.org/wiki/Data_Mining_Algorithms_In_R/Clustering/Partitioning_Around_Medoids_(PAM)](https://en.wikibooks.org/wiki/Data_Mining_Algorithms_In_R/Clustering/Partitioning_Around_Medoids_(PAM))