Tagged Questions
In statistics and data mining, k-means clustering is a method of cluster analysis which aims to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean.
12
votes
8answers
7k views
Python k-means algorithm
I am looking for Python implementation of k-means algorithm with examples to cluster and cache my database of coordinates.
11
votes
1answer
338 views
Using a smoother with the L Method to determine the number of K-Means clusters
Has anyone tried to apply a smoother to the evaluation metric before applying the L-method to determine the number of k-means clusters in a dataset? If so, did it improve the results? Or allow a ...
10
votes
1answer
386 views
Improving k-means clustering
My lecture notes on computer vision mention that the performance of the k-means clustering algorithm can be improved if we know the standard deviation of the clusters. How so?
My thinking is that we ...
10
votes
5answers
776 views
Fast (< n^2) clustering algorithm
I have 1 million 5-dimensional points that I need to group into k clusters with k << 1 million. In each cluster, no two points should be too far apart (e.g. they could be bounding spheres with a ...
9
votes
2answers
2k views
whats is the difference between “k means” and “fuzzy c means” objective functions?
I am trying to see if the performance of both can be compared based on the objective functions they work on?
9
votes
3answers
3k views
mahout lucene document clustering howto?
I'm reading that i can create mahout vectors from a lucene index that can be used to apply the mahout clustering algorithms.
...
9
votes
3answers
3k views
How do I determine k when using k-means clustering?
I've been studying about k-means clustering, and one thing that's not clear is how you choose the value of k. Is it just a matter of trial and error, or is there more to it?
7
votes
2answers
352 views
How exactly does k-means++ work?
I am having trouble fully understanding the k-means++ algorithm. I am interested exactly how the first k centroids are picked (the rest is like in the original k-means).
Is the probability function ...
6
votes
3answers
3k views
OpenCV's clustering function cvKMeans2() - what is a type of cluster center in array?
I'm using function cvKMeans2() from OpenCV library for clustering. It has optional parametr:
centers - The optional output array of the cluster centers
The same parametr is also in function kmeans().
...
6
votes
2answers
2k views
OpenCV K-Means (kmeans2)
I'm using Opencv's K-means implementation to cluster a large set of 8-dimensional vectors. They cluster fine, but I can't find any way to see the prototypes created by the clustering process. Is this ...
5
votes
4answers
272 views
Kmeans without knowing the number of clusters?
I am attempting to apply k-means on a set of high-dimensional data points (about 50 dimensions) and was wondering if there are any implementations that find the optimal number of clusters.
I ...
5
votes
7answers
701 views
K-means algorithm variation with equal cluster size
I'm looking for the fastest algorithm for grouping points on a map into equally sized groups, by distance. The k-means clustering algorithm looks straightforward and promising, but does not produce ...
5
votes
2answers
446 views
Can K-means be used to help in pixel-value based separation of an image?
I'm trying to separate a greylevel image based on pixel-value: suppose pixels from 0 to 60 in one bin, 60-120 in another, 120-180 ... and so on til 255. The ranges are roughly equispaced in this case.
...
5
votes
2answers
2k views
Online k-means clustering
Is there a online version of the k-Means clustering algorithm?
By online I mean that every data point is processed in serial, one at a time as they enter the system, hence saving computing time when ...
5
votes
6answers
888 views
MATLAB kMeans does not always converge to global minima
I wrote a k-Means clustering algorithm in MATLAB, and I thought I'd try it against MATLABs built in kmeans(X,k).
However, for the very easy four cluster setup (see picture), MATLAB kMeans does not ...
5
votes
4answers
5k views
Matlab:K-means clustering
I have a matrice of A(369x10) which I want to cluster in 19 clusters.
I use this method
[idx ctrs]=kmeans(A,19)
which yields
idx(369x1) and ctrs(19x10)
I get the point up to here.All my rows in A ...
4
votes
3answers
79 views
k-means with ellipsoids
I have n points in R^3 that I want to cover with k ellipsoids or cylinders (I don't really care; whichever is easier). I want to approximately minimize the union of the volumes. Let's say n is tens ...
4
votes
3answers
280 views
Can I use K-means algorithm on a string?
I am working on a python project where I study RNA structure evolution (represented as a string for example: "(((...)))" where the parenthesis represent basepairs). The point being is that I have an ...
4
votes
1answer
700 views
WEKA K-Means Clustering
Can anybody explain what the output of the K-Means clustering in WEKA actually means.
For example
kMeans
Number of iterations: 9
Within cluster sum of squared errors: 9434.911100488926
Missing ...
4
votes
4answers
2k views
Reading wav file in Java
I want to read wav files in Java and I am going to classify them with K-means.
How can I read wav files in Java and assign them into an array or something like that(you can suggest ideas for it) to ...
3
votes
1answer
88 views
How do I print out objects in an array in python?
I'm writing a code which performs a k-means clustering on a set of data. I'm actually using the code from a book called collective intelligence by O'Reilly. Everything works, but in his code he uses ...
3
votes
3answers
324 views
K-means with really large matrix
I have to perform a k-means clustering on a really huge matrix (about 300.000x100.000 values which is more than 100Gb). I want to know if I can use R software to perform this or weka.
My computer is a ...
3
votes
1answer
336 views
Deploying Mahout on hadoop cluster
I want to run Mahout's K-Means example in a hadoop cluster of 5 machines. Which Mahout jar files should I need to keep in all the nodes, in order for the K-Means to be executed in a distributed ...
3
votes
2answers
649 views
Is it possible to specify your own distance function using Scikits.Learn K-Means Clustering?
Is it possible to specify your own distance function using Scikits.Learn K-Means Clustering? If so, how and where?
3
votes
2answers
136 views
Most mutually distant k elements (clustering?)
I have a simple machine learning question:
I have n (~110) elements, and a matrix of all the pairwise distances. I would like to choose the 10 elements that are most far apart. That is, I want to
...
3
votes
2answers
186 views
Getting the index of closest data point to the centriods in Kmeans clustering in MATLAB
I am doing some clustering using K-means in MATLAB. As you might know the usage is as below:
[IDX,C] = kmeans(X,k)
where IDX gives the cluster number for each data point in X, and C gives the ...
3
votes
2answers
226 views
I have 2,000,000 points in 100 dimensionality space. How can I cluster them to K (e.g., 1000) clusters?
The problem comes as follows. I have M images and extract N features for each image, and the dimensionality of each feature is L. Thus, I have M*N features (2,000,000 for my case) and each feature has ...
3
votes
2answers
1k views
how to implement k-means for simple grouping in java
I would like to know simple k-means algorithm in java. I want to use k-means only for grouping one dimensional array not multi.
For example,
before grouping the array consists of 2,4,7,5,12,34,18,25
...
2
votes
2answers
99 views
Group n points in k clusters of equal size [closed]
Possible Duplicate:
K-means algorithm variation with equal cluster size
EDIT: like casperOne point it out to me this question is a duplicate. Anyways here is a more generalized question ...
2
votes
2answers
122 views
k-means return value in R
I am using the kmeans() function in R and I was curious what is the difference between the totss and tot.withinss attributes of the returned object. From the documentation they seem to be returning ...
2
votes
3answers
116 views
How to generate this shape in Matlab?
In matlab, how to generate two clusters of random points like the following graph. Can you show me the scripts/code?
2
votes
2answers
126 views
Predicting Values with k-Means Clustering Algorithm
I'm messing around with machine learning, and I've written a K Means algorithm implementation in Python. It takes a two dimensional data and organises them into clusters. Each data point also has a ...
2
votes
1answer
88 views
package tm. problems with kmeans
I have a question about k-means clustering in R. Actually i'm doing everything according to this article. Everything is based on examples within the tm package so it's required no data import. acq ...
2
votes
1answer
90 views
Fuzzy K-modes clustering how to find the cluster centers
I'm trying to understand fuzzy k-modes algorithm (look mainly at page 3) in order to implement it.
I'm stuck at the calculation of cluster centers they said as shown in the pic
I need to know ...
2
votes
2answers
91 views
Seed selection strategies for K-means
I wonder what kind of seed selection methods I can apply to K-means algorithm. Google search wasn't that helpful. Any suggestions?
2
votes
1answer
302 views
Where to find a reliable K-medoid(Not k-means) open source software/tool?
I am learning the K-medoids algorithm so I am sorry if I ask inappropriate questions. As I know,the K-medoids algorithm implements a K-means clustering but use actual data points to be centroid ...
2
votes
1answer
433 views
Creating a clustered image from kmeans data in OpenCV
I am trying to create a clustered image from data being returned from the kmeans function. I try to pull out the data in a similar fashion from the OpenCV example but that seems to crash on me. After ...
2
votes
1answer
236 views
k-means in matlab is out of memory depending on the distance function?
I'm using k-means with matlab on a big and sparse matrix ~(1000000x1000). Now here is the problem - using cosine similarity as the distance function I get the "Out of memory. Type HELP MEMORY for your ...
2
votes
2answers
513 views
Java Api for K-Means
I have some byte arrays(I can use vectors too) of sounds(wav files - 11025 khz - 16 bit). I want to use K-Means to classify them at Java. Which Apis can I use for it and can you give me some basic ...
2
votes
2answers
254 views
Cluster thousands of text documents in java
Is there efficient way clustering text documents? I thought about K-Means but it seems to be too time consuming. Can somebody provide me with an efficient method?
2
votes
1answer
322 views
clustering on very large sparse matrix?
I am trying to do some (k-means) clustering on a very large matrix.
The matrix is approximately 500000 rows x 4000 cols yet very sparse (only a couple of "1" values per row). I want to get around ...
2
votes
1answer
260 views
Finding the spread of each cluster from Kmeans
I'm trying to detect how well an input vector fits a given cluster centre. I can find the best match quite easily (the centre with the minimum euclidean distance to the input vector is the best), ...
2
votes
2answers
1k views
K-means clustering: What's wrong? (PHP)
I was looking for a way to calculate dynamic market values in a soccer manager game. I asked this question here and got a very good answer from Alceu Costa.
I tried to code this algorithm (90 ...
1
vote
3answers
42 views
What to do when KMeans returns fewer than K clusters?
I've implemented K-Means in Java and have a bit of a head scratcher. I select my initial centroids by choosing a random value in each dimension within the range of values of the data points. I've ...
1
vote
1answer
56 views
Get point IDs after clustering, using python [closed]
Possible Duplicate:
Python k-means algorithm
I want to cluster 10000 indexed points based on their feature vectors and get their ids after clustering i.e. cluster1:[p1, p3, p100, ...], ...
1
vote
0answers
49 views
How to maintain data entry id in Mahout K-means clustering
I'm using mahout to run k-means clustering, and I got a problem of identifying the data entry when clustering, for example I have a 100 data entries
id data
0 0.1 0.2 0.3 0.4
1 0.2 ...
1
vote
1answer
69 views
kmeans example in matlab does not run
It is so strange that when I copy and paste the following matlab example
http://www.mathworks.co.jp/help/toolbox/stats/kmeans.html
to the work place and it says:
??? Error using ==> kmeans
Too ...
1
vote
1answer
149 views
K Means Clustering using Mahout
I'm using the clustering technique given here for clustering a large dataset, which is given in Mahout examples. However, when I visualize the particular clustering I get the following figure.
I'm ...
1
vote
3answers
71 views
Selecting an appropriate similarity metric & assessing the validity of a k-means clustering model
I have implemented k-means clustering for determining the clusters in 300 objects. Each of my object
has about 30 dimensions. The distance is calculated using the Euclidean metric.
I need to know
...
1
vote
0answers
22 views
Is it possible to see the current iteration number in OpenCV's cvKmeans2?
I'm trying to cluster a really large dataset - 3030764x162 into 4000 clusters using the cvKmeans2 function in OpenCV 2.1.
I would like to see which iteration the K-means algorithm is currently in ...