N2D icon indicating copy to clipboard operation
N2D copied to clipboard

Changing the clustering -- Embedding

Open youngandbin opened this issue 3 years ago • 1 comments

With a vanilla n2d, I can get 2D embedding using model.hle However, when changing the clustering method, model.hle returns nothing. How can I get embeddings when I use different clustering method ?

youngandbin avatar Jun 12 '22 13:06 youngandbin

problem solved!

It was stored in manifold and cluster object, n2d.manifold_cluster_generator()

For example, I can get embeddings from hc_clust.hle where

hc_clust = n2d.manifold_cluster_generator(
    umap.UMAP, umap_args, AgglomerativeClustering, hc_args)

youngandbin avatar Jun 12 '22 13:06 youngandbin