I am using Spectral Clustering method to cluster my data. The implementation seems to work properly. However, I have one problem - I have a set of unseen points (not present in the training set) and would like to cluster these based on the centroids derived by k-means (Step 5 in the paper). However, the k-means is computed on the k eigenvectors and therefore the centroids are low-dimensional.
Does any-one knows a method that can be used to map an unseen point to a low-dimension and compute the distance between the projected point and the centroids derived by k-means in step 5.
Use the same assignment rule used in the clustering method from Step 5 to assign the new data points. For example, k-means uses some distance metric d to assign the data points in the original learning dataset to some cluster. Just use this same metric to assign the unseen point to one of your final clusters. So, add a new Step 7.