1 Star 1 Fork 1

liqinglucky/Python+PyTorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
3.2.1.3.py 235 Bytes
一键复制 编辑 原始数据 按行查看 历史
liqinglucky 提交于 2021-05-15 20:52 . python+python示例代码
from scipy.stats import hmean
sample_list = [50,60,75,85,100,30,48]
x = hmean(sample_list)
print(x)
#方法2
rec_sample_list = [1/ i for i in sample_list]
rec_mean = sum(rec_sample_list) / len(rec_sample_list)
y = 1/rec_mean
print(y)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liqinglucky/python_pytorch.git
git@gitee.com:liqinglucky/python_pytorch.git
liqinglucky
python_pytorch
Python+PyTorch
master

搜索帮助