ZhangGongjie / Meta-DETR

[T-PAMI 2022] Meta-DETR for Few-Shot Object Detection: Official PyTorch Implementation
MIT License
388 stars 84 forks source link

coco fine-tuning parameters #64

Closed ZhangGYGitHub closed 1 year ago

ZhangGYGitHub commented 1 year ago

The parameters of coco 1-shot 2-shot 3-shot are not given in the article and code, such as epoch=?lr_drop1=?lr_drop2=?

can you please publish it?

for fewshot_seed in 01 02 03 04 05 do for num_shot in 10 30 do FS_FT_DIR=${EXP_DIR}/seed${fewshotseed}${num_shot}shot mkdir ${FS_FT_DIR}

if [ $num_shot -eq 10 ]
then
  epoch=500
  lr_drop1=300
  lr_drop2=450
elif [ $num_shot -eq 30 ]
then
  epoch=500
  lr_drop1=300
  lr_drop2=450
else
  exit
fi