Open pvnieo opened 4 years ago
I wouldn't know what would be the exact issue. What might help to debug is to check your dataset in the vector heat demo project. This way, you can visually see what's going on. If that fails, you could also try a different way to compute nearest neighbours: https://pytorch-geometric.readthedocs.io/en/latest/modules/nn.html?highlight=nearest#torch_geometric.nn.pool.nearest
The difference between PyTorch Geometric's nearest neighbours, is that it is computed in R3, whereas the nearest neighbours used by us is computed intrinsically (with geodesic distances). Depending on the shape and distances this doesn't have to be a major problem.
Hi,
Thanks for the great contribution and for sharing the code.
I'm using HSN for segmentation (I'm using my own dataset). I had this error while doing preprocessing:
It's an error related to
vector_heat
, do have an idea why this happening, and how can I solve it?Thank you in advance!