Charles-Xie / CQL

Code for our paper "Category Query Learning for Human-Object Interaction Classification" (CVPR2023)
https://arxiv.org/abs/2303.14005
Apache License 2.0
33 stars 5 forks source link

Score Integration #5

Closed vinnnnncy closed 11 months ago

vinnnnncy commented 1 year ago

Hi, Thx for the code release. Can u tell me where is the part of 'hard/soft score integration' in the provided code?

Charles-Xie commented 1 year ago

Thanks for your attention to this work! Actually, score integration is not in this codebase, as we find the version without this trick already achieves a similar performance reported in the paper. Score integration is a small trick that has only a slight improvement on the baseline. That's why we keep its detail in the supplementary material and only mentioned it briefly in the main paper. if you want to have a try, you can refer to the similar implementation in rankseg for hard integration, while soft integration is simply multiplication between image-level and instance-level score.