Hi there, I am new to spark. When training a model using K-means using the following code, how do I obtain the cluster assignment in the next step?
val clusters = KMeans.train(parsedData, numClusters, numIterations) I searched around many examples but they mostly calculate the WSSSE. I am still confused. Thanks! Eilian