Open arijitde92 opened 5 months ago
Hi @arijitde92,
When I see your area it seems the structural patterns are very large and you don't have many fine details. In that case, I would use a larger subsampling size, and a larger input radius (keep the ratio stable otherwise too large in radius will create OOM issue as too many points are fed to the network at once)
The dimension of the area will not affect the training performances. You can try different combination of subsampling_dl and in_radius to see what is best for your data.
Hi @arijitde92,
When I see your area it seems the structural patterns are very large and you don't have many fine details. In that case, I would use a larger subsampling size, and a larger input radius (keep the ratio stable otherwise too large in radius will create OOM issue as too many points are fed to the network at once)
The dimension of the area will not affect the training performances. You can try different combination of subsampling_dl and in_radius to see what is best for your data.
Thanks @HuguesTHOMAS for your swift reply.
Hi @HuguesTHOMAS ,
I am trying to run semantic segmentation using your code on a custom dataset which is similar to S3DIS but has fewer number of classes.
But the dimensions of the areas are much bigger than that of S3DIS data. Please see the below table for the x (length), y(width) and z (height) values for the S3DIS areas and those of my custom dataset.
Also, please see below how the area looks within the same dimension boundaries- S3DIS area 4 looks like (having length - 47.3, width - 26.6 and height = 8.8)
A part of the point cloud of my custom dataset enclosed in similar volume (similar height, width and depth) Here, Yellow = Floor, Grey = Wall, Red = Beam.
I think increasing the
in_radius
parameter would help to accomodate more point clouds that can help learn the structural features of my bigger dataaset. Can you help me with the below doubts?