mmyolo/configs/yolov5/yolov5_s-v61_fast_1xb12-ms-40e_cat.py
Haian Huang(深度眸) 421be537e4
[Docs] Add Multi-scale training and testing (#630)
* add ms docs

* fix

* fix

* add en

* update

* update

* update

* update
2023-03-07 16:18:43 +08:00

14 lines
373 B
Python

_base_ = 'yolov5_s-v61_fast_1xb12-40e_cat.py'
model = dict(
data_preprocessor=dict(
type='YOLOv5DetDataPreprocessor',
pad_size_divisor=32,
batch_augments=[
dict(
type='YOLOXBatchSyncRandomResize',
random_size_range=(480, 800),
size_divisor=32,
interval=1)
]))