Skip to content

Implementation of Nested Mini-Batch K-Means Algorithm using Numpy

Notifications You must be signed in to change notification settings

sharanry/Nested-K-Means

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nested Mini-Batch K-Means

Implementation of Nested Mini-Batch K-Means in numpy - Newling et al.

arxiv 1602.02934

Usage

  1. Import the class
from NestedKMeans import NestedKMeans
  1. Initialize the model
nkmeans = NestedKMeans(<datapoints>, <No. of Clusters>, <No. of starting Points>>, rho=<>, earlyStop=<To stop early assign True>)
  1. Train
nkmeans.train(<No. of max iters>)
  1. Show the trained result
# works only for 2 dimensions
nkmeans.show()

About

Implementation of Nested Mini-Batch K-Means Algorithm using Numpy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published