Wrapper around some basic sklearn utilities for clustering.
Project description
Clustering Utilities
This packages provides a simple convenience wrapper around some basic sklearn utilities for clustering. The only function available is eval_clustering().
Installation
pip install clustutils4r
Available Parameters
model: Clustering model object (untrained)
X: Numpy array containing preprocessed, normalized, complete dataset features
gt_labels: Numpy array containing encoded ground-truth labels for X (often not available)
num_runs: No. of times to fit a model
best_model_metric: Metric to use to choose the best model
make_silhoutte_plots: Whether to make silhouette plots for the best model (default = False).
embed_data_in_2d: Whether to compute TSNE embeddings of the X to plotted alongside silhouette plot or plot the first 2 features (default = False).
save_dir: location to store results; directory will be created if it does not exist
save: set True if you want to save all results in save_dir; defaults to False
show: display all results; useful in notebooks; defaults to False
Example Usage
import os
import numpy as np
from sklearn.datasets import make_blobs, load_iris, load_digits
from eval_clustering import eval_clustering
## For testing purposes
rng = np.random.RandomState(0)
n_samples=1000
X, y = make_blobs(n_samples=n_samples, centers=5, n_features=2, cluster_std=0.60, random_state=rng)
save_dir = "results"
os.makedirs(save_dir, exist_ok=True)
best_model, grid_search_results = eval_clustering(
X=X, # dataset to cluster
gt_labels=y, # ground-truth labels; often these aren't available so don't pass this argument
num_runs=10, # number of times to fit a model
best_model_metric="FMI", # metric to use to choose the best model
make_silhoutte_plots=True, embed_data_in_2d=False, # whether to make silhouette plots
show=False, # whether to display the plots; this is used in a notebook
save=True, save_dir="results" # whether to save the plots
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file clustutils4r-1.0.2.tar.gz.
File metadata
- Download URL: clustutils4r-1.0.2.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0465bae02572fcebf1cbb432e25a89daf04d017ec53d9f4b88a06755f2262411
|
|
| MD5 |
66e5a6412bed2bdcd8f0d1e24a708fd3
|
|
| BLAKE2b-256 |
6cba2e13ad6fd2b6afbb1735196d61469be29e02f766235e3d023dbc3679d058
|
File details
Details for the file clustutils4r-1.0.2-py3-none-any.whl.
File metadata
- Download URL: clustutils4r-1.0.2-py3-none-any.whl
- Upload date:
- Size: 21.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99d5ba5dd79a5b70426ba0ba3bd3f4c2bf1b8a3f8eb6f428cc86d8a4b4a5dc6d
|
|
| MD5 |
6bf49754016c4a40d840895e10b3cf61
|
|
| BLAKE2b-256 |
2cfa9127fece987ead98b572ce825c2bf9bd9c80a8ca624588f74699f95696a8
|