K-Mean Clustering
Clustering comes under unsupervised learning algorithm :
for clustering algorithm uses are : k- mean clustering
clustering is the process of partitioning group of data points
into small number of clusters
k means is a clustering method that aims to find the position of the cluster
that minimize the distance from data points to the cluster
k-means clustering is one of the simplest algorithms which uses unsupervised learning method to solve known clustering issues. k-means clustering require following two inputs.
- k = number of clusters
- Training set(m) = {x1, x2, x3,……….., xm}
Let’s say you have an unlabeled data set like the one shown below and you want to group this data into clusters.
Comments
Post a Comment