File: README.md
SPINEX Clustering
SPINEX (Similarity-based Predictions and Explainable Neighbors Exploration) Clustering is an advanced clustering algorithm that combines multiple similarity measures with multi-level analysis capabilities.
Features
- Multiple similarity methods (correlation, spearman, kernel, cosine)
- Multi-level clustering capabilities
- Parallel processing support
- Explainable results with similarity and neighbor analysis
- Automatic threshold determination
- PCA dimensionality reduction option
- Comprehensive evaluation metrics
Installation
pip install spinex-clustering
Quick Start
from spinex_clustering import SPINEX_Clustering
import numpy as np
# Create sample data
X = np.random.randn(100, 10)
# Initialize and fit the clustering model
model = SPINEX_Clustering(
threshold='auto',
use_multi_level=True,
enable_similarity_analysis=True
)
# Get cluster labels
labels = model.fit_predict(X)
# Print first few labels to verify it worked
print("First few cluster labels:", labels[:10])
Documentation
For detailed documentation and examples, visit [documentation link].
License
This project is licensed under the MIT License - see the LICENSE file for details.
Release files for spinex-clustering 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| spinex_clustering-0.0.1.tar.gz | 9.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| spinex_clustering-0.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 17.9 kB
Release files / spinex_clustering-0.0.1.tar.gz
| Download URL | spinex_clustering-0.0.1.tar.gz |
|---|---|
| Size | 9.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
eccd46cf255fae1f2f2f76a07668742b0c12e979a8b885ea266f0ec0b72132e1
|
|
BLAKE2b-256 checksum How to use checksums |
d6eb8a2a61eac80960cd1168c40443f52000dd86d1a3fcd457ea46efac9ccd7e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.12.5
|
Release files / spinex_clustering-0.0.1-py3-none-any.whl
| Download URL | spinex_clustering-0.0.1-py3-none-any.whl |
|---|---|
| Size | 8.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b441b921df3e3c2bd85dc6d9af8934f90871eb8e4222f5417ce54f885103c0e2
|
|
BLAKE2b-256 checksum How to use checksums |
13ab6f58e0b3cf4550dfb75387263470a9ee2750527dd3775de9dcf7e0f6136e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.0.1 CPython/3.12.5
|