Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
liaogulou committed Oct 23, 2023
1 parent 6ceb7ce commit 7411bdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configs/config_templates/yolox_itag.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)

train_pipeline = [
dict(type='MMMosaic', img_scale=tuple(img_scale), pad_val=114.0),
dict(type='MMMosaic', img_scale=tuple(img_scale[0]), pad_val=114.0),
dict(
type='MMRandomAffine',
scaling_ratio_range=scale_ratio,
Expand Down Expand Up @@ -98,7 +98,7 @@
path='data/coco/train2017.manifest',
classes=CLASSES),
pipeline=train_pipeline,
dynamic_scale=type(img_scale)),
dynamic_scale=tuple(img_scale)),
val=dict(
type='DetImagesMixDataset',
imgs_per_gpu=2,
Expand Down

0 comments on commit 7411bdd

Please sign in to comment.