代码拉取完成,页面将自动刷新
import torch
sample = torch.rand(3, 2)
# 求和
print(torch.sum(sample))
# 求最小值
print(torch.min(sample))
# 求最大值
print(torch.max(sample))
# 求最小值所在位置
print(torch.argmin(sample))
# 求最大值的位置
print(torch.argmax(sample))
# 求平均值
print(torch.mean(sample))
# 求中位数
print(torch.median(sample))
# 计算开方
print(torch.sqrt(sample))
# 求平方
print(sample ** 2)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。