Megvii-BaseDetection / DenseTeacher

DenseTeacher: Dense Pseudo-Label for Semi-supervised Object Detection
Apache License 2.0
119 stars 12 forks source link

where is the code of applying large-scale jittering #4

Closed 1224wxwx closed 2 years ago

1224wxwx commented 2 years ago

Hi, Thanks for sharing your amazing projects. The paper mentioned that you used the large-scale jittering for augmentation. Could you please tell me where can I find the code of large scale jittering in this projects?

ZRandomize commented 2 years ago

You can simply do that by set the ResizeShortestEdge range to (400,1200), sample style switch to "range" : https://github.com/Megvii-BaseDetection/DenseTeacher/blob/ca5c29d04674fdb68c389839a2f8d9ec637ad4c9/coco-full-LSJ/config.py#L91

1224wxwx commented 2 years ago

@ZRandomize Thank you!