Open LukeWood opened 2 years ago
Can you add some references, sounds interesting.
There are references out there for mirroring in random translation and rotation, but not random erasing or cut out. The logic should in theory extend to cutout, but I do not have definitive proof. That's why this is also somewhat of a research effort. Happy to collaborate with anyone on benchmarks if they are interested...
Are you talking about (https://arxiv.org/pdf/1708.04552v2.pdf):
or something else?
Edit: Ok sorry it was in the title but not in the description. It is the "fill_mode"
We have some experimental results with patch gaussian as an alternative "fill_mode" for cutout:
The fill_mode="mirror"
sounds like a fill_mode="reflect"
.
The patch gaussian has a good citations threshod (>100).
There is a TF implementation at page 15.
I don't know if It Is better to spent time on something that has already some experimental results.
@bhack Thanks for sharing this information, very useful. It's definitely an effective option.
Cutout, which improves clean accuracy but not robustness, and additive Gaussian noise, which improves robustness but hurts accuracy. To overcome this trade-off, we introduce Patch Gaussian, a simple augmentation scheme that adds noise to randomly selected patches in an input image.
This issue is stale because it has been open for 180 days with no activity. It will be closed if no further activity occurs. Thank you.
This is actually a great "research" project in that this should strictly be better than using noise and black pixels.