You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2024. It is now read-only.
I found that in your code, you set cutout_op as iaa.Cutout(nb_iterations=(1, 5), size=[0, 0.2], squared=True), here size=[0,0.2] means the size is either 0 or 0.2 ( under imgaug 0.4.0), which is different as what is described in paper.
Maybe we should change it to iaa.Cutout(nb_iterations=(1, 5), size=(0, 0.2), squared=True) ?
Hi!
I found that in your code, you set cutout_op as
iaa.Cutout(nb_iterations=(1, 5), size=[0, 0.2], squared=True), heresize=[0,0.2]means the size is either 0 or 0.2 ( under imgaug 0.4.0), which is different as what is described in paper.Maybe we should change it to
iaa.Cutout(nb_iterations=(1, 5), size=(0, 0.2), squared=True)?