forked from hachreak/mmdetection
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathr3_cnn-exp_5-row_4.py
32 lines (32 loc) · 1.04 KB
/
r3_cnn-exp_5-row_4.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
_base_ = './r3_cnn-exp_1-row_4.py'
model = dict(
roi_head=dict(
bbox_head=[
dict(
type='Shared2FCCBBoxHead',
in_channels=256,
fc_out_channels=1024,
roi_feat_size=7,
num_classes=80,
bbox_coder=dict(
type='DeltaXYWHBBoxCoder',
target_means=[0.0, 0.0, 0.0, 0.0],
target_stds=[0.1, 0.1, 0.2, 0.2]),
reg_class_agnostic=True,
nl_stages=(True, False),
nl_cfg=dict(
type='NonLocal2d',
reduction=2,
use_scale=True,
kernel_size=7,
padding=3,
),
loss_cls=dict(
type='CrossEntropyLoss',
use_sigmoid=False,
loss_weight=1.0),
loss_bbox=dict(type='SmoothL1Loss', beta=1.0,
loss_weight=1.0))
],
)
)