point-cloud-radar / bird-cloud-gnn

This package generates graph representations from point cloud data and fits graph neural networks for classification problem
Apache License 2.0
8 stars 2 forks source link

Differentiate number of neighbours and number of nodes #80

Closed abelsiqueira closed 1 year ago

abelsiqueira commented 1 year ago

Currently, we use min_neighbours to be the number of neighbours of a point, but also the number of nodes in a graph. Since the number of nodes should be the POI + neighbours, the relation should actually be "num_nodes = min_neighbours + 1".

Possible solutions: