-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Predicting on new data #6
Comments
Thanks for the suggestion! I haven't had enough time to look into how hard it is to implement this yet, but at first glance it seems to me they keep the locations of the training set fixed and try to find good location in the embedding for the objects to be 'transformed'. I'm not sure I think this makes a lot of sense and it may be worthwhile to see how their discussion plays out, since they also currently do not seem to have a transform method in master. But if people think this type of transform makes sense it could be worthwhile to implement it. |
They HAD a transform method until very recently, but it looks like they just removed it. I'd really love to be able to try this out on new data, but it's probably best to see how their discussion plays out first. |
It's a FAQ question here: https://lvdmaaten.github.io/tsne/
|
It looks like the scikit learn folks are considering an implementation of Barnes-Hut t-SNE that allows for predictions on new data. (They're implementing
fit
andtransform
methods, rather than a singlefit_transform
method).Would it be possible to do that here, and add a
predict
method to Rtsne?The text was updated successfully, but these errors were encountered: