foolwood / DCFNet

DCFNet: Discriminant Correlation Filters Network for Visual Tracking
MIT License
214 stars 66 forks source link

VID2015 and Center loss #7

Open pabloe4993 opened 6 years ago

pabloe4993 commented 6 years ago

Hi,

Thank you for great job. I have few questions:

  1. In the previous version DCFNet trained on uav123, nus-pro and tc-128. the current one is defined to VID2015, why?
  2. Why you don't use the CenterLoss loss anymore? Why in the first place the CenterLoss don't propagate(only forward but no backward)?

Thank you

foolwood commented 6 years ago
  1. The recent trend is to use VID to train.
  1. CenterLoss was inherited from SiamFC directly to visualize the convergence conditions.
    • But I find it's too slow and provides no additional information. So I decide to remove this loss.
    • CenterLoss is only used to visualize the convergence (Like Top1/5 in image classification). This loss is non-differentiable( just think top1 loss. Only cross entropy can bp).

Thanks for your attention.