You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2024. It is now read-only.
The RPN.ANCHOR_SIZES only works when you use ResNetC4Model . I think you never use it in all your experiments. ResNetFPNModel is your model. You need to set FPN.ANCHOR_SIZES for ResNetFPNModel.
Hi, thanks for your awesome work!
In your paper, you mentioned that you use RPN Anchor Sizes: [8, 16, 32] for VOC.
I noticed that you configure it here:
ssl_detection/detection/train_stg1.py
Line 84 in 5118c64
However, according to this file:
ssl_detection/detection/modeling/generalized_stac_rcnn.py
Line 412 in 00d5227
The
RPN.ANCHOR_SIZESonly works when you useResNetC4Model. I think you never use it in all your experiments.ResNetFPNModelis your model. You need to setFPN.ANCHOR_SIZESforResNetFPNModel.Correct me if I'm wrong.