Skip to content

Commit

Permalink
add senet (PaddlePaddle#2553)
Browse files Browse the repository at this point in the history
* add senet

* add annotations according to review
  • Loading branch information
wangxinxin08 authored Apr 12, 2021
1 parent 7b8c9ea commit f239d89
Show file tree
Hide file tree
Showing 12 changed files with 287 additions and 138 deletions.
1 change: 0 additions & 1 deletion configs/dcn/cascade_rcnn_dcn_x101_vd_64x4d_fpn_1x_coco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ ResNet:
depth: 101
groups: 64
base_width: 4
base_channels: 64
variant: d
norm_type: bn
freeze_at: 0
Expand Down
1 change: 0 additions & 1 deletion configs/dcn/faster_rcnn_dcn_x101_vd_64x4d_fpn_1x_coco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ ResNet:
depth: 101
groups: 64
base_width: 4
base_channels: 64
variant: d
norm_type: bn
freeze_at: 0
Expand Down
1 change: 0 additions & 1 deletion configs/dcn/mask_rcnn_dcn_x101_vd_64x4d_fpn_1x_coco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ ResNet:
variant: d
groups: 64
base_width: 4
base_channels: 64
norm_type: bn
freeze_at: 0
return_idx: [0,1,2,3]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ ResNet:
depth: 101
groups: 64
base_width: 4
base_channels: 64
variant: d
norm_type: bn
freeze_at: 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ ResNet:
depth: 101
groups: 64
base_width: 4
base_channels: 64
variant: d
norm_type: bn
freeze_at: 0
Expand Down
1 change: 0 additions & 1 deletion configs/mask_rcnn/mask_rcnn_x101_vd_64x4d_fpn_1x_coco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ ResNet:
variant: d
groups: 64
base_width: 4
base_channels: 64
norm_type: bn
freeze_at: 0
return_idx: [0,1,2,3]
Expand Down
1 change: 0 additions & 1 deletion configs/mask_rcnn/mask_rcnn_x101_vd_64x4d_fpn_2x_coco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ ResNet:
variant: d
groups: 64
base_width: 4
base_channels: 64
norm_type: bn
freeze_at: 0
return_idx: [0,1,2,3]
Expand Down
2 changes: 2 additions & 0 deletions ppdet/modeling/backbones/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from . import hrnet
from . import blazenet
from . import ghostnet
from . import senet

from .vgg import *
from .resnet import *
Expand All @@ -29,3 +30,4 @@
from .hrnet import *
from .blazenet import *
from .ghostnet import *
from .senet import *
Loading

0 comments on commit f239d89

Please sign in to comment.