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

PyTorch torch.hstack 函数


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

torch.hstack 是 PyTorch 中用于水平(沿列)堆叠张量的函数。

函数定义

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

使用示例

实例

import torch

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

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

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

输出结果为:

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

二维张量水平堆叠:
  y1:
tensor([[1, 2],
        [3, 4]])
  y2:
tensor([[5, 6],
        [7, 8]])
  hstack:
tensor([[1, 2, 5, 6],
        [3, 4, 7, 8]])

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

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