现在位置: 首页 > PyTorch 教程 > 正文

PyTorch torch.column_stack 函数


Pytorch torch 参考手册 Pytorch torch 参考手册

torch.column_stack 是 PyTorch 中用于按列堆叠张量的函数。

函数定义

torch.column_stack(tensors, *, out=None)

使用示例

实例

import torch

# 一维张量列堆叠
x1 = torch.tensor([1, 2, 3])
x2 = torch.tensor([4, 5, 6])
result = torch.column_stack([x1, x2])
print("一维张量列堆叠:")
print(f"  x1: {x1}")
print(f"  x2: {x2}")
print(f"  column_stack:n{result}")

# 二维张量列堆叠
y1 = torch.tensor([[1], [2], [3]])
y2 = torch.tensor([[4], [5], [6]])
result = torch.column_stack([y1, y2])
print("n二维张量列堆叠:")
print(f"  y1:n{y1}")
print(f"  y2:n{y2}")
print(f"  column_stack:n{result}")

# 多个张量列堆叠
z1 = torch.tensor([1, 2, 3])
z2 = torch.tensor([4, 5, 6])
z3 = torch.tensor([7, 8, 9])
result = torch.column_stack([z1, z2, z3])
print("n多个一维张量列堆叠:")
print(f"  result:n{result}")

输出结果为:

一维张量列堆叠:
  x1: tensor([1, 2, 3])
  x2: tensor([4, 5, 6])
  column_stack:
tensor([[1, 4],
        [2, 5],
        [3, 6]])

二维张量列堆叠:
  y1:
tensor([[1],
        [2],
        [3]])
  y2:
tensor([[4],
        [5],
        [6]])
  column_stack:
tensor([[1, 4],
        [2, 5],
        [3, 6]])

多个一维张量列堆叠:
  result:
tensor([[1, 4, 7],
        [2, 5, 8],
        [3, 6, 9]])

Pytorch torch 参考手册 Pytorch torch 参考手册