Posts

Showing posts from June, 2018
Image
APRIORY

K-Mean Clustering

Image
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={2,3,4,} m1=3 k2={10,11,12,20,25,30} m2=18 ========================

Simple and Easy Way To Install Python On Linux

Here is Steps  : First Download python from Python.org cd downloads ls ./configure sudo make sudo make install sudo apt-get install  libssl.dev openssl Enjoy :