Giter VIP home page Giter VIP logo

dadrt's Introduction

DaDRT

Distractor-aware Deep Regression for Visual Tracking

Dependence:

* MatConvNet     :https://github.com/vlfeat/matconvnet 
* autonn         :https://github.com/vlfeat/autonn 
* mcnExtraLayers :https://github.com/albanie/mcnExtraLayers 
* VGG16 model    :http://www.vlfeat.org/matconvnet/pretrained/ 

dadrt's People

Contributors

dewly avatar

Stargazers

Jingqing Nian avatar

Watchers

James Cloos avatar  avatar

dadrt's Issues

lower precision plot and auc than the paper

Hello, When I run the code, the precision plot is only 93.93% in OTB-2013 which is lower than your result in your paper.
And in your code, you use Normalize(), however in mcnLayers, the output is an array, not a cell,

    function [derInputs, derParams] = backward(obj, inputs, params, derOutputs)
      ders = vl_nnscalenorm(inputs{1}, params{1}, derOutputs{1}) ;
      [derInputs, derParams] = deal(ders(1), ders(2)) ; 
    end

which can not satisfy matconvnet.

      % compute derivatives of inputs and paramerters
      [derInputs, derParams] = obj.backward ...
        (inputs, {net.params(par).value}, derOutputs) ;
      if ~iscell(derInputs) || numel(derInputs) ~= numel(in)
        error('Invalid derivatives returned by layer "%s".', layer.name);
      end

so the only modify is that:

    function [derInputs, derParams] = backward(obj, inputs, params, derOutputs)
      %ders = vl_nnscalenorm(inputs{1}, params{1}, derOutputs{1}) ;
      [derI, derP] = vl_nnscalenorm(inputs{1}, params{1}, derOutputs{1}) ;
     derInputs{1}  = derI;
     derParams{1} = derP;
      %[derInputs, derParams] = deal(ders(1), ders(2)) ; 
    end

I guess the only problem can be this?
So can you tell me how do you solve the problem?
Thanks very much

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.