progressive-coordinate-transforms icon indicating copy to clipboard operation
progressive-coordinate-transforms copied to clipboard

How to generate each learner's label?

Open rockywind opened this issue 2 years ago • 1 comments

How to construct the location loss function? image

rockywind avatar Aug 17 '21 14:08 rockywind

How to construct the location loss function?

The target for each stage is the ground truth localization, the loss function calculates the loss between ground truth localization and predicted localization of the corresponding stage. For stage t, we regress the center localization residual based on the previous stage prediction, so the predicted localization is the sum of the initial center localization and a stack of residual localization from t stages, which can be described in Equation 4 in our paper. Besides, the implementation can be seen in lib/models/patchnet_pct.py and lib/losses/patchnet_loss.py.

Willy0919 avatar Aug 18 '21 05:08 Willy0919