Closed Tortoise0Knight closed 3 months ago
To understand sparse tensors, imagine a tensor with many zero elements. If you have a dense 3D tensor with dimensions HxWxL, defining a sparse tensor means that the spatial range of your tensor remains (H, W, L), but many of the values within this range are zero.
To understand sparse tensors, imagine a tensor with many zero elements. If you have a dense 3D tensor with dimensions HxWxL, defining a sparse tensor means that the spatial range of your tensor remains (H, W, L), but many of the values within this range are zero.
Thank you for your explanation! So this value numerically equals to the maximum value along 3 dimensions.
When I'm doing a generative transpose convolution on a tensor. An error occured: AssertionError: spatial range must be specified in generative mode This seems to because I didn't specify the spatial_range when creating sparse tensor.
My sparse tensor is converted from a MinkowskiEngine SparseTensor by:
I don't know what does this spatial_range mean and how to specify it when converting from a MinkowskiEngine SparseTensor.