pytorch

pytorch张量切片操作咋做

小樊
81
2024-12-25 20:55:26
栏目: 深度学习

在PyTorch中,张量切片操作非常简单。你可以使用切片语法来访问和操作张量的子集。以下是一些常见的切片操作示例:

  1. 访问单个元素:
import torch

x = torch.tensor([[1, 2, 3], [4, 5, 6]])
print(x[0, 1])  # 输出:2
  1. 访问行切片:
import torch

x = torch.tensor([[1, 2, 3], [4, 5, 6]])
print(x[0:1, :])  # 输出:tensor([[1, 2, 3]])
  1. 访问列切片:
import torch

x = torch.tensor([[1, 2, 3], [4, 5, 6]])
print(x[:, 1:2])  # 输出:tensor([[2],
                        #        [5]])
  1. 访问多维切片:
import torch

x = torch.tensor([[1, 2, 3], [4, 5, 6]])
print(x[0:1, 1:2])  # 输出:tensor([[2]])
  1. 使用步长进行切片:
import torch

x = torch.tensor([[1, 2, 3], [4, 5, 6]])
print(x[::2, ::2])  # 输出:tensor([[1, 3],
                        #        [4, 6]])

这些示例展示了如何在PyTorch中使用切片操作来访问和操作张量的子集。你可以根据需要调整切片参数来获取所需的子集。

0
看了该问题的人还看了