-
Notifications
You must be signed in to change notification settings - Fork 3
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
Compute embeddings with 2 or less images error #64
Comments
This is a limitation of the pca|umap algorithm, the need a number of sample >= of the number of dimensions. We might want to limit the min number of elements in the sliders. |
Closing this since this is a limitation of umap/pca |
Never good to have a Python traceback error, right? Should we just put a check in the "compute embedding" function that skips things if the parameters are degenerate? For extra credit, give message to user on why they are not seeing their embedding points update? |
Good point |
Steps
ValueError: n_components=3 must be between 0 and min(n_samples, n_features)=2 with svd_solver='full'
The text was updated successfully, but these errors were encountered: