本文简要介绍python语言中 torch.as_strided
的用法。
用法:
torch.as_strided(input, size, stride, storage_offset=0) → Tensor
使用指定的
size
、stride
和storage_offset
创建现有torch.Tensor
input
的视图。警告
创建的张量的多个元素可能引用单个内存位置。因此,就地操作(尤其是矢量化的操作)可能会导致不正确的行为。如果您需要写入张量,请先克隆它们。
许多返回张量视图的 PyTorch 函数都是使用此函数在内部实现的。这些函数(例如
torch.Tensor.expand()
)更易于阅读,因此更建议使用。例子:
>>> x = torch.randn(3, 3) >>> x tensor([[ 0.9039, 0.6291, 1.0795], [ 0.1586, 2.1939, -0.4900], [-0.1909, -0.7503, 1.9355]]) >>> t = torch.as_strided(x, (2, 2), (1, 2)) >>> t tensor([[0.9039, 1.0795], [0.6291, 0.1586]]) >>> t = torch.as_strided(x, (2, 2), (1, 2), 1) tensor([[0.6291, 0.1586], [1.0795, 2.1939]])
参数:
相关用法
- Python PyTorch as_tensor用法及代码示例
- Python PyTorch assert_close用法及代码示例
- Python PyTorch async_execution用法及代码示例
- Python PyTorch asin用法及代码示例
- Python PyTorch asinh用法及代码示例
- Python PyTorch argsort用法及代码示例
- Python PyTorch addmm用法及代码示例
- Python PyTorch addmv用法及代码示例
- Python PyTorch apply_effects_tensor用法及代码示例
- Python PyTorch angle用法及代码示例
- Python PyTorch all_reduce用法及代码示例
- Python PyTorch atanh用法及代码示例
- Python PyTorch annotate用法及代码示例
- Python PyTorch argmax用法及代码示例
- Python PyTorch atan用法及代码示例
- Python PyTorch acos用法及代码示例
- Python PyTorch all_gather用法及代码示例
- Python PyTorch avg_pool1d用法及代码示例
- Python PyTorch allreduce_hook用法及代码示例
- Python PyTorch argmin用法及代码示例
- Python PyTorch any用法及代码示例
- Python PyTorch all_to_all用法及代码示例
- Python PyTorch add用法及代码示例
- Python PyTorch addcdiv用法及代码示例
- Python PyTorch acosh用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.as_strided。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。