CutMix augmentation for Object Detection task.
See original GitHub issue[Reposting from here as a future reference for potential contributor].
CutMix - Paper - Cited by ~ 865 MixUp - Paper - Cited by ~ 2675
Currently, this aug can be applied to classification tasks but as the kerascv
sets the target to general vision task, that’s why to support vision tasks like object detection, we may need to add utility to accept the bbox_params
argument too.
example of mixup-object-detection - region=full-images
example of mixup-object-detection - region=random
example of cutmix-object-detection
ref: https://www.kaggle.com/ankursingh12/data-augmentation-for-object-detection ref: https://www.kaggle.com/shonenkov/oof-evaluation-mixup-efficientdet
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:6 (5 by maintainers)
Top Results From Across the Web
CutMix: A new strategy for Data Augmentation
... and object detection tasks. However CutMix still improves the score in these tasks and hence can be considered a good choice for...
Read more >CutMix Explained | Papers With Code
CutMix is an image data augmentation strategy. Instead of simply removing pixels as in Cutout, we replace the removed regions with a patch...
Read more >CutMix, MixUp, and RandAugment image augmentation with ...
... it easy to assemble state-of-the-art, industry-grade data augmentation pipelines for image classification and object detection tasks.
Read more >An Efficient Data Augmentation Method for Object Detection
The above algorithms are mainly applied in image classification tasks, but there is still lack of a data augmentation algorithm that can be...
Read more >arXiv:2106.07085v2 [cs.CV] 1 Nov 2021
image recognition and object detection tasks as ... Figure 3: The figure shows attentive cutmix image augmentation procedure, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I found a reference in section 2.3.9 of:
https://arxiv.org/abs/2106.07085
This is now available for MixUp, need CutMix still