Im trying to cluster some data and wanna learn accurancy of it on weka.I mean Lets say, we cluster our training data to n groups but now we have a new test data to learn clusters. How can we do it? I checked the samples but all of them are about to test in training data.
Asked
Active
Viewed 63 times
0
-
possible duplicate of [Assign new data point to cluster in kernel k-means (kernlab package in R)?](http://stackoverflow.com/questions/11621642/assign-new-data-point-to-cluster-in-kernel-k-means-kernlab-package-in-r) – Has QUIT--Anony-Mousse Jul 09 '15 at 09:06
1 Answers
0
Use the FilteredClusterer
, and then choose KMeans
in the Configuration Dialog of the FilteredClusterer.
Here is some text from the "More" button that shows some documentation about this clusterer:
NAME weka.clusterers.FilteredClusterer
SYNOPSIS Class for running an arbitrary clusterer on data that has been passed through an arbitrary filter. Like the clusterer, the structure of the filter is based exclusively on the training data and test instances will be processed by the filter without changing their structure.

knb
- 9,138
- 4
- 58
- 85