torch.Tensor()与torch.empty()张量创建方法

13 篇文章 0 订阅
11 篇文章 0 订阅

 torch.empty()   创建任意数据类型的张量

 torch.tensor() 只创建torch.FloatTensor类型的张量

 所以torch.Tensor() 是torch.empty() 的特例

empty()返回一个包含未初始化数据的张量。使用参数可以指定张量的形状、输出张量、数据类型。

举例

empty = torch.empty(2, 3)  # Returns a tensor filled with uninitialized data.
print(empty)  # 每一次跑的结果都不一样
# tensor([[2.6999e-06, 1.7377e-04, 1.0431e-08],
#         [4.0046e-11, 1.4013e-45, 2.6407e-06]])

===========================================================================

tensor = torch.tensor([2, 8])  # Constructs a tensor with data
print(tensor)  # tensor([2, 8])

# WARNING(注意!!!)
# torch.tensor() always copies data.
# If you have a Tensor data and want to avoid a copy, use torch.Tensor.requires_grad_()
# or torch.Tensor.detach(). If you have a NumPy ndarray and want to avoid a copy, use torch.as_tensor().

以及一些其他创建张量的方法,源码来自知乎专栏by李小伟

https://zhuanlan.zhihu.com/p/86984581

import torch


# =======================================================================
empty_like = torch.empty_like(empty)  # Returns an uninitialized tensor with the same size as input
print(empty_like)  # 创建一个 size 和 input.size(此处是empty) 一样的张量
# tensor([[1.0293e-37, 0.0000e+00, 1.4013e-45],
#         [0.0000e+00, 8.9683e-44, 0.0000e+00]])

# =======================================================================
# torch.eye(n, m=None, out=None)
# 参数:
# n (int ) – 行数
# m (int, optional) – 列数.如果为None,则默认为n
# out (Tensor, optinal) - Output tensor

eye = torch.eye(3)  # 返回一个2维张量,对角线位置全1,其它位置全0;即n维单位矩阵
print(eye)
# tensor([[1., 0., 0.],
#         [0., 1., 0.],
#         [0., 0., 1.]])

# =======================================================================
zeros_3_2 = torch.zeros(3, 2)  # 返回一个全为标量 0 的张量,形状由可变参数sizes 定义
print(zeros_3_2)
# tensor([[0., 0.],
#         [0., 0.],
#         [0., 0.]])
zeros_5 = torch.zeros(5)
print(zeros_5)
# tensor([0., 0., 0., 0., 0.])
# torch.zeros_like() # 和 torch.empty_like() 功能类似

# =======================================================================
ones = torch.ones(2, 3)  # 返回一个全为1 的张量,形状由可变参数sizes定义。
print(ones)
# tensor([[1., 1., 1.],
#         [1., 1., 1.]])
# torch.ones_like()

# =======================================================================
rand = torch.rand(2, 3)  # 返回一个张量,包含了从区间[0,1)的均匀分布中抽取的一组随机数,形状由可变参数sizes 定义。
print(rand)  # 随机初始化的值在 [0,1) 之间
# tensor([[0.5047, 0.8442, 0.1771],
#         [0.3896, 0.5468, 0.9686]])
# torch.rand_like()

# =======================================================================
randn = torch.randn(2, 3)  # 返回一个张量,包含了从标准正态分布(均值为0,方差为 1,即高斯白噪声)中抽取一组随机数,形状由可变参数sizes定义
print(randn)
# tensor([[ 0.0539,  0.8289, -1.6746],
#         [-1.7428,  0.6285,  0.1432]])
# torch.randn_like()

# =======================================================================
# Returns a tensor filled with random integers generated uniformly between low (inclusive) and high (exclusive).
# The shape of the tensor is defined by the variable argument size.
# 其中的参数 high和size是必要的,low是可选的(默认为0)
randint_01 = torch.randint(3, 5, (3,))
print(randint_01)
# tensor([3, 4, 3])

randint_02 = torch.randint(10, (2, 2))
print(randint_02)  # low 默认是 0
# tensor([[6, 0],
#         [4, 5]])

randint_03 = torch.randint(3, 10, (2, 2))
print(randint_03)
# tensor([[7, 3],
#         [6, 9]])
# torch.randint_like()

# =======================================================================

 

  • 13
    点赞
  • 48
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值