论文Rethinking the Inception Architecture for Computer VisionGoogLeNetGoogleNet_BN的实现做了进一步的解释,同时提出了新的Inception模块和损失函数LSR(label-smoothing regularizer)

上一篇实现了Inception_v2架构,经过测试发现其损失收敛速度确实高于之前的GoogLeNet_BN。本文在此基础上实现Inception_v3架构

论文翻译地址:[译]Rethinking the Inception Architecture for Computer Vision

Inception_v2实现:[GoogLeNet]Inception_v2

发现一个在线可视化工具:Netscope CNN Analyzer,里面提供了Inception v3的可视化及详细参数:Inception v3

阅读全文 »

论文Rethinking the Inception Architecture for Computer VisionGoogLeNetGoogleNet_BN的实现做了进一步的解释,同时提出了新的Inception模块和损失函数LSR(label-smoothing regularizer),本文实现其中的Inception_v2架构

论文翻译地址:[译]Rethinking the Inception Architecture for Computer Vision

阅读全文 »

综合PASCAL VOC 20072012数据集,进行分类/检测任务。分两步完成:

  1. 下载07 trainval、07 test、12 trainval数据集,解析出分类/检测需要的数据
  2. 根据具体任务(分类或者检测)从中提取数据

相关实现:zjykzj/vocdev

阅读全文 »