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
I'm running GeoTransformer on fused indoor point cloud (from ScanNet). I run it using demo.py. My GPU is Nvidia3090 with 24GB memory. But the program frequently fails due to "not enough CUDA memory". I downsample the point cloud with 2.5cm voxel size if it is >30000.
I understand the key part is reduce the superpoint number. So I follow #16 to adjust the parameters
I believe the error should comes from the KPConvFPN backbone.
It is fixed at 4 stages and not adjusted with changed parameters.
I can modify the backbone to more stages. But it requires to re-train the network.
So I find an easier way to test the pre-trained weight. I adjust the backbone.voxel_size=0.05 to make it generate less superpoints. It works fine now without memory full issue.
But it may be less accurate than the original setting.
Hi
I'm running GeoTransformer on fused indoor point cloud (from ScanNet). I run it using
demo.py
. My GPU is Nvidia3090 with 24GB memory. But the program frequently fails due to "not enough CUDA memory". I downsample the point cloud with2.5cm
voxel size if it is>30000
.I understand the key part is reduce the superpoint number. So I follow #16 to adjust the parameters
But it stopped at
RPEMultiHeadAttention
and it shows,Is any suggestion on how to adjust the parameter properly?
Thanks
The text was updated successfully, but these errors were encountered: