上一页 1 2 3 4 5 6 ··· 27 下一页
摘要: 在工作过程中,我们训练模型时,到底是哪些因素影响最大?模型深度,模型宽度,head个数,head深度,输入大小,输出大小等等。 在工业界中,基于深度学习的检测模型尤其应用广泛。今年由于工作变动,接触了各种不同的项目和模型。发现一个规律,模型可以很小,但是数据量很大时,一样能提高效果。同时输入尺寸变大 阅读全文
posted @ 2024-09-10 20:27 deeplearner_allen 阅读(248) 评论(0) 推荐(1) 编辑
摘要: 上一篇学习了argsort 接着学习sorted 我记得<python编程从入门到实践>这本书里,在一起介绍了sort, sorted,在对list进行排序时,两者都可以用,但是sort是把原有list改变了,无返回值,而sorted是返回一个排序后的list,不会改变原来的list。但是其实两者之 阅读全文
posted @ 2023-08-03 07:52 deeplearner_allen 阅读(154) 评论(0) 推荐(0) 编辑
摘要: numpy.argsort(a, axis=-1, kind=None, order=None) Parameters: aarray_like Array to sort. axis int or None, optional Axis along which to sort. The defau 阅读全文
posted @ 2023-08-03 07:03 deeplearner_allen 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 准确率(Precision),也叫正确预测率(positive predictive value),在模式识别、信息检索、机器学习等研究应用领域,准确率用来衡量模型预测的结果中相关或者正确的比例。而召回率(recall),也叫敏感度(sensitivity),即模型预测的结果中相关或正确的数量占样本 阅读全文
posted @ 2023-06-17 15:37 deeplearner_allen 阅读(135) 评论(0) 推荐(0) 编辑
摘要: IoU (Intersection over Union),交并比,是衡量物体检测模型在特定数据集上检测效果好坏的一个常用的标准,通常情况下,想要通过IoU来衡量物体检测模型好坏需要具备以下几点: 1. 在物体检测任务重,是指数据集通过人工手动(偶尔也有机器)标注出的物体轮廓框的标注信息(groun 阅读全文
posted @ 2023-06-17 15:22 deeplearner_allen 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 常用框架有以下三种: Separate Detection and Embedding (SDE- 物体检测,特征提取与物体关联),JOINT Detection and Embedding (JDE) (a)Deep sort :Simple Online and Realtime Trackin 阅读全文
posted @ 2023-04-15 08:56 deeplearner_allen 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 数据的加载顺序是上图(来自mmdetection官网)中的顺序进行,上图中只有一次padding,但是其实dataloader一共有两次padding,一次是pad,另外一次就是collect后,给模型时,会通过mmcv中的collate进行统一padding,使得每一个minibatch的输入大小 阅读全文
posted @ 2023-04-15 07:48 deeplearner_allen 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 今天写了个代码,就import os 然后os.path.join() 结果一直提示出错,原来写好的能跑的程序也跑不了了,有os.path.join()的地方都提示找不到os.path的模块.我还纳闷了,我没有名字叫os的文件啊.后来才发现,stat.py在库里也是有的,而lib/stat.py中, 阅读全文
posted @ 2022-11-19 17:01 deeplearner_allen 阅读(46) 评论(0) 推荐(0) 编辑
摘要: ''' What are histograms? Histograms are collected counts of data organized into a set of predefined bins When we say data we are not restricting it to 阅读全文
posted @ 2022-10-16 19:31 deeplearner_allen 阅读(51) 评论(0) 推荐(0) 编辑
摘要: ''' 本次来学习基于opencv进行各种画图操作,以前只习惯用matplotlib,最近开始用opencv,觉得也很好用。 cv.line(), cv.circle() , cv.rectangle(), cv.ellipse(), cv.putText() In all the above fu 阅读全文
posted @ 2022-09-26 21:15 deeplearner_allen 阅读(262) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 27 下一页
点击右上角即可分享
微信分享提示