1. Motivation

few shot 本身存在的意义:

  • In other words, we are unable to alleviate the situation of scarce cases by simply spend- ing more money on annotation even big data is accessible.

  • Therefore, the study of few-shot learning is an imperative and long-lasting task.

  • 长尾分布在真实世界中也是一个的问题,数据缺少data scarcity。

  • long-tail distribution is an inherent characteristic of the real world.

  • Its performance is largely affected by the data scarcity of novel classes

FSOD(Few Shot Obejct Detection)中包含novel classes以及base classes,base classes是指包含大量标注信息的数据集,而novel classes则是只有少部分标注信息的数据集。

  • In FSOD, there are base classes in which suffi-cient objects are annotated with bounding boxes and novel classes in which very few labeled objects are available.

FSOD的目标在于通过base classes的协助,来学习novel classes中优先的数据,从而在测试中能够检测出所有的novel objects。

  • The few-shot detectors are expected to learn from limited data in novel classes with the aid of abundant data in base classes and to be able to detect all novel objects in a held-out testing set

目前大部分的方法采用meat-learning以及metric learning,然后将他们应用于全监督的检测器中。

  • To achieve this, most recent few- shot detection methods adopt the ideas from meta-learning and metric learning for few-shot recognition and apply them to conventional detection frameworks, e.g. Faster R-CNN [35], YOLO [34].

在本文中,对于explicit shots自己implicit shots的定义:

其中explicit shots指的就是FSOD中novel classes的k-shot;而implicit shots则是只预训练模型的数据集。

  • The explicit shots refer to the available labeled objects from the novel classes.
  • In terms of implicit shots, initializing the backbone net- work with a model pretrained on a large-scale image clas- sification dataset is a common practice for training an ob- ject detector.

但是对于implicit shots来说,有可能大规模的预训练的数据集中的类别会和novel classes重复。因此,如果去除了explict shots,如图1所示,大部分的方法在同等的shot的情况下,expilict以及implicit shots相比,就会有性能的下降。

作者认为出现这个问题的原因在于视觉信息的独立。随着训练数据的减少,视觉信息会越来越局限。

  • We believe the reason for shot sensitivity is due to exclusive dependence on the visual information.
  • As a result, visual information becomes limited as image data becomes scarce.

但是作者指出,有一项是不变的常数,那就是base classes和novel classes中的semantic relation。

2. Contribution

  • To our knowledge, our work is the first to investigate semantic relation reasoning for the few-shot detection task and show its potential to improve a strong baseline.

  • Our SRR-FSD achieves stable performance w.r.t the shot variation, outperforming state-of-the-art FSOD methods under several existing settings especially when the novel class data is extremely limited.

  • We suggest a more realistic FSOD setting in which implicit shots of novel classes are removed from the classification dataset for the pretrained model, and show that our SRR-FSD can maintain a more steady performance compared to previous methods if using the new pretrained model.

3. Method

3.1 FSOD Preliminaries

base classes Cb, Db, Db中包含xi,yi{x_i, y_i}xi,yi,xi是图片,yi是label+bounding box,而novel class set Dn 以及 Cn,Cn∩Cn=∅C_n \cap C_n = \emptysetCnCn=。则是只包含了Cn中的label,以及对于每一个类别Cn,都只有K个object。

FSOD的目的在于通过学习Db来泛化Dn,从而能够见得Db∪DnD_b \cup D_nDbDn的测试集。

FSOD中有two stage的方法,首先在Db数据集集上训练,然后fine-tune到Dn和Dn并集的数据集上。当然,在第一个阶段,为了避免Db数据集的dominance,训练样本要保持一定平衡,第二阶段才会使用total images。

3.2 Semantic Space Projection

本文基于Faster R-CNN,传统的Faster R-CNN在分类分支经过FC得到的v∈Rdv \in R^dvRd, 和本文提出的learnable weight matrix w∈RN×dw \in R^{N \times d}wRN×d,相乘得到一个概率分布:

其中,N是classes的数量,b∈RNb \in R^NbRN。训练期间使用了交叉熵loss。

在本文中,为了同时学习物体的视觉和语义信息,本文首先构建了语义空间semantic space并且投影视觉特征v 到语义空间上。

首先使用 word embedding We∈RN×deW^e \in R^{N \times d_e}WeRN×de,其中ded_ede代表word embedding的d-dimension ,其中N是包括背景类的classes 数量。检测器在分类分支上来学一个linear projection P∈Rde×dP \in R^{d_e \times d}PRde×d

预测的概率分布由公式1转变为公式2:

在训练中WeW_eWe 是固定的,P是learnable variable。

Domain gap between vision and language

word embedding 对于FSOD来说有gap,原因在于不同于zero shot,zero shot中的都是unseen classes,没有来自于任何的已知的images,但是FSOD可以依赖原有图片以及embedding学习novel classes,因此novel class的多少则会影响泛化的方向以及性能。

因此,本文提出需要加强语义空间从而来减少vison以及language的gap。

3.3. Relation Reasoning

本文认为,对于word embedding来说,vector的表示是N x d,但这类与类之间是没有联系的,独立的,因此本小节提出了一个knowledge graph G $G \in N \times N $来建模类别之间的关系,具体来说G在分类分支,通过一个图卷积的方法,来获得,因此公式2可以继续更新为公式3:

The heuristic definition of the knowledge graph

构造dynamic relation graph。

  • Instead of predefining a knowledge graph based on heuristics, we propose to learn a dynamic relation graph driven by the data to model the relation reasoning between classes.

通过transformer来实现,relation reasoning module来实现,

  • Inspired by the concept of the transformer, we implement the dynamic graph with the self- attention architecture [37] as shown in Figure 4

[SRR-FSD] Semantic Relation Reasoning for Shot-Stable Few-Shot Object Detection(CVPR. 2021)相关推荐

  1. 论文阅读《Semantic Relation Reasoning for Shot-Stable Few-Shot Object Detection》

    论文地址:https://arxiv.org/abs/2103.01903 目录 1.存在的问题 2.Introduction 3.算法简介 4.算法细节 4.1.语义空间投影 4.2.关系推理模块r ...

  2. 论文阅读《Dense Relation Distillation with Context-aware Aggregation for Few-Shot Object Detection》

    Background & Motivation 文中认为在此之前的 Few-shot 目标检测方法中的两类存在着不足: 采用元学习的训练策略,同时 reweight 每一类的表征. fine- ...

  3. Relation Networks for Object Detection

    Relation Networks for Object Detection CVPR 2018 Oral,本文设计了一个考虑 relation 的 module,来增强 object detecti ...

  4. [Relation Network]Realtion Networks for Object Detection (CVPR. 2018)

    文章目录 1. Motivation 2. Contribution 3. Object Relation Moudle 4. Relation Networks For Object Detecti ...

  5. 目标检测--Rich feature hierarchies for accurate object detection and semantic segmentation(CVPR 2014)

    Rich feature hierarchies for accurate object detection and semantic segmentation 作者: Ross Girshick J ...

  6. 深度学习论文阅读目标检测篇(一):R-CNN《Rich feature hierarchies for accurate object detection and semantic...》

    深度学习论文阅读目标检测篇(一):R-CNN<Rich feature hierarchies for accurate object detection and semantic segmen ...

  7. RCN-Rich feature hierarchies for accurate object detection and semantic segmentation

    Rich feature hierarchies for accurate object detection and semantic      segmentation 摘要 标准的PASCAL V ...

  8. Single shot object detection SSD using MobileNet and OpenCV

    微信公众号:小白图像与视觉 关于技术.关注yysilence00.有问题或建议,请公众号留言. 主题:Single shot object detection SSD using MobileNet ...

  9. 目标检测经典论文——R-CNN论文翻译:Rich feature hierarchies for accurate object detection and semantic segmentation

    Rich feature hierarchies for accurate object detection and semantic segmentation--Tech report (v5) 用 ...

最新文章

  1. 如何给网站瘦身?图文并茂的前端性能优化指南
  2. 腾讯AI Lab的研究方向
  3. 计算数学与数学理论专栏【简介】
  4. (王道408考研操作系统)第三章内存管理-第二节3:页面置换算法2
  5. mysql mvcc实例讲解_轻松理解MYSQL MVCC 实现机制
  6. java九年_Java 9明年9月釋出正式版
  7. MySql增加用户、授权、修改密码等语句
  8. mysql配置utf8_mb4
  9. git 停止维护了,官网无法下载
  10. mysql忽略大小写 chmod_Ubuntu18.04下Mysql8.0.15关闭大小写敏感
  11. 【51单片机】往返流水灯代码
  12. Windows10系统旧电脑打包迁移新电脑
  13. 直播用的计算机配置,直播吃鸡需要什么配置才行?
  14. 2010QQ游戏登录器(分析+感叹)
  15. ESP8266 下 OTA 更新 Firmware 和FileSystem
  16. Python添加下拉菜单
  17. Premiere Pro 2022离线语音转文本教程
  18. 极米newz6x和newz8x区别 极米newz6x和newz8x哪款好 哪个性价比高
  19. 计算机网络复习笔记 之协议相关
  20. 银河麒麟系统,光盘追加刻录失败

热门文章

  1. 《平凡的世界》《白鹿原》《废都》读后感
  2. 求两个自然数的最大公约数(3种方法)
  3. 机器学习-利用信息熵来学习如果分辨好西瓜
  4. python取余什么意思_python取余运算符是什么?
  5. 【论文阅读】Scaling Up Your Kernels to 31x31: Revisiting Large Kernel Design in CNNs
  6. S7-200SMART案例分析——程序框架
  7. 中职网络安全竞赛C模块MS17-010批量扫描
  8. ceph mon 迁移
  9. Travel English
  10. 小米3连续快速点击android版本四次后出现屏幕是红的咋耨,小米3手机连不上电脑怎么办?...