From 8dd6f3543236a822b523694ed53a531a9ed0d44e Mon Sep 17 00:00:00 2001 From: Shayan Date: Sat, 30 Mar 2024 15:16:11 -0600 Subject: [PATCH] Update MinkowskiSparseTensor.py docstring #563 --- MinkowskiEngine/MinkowskiSparseTensor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MinkowskiEngine/MinkowskiSparseTensor.py b/MinkowskiEngine/MinkowskiSparseTensor.py index b80d5f49..5d2efa44 100644 --- a/MinkowskiEngine/MinkowskiSparseTensor.py +++ b/MinkowskiEngine/MinkowskiSparseTensor.py @@ -72,8 +72,7 @@ class SparseTensor(Tensor): where :math:`\mathbf{x}_i \in \mathcal{Z}^D` is a :math:`D`-dimensional coordinate and :math:`b_i \in \mathcal{Z}_+` denotes the corresponding batch index. :math:`N` is the number of non-zero elements in the sparse - tensor, each with the coordinate :math:`(b_i, x_i^1, x_i^1, \cdots, - x_i^D)`, and the associated feature :math:`\mathbf{f}_i`. Internally, we + tensor, each with the coordinate :math:`(b_i, x_i^1, x_i^2, \cdots, x_i^D)`, and the associated feature :math:`\mathbf{f}_i`. Internally, we handle the batch index as an additional spatial dimension. Example::