zhen-he / tracking-by-animation

A PyTorch implementation of the "Tracking-by-Animation" algorithm published at CVPR 2019.
123 stars 24 forks source link

An issue about the loss and training incentive #13

Open StudentWong opened 4 years ago

StudentWong commented 4 years ago

Hello, I have run the module and it has remarkable performance. But I am confused about the incentive for the loss to decrease. If the "Feature Extractor" and the "Tracker Array" was trained to a set of parameter in which they always perform Identical output representing any part of the input image, the reconstructed frame rendered according to these output apperance and pose can also be practically equal to the original frame.

Is there any mechanism in the module or in the RAT that motivates the "Feature Extractor" and the "Tracker Array" to output the exact tracking object since it's totally "label-free"?

Many Thanks and Best Regards

zhen-he commented 4 years ago

Hi, thanks for your interest. I think the following mechanisms are important for the model to track objects accurately:

StudentWong commented 4 years ago

Hi, I have read those marked paragraph again and seen what you mean. Thanks for taking time to provide the answer detailedly and patiently.