zyong812 / STIP

Code for CVPR22 paper: Exploring Structure-aware Transformer over Interaction Proposals for Human-Object Interaction Detection.
Other
45 stars 6 forks source link

loss's code check #13

Closed hutuo1213 closed 1 year ago

hutuo1213 commented 1 year ago

Hi, @zyong812 :

I see the following code, does it mean that only the update of the action loss has been made; There is no update of interactive loss(loss_proposal); If I want to use, the format is similar to the action loss? 20221109221048

yaoyaosanqi.

zyong812 commented 1 year ago

We include auxiliary action_loss based on the aux_outputs of the interaction decoder since it has multi-layer outputs. This is similar to DETR (see https://github.com/facebookresearch/detr) in computing object detection loss.

The mentioned interactive loss (loss_proposal) is computed based on the final outputs of the interaction proposal net, which has no aux_outputs.