zzzz567
February 20, 2025, 9:57pm
1
Hi,
I am loading rt-detr v2 for fine-tuning using this command:
model = AutoModelForObjectDetection.from_pretrained(
"PekingU/rtdetr_v2_r50vd",
id2label=id2label,
label2id=label2id,
ignore_mismatched_sizes=True,
)
As shown in this script .
Once the model saved locally, i have noticed from the config.json
that "use_pretrained_backbone": false
. Does this mean that the backbone is being adjusted during my training run?
If yes, how would I proceed to freeze it and use a pretrained version before the model run?
Thanks
1 Like
Since that option is set to false in that model itself, I think the standard Transformers backbone will be used without any problems.
I would like to use detr model with a fine tunned resnet-50 backbone, but I can see how to configure it.
Somebody know how to do it ?
Thanks,
Paolo
zzzz567
February 21, 2025, 1:11pm
3
Thank you! And to freeze it before training:
for name, param in model.named_parameters():
if "backbone" in name:
param.requires_grad = False
Should do it
1 Like
system
Closed
February 22, 2025, 1:12am
4
This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.