Kmeans Pytorch Save

pytorch implementation of basic kmeans algorithm(lloyd method with forgy initialization) with gpu support

Project README

pytorch implementation of basic kmeans algorithm(lloyd method with forgy initialization) with gpu support

usage:

from kmeans_pytorch.kmeans import lloyd
import numpy as np 

A = np.concatenate([np.random.randn(1000, 2), p.random.randn(1000, 2)+3, p.random.randn(1000, 2)+6], axis=0)

#lloyd(X, n_clusters, device=0, tol=1e-4)
clusters_index, centers = lloyd(A, 2, device=0, tol=1e-4)

See kmeans_test.ipynb for some test examples

Open Source Agenda is not affiliated with "Kmeans Pytorch" Project. README Source: overshiki/kmeans_pytorch
Stars
93
Open Issues
2
Last Commit
5 years ago

Open Source Agenda Badge

Open Source Agenda Rating