Pytorch

深度之眼Pytorch框架训练营第三期(1)——张量简介与创建

2020-01-13  本文已影响0人  aidanmomo

张量简介与创建

1. 张量的概念

张量是一个多维数组,它是标量、向量、矩阵的高维扩展。


在这里插入图片描述

1.1 Tensor 与 Variable

2. 张量的创建

2.1 直接创建

torch.tensor(
            data,
            dtype=None,
            device=None, 
            requires_grad=False,
            pin_memory=False)
        arr = np.array([[1, 2, 3],[4, 5, 6]])
        t = torch.from_numpy(arr)
        print('numpy array:', arr)
        print('tensor:', t)

        print('修改array!')
        arr[0, 0] = 0
        print('numpy array:', arr)
        print('tensor:', t)

        print('修改tensor!')
        t[0, 0] = -1
        print('numpy array:', arr)
        print('tensor:', t)

运行结果如下:


在这里插入图片描述

2.2 依据数值创建

torch.zeros(
            size,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)
torch.full(
            size,
            fill_value,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)
torch.arange(
            start=0,
            end,
            step=1,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)
torch.linsapce(
            start=0,
            end,
            steps=100,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)
torch.linsapce(
            n,
            m=None,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)

2.3 依据概率分布创建张量

torch.normal(
            mean,
            std,
            out=None)
        print('mean张量,std张量')
        mean = torch.arange(1, 5, dtype=torch.float)
        std = torch.arange(1, 5, dtype=torch.float)
        t_normal = torch.normal(mean, std)
        print('mean:{} \n std:{}'.format(mean, std))
        print(t_normal)


        print('mean张量,std标量')
        mean = torch.arange(1, 5, dtype=torch.float)
        std = 1
        t_normal = torch.normal(mean, std)
        print('mean:{} \n std:{}'.format(mean, std))
        print(t_normal)


        print('mean标量,std张量')
        mean = 0
        std = torch.arange(1, 5, dtype=torch.float)
        t_normal = torch.normal(mean, std)
        print('mean:{} \n std:{}'.format(mean, std))
        print(t_normal)

结果为:


在这里插入图片描述
torch.rand(
            size,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)
torch.randint(
            low=0,
            high,
            size,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)
torch.randperm(
            n,
            out=None,
            dtype=None,
            layout=torch.strided,
            device=None,
            requires_grad=False)
torch.bernoulli(
            input,
            *,
            generator=None,
            out=None,
            )
上一篇 下一篇

猜你喜欢

热点阅读