I am trying to extend OverlapPredator.Mink to support batch training. Predator is composed of three modules: a Minkowski encoder, a GNN and a Minkowski decoder. After the encoder, I have to perform batch-wise decomposition for the GNN. Then after the GNN, I have to recompose a sparse tensor which shares the coordinate_manager and coordinate_key_map with the sparse tensor from the encoder. How should I implement this?
Hi,
I am trying to extend OverlapPredator.Mink to support batch training. Predator is composed of three modules: a Minkowski encoder, a GNN and a Minkowski decoder. After the encoder, I have to perform batch-wise decomposition for the GNN. Then after the GNN, I have to recompose a sparse tensor which shares the
coordinate_manager
andcoordinate_key_map
with the sparse tensor from the encoder. How should I implement this?Thanks.