Pytorch 一些函数用法

Posted cunyusup

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytorch 一些函数用法相关的知识,希望对你有一定的参考价值。

PyTorch中view的用法:https://blog.csdn.net/york1996/article/details/81949843

max用法

import torch

d=torch.Tensor([[1,3],[2,4]])
print(d)

tensor([[1., 3.],
        [2., 4.]])

import torch

d=torch.Tensor([[1,3],[2,4]])
print(torch.max(d,0))
print(torch.max(d,1))

(tensor([2., 4.]), tensor([1, 1]))
(tensor([3., 4.]), tensor([1, 1]))

torch.max()返回两个结果,第一个是最大值,第二个是对应的索引值;第二个参数 0 代表按列取最大值并返回对应的行索引值,1 代表按行取最大值并返回对应的列索引值。



以上是关于Pytorch 一些函数用法的主要内容,如果未能解决你的问题,请参考以下文章

创建片段而不从 java 代码实例化它

js数组高阶方法reduce经典用法代码分享

js数组高阶方法reduce经典用法代码分享

Tips pytorch reshape()函数的用法

plt.savefig()的用法以及保存路径

pytorch中torch.cat() 和paddle中的paddle.concat()函数用法