I know what k-means is and I also understand what k-means++ algorithm is. I believe the only change is the way the initial K centers are found.
In the ++ version we initially choose a center and using a probability distribution we choose the remaining k-1 centers.
In the MLLib algorithm for k-means what is the initializationSteps
parameter?