TL;DR
Few-shot object detection faces challenges due to an unbalanced distribution of region proposals between novel and base classes. To address this, a proposal refinement approach is introduced during different training phases.
✦ Why It Matters
Engineers can implement proposal refinement techniques to improve few-shot object detection in their applications.
Key Takeaways
How It Works
The proposal refinement approach addresses class imbalance by introducing a refinement loss during the base training phase, which increases the model's sensitivity to novel classes. In the fine-tuning phase, an auxiliary refinement branch is integrated into the Region Proposal Network (RPN) to enhance the generation of proposals for these novel classes, effectively rebalancing the proposal distribution.
Related