Y
Hacker News
new
|
ask
|
show
|
jobs
by
lukeplato
745 days ago
This could make for an interesting UI for exploring clusters in data. I only wish K-d trees could handle higher dimensions
3 comments
azeirah
745 days ago
You'll love this site :)
https://treevis.net/
link
enizor2
745 days ago
What do you mean ? A K-d tree handles k dimensions. Generating a useful 2-D representation (=projection) of more dimensions is the hard part.
link
lukeplato
745 days ago
I remember reading that for k-d trees to be able to split on k dimensions the dataset needs to be > 2^k, which becomes unwieldy pretty quickly
link
russfink
745 days ago
… yes to the 2^k only because if not met, the performance devolves to a linear search. By themselves, k-d trees can handle any number of records.
link
vrtnis
744 days ago
yep, also i think while they could have issues with dataset sizes less than 2^k, it's interesting to note their use in accelerating clustering algos like dbscan. they do make neat visualizations though
https://marimo.app/?slug=x5fa0x
link
jhurliman
744 days ago
For low dimensional (such as 2D) projections of high dimensional data, especially useful for visualization, take a look at UMAP -
https://umap-learn.readthedocs.io/en/latest/
link
https://treevis.net/