count

Documentation

class treetensor.torch.Size(data, *args, **kwargs)[source]
count(*args, **kwargs) → treetensor.common.object.Object[source]

Get the occurrence count of the sizes in this tree.

Example:

>>> import torch
>>> import treetensor.numpy as ttorch
>>> ttorch.Size({
...     'a': [1, 2],
...     'b': {'x': [3, 2, 4]},
... }).count(2)
2

Torch Version Related

This documentation is based on torch.Size.count in torch v1.9.0+cu102. Its arguments’ arrangements depend on the version of pytorch you installed.

If some arguments listed here are not working properly, please check your pytorch’s version with the following command and find its documentation.

1
python -c 'import torch;print(torch.__version__)'

The arguments and keyword arguments supported in torch v1.9.0+cu102 is listed below.

Description From Torch v1.9.0+cu102

class torch.Size(iterable=(), /)
count(value, /)

Return number of occurrences of value.