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.

retinanet_r50_fpn_1x_voc0712.py 489 B

2 years ago
1234567891011121314
  1. _base_ = [
  2. '../_base_/models/retinanet_r50_fpn.py', '../_base_/datasets/voc0712.py',
  3. '../_base_/default_runtime.py'
  4. ]
  5. model = dict(bbox_head=dict(num_classes=20))
  6. # optimizer
  7. optimizer = dict(type='SGD', lr=0.01, momentum=0.9, weight_decay=0.0001)
  8. optimizer_config = dict(grad_clip=None)
  9. # learning policy
  10. # actual epoch = 3 * 3 = 9
  11. lr_config = dict(policy='step', step=[3])
  12. # runtime settings
  13. runner = dict(
  14. type='EpochBasedRunner', max_epochs=4) # actual epoch = 4 * 3 = 12

No Description

Contributors (2)