Skip to content

Commit

Permalink
[Fix] Fix a bug in the configuration file of QDTrack on LVIS dataset. (
Browse files Browse the repository at this point in the history
…open-mmlab#609)

* fix cfg

* update cfg

Co-authored-by: Pengxiang Li <lipengxiang@pjlab.org.cn>
  • Loading branch information
Pengxiang Li and Pengxiang Li authored Jul 12, 2022
1 parent 1d26fdb commit 8e2b362
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions configs/mot/qdtrack/qdtrack_faster-rcnn_r101_fpn_24e_lvis.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,21 @@
detector=dict(
backbone=dict(
depth=101,
norm_cfg=dict(requires_grad=True),
style='pytorch',
init_cfg=dict(
type='Pretrained', checkpoint='torchvision://resnet101')),
rpn_head=dict(bbox_coder=dict(clip_border=True)),
roi_head=dict(
bbox_head=dict(
loss_bbox=dict(type='L1Loss', loss_weight=1.0),
num_classes=482)),
bbox_head=dict(bbox_coder=dict(
clip_border=True), num_classes=482)),
test_cfg=dict(
rcnn=dict(
score_thr=0.0001,
nms=dict(type='nms', iou_threshold=0.5),
max_per_img=300)),
init_cfg=None),
track_head=dict(train_cfg=dict(assigner=dict(neg_iou_thr=0.3))),
tracker=dict(
_delete_=True,
type='QuasiDenseTAOTracker',
Expand All @@ -33,6 +36,7 @@
distractor_score_thr=0.5,
match_metric='bisoftmax',
match_with_cosine=True))

# learning policy
lr_config = dict(
policy='step',
Expand Down

0 comments on commit 8e2b362

Please sign in to comment.