Duplicity in combining UMAP with Mapper #685
-
I've been using Mapper(the scikit implentaion) with some of my datasets recently, and I was wondering if supplying UMAP as a lens to Mapper.map function(something which is quite common) is in some ways repeating some steps, since UMAP itself generates a Simplicial complex? I haven't had the time to dissect it fully, but could someone explain if that is the case ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In this sort of case Mapper is essentially providing a simplified version of the scatterplot UMAP might provide -- simplifying it via topology. Presuming you want that degree of simplification this is a perfectly acceptable thing to do. Note that Mapper often uses lenses such as PCA so using dimension reduction as a lens is pretty common. The real question is whether you need/want the degree of simplification that Mapper provides. |
Beta Was this translation helpful? Give feedback.
In this sort of case Mapper is essentially providing a simplified version of the scatterplot UMAP might provide -- simplifying it via topology. Presuming you want that degree of simplification this is a perfectly acceptable thing to do. Note that Mapper often uses lenses such as PCA so using dimension reduction as a lens is pretty common. The real question is whether you need/want the degree of simplification that Mapper provides.