APRIORY
Posts
Showing posts from June, 2018
K-Mean Clustering
- Get link
- X
- Other Apps
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. take mean value find nearest number and mean and put into cluster repeat one and two until we not get same mean example : {2,3,4,10,11,12,20,25,30} data set creating two cluster m1=4 m2=12 k1...