🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

autoaicluster

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autoaicluster

Auto AI Clustering: end-to-end segmentation via Python API or local web UI.

pipPyPI
Version
0.2.0
Maintainers
1

Auto AI Cluster

End-to-end clustering (segmentation) via Python API or local web UI.

Install

pip install autoaicluster

One-liner usage

from autoaicluster import autoaicluster

# Launch web UI
url = autoaicluster(ui=True)
print(url)

# Or run AutoML clustering directly on a DataFrame or CSV path
import pandas as pd

df = pd.DataFrame({
    'age':[25,37,29,41,33,52,47,23,39,31],
    'income':[40,72,50,90,60,120,95,35,70,55],
    'city':['A','B','A','B','A','B','B','A','B','A']
})
res = autoaicluster(df)
print(res['algorithm'], res['silhouette'], res['label_counts'])

Advanced (Python API)

  • Full control via enterprise_cluster_solution.auto_segment and run_pipeline for preprocessing and algorithm selection.

Notes

  • To access UI from other machines, set env vars before launching: ECS_HOST=0.0.0.0 ECS_PORT=8000.

License

MIT

Keywords

clustering

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts