-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnocs_yopo_real_camera_swinl_finetune_real.py
More file actions
212 lines (200 loc) · 7.08 KB
/
nocs_yopo_real_camera_swinl_finetune_real.py
File metadata and controls
212 lines (200 loc) · 7.08 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
_base_ = [
'./_base_/datasets/nocs_dataset.py',
'../_base_/default_runtime.py'
]
# load_from = 'https://download.openmmlab.com/mmdetection/v3.0/dino/dino-4scale_r50_improved_8xb2-12e_coco/dino-4scale_r50_improved_8xb2-12e_coco_20230818_162607-6f47a913.pth'
load_from = 'work_dirs/nocs_yopo_real_camera_swinl/epoch_12.pth'
num_levels = 5
model = dict(
type='DINO9DCenter2DPose',
num_feature_levels=num_levels,
num_queries=100, # num_matching_queries
with_box_refine=True,
as_two_stage=True,
data_preprocessor=dict(
type='DetDataPreprocessor',
mean=[123.675, 116.28, 103.53],
std=[58.395, 57.12, 57.375],
bgr_to_rgb=True,
pad_size_divisor=1),
backbone=dict(
type='SwinTransformer',
pretrain_img_size=384,
embed_dims=192,
depths=[2, 2, 18, 2],
num_heads=[6, 12, 24, 48],
window_size=12,
mlp_ratio=4,
qkv_bias=True,
qk_scale=None,
drop_rate=0.,
attn_drop_rate=0.,
drop_path_rate=0.2,
patch_norm=True,
out_indices=(0, 1, 2, 3),
# Please only add indices that would be used
# in FPN, otherwise some parameter will not be used
with_cp=True),
neck=dict(
type='ChannelMapper',
in_channels=[192, 384, 768, 1536],
kernel_size=1,
out_channels=256,
act_cfg=None,
norm_cfg=dict(type='GN', num_groups=32),
num_outs=num_levels),
encoder=dict(
num_layers=6,
layer_cfg=dict(
self_attn_cfg=dict(embed_dims=256, num_levels=num_levels,
dropout=0.0), # 0.1 for DeformDETR
ffn_cfg=dict(
embed_dims=256,
feedforward_channels=2048, # 1024 for DeformDETR
ffn_drop=0.0))), # 0.1 for DeformDETR
decoder=dict(
num_layers=6,
return_intermediate=True,
layer_cfg=dict(
self_attn_cfg=dict(embed_dims=256, num_heads=8,
dropout=0.0), # 0.1 for DeformDETR
cross_attn_cfg=dict(embed_dims=256, num_levels=num_levels,
dropout=0.0), # 0.1 for DeformDETR
ffn_cfg=dict(
embed_dims=256,
feedforward_channels=2048, # 1024 for DeformDETR
ffn_drop=0.0)), # 0.1 for DeformDETR
post_norm_cfg=None),
positional_encoding=dict(
num_feats=128,
normalize=True,
offset=0.0, # -0.5 for DeformDETR
temperature=20), # 10000 for DeformDETR
bbox_head=dict(
type='DINO9DCenter2DPoseHead',
num_classes=6,
# num_classes=21,
classwise_rotation=True,
classwise_sizes=True,
use_bbox_for_z=True,
use_bbox_for_centers_2d=True,
sync_cls_avg_factor=True,
loss_cls=dict(
type='FocalLoss',
use_sigmoid=True,
gamma=2.0,
alpha=0.25,
loss_weight=1.0), # 1.0 in DeformDETR
loss_bbox=dict(type='L1Loss', loss_weight=5.0),
loss_iou=dict(type='GIoULoss', loss_weight=2.0),
loss_centers_2d = dict(type='L1PoseLoss', loss_weight=5.0),
loss_z = dict(type='L2PoseLoss', loss_weight=50.0),
# loss_rotation = dict(type='L2PoseLoss', loss_weight=20.0),
loss_rotation = dict(type='Rotation3DLoss', loss_weight=5.0),
loss_sizes = dict(type='L2PoseLoss', loss_weight=50.0),
),
dn_cfg=dict( # TODO: Move to model.train_cfg ?
label_noise_scale=0.5,
box_noise_scale=1.0, # 0.4 fo DN-DETR
group_cfg=dict(dynamic=True, num_groups=None,
num_dn_queries=20)), # TODO: half num_dn_queries
# training and testing settings
train_cfg=dict(
assigner=dict(
type='HungarianAssigner',
match_costs=[
dict(type='FocalLossCost', weight=2.0),
dict(type='BBoxL1Cost', weight=5.0, box_format='xywh'),
dict(type='IoUCost', iou_mode='giou', weight=2.0),
dict(type='TranslationCost', weight=5.0),
dict(type='RotationCost', weight=2.0,
symmetric_classes=[0, 1, 3]),
# dict(type='ADDCost', weight=5.0)
])),
test_cfg=dict(max_per_img=300)) # 100 for DeformDETR
# optimizer
optim_wrapper = dict(
type='OptimWrapper',
optimizer=dict(
type='AdamW',
lr=0.0001, # 0.0002 for DeformDETR
weight_decay=0.0001),
clip_grad=dict(max_norm=0.1, norm_type=2),
paramwise_cfg=dict(custom_keys={'backbone': dict(lr_mult=0.1)})
) # custom_keys contains sampling_offsets and reference_points in DeformDETR # noqa
# learning policy
max_epochs = 12
train_cfg = dict(
type='EpochBasedTrainLoop', max_epochs=max_epochs, val_interval=1)
val_cfg = dict(type='ValLoop')
test_cfg = dict(type='TestLoop')
param_scheduler = [
dict(
type='MultiStepLR',
begin=0,
end=max_epochs,
by_epoch=True,
milestones=[11],
gamma=0.1)
]
# NOTE: `auto_scale_lr` is for automatically scaling LR,
# USER SHOULD NOT CHANGE ITS VALUES.
# base_batch_size = (8 GPUs) x (2 samples per GPU)
auto_scale_lr = dict(base_batch_size=16, enable=False)
visualizer = dict(
type='PoseLocalVisualizer')
backend_args = None
scale = (640, 480)
dataset_type = 'NOCSDataset'
data_root = 'data/nocs/'
train_pipeline = [
dict(type='LoadImageFromFile', backend_args=backend_args),
dict(type='Load9DPoseAnnotations', with_bbox=True,
with_centers_2d=True, with_z=True),
dict(type='Resize', scale=scale, keep_ratio=True),
dict(type='YOLOXHSVRandomAug'),
dict(type='RandomTranslatePixels', prob=0.5, max_translate_offset=50),
dict(type='RandomFlipFor9DPose', prob=0.5),
dict(type='FilterAnnotations', min_gt_bbox_wh=(1e-2, 1e-2)),
dict(type='Pack9DPoseInputs')
]
test_pipeline = [
dict(type='LoadImageFromFile', backend_args=backend_args),
dict(type='Resize', scale=scale, keep_ratio=True),
# If you don't have a gt annotation, delete the pipeline
dict(type='Load9DPoseAnnotations', with_bbox=True,
with_centers_2d=True, with_z=True),
dict(
type='Pack9DPoseInputs',
meta_keys=('img_id', 'img_path', 'ori_shape', 'img_shape',
'scale_factor', 'intrinsic', 'models_info_path'))
]
train_dataloader = dict(
batch_size=8,
num_workers=4,
persistent_workers=True,
sampler=dict(type='DefaultSampler', shuffle=True),
dataset=dict(
type='ConcatDataset',
datasets=[
dict(
type=dataset_type,
data_root=data_root,
split='real_train',
pipeline=train_pipeline,
backend_args=backend_args)
])
)
val_dataloader = dict(
batch_size=1,
num_workers=2,
persistent_workers=True,
drop_last=False,
sampler=dict(type='DefaultSampler', shuffle=False),
dataset=dict(
type=dataset_type,
data_root=data_root,
split='real_test',
test_mode=True,
pipeline=test_pipeline))
test_dataloader = val_dataloader