-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Hi,
Thank you for sharing this excellent repository! I am currently using your code for classification tasks, where the Model requires both x and xyz as inputs, as shown in the example:
model = Model(in_dim=6, out_dim=40).cuda()
xyz = torch.randn(2, 3, 1024).cuda()
rgb = torch.rand(2, 3, 1024).cuda()
x = torch.cat([xyz, rgb], dim=1)
out = model(x, xyz)
print(out.shape) # (2, 40)
However, in my case, I only have the xyz coordinates of the point cloud (no RGB or other additional features). I would like to confirm:
-
How should
xandxyzbe set in this scenario? -
If
xis set toxyzdirectly, do I need to adjustin_dimwhen initializing the model? -
Are there any potential limitations or things to be aware of when only using xyz as input?
Thank you for your time and help! Looking forward to your clarification.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels