本文简要介绍python语言中 torch.Tensor.align_to
的用法。
用法:
align_to(*names)
names(str的可迭代) -输出张量的所需维度排序。最多可以包含一个省略号,该省略号扩展到
self
的所有未提及的 dim 名称。排列
self
张量的维度以匹配names
中指定的顺序,并为任何新名称添加 size-one 变暗。self
的所有暗淡必须命名才能使用此方法。结果张量是原始张量的视图。self
的所有维度名称必须出现在names
中。names
可能包含self.names
中没有的其他名称;对于每个新名称,输出张量都有一个 size-one 维度。names
最多可包含一个省略号 (...
)。省略号将扩展为等于self
中未在names
中提及的所有维度名称,按照它们在self
中出现的顺序排列。Python 2 不支持省略号,但可以使用字符串文字代替 (
'...'
)。例子:
>>> tensor = torch.randn(2, 2, 2, 2, 2, 2) >>> named_tensor = tensor.refine_names('A', 'B', 'C', 'D', 'E', 'F') # Move the F and E dims to the front while keeping the rest in order >>> named_tensor.align_to('F', 'E', ...)
警告
命名张量 API 是实验性的,可能会发生变化。
参数:
相关用法
- Python PyTorch Tensor.align_as用法及代码示例
- Python PyTorch Tensor.unflatten用法及代码示例
- Python PyTorch Tensor.register_hook用法及代码示例
- Python PyTorch Tensor.storage_offset用法及代码示例
- Python PyTorch Tensor.to用法及代码示例
- Python PyTorch Tensor.sparse_mask用法及代码示例
- Python PyTorch Tensor.is_leaf用法及代码示例
- Python PyTorch Tensor.imag用法及代码示例
- Python PyTorch Tensor.unfold用法及代码示例
- Python PyTorch Tensor.real用法及代码示例
- Python PyTorch Tensor.refine_names用法及代码示例
- Python PyTorch Tensor.rename用法及代码示例
- Python PyTorch Tensor.view用法及代码示例
- Python PyTorch Tensor.new_empty用法及代码示例
- Python PyTorch Tensor.index_copy_用法及代码示例
- Python PyTorch Tensor.new_tensor用法及代码示例
- Python PyTorch Tensor.scatter_用法及代码示例
- Python PyTorch Tensor.fill_diagonal_用法及代码示例
- Python PyTorch Tensor.repeat用法及代码示例
- Python PyTorch Tensor.item用法及代码示例
- Python PyTorch Tensor.tolist用法及代码示例
- Python PyTorch Tensor.put_用法及代码示例
- Python PyTorch Tensor.map_用法及代码示例
- Python PyTorch Tensor.stride用法及代码示例
- Python PyTorch Tensor.index_fill_用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.Tensor.align_to。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。