torch.Tensor.sparse_resize_#
- Tensor.sparse_resize_(size,sparse_dim,dense_dim)→Tensor#
Resizes
selfsparse tensor to the desiredsize and the number of sparse and dense dimensions.Note
If the number of specified elements in
selfis zero, thensize,sparse_dim, anddense_dimcan be anysize and positive integers such thatlen(size)==sparse_dim+dense_dim.If
selfspecifies one or more elements, however, then eachdimension insizemust not be smaller than the correspondingdimension ofself,sparse_dimmust equal the numberof sparse dimensions inself, anddense_dimmustequal the number of dense dimensions inself.Warning
Throws an error if
selfis not a sparse tensor.- Parameters
size (torch.Size) – the desired size. If
selfis non-emptysparse tensor, the desired size cannot be smaller than theoriginal size.sparse_dim (int) – the number of sparse dimensions
dense_dim (int) – the number of dense dimensions