You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

yolof_r50_c5_8x8_iter-1x_coco.py 671 B

2 years ago
1234567891011121314
  1. _base_ = './yolof_r50_c5_8x8_1x_coco.py'
  2. # We implemented the iter-based config according to the source code.
  3. # COCO dataset has 117266 images after filtering. We use 8 gpu and
  4. # 8 batch size training, so 22500 is equivalent to
  5. # 22500/(117266/(8x8))=12.3 epoch, 15000 is equivalent to 8.2 epoch,
  6. # 20000 is equivalent to 10.9 epoch. Due to lr(0.12) is large,
  7. # the iter-based and epoch-based setting have about 0.2 difference on
  8. # the mAP evaluation value.
  9. lr_config = dict(step=[15000, 20000])
  10. runner = dict(_delete_=True, type='IterBasedRunner', max_iters=22500)
  11. checkpoint_config = dict(interval=2500)
  12. evaluation = dict(interval=4500)
  13. log_config = dict(interval=20)

No Description

Contributors (2)