Open mayuris25 opened 1 year ago
The PCA initialization option isn't in the 0.5.3 release (which came out last year).
I see, can I know what is the latest release version? because in the UMAP API guide for latest version it mentions 'pca' and 'twspectral' as options
The most recent release is 0.5.3. If you are looking at https://umap-learn.readthedocs.io/en/latest/api.html that seems to refer to the current state of the master
branch of this repo.
If you want to know the options available for whatever version of UMAP you have installed is then this should work:
import umap
help(umap.UMAP)
I have installed umap-learn==0.5.3 with python 3.10
tried to run a simple umap conversion with init parameter set to 'pca'
the print output is saying its version 0.5.3 but it is giving error as below (sharing snippet)