本文简要介绍python语言中 torch.Tensor.resize_
的用法。
用法:
Tensor.resize_(*sizes, memory_format=torch.contiguous_format) → Tensor
sizes(torch.Size或者诠释...) -所需尺寸
memory_format(
torch.memory_format
, 可选的) -张量所需的内存格式。默认值:torch.contiguous_format
。请注意,如果self.size()
匹配sizes
,则self
的内存格式将不受影响。
将
self
张量调整为指定大小。如果元素的数量大于当前的存储大小,则调整底层存储的大小以适应新的元素数量。如果元素数量较少,则不会更改底层存储。保留现有元素,但未初始化任何新内存。警告
这是一种低级方法。存储被重新解释为C-contiguous,忽略当前步幅(除非目标大小等于当前大小,在这种情况下张量保持不变)。在大多数情况下,您将改为使用
view()
来检查连续性,或者使用reshape()
来在需要时复制数据。要使用自定义步幅就地更改大小,请参阅set_()
。例子:
>>> x = torch.tensor([[1, 2], [3, 4], [5, 6]]) >>> x.resize_(2, 2) tensor([[ 1, 2], [ 3, 4]])
参数:
相关用法
- Python PyTorch Tensor.register_hook用法及代码示例
- Python PyTorch Tensor.real用法及代码示例
- Python PyTorch Tensor.refine_names用法及代码示例
- Python PyTorch Tensor.rename用法及代码示例
- Python PyTorch Tensor.repeat用法及代码示例
- Python PyTorch Tensor.requires_grad_用法及代码示例
- Python PyTorch Tensor.unflatten用法及代码示例
- 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.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.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.resize_。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。