New to Data Mining and Weka. I'm writing a kmeans clustering algorithm in Java (Eclipse with Weka) which takes in a data set and builds cluster from it. How can I use these built clusters to classify further new data set?
As in, it takes a new instance and sees which cluster it belongs to using shortest distance method, without have to recreate the clusters again.
Thanks in advance.