Matteo Lugli
Matteo Lugli
I am doing some preprocessing of my dataset and I encountered the same error. It's probably caused by bad memory management in the C++ code somewhere.
I had problems with batching as well. Apparently the collate function of pointcept works in a weird way. I solved my batching problem by returing data with an extra dimension...
You mainly have to look at this image. Basically instead of adding an extra dimension for the batch, making your tensor of shape [B, N,C], it stacks everything in the...
Thanks!