Shortcuts
torch.Tensor.size¶Returns the size of the self
tensor. If dim
is not specified, the returned value is a torch.Size
, a subclass of tuple
. If dim
is specified, returns an int holding the size of that dimension.
dim (int, optional) – The dimension for which to retrieve the size.
Example:
>>> t = torch.empty(3, 4, 5) >>> t.size() torch.Size([3, 4, 5]) >>> t.size(dim=1) 4
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4