栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

PyTorch中的torch.max()和torch.maximum()的用法详解

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

PyTorch中的torch.max()和torch.maximum()的用法详解

1、torch.max()

torch.max(input) → Tensor

返回 input tensor 中所有元素的最大值。

torch.max(input, dim, keepdim=False) → output tensors (max, max_indices)

参数:

  • input:输入的 tensor。
  • dim:按什么维度求最大值(2D中,0代表按列求最大值,1代表按行求最大值)。
  • keepdim:是否保持 input tensor 的维度,True 代表 out tensor 与 input tensor 的维度相同,False 代表 out tensor 与 input tensor 的维度不同。

返回值:

  • 返回一个 namedtuple (values, indices),values表示指定维度的最大值,indices表示最大值所在的索引,如果给定维度有多个最大值,返回第一个最大值所在的索引。

2、torch.maximum()

torch.maximum(input, other) → Tensor

参数:

  • input:第一个输入 tensor。
  • other:第二个输入 tensor。

返回值:

  • 两个 tensor 进行逐元素比较,返回每个较大的元素组成一个新的 tensor。如果元素中有 NaN 值,则返回 NaN 值。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/461520.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号