1 Star 0 Fork 0

K-on/机器学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
基本运算操作2.py 428 Bytes
一键复制 编辑 原始数据 按行查看 历史
K-on 提交于 2020-10-11 19:56 . 基本操作运算
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)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/HuangJiaLuo/machine-learning.git
[email protected]:HuangJiaLuo/machine-learning.git
HuangJiaLuo
machine-learning
机器学习
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385