[目标检测][PASCAL VOC]mAP
本文字数:
1.7k
阅读时长 ≈
3 分钟
对于目标检测算法而言,mAP(mean average precision)
是最常用的评价指标了。关于如何计算mAP
,不同的数据集提供了不同的实现方式,其中最常用的就是PASCAL VOC
数据集的mAP
计算,网上有很多相关的资料,看了很多还是感觉不理解,所以打算好好记录一下
相关实现:zjykzj/vocdev
You Only Look Once: Unified, Real-Time Object Detection
本文字数:
5.3k
阅读时长 ≈
10 分钟
[译]Identity Mappings in Deep Residual Networks
本文字数:
34k
阅读时长 ≈
1:02
ResNet-18/34/50/101/152
本文字数:
490
阅读时长 ≈
1 分钟
论文Deep Residual Learning for Image Recognition实现了一种新的网络结构 - 残差学习框架。通过堆叠残差单元,能够实现非常深的网络模型
下面使用PyTorch
实现ResNet -18/34/50/101/152
[GoogLeNet]Inception-ResNet-v2
本文字数:
1k
阅读时长 ≈
2 分钟
参考:Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning,解析Inception-ResNet-v2
架构
[GoogLeNet]Inception-ResNet-v1
本文字数:
975
阅读时长 ≈
2 分钟
参考:Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning,解析Inception-ResNet-v1
架构
[GoogLeNet]Inception-v4
本文字数:
3.4k
阅读时长 ≈
6 分钟
Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning
本文字数:
4.3k
阅读时长 ≈
8 分钟
原文地址:Inception-v4, Inception-ResNet and the Impact of Residual Connections on Learning
论文基于Inception
结构和残差连接实现了3
个网络:
Inception-v4
Inception-ResNet-v1
Inception-ResNet-v2
通过实验证明了残差连接能够很好的改善训练速度,同时证明了非残差的Inception
网络同样能够实现最好的分类精度
[Deep Residual Learning for Image Recognition]用于图像识别的深度残差学习
本文字数:
4.1k
阅读时长 ≈
7 分钟