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.

ssd300_wider_face.py 517 B

2 years ago
123456789101112131415161718
  1. _base_ = [
  2. '../_base_/models/ssd300.py', '../_base_/datasets/wider_face.py',
  3. '../_base_/default_runtime.py'
  4. ]
  5. model = dict(bbox_head=dict(num_classes=1))
  6. # optimizer
  7. optimizer = dict(type='SGD', lr=0.012, momentum=0.9, weight_decay=5e-4)
  8. optimizer_config = dict()
  9. # learning policy
  10. lr_config = dict(
  11. policy='step',
  12. warmup='linear',
  13. warmup_iters=1000,
  14. warmup_ratio=0.001,
  15. step=[16, 20])
  16. # runtime settings
  17. runner = dict(type='EpochBasedRunner', max_epochs=24)
  18. log_config = dict(interval=1)

No Description

Contributors (3)