Joseph Chu

Results 6 comments of Joseph Chu

I usually install opencv with pip using the command: `pip install opencv-python`

Seth added some support for custom metrics. As for the writeup and similar methods, there is the Reddit comment thread here: https://www.reddit.com/r/MachineLearning/comments/gsu3zm/p_star_clustering_a_clustering_algorithm_that/ I'm still working on a possible paper/manual/pseudocode writeup.

@shy1 It looks like cosine from scipy.spatial.distance is indeed for 1-D arrays, but pdist, which @rfezzani suggested works on N-D arrays, which are essentially tensors, so that should work for...

This is something I'll look into. Thanks!

Correct, this particular algorithm does not have a paper yet, though there may be similar algorithms in the literature. I'm currently looking into the idea of writing up a paper,...

@AnotherSamWilson The general idea of the algorithm is to first connect the closest points until their mean mass exceeds a limit determined by the mean distance multipled by a constant...