s2anet_conv_2x_dota.yml 743 B

12345678910111213141516171819202122232425262728293031
  1. _BASE_: [
  2. '../datasets/dota.yml',
  3. '../runtime.yml',
  4. '_base_/s2anet_optimizer_2x.yml',
  5. '_base_/s2anet.yml',
  6. '_base_/s2anet_reader.yml',
  7. ]
  8. weights: output/s2anet_conv_1x_dota/model_final
  9. pretrain_weights: https://paddledet.bj.bcebos.com/models/pretrained/ResNet50_cos_pretrained.pdparams
  10. ResNet:
  11. depth: 50
  12. variant: b
  13. norm_type: bn
  14. return_idx: [1,2,3]
  15. num_stages: 4
  16. S2ANetHead:
  17. anchor_strides: [8, 16, 32, 64, 128]
  18. anchor_scales: [4]
  19. anchor_ratios: [1.0]
  20. anchor_assign: RBoxAssigner
  21. stacked_convs: 2
  22. feat_in: 256
  23. feat_out: 256
  24. num_classes: 15
  25. align_conv_type: 'Conv' # AlignConv Conv
  26. align_conv_size: 3
  27. use_sigmoid_cls: True
  28. reg_loss_weight: [1.0, 1.0, 1.0, 1.0, 1.1]
  29. cls_loss_weight: [1.1, 1.05]