What is the meaning of these parameters?loop 、voxel
voxel_size= 0.04,voxel_max = 80000,and loop = 30;What is the meaning of these parameters?
I believe the model trains on the voxellized point cloud to reduce density, so voxel_size correspond to the size of voxels, voxel_max the maximum number of voxels/points in a sample (ie a room). For loop, it seems the dataset is "duplicated" or looped through a certain number of times, so the loop would correspond to the number of times it is duplicated I think
Does voxel size mean that there's only one point in a cube, and then there's multiple voxels in a room, and then there's multiple cycles in a room?
Yes, this is how I personally understand it
ok,thanks.
Hello, may I ask which paper you refer to for data processing? Is this different from PAConv Repository?
I am not the author nor even one of the contributor so I can't tell you for sure but I think they use the same preprocessed data as for PAConv repository (although the dataset class construction is different). For the preprocessing part, in PAConv they seem to use the one from pointnet : https://github.com/CVMI-Lab/PAConv/issues/10
But isn't it different to have every block in PointNet as input, whereas in your replay code, you take voxel subsamples and take the entire room as input?
What does step_epoch=30 means in your config file?