torch.numel
-
torch.numel(input) → int -
Возвращает общее количество элементов в
inputтензоре.- Параметры:
-
input (Tensor) – входной тензор.
Пример:
>>> a = torch.randn(1, 2, 3, 4, 5) >>> torch.numel(a) 120 >>> a = torch.zeros(4,4) >>> torch.numel(a) 16
© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/1.13/generated/torch.numel.html