zoukankan      html  css  js  c++  java
  • 论文阅读之:Deep Meta Learning for Real-Time Visual Tracking based on Target-Specific Feature Space

     Deep Meta Learning for Real-Time Visual Tracking based on Target-Specific Feature Space 

    2018-01-04  15:58:15 

     

    Paper: https://arxiv.org/pdf/1712.09153.pdf 

    更新后的版本:Deep Meta Learning for Real-Time Target-Aware Visual Tracking 

      

    写在前面:为什么要看这个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_{ heta}(*)$ 对应输入的 target-specific weights $w^{weights}$:

      

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

      

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

      

      

      

      

      Experiment:

        

     

     

     

  • 相关阅读:
    产品中常用理论
    Mac下配置环境变量
    Maven仓库
    深入理解Spring中的各种注解
    JAVA中简单字符串分割
    WARN: HHH000277: Could not bind factory to JNDI
    dos命令窗口下下java命令提示找不到或无法加载主类
    数组实用类:Arrays
    数组
    线程创建方式
  • 原文地址:https://www.cnblogs.com/wangxiaocvpr/p/8193880.html
Copyright © 2011-2022 走看看