您的位置:首页 > Web前端

论文阅读之:Deep Meta Learning for Real-Time Visual Tracking based on Target-Specific Feature Space

2018-01-04 16:08 1511 查看
Deep Meta Learning for Real-Time Visual Tracking based on Target-Specific Feature Space


2018-01-04 15:58:15

  

  写在前面:为什么要看这个paper?这篇 paper 貌似是第一个将 meta-learning 应用到 visual tracking 领域的,取得了速度和精度较好的平衡。

  Introduction:

  我们知道,tracking 中比较重要的就是 target object 特征的学习 以及 物体外观的变化。很多算法都针对这两点一直进行改进,而最近 NN 对特征的表达提供了很好的解决,但是,物体外观的变化,仍然不能很好的处理,很多都是 用跟踪的结果弄一个 target object 的集合,然后适时的进行更新。但是,这种策略是不可避免的,分类器通常都会 overfitting,然后丢失了 the generalization capabilities due to the insufficient training of samples.

  本文基于以上背景和动机,提出了一种 end to end visual tracking network structure,主要包括了两个部分:

  一个是:Siamese matching network for target search,

  另一个是:meta-learning network for adaptive feature space.

  这里我们主要关注的是这个 meta-learning network,我们提出的一个 参数预测网络(parameter prediction network),当然这里是借鉴了最新的 meta-learning 用于 few-shot learning problem.

  


  The proposed meta-learner network is trained to provide the matching network with additional convolutional kernels so that the feature space of the matching network can be modified adaptively to adopt new appearance templates obtained in the course of tracking. The meta-learner network only sees the gradients from the last layer of the matching network, given new training samples for the appearance.

  We also employ a novel training scheme for the meta-learner network to maintain the generalization capability of the feature space by preventing the meta-learner network from generating new parameters that causes overfitting of the matching network. By incorporating our metalearner network, the target-specific feature space can be constructed instantly with a single forward pass without any iterative computation and optimization and free-from the innate overfitting. Fig.1 illustrates the motivation of proposed visual tracking algorithm.

  

  

  Tracking with Meta-Learner

  1. Overview of Proposed Method

  1.1. Compoent

  本文所涉及到的网络结构有两个部分构成:the matching network and meta-learning network.

  Siamese Matching Network 用来计算两个 image patch 之间的相应图(the response map):

  


  这部分特征提取 CNN是 fully convolutional network,损失函数就是计算:预测的响应图 和 groundtruth Response map 的差异。

  

  Meta-learning Network:这个网络提供的是 the matching network with target-specific weights given an image patch of the target with context patches z = {z1, ..., zM}.

  为了调整 weights 超向 target patch,我们利用 损失函数的平均负梯度 $\delta$ 来更新 matching network 的最后一层:

  


  The meta-learning network 的设计是基于一个假设:the characteristic of $\delta$ is empirically different according to a target. 这句话是什么意思 ?

  

  然后,这里将 $\delta$ 作为输入,the meta-learning network $g_{\theta}(*)$ 对应输入的 target-specific weights $w^{weights}$:

  


  其中,$\theta$ 是 the meta-learning network 的参数。这个新的 weights 被用来更新 matching network's 原始权重:

  


  其中,

连接了 $w^{target}$ to $w_{N}$ of last layer for feature extraction. 本文方法的流程图,如图2所示。
  

  


  

  


  


  Experiment:

 

 




  反思:这个文章中,除了常规的 Siamese matching network外,引入 meta-learning network 到底是起到了什么作用呢 ???

  这个文章的主要是在 Siamese matching network 上进行改进的,那么,问题就来了,原本的 Siamese network 有什么问题,而需要引入这个 meta-learning 呢?

  我觉得主要是因为随着 tracking的进行,物体的外观会有 variation,而 Siamese Matching network 的框架,则无法避免由于外观改变导致的 target patch 不准确的问题,那么,很明显,当挑战性因素出现的时候,我们无法很好的 model 这个变化导致的问题,一个很明显的改进方法是直接将 initial target patch 弄过来,这篇文章呢,也是类似,只不过多了个卖点,deep meta-learning,即文中所讲的:

  The proposed meta-learner network is trained to provide the matching network with additional convolutional kernels so that the feature space of the matching network can be modified adaptively to adopt new appearance templates obtained in the course of tracking. The meta-learner network only sees the gradients from the last layer of the matching network, given new training samples for the appearance.

  这段话意思是:本文所提出的 meta-learning 用来给 Siamese matching network 提供额外的 卷积核(也就是参数咯),以使得 matching network 的特征空间可以修改到适应 新的外观模板(new appearance templates)。那么,这里和 re-detection 完成的工作差不多啊,都是收集 tracking 过程中的 target sample,然后更新 model 嘛 ~~~

  不过这个文章用到了 deep meta-learning,这也算是个新的尝试。。。

  

    
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐