-
Notifications
You must be signed in to change notification settings - Fork 27
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
scikit-learn compatible API #67
Comments
Hi! Thanks for raising this issue, and sorry for the delay in my response. I'm happy to consider adding an API that's compatible with scikit-learn. I'm assuming you're talking about scikit-learn's estimator and transform APIs ( Off the top of my head: We could have versions of Would that be helpful? |
Yep! That's the one! I'm interested in such an API because it might help users in my bulk labelling interface. In terms of implementation, maybe the neatest way is to add a class, maybe something like: import pymde
from pymde import PyMDE
component = PyMDE(method="preserve_neighbors", constraint=pymde.Standardized()) If you want to go the extra mile, I may even go as far as having a |
ps. I'm also a huge fan of |
Okay, great! I'd love for PyMDE to be useful for bulk, which looks awesome, by the way. Thanks for the code snippet --- something like that could definitely work. I'll put something together in the coming weeks. |
Is there a reason why the library doesn't offer a scikit-learn compatbile API? A class that can work via the
fit_transform()
API?The text was updated successfully, but these errors were encountered: