You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i do not understand how is generated a 16384 point cloud in output during the inference. The input point cloud is repeated 8 times and then fed into the network as [8, 2048,3] and then obtaining 8 different outputs they are reshaped to obtain a 16384 point cloud, if i have understood correctly. By running the line partial = random_subsample(partial.repeat((1, 8, 1)).reshape(-1, 16384, 3)) i get a partial point cloud of size [1,2048,3] instead of [b*8, 2048,3]. So, the output of the network is still 2048. Can you give me further explanation about this?
Thank you in advance.
The text was updated successfully, but these errors were encountered:
@stefano-mazz The shape of the input point cloud is [b, 16384, 3], so after "partial.repeat((1, 8, 1)).reshape(-1, 16384, 3))", the shape is [b8, 16384, 3], and after the random_subsample, if becomes [b8, 2048, 3].
Hi, i do not understand how is generated a 16384 point cloud in output during the inference. The input point cloud is repeated 8 times and then fed into the network as [8, 2048,3] and then obtaining 8 different outputs they are reshaped to obtain a 16384 point cloud, if i have understood correctly. By running the line partial = random_subsample(partial.repeat((1, 8, 1)).reshape(-1, 16384, 3)) i get a partial point cloud of size [1,2048,3] instead of [b*8, 2048,3]. So, the output of the network is still 2048. Can you give me further explanation about this?
Thank you in advance.
The text was updated successfully, but these errors were encountered: