Skip to content
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

Implement UMAP #16271

Open
wendycwong opened this issue May 23, 2024 · 1 comment
Open

Implement UMAP #16271

wendycwong opened this issue May 23, 2024 · 1 comment
Assignees
Labels

Comments

@wendycwong
Copy link
Contributor

wendycwong commented May 23, 2024

From paid customer.

Here is one link:
https://umap-learn.readthedocs.io/en/latest/

To complete this task, apart from implementing the algorithm and mojo, please also complete a paper describing the actual implementation. This paper can be used by co-workers in the code review process and help the documentation team as well.

I am attaching an example here for when I implemented GAM:
GAM_doc.pdf

If you can divide your task into meaningful and independent parts, feel free to farm them out to others if you need the help. I for one may be able to help with coming up with the paper/doc.

@maurever
Copy link
Contributor

maurever commented Jun 27, 2024

The paper describing the H2O.ai implementation.

Implementation plan

  • Decide if implement KNN as a model or as a part of UMAP (done, we implemented the first version of UMAP with precalculated NN, and implement KNN separately in the future)
  • Understand UMAP implementation (in progress)
  • Understand the theory behind (in progress)
  • Think about parallelization - decide if it is possible (in progress)
  • Think about time estimate - decide the time we need (in progress)
  • Implement matrices operations
  • Implement the first version of UMAP
    • Java backend with minimal parameters as possible
    • JUnit tests
    • Documentation
    • MOJO
    • Python/R API
    • Python/R tests
    • Performance analysis
    • Compare results with original UMAP implementation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants