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

2022年10月9日

计算机视觉里面的ground truth到底是指什么

摘要: 参考链接: https://www.zhihu.com/question/424356847 https://blog.csdn.net/weixin_41010198/article/details/89311366 阅读全文

posted @ 2022-10-09 09:02 健力宝1995 阅读(86) 评论(0) 推荐(0)

2022年10月8日

python函数调用细节

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

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

Python zip()函数

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

posted @ 2022-10-08 11:31 健力宝1995 阅读(12) 评论(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 阅读(42) 评论(0) 推荐(0)

2022年9月30日

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

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

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

2022年9月29日

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

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

posted @ 2022-09-29 15:48 健力宝1995 阅读(63) 评论(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 阅读(2624) 评论(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 阅读(2236) 评论(0) 推荐(1)

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 阅读(386) 评论(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 阅读(162) 评论(0) 推荐(0)

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

导航