上一页 1 ··· 4 5 6 7 8 9 10 11 下一页

2022年10月8日

python函数调用细节

摘要: 函数必须先定义、后调用 特别注意:函数调用函数例外 链接:https://blog.csdn.net/couragehope/article/details/83031932 阅读全文

posted @ 2022-10-08 12:26 健力宝1995 阅读(18) 评论(0) 推荐(0) 编辑

Python zip()函数

摘要: 链接:https://www.runoob.com/python/python-func-zip.html 阅读全文

posted @ 2022-10-08 11:31 健力宝1995 阅读(9) 评论(0) 推荐(0) 编辑

Tensor和tensor的区别

摘要: 参考链接: https://blog.csdn.net/tfcy694/article/details/85338745 https://blog.csdn.net/m0_52650517/article/details/120456732 阅读全文

posted @ 2022-10-08 11:21 健力宝1995 阅读(28) 评论(0) 推荐(0) 编辑

2022年9月30日

Pytorch权重初始化方法——Kaiming、Xavier

摘要: 参考链接:https://blog.csdn.net/qhaaha/article/details/116141633 阅读全文

posted @ 2022-09-30 08:50 健力宝1995 阅读(71) 评论(0) 推荐(0) 编辑

2022年9月29日

消融实验(ablation study)是什么?

摘要: 链接:https://blog.csdn.net/DragonGirI/article/details/107356658 阅读全文

posted @ 2022-09-29 15:48 健力宝1995 阅读(43) 评论(0) 推荐(0) 编辑

SOTA,backbone、benchmark和baseline分别是什么意思?

摘要: SOTA全称是state of the art,是指在特定任务中目前表现最好的方法或模型。 backbone:骨干网络,比如alexnet,ZFnet,VGG,googlenet... benchmark和baseline都是指最基础的比较对象。你论文的motivation来自于想超越现有的base 阅读全文

posted @ 2022-09-29 15:39 健力宝1995 阅读(1150) 评论(0) 推荐(0) 编辑

PSNR-峰值信噪比和SSIM-结构相似性,以及python代码实现

摘要: 1 PSNR概念参考博客 https://zhuanlan.zhihu.com/p/50757421 https://blog.csdn.net/sinat_36197913/article/details/103417334 https://blog.csdn.net/leviopku/artic 阅读全文

posted @ 2022-09-29 15:29 健力宝1995 阅读(1660) 评论(0) 推荐(0) 编辑

2022年9月25日

lambda函数和map函数的理解和使用

摘要: lambda函数 在说lambda函数前,先来想一下平时的在Python中怎么定义和使用函数的,简单的如下: def sum(x): x=x+5 return x print(sum(8)) 输出结果都晓得:13 上面的代码中, def定义一个函数 sum是函数名, x是参数, x=x+5是执行语句 阅读全文

posted @ 2022-09-25 20:46 健力宝1995 阅读(327) 评论(0) 推荐(0) 编辑

pytorch中的numel函数

摘要: 1. numel函数用于获取tensor中一共包含多少个元素 import torch x = torch.randn(3,3) print("number elements of x is ",x.numel()) y = torch.randn(3,10,5) print("number ele 阅读全文

posted @ 2022-09-25 20:41 健力宝1995 阅读(86) 评论(0) 推荐(0) 编辑

2022年9月23日

什么是Top-1和Top-5错误率

摘要: 定义 top1就是你预测的label取最后概率向量里面最大的那一个作为预测结果,你的预测结果中概率最大的那个类必须是正确类别才算预测正确。 而top5就是最后概率向量最大的前五名中出现了正确概率即为预测正确。 Top-1和Top-5 error 是深度学习中评价模型预测错误率的两个指标,在VGG论文 阅读全文

posted @ 2022-09-23 17:00 健力宝1995 阅读(1430) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 下一页

导航