Hi Authors,
Sorry this is less of a technical issue than a conceptual question.
You have alluded to the curse of dimensionality in the original paper, one major component of which is the dilution of "distances" (e.g. On the Surprising Behavior of Distance Metric in High-Dimensional Space, or a more accessible summary here).
Step 1 of EMBEDR relies on calculating NNs, the code appears to rely on default methods in numpy e.g. "euclidean", "l2", "sqeuclidean", ..., "sokalsneath", "yule"].
Do you have recommendations for these distance metrics to mitigate the "curse"? Or are there other parts of the algorithm to help with that?