-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use DPT in DETR #11
Comments
We simply replace the PVT backbone with our DPT model, without any other modification in DETR decoder & encoder layers. Please see the configuration here |
It is to replace the ResNet50 in DETR with PVT, and the Transformer is still connected later, right? |
Yeah. |
Thank you very much for your patient answer. In DETR, the backbone output dimension is 256 and the number of channels is 2048. How do you set the dimension and number of channels in DPT? |
The dimension of backbone output is 512, while the transformer dimension is set to be 256. For our configuration please refer detr_r50_8x2_50ep_coco_baseline.py For detailed implementation please refer |
Does the author add the DPT module to the DETR part? A little anxious, thank you very much
The text was updated successfully, but these errors were encountered: