Atten4Vis / ConditionalDETR

This repository is an official implementation of the ICCV 2021 paper "Conditional DETR for Fast Training Convergence". (https://arxiv.org/abs/2108.06152)
Apache License 2.0
358 stars 48 forks source link

How to add Group DETR in DINO-Deformable-DETR #29

Closed xiaoruiai closed 1 year ago

xiaoruiai commented 1 year ago

Hi, Thank you for your wonderful works. If I want to add Group DETR in DINO-Deformable-DETR, how to use Mixed Query Selection that generate box for different groups?

charlesCXK commented 1 year ago

Hi, we generate multiple groups of proposals in this step.

xiaoruiai commented 1 year ago

Multiple groups of proposals are the same?How to generate different groups of proposals?

charlesCXK commented 1 year ago

Multiple groups of proposals are the same?How to generate different groups of proposals?

Hi, we use different heads to generate different groups of proposals.

xiaoruiai commented 1 year ago

I get it. Thank you very much for your patient guide.